Repository: gempy-project/gempy Branch: main Commit: 61b5af5a7ad3 Files: 423 Total size: 5.3 MB Directory structure: gitextract_08koybn1/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .teamcity/ │ └── Gempy/ │ ├── buildTypes/ │ │ ├── GempyEngine_TestingEngine.xml │ │ ├── Gempy_BuildDocs.xml │ │ ├── Gempy_PublishDocs.xml │ │ ├── Gempy_TestingGemPy.xml │ │ ├── Gempy_TestingViewer.xml │ │ ├── ReleaseGemPy.xml │ │ ├── ReleaseGemPyEngine.xml │ │ └── ReleaseGemPyViewer.xml │ ├── project-config.xml │ └── vcsRoots/ │ ├── GempyEngine_HttpsGithubComGempyProjectGempyEngineRefsHeadsMain.xml │ ├── GempyEngine_HttpsGithubComGempyProjectGempyViewerRefsHeadsMain.xml │ ├── Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain.xml │ ├── Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain1.xml │ └── Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain2.xml ├── .travis.yml ├── AUTHORS.rst ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DevelopersGuide.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── WhatsNewGemPy3.md ├── docs/ │ ├── .buildinfo │ ├── .nojekyll │ ├── CNAME │ ├── Makefile │ ├── __init__.py │ ├── developers_notes/ │ │ └── dev_log/ │ │ ├── 2022-2023.md │ │ ├── 2025_05.md │ │ ├── log_2024-05.md │ │ ├── log_2024-06-25.md │ │ └── log_2024-06.md │ ├── index.html │ ├── main_docstrings │ └── source/ │ ├── _static/ │ │ └── nothing.txt │ ├── _templates/ │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst │ ├── api_reference.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ └── make_external_gallery.py ├── examples/ │ ├── __init__.py │ ├── data/ │ │ ├── gempy_models/ │ │ │ ├── Greenstone/ │ │ │ │ ├── Greenstone_extent.npy │ │ │ │ ├── Greenstone_faults.csv │ │ │ │ ├── Greenstone_faults_relations.csv │ │ │ │ ├── Greenstone_kriging_data.csv │ │ │ │ ├── Greenstone_options.csv │ │ │ │ ├── Greenstone_orientations.csv │ │ │ │ ├── Greenstone_rescaling_data.csv │ │ │ │ ├── Greenstone_resolution.npy │ │ │ │ ├── Greenstone_series.csv │ │ │ │ ├── Greenstone_surface_points.csv │ │ │ │ └── Greenstone_surfaces.csv │ │ │ ├── Greenstone.gempy │ │ │ ├── Tutorial_ch1-1_Basics/ │ │ │ │ ├── Tutorial_ch1-1_Basics_extent.npy │ │ │ │ ├── Tutorial_ch1-1_Basics_faults.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_faults_relations.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_kriging_data.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_options.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_orientations.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_rescaling_data.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_resolution.npy │ │ │ │ ├── Tutorial_ch1-1_Basics_series.csv │ │ │ │ ├── Tutorial_ch1-1_Basics_surface_points.csv │ │ │ │ └── Tutorial_ch1-1_Basics_surfaces.csv │ │ │ ├── Tutorial_ch1-8_Onlap_relations/ │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_extent.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_fault_blocks.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_faults.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_faults_relations.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_gradient.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_kriging_data.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_lith_block.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_options.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_orientations.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_rescaling_data.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_resolution.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_scalar_field_faults.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_scalar_field_lith.npy │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_series.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_surface_points.csv │ │ │ │ ├── Tutorial_ch1-8_Onlap_relations_surfaces.csv │ │ │ │ └── Tutorial_ch1-8_Onlap_relations_values_block.npy │ │ │ ├── Tutorial_ch1-9a_Fault_relations/ │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_extent.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_fault_blocks.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_faults.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_faults_relations.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_gradient.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_kriging_data.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_lith_block.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_options.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_orientations.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_rescaling_data.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_resolution.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_scalar_field_faults.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_scalar_field_lith.npy │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_series.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_surface_points.csv │ │ │ │ ├── Tutorial_ch1-9a_Fault_relations_surfaces.csv │ │ │ │ └── Tutorial_ch1-9a_Fault_relations_values_block.npy │ │ │ └── Tutorial_ch1-9b_Fault_relations/ │ │ │ ├── Tutorial_ch1-9b_Fault_relations_extent.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_fault_blocks.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_faults.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_faults_relations.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_gradient.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_kriging_data.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_lith_block.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_options.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_orientations.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_rescaling_data.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_resolution.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_scalar_field_faults.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_scalar_field_lith.npy │ │ │ ├── Tutorial_ch1-9b_Fault_relations_series.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_surface_points.csv │ │ │ ├── Tutorial_ch1-9b_Fault_relations_surfaces.csv │ │ │ └── Tutorial_ch1-9b_Fault_relations_values_block.npy │ │ └── input_data/ │ │ ├── AlesModel/ │ │ │ ├── 2018_interf.csv │ │ │ ├── 2018_orient_clust_n_init5_0.csv │ │ │ └── _cropped_DEM_coarse.tif │ │ ├── Claudius/ │ │ │ ├── APoints.csv │ │ │ ├── BPoints.csv │ │ │ ├── CPoints.csv │ │ │ ├── DPoints.csv │ │ │ ├── Dips.csv │ │ │ └── Fault.csv │ │ ├── Hecho/ │ │ │ ├── Dips.csv │ │ │ ├── F1Line.csv │ │ │ ├── F2Line.csv │ │ │ ├── F3Line.csv │ │ │ ├── H1.csv │ │ │ ├── H2.csv │ │ │ ├── H3.csv │ │ │ ├── H4.csv │ │ │ ├── H5.csv │ │ │ ├── H6.csv │ │ │ ├── H7.csv │ │ │ ├── H8.csv │ │ │ └── H9.csv │ │ ├── Moureze/ │ │ │ ├── Moureze_Points.csv │ │ │ ├── Sections_EW.csv │ │ │ └── Sections_NS.csv │ │ ├── jan_models/ │ │ │ ├── fixture_model_orientations.csv │ │ │ ├── fixture_model_surfaces.csv │ │ │ ├── model1_orientations.csv │ │ │ ├── model1_surface_points.csv │ │ │ ├── model2_orientations.csv │ │ │ ├── model2_surface_points.csv │ │ │ ├── model3_orientations.csv │ │ │ ├── model3_surface_points.csv │ │ │ ├── model4_orientations.csv │ │ │ ├── model4_surface_points.csv │ │ │ ├── model5_orientations.csv │ │ │ ├── model5_surface_points.csv │ │ │ ├── model6_orientations.csv │ │ │ ├── model6_surface_points.csv │ │ │ ├── model7_orientations.csv │ │ │ ├── model7_surface_points.csv │ │ │ ├── tutorial_model_orientations.csv │ │ │ └── tutorial_model_surface_points.csv │ │ ├── lisa_models/ │ │ │ ├── foliations1.csv │ │ │ ├── foliations2.csv │ │ │ ├── foliations3.csv │ │ │ ├── foliations5.csv │ │ │ ├── foliations6.csv │ │ │ ├── foliations7.csv │ │ │ ├── foliations8.csv │ │ │ ├── foliations9.csv │ │ │ ├── interfaces1.csv │ │ │ ├── interfaces2.csv │ │ │ ├── interfaces3.csv │ │ │ ├── interfaces5.csv │ │ │ ├── interfaces6.csv │ │ │ ├── interfaces7.csv │ │ │ ├── interfaces8.csv │ │ │ └── interfaces9.csv │ │ ├── perth_basin/ │ │ │ ├── Paper_GU2F_sc_faults_topo_Foliations.csv │ │ │ └── Paper_GU2F_sc_faults_topo_Points.csv │ │ ├── striplog_integration/ │ │ │ ├── alpha_strip.tops │ │ │ ├── beta_strip.tops │ │ │ ├── epsilon_strip.tops │ │ │ └── gamma_strip.tops │ │ ├── tests/ │ │ │ ├── fault_relations_test_ori.csv │ │ │ └── fault_relations_test_surf.csv │ │ ├── tut-ch1-4/ │ │ │ ├── tut_ch1-4_orientations.csv │ │ │ └── tut_ch1-4_points.csv │ │ ├── tut-ch1-5/ │ │ │ ├── tut_ch1-5_orientations.csv │ │ │ └── tut_ch1-5_points.csv │ │ ├── tut-ch1-7/ │ │ │ ├── bogota.tif │ │ │ ├── onelayer_interfaces.csv │ │ │ └── onelayer_orient.csv │ │ ├── tut_SandStone/ │ │ │ ├── SandStone_Foliations.csv │ │ │ ├── SandStone_Points.csv │ │ │ ├── Sst_grav_1000.xyz │ │ │ ├── Sst_grav_2000.xyz │ │ │ ├── Sst_grav_500.xyz │ │ │ ├── Uncertainties.xlsx │ │ │ ├── parameters.xlsx │ │ │ └── real_grav.npy │ │ ├── tut_chapter1/ │ │ │ ├── .~lock.fault_unconformity_model_orientations.csv# │ │ │ ├── .~lock.fault_unconformity_model_points.csv# │ │ │ ├── fault_unconformity_model_orientations.csv │ │ │ ├── fault_unconformity_model_points.csv │ │ │ ├── simple_fault_model_orientations.csv │ │ │ ├── simple_fault_model_orientations_geophy.csv │ │ │ ├── simple_fault_model_points.csv │ │ │ └── simple_fault_model_points_geophy.csv │ │ └── tut_chapter6/ │ │ ├── ch6_data_fol.csv │ │ └── ch6_data_interf.csv │ ├── examples/ │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── geometries/ │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── a01_horizontal_stratigraphic.py │ │ │ ├── b02_fold.py │ │ │ ├── c03_recumbent_fold.py │ │ │ ├── d04_pinchout.py │ │ │ ├── e05_fault.py │ │ │ ├── f06_unconformity.py │ │ │ ├── g07_combination.py │ │ │ └── h08_more_examples.py │ │ └── real/ │ │ ├── Alesmodel.py │ │ ├── Claudius.py │ │ ├── Greenstone.py │ │ ├── Hecho.py │ │ ├── Moureze.py │ │ ├── Perth_basin.py │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── mik.py │ │ └── moureze_sf_gempy │ ├── integrations/ │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── gempy_export_MOOSE.py │ │ ├── gempy_subsurface.py │ │ ├── geo_model_units_moose_input.i │ │ └── pflotran_perth_bassin.in │ └── tutorials/ │ ├── README.rst │ ├── __init__.py │ ├── a_getting_started/ │ │ ├── README.rst │ │ ├── __init__.py │ │ └── get_started.py │ ├── ch1_fundamentals/ │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── ch1_1_basics.py │ │ ├── ch1_3a_grids.py │ │ ├── ch1_3b_cross_sections.py │ │ ├── ch1_3c_topography.py │ │ ├── ch1_4_onlap_relations.py │ │ ├── ch1_5_fault_relations.py │ │ ├── ch1_6_2d_visualization.py │ │ └── ch1_7_3d_visualization.py │ ├── ch2-Geophysics/ │ │ ├── README.rst │ │ ├── ch2_1_gravity.py │ │ └── ch2_2_cell_selection.py │ ├── ch3-Interpolations/ │ │ ├── README.rst │ │ └── ch3_1_kriging_interpolation_and_simulation.py │ ├── ch4-Topology/ │ │ ├── README.rst │ │ ├── __init__.py │ │ └── ch4-1-Topology.py │ └── z_other_tutorials/ │ ├── README.rst │ ├── __init__.py │ ├── json_io/ │ │ ├── 01_surface_points_io.py │ │ ├── 02_horizontal_stratigraphic.py │ │ ├── 03_multiple_series_faults.py │ │ ├── 04_combination_model.py │ │ ├── 05_minimal_json.py │ │ ├── 05c_minimal_comparison.py │ │ ├── horizontal_stratigraphic.json │ │ ├── minimal_model.json │ │ ├── minimal_model_loaded.json │ │ ├── multiple_series_faults.json │ │ └── sample_surface_points.json │ ├── video_tutorial_model_1.py │ ├── video_tutorial_model_2_faults.py │ └── video_tutorial_model_3_onlap.py ├── gempy/ │ ├── API/ │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── compute_API.py │ │ ├── examples_generator.py │ │ ├── faults_API.py │ │ ├── gp2_gp3_compatibility/ │ │ │ ├── __init__.py │ │ │ ├── gp3_to_gp2_input.py │ │ │ └── gp3_to_gp2_output.py │ │ ├── grid_API.py │ │ ├── implicit_functions.py │ │ ├── initialization_API.py │ │ ├── io_API.py │ │ └── map_stack_to_surfaces_API.py │ ├── __init__.py │ ├── _version.py │ ├── config.py │ ├── core/ │ │ ├── __init__.py │ │ ├── color_generator.py │ │ ├── data/ │ │ │ ├── DEP_xsolution.py │ │ │ ├── __init__.py │ │ │ ├── _data_points_helpers.py │ │ │ ├── core_utils.py │ │ │ ├── encoders/ │ │ │ │ ├── __init__.py │ │ │ │ ├── binary_encoder.py │ │ │ │ ├── converters.py │ │ │ │ └── json_geomodel_encoder.py │ │ │ ├── enumerators.py │ │ │ ├── gempy_engine_config.py │ │ │ ├── geo_model.py │ │ │ ├── grid.py │ │ │ ├── grid_modules/ │ │ │ │ ├── __init__.py │ │ │ │ ├── custom_grid.py │ │ │ │ ├── diamond_square.py │ │ │ │ ├── regular_grid.py │ │ │ │ ├── sections_grid.py │ │ │ │ └── topography.py │ │ │ ├── importer_helper.py │ │ │ ├── options.py │ │ │ ├── orientations.py │ │ │ ├── structural_element.py │ │ │ ├── structural_frame.py │ │ │ ├── structural_group.py │ │ │ └── surface_points.py │ │ └── engine.rst │ ├── modules/ │ │ ├── __init__.py │ │ ├── advance_pile/ │ │ │ ├── __init__.py │ │ │ └── strat_definition.py │ │ ├── custom_implicit_functions/ │ │ │ ├── __init__.py │ │ │ └── ellipsoid_implicit_function.py │ │ ├── data_manipulation/ │ │ │ ├── __init__.py │ │ │ ├── _engine_factory.py │ │ │ ├── manipulate_points.py │ │ │ ├── manipulate_structural_frame.py │ │ │ └── orientations_from_surface_points.py │ │ ├── grids/ │ │ │ ├── __init__.py │ │ │ └── create_topography.py │ │ ├── json_io/ │ │ │ ├── __init__.py │ │ │ ├── json_operations.py │ │ │ └── schema.py │ │ ├── mesh_extranction/ │ │ │ ├── __init__.py │ │ │ └── marching_cubes.py │ │ ├── optimize_nuggets/ │ │ │ ├── __init__.py │ │ │ ├── _ops.py │ │ │ └── _optimizer.py │ │ └── serialization/ │ │ ├── __init__.py │ │ └── save_load.py │ └── optional_dependencies.py ├── requirements/ │ ├── base-requirements.txt │ ├── dev-requirements.txt │ ├── docs_requirements.txt │ ├── optional-requirements.txt │ └── requirements.txt ├── scripts/ │ ├── build_docs.sh │ ├── deploy.sh │ └── update_doc_elements.sh ├── setup.cfg ├── setup.py └── test/ ├── Test Results - pytest_in_test.xml ├── __init__.py ├── conftest.py ├── context.py ├── pytest.ini ├── test_api/ │ ├── __init__.py │ ├── test_backends.py │ ├── test_fault_api.py │ ├── test_gempy_legacy_comp.py │ ├── test_initialization_and_compute_api.py │ ├── test_model_construction_granular.py │ ├── test_modify_input_data.py │ └── test_show_input_data.py ├── test_community_bugs/ │ ├── __init__.py │ └── test_community_bugs.py ├── test_core/ │ ├── __init__.py │ ├── test_color_generator.py │ ├── test_installation.py │ └── test_transfoms.py ├── test_model_types/ │ ├── __init__.py │ ├── test_example_models_I.py │ ├── test_example_models_I.test_generate_combination_model.Combination Scalar Field.approved.txt │ ├── test_example_models_I.test_generate_fault_model.Fault Scalar Field.approved.txt │ ├── test_example_models_I.test_generate_fold_model.Anticline Scalar Field.approved.txt │ ├── test_example_models_I.test_generate_horizontal_stratigraphic_model.Horizontal Stratigraphic Scalar Field.approved.txt │ └── test_subduction.py ├── test_modules/ │ ├── __init__.py │ ├── test_cg/ │ │ ├── __init__.py │ │ └── test_cg_solver.py │ ├── test_compute_times_for_grids.py │ ├── test_faults/ │ │ ├── __init__.py │ │ ├── test_fault_relations.py │ │ ├── test_finite_faults.py │ │ └── test_finite_faults.test_finite_fault_scalar_field_on_fault.verify/ │ │ └── fault.approved.txt │ ├── test_gempy_subsurface.py │ ├── test_geophysics/ │ │ ├── __init__.py │ │ ├── test_gravity.py │ │ └── test_gravity.test_gravity.verify/ │ │ └── 2-layers.approved.txt │ ├── test_grids/ │ │ ├── __init__.py │ │ ├── test_custom_grid.py │ │ ├── test_custom_grid.test_custom_grid.verify/ │ │ │ └── fold.approved.txt │ │ ├── test_diamond_square.py │ │ ├── test_grids_I.py │ │ ├── test_grids_sections.py │ │ ├── test_grids_sections.test_section_grids.verify/ │ │ │ └── fold.approved.txt │ │ └── test_grids_sections.test_topography_II.verify/ │ │ └── Model1.approved.txt │ ├── test_json_io.py │ ├── test_marching_cubes.py │ ├── test_marching_cubes_pytorch.py │ ├── test_outliers.py │ ├── test_pile/ │ │ ├── __init__.py │ │ └── test_stratigraphic_pile.py │ ├── test_serialize_model.py │ ├── test_serialize_model.test_generate_horizontal_stratigraphic_model.verify/ │ │ └── Horizontal Stratigraphic Model serialization.approved.txt │ └── test_transformed_space.py ├── test_private/ │ ├── __init__.py │ └── test_terranigma/ │ ├── __init__.py │ └── test_nuggets/ │ ├── __init__.py │ ├── _aux_func.py │ └── test_nugget_effect_optimization.py └── verify_helper.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: Leguark ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. Include error messages / tracebacks. If useful include screenshots. **To Reproduce** Provide detailed steps to reproduce the behavior: 1. 2. 3. ... **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** * OS: (e.g. iOS) * GemPy Version * if installed via pip: provide GemPy version (e.g. 2.0.1) * if cloned from GitHub: provide Git commit id (e.g. 839bf85f) * Jupyter Version (if applicable) **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/question.md ================================================ --- name: Question about: Ask a question about GemPy title: '' labels: '' assignees: '' --- **What is your question?** ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ # Description Please include a summary of the changes. Relates to # Checklist - [ ] My code uses type hinting for function and method arguments and return values. - [ ] I have created tests which cover my code. - [ ] The test code either 1. demonstrates at least one valuable use case (e.g. integration tests) or 2. verifies that outputs are as expected for given inputs (e.g. unit tests). - [ ] New tests pass locally with my changes. ================================================ FILE: .gitignore ================================================ .vscode .idea .DS_Store .vs .cache/ GeMpy/__pycache__/__init__.cpython-36.pyc GeMpy/__pycache__/geomodeller_xml_obj.cpython-36.pyc GeMpy/geomodeller_xml_obj.py.bak GeMpy/qgrid/__pycache__/ ../gempy_plugins/gempy_plugins/addons/RexCloud_Api_key.txt docs/source/Notebooks/Erosion.rst docs/source/Notebooks/Example_1_Sandstone_files/Example_1_Sandstone_39_0.png docs/source/Notebooks/Example_1_Sandstone_files/Example_1_Sandstone_41_0.png docs/source/Notebooks/Example_1_Sandstone_files/Example_1_Sandstone_46_1.png docs/source/Notebooks/Example_2_Simple_PyMC3_files/ docs/source/Notebooks/Example_3_Faults_files/ docs/source/Notebooks/OptimizationNotebook.rst docs/source/Notebooks/legacy/ docs/source/index_legacy.rst input_data/Erosion_Foliations.csv input_data/Erosion_Points.csv input_data/FabLessPoints_Foliations.csv input_data/FabLessPoints_Points.csv input_data/Fab_Model_MorePoints_Foliations.csv input_data/Fab_Model_MorePoints_Points.csv input_data/Intrusion-test/ legacy/.ipynb_checkpoints/ test/.ipynb_checkpoints/ test/__pycache__/ test/legacy/ test/log test/log2 /legacy/geomodeller_xml_obj.py.bak !/notebooks/input_data/FabLessPoints_Foliations.csv !/notebooks/input_data/FabLessPoints_Points.csv ### Python template # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python env/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *,cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # dotenv .env # virtualenv .venv venv/ ENV/ # Spyder project settings .spyderproject # Rope project settings .ropeproject notebooks/prototype notebooks/vtks notebooks/prototype notebooks/vtk_res_model_adjusted_1 notebooks/prototype notebooks/vtk_exp_smooth_trnasitions notebooks/prototype notebooks/plots # Remove the built document files - but not the static ones, which are required for the builds docs/build # The following files are generated locally during sphinx updates - they don't have to be part of the repo docs/source/examples docs/source/tutorials docs/source/Modeling\ Classes docs/source/GemPy\ API docs/source/Helper\ Classes docs/source/Plot docs/source/external docs/source/sg_execution_times.rst test/figs Profiles examples/data/input_data/Claudius/Results_ /docs/source/gen_modules/ #examples folders examples/integrations/*.vs examples/integrations/*.ugi examples/integrations/*.h5 examples/integrations/*.xmf examples/integrations/*.ss examples/integrations/*.out # Approval tests *.received.txt *.Identifier /.obsidian/app.json /.obsidian/appearance.json /.obsidian/core-plugins.json /.obsidian/core-plugins-migration.json /.obsidian/hotkeys.json /.obsidian/workspace.json # Ignore generated tutorial files examples/tutorials/z_other_tutorials/json_io/04_simple_layer_stack.py examples/tutorials/z_other_tutorials/json_io/fault_scalar_field.png examples/tutorials/z_other_tutorials/json_io/initial_model_y.png examples/tutorials/z_other_tutorials/json_io/model_with_data.png examples/tutorials/z_other_tutorials/json_io/multiple_series_faults_computed.json # Generated JSON files from examples examples/tutorials/z_other_tutorials/json_io/combination_model.json examples/tutorials/z_other_tutorials/json_io/combination_model_computed.json /test/temp/ test/test_modules/run_test.py ================================================ FILE: .teamcity/Gempy/buildTypes/GempyEngine_TestingEngine.xml ================================================ TestingEngine ================================================ FILE: .teamcity/Gempy/buildTypes/Gempy_BuildDocs.xml ================================================ BuildDocs ]]> ================================================ FILE: .teamcity/Gempy/buildTypes/Gempy_PublishDocs.xml ================================================ Publish Docs /dev/null || true # 4. Cleanup build artifacts before commit rm -rf build docs_site.zip # 3. Prevent Jekyll from ignoring files touch .nojekyll # after mv build/html/* . and before git add echo "docs.gempy.org" > CNAME # 4. Commit & push git add -A git commit -m "Publish docs from build %build.counter%" git push origin gh-pages]]> ================================================ FILE: .teamcity/Gempy/buildTypes/Gempy_TestingGemPy.xml ================================================ TestingGemPy ================================================ FILE: .teamcity/Gempy/buildTypes/Gempy_TestingViewer.xml ================================================ TestingViewer ================================================ FILE: .teamcity/Gempy/buildTypes/ReleaseGemPy.xml ================================================ Release GemPy ================================================ FILE: .teamcity/Gempy/buildTypes/ReleaseGemPyEngine.xml ================================================ Release GemPy Engine ================================================ FILE: .teamcity/Gempy/buildTypes/ReleaseGemPyViewer.xml ================================================ Release GemPy Viewer ================================================ FILE: .teamcity/Gempy/project-config.xml ================================================ Gempy ================================================ FILE: .teamcity/Gempy/vcsRoots/GempyEngine_HttpsGithubComGempyProjectGempyEngineRefsHeadsMain.xml ================================================ https://github.com/gempy-project/gempy_engine#refs/heads/main ================================================ FILE: .teamcity/Gempy/vcsRoots/GempyEngine_HttpsGithubComGempyProjectGempyViewerRefsHeadsMain.xml ================================================ https://github.com/gempy-project/gempy_viewer#refs/heads/main ================================================ FILE: .teamcity/Gempy/vcsRoots/Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain.xml ================================================ GemPy Main ================================================ FILE: .teamcity/Gempy/vcsRoots/Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain1.xml ================================================ Caching docs vcs ================================================ FILE: .teamcity/Gempy/vcsRoots/Gempy_HttpsGithubComGempyProjectGempyRefsHeadsMain2.xml ================================================ GemPy - GH Pages ================================================ FILE: .travis.yml ================================================ language: python os: linux dist: xenial branches: only: - master - release python: - '3.8' before_install: # configure a headless display - git clone --depth 1 git://github.com/pyvista/gl-ci-helpers.git - source ./gl-ci-helpers/travis/setup_headless_display.sh install: - sudo apt-get update # We do this conditionally because it saves us some downloading if the # version is the same. - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update --all # Useful for debugging any issues with conda - conda info -a # Install and activate environment, install packages - conda create -q -n tenv python=$TRAVIS_PYTHON_VERSION - source activate tenv # Installs from conda-forge - conda install -c conda-forge python-graphviz - conda install -c conda-forge pip matplotlib ipython six pytest pytest-cov ipywidgets - conda install -c conda-forge recommonmark networkx panel setuptools mkl-service # Installs from anaconda - conda install -c anaconda libffi - conda install aesara # Installs from pip - pip install welly pymc3 - pip install scikit-image>=0.17 sklearn - pip install pandas seaborn>=0.9 sphinx-gallery # Install - pip install -e . # Pyvista should have been fixed- pip install pyvista # Arviz broke with xarray update - pip install git+https://github.com/arviz-devs/arviz --force-reinstall # Install subsurface - pip install subsurface - conda install -c conda-forge gdal - python -c "import pyvista as pv;print(pv.Report())" - pip install pooch stages: - test jobs: include: - stage: test script: - pytest -v cache: pip ================================================ FILE: AUTHORS.rst ================================================ .. _authors_ref: Authors ------- .. image:: https://img.shields.io/github/contributors/gempy-project/gempy_engine.svg?logo=github&logoColor=white :target: https://github.com/gempy-projects/gempy_engine/graphs/contributors/ The following is a list of authors who have made substantial contributions to the conception or design of this software; or the creation of new code used in this software; or have drafted the work or substantively revised it: - Miguel de la Varga, (`@leguark `_) - Alexander Zimmerman - Elisa Heim - Alexander Schaaf - Fabian Stamm - Florian Wellmann ================================================ FILE: CITATION.cff ================================================ cff-version: 1.2.0 message: "If you use GemPy, please cite it as below." authors: - family-names: "de la Varga" given-names: "Miguel" orcid: https://orcid.org/0000-0001-6941-2685 - family-names: "Schaaf" given-names: "Alexander" - family-names: "Wellmann" given-names: "Florian" orcid: https://orcid.org/0000-0003-2552-1876 title: "GemPy 1.0: open-source stochastic geological modeling and inversion" version: 1.0 doi: https://doi.org/10.5194/gmd-12-1-2019 date-released: 2019-01-02 url: "https://github.com/cgre-aachen/gempy" ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at florian.wellmann@cgre.rwth-aachen.de. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing We welcome and encoruage everyone to contribute to GemPy! Contributions can be questions, bug reports, feature requests and new code. Here is how to get started. ## Issues ### Questions For questions about GemPy (e.g. its applications, functionality, and usage), please [search the existing issues for related questions](https://github.com/cgre-aachen/gempy/issues). If your question has not already been asked, then [make a new issue](https://github.com/cgre-aachen/gempy/issues/new/choose). ### Reporting Bugs Please report bugs on the [issue page using the bug report template](https://github.com/cgre-aachen/gempy/issues/new?assignees=&labels=&template=bug_report.md&title=) and label the issue as a bug. The template asks essential questions for you to answer so that we can to understand, reproduce, and fix the bug. Be verbose! Whenever possible, provide tracebacks and/or error messages, screenshots, and sample code or other files. ### Feature Requests We encourage users to submit ideas for improvements to the GemPy project. For this please create an issue on the [issue page](https://github.com/cgre-aachen/gempy/issues) with the *Feature Request* template and label. Please make sure to use a descriptive title and to provide ample background information to help us implement that functionality in the future. ## Contributing New Code Any code contributions are welcome, whether fixing a typo or bug, adding new post-processing/plotting functionality, improve core functionality, or anything that you think should be in the repository. Contributions should address an open issue (either a bug or a feature request). If you have found a new bug or have an idea or a new feature, then please [open the issue](https://github.com/cgre-aachen/gempy/issues/new/choose) for discussion and link to that issue in your pull request. ### Python code guidelines We aim to follow particular Python coding guidelines to improve the sustainability and positive impact of this community project: - Follow [The Zen of Python](https://www.python.org/dev/peps/pep-0020/), most importantly "readability counts" when writing Python code. - Adhere to the [Style Guide for Python Code (PEP8)](https://www.python.org/dev/peps/pep-0008/). - Write thorough and effective documentation: Make a docstring for each module, function, class, and method, all following [PEP 257](https://www.python.org/dev/peps/pep-0257/) for high-level guidelines and [Google Python Style Guidelines](http://google.github.io/styleguide/pyguide.html) for Syntax. **Example function documentation:** ```python def func(arg1: int, arg2: float) -> int: """A concise one line summary of the function. Additional information and description of the function, if necessary. This can be as long and verbose as you think is necessary for other users and developers to understand your functionality. Args: arg1 (int): Description of the first argument. arg2 (float): Description of the second argument. Please use hanging indentation for multi-line argument descriptions. Returns: (int) Description of the return value(s) """ return 42 ``` - The code should explain the *what* and *how*. Add inline comments to explain the *why*. If an inline comment seems to be needed, consider first making the code more readable. For all comments, follow [PEP 8](https://www.python.org/dev/peps/pep-0008/). - Test every line of code. Untested code is dead code. ### Licensing All contributed code will be licensed under [a EUPL-1.2 license](https://github.com/cgre-aachen/gempy/blob/master/LICENSE). If you did not write the code yourself, it is your responsibility to ensure that the existing license is compatible and included in the contributed files. In general we discourage contributing third party code. ### Testing Our test suite uses [`pytest`](https://docs.pytest.org/). You should be familiar with `pytest` before contributing. Please run all tests locally before creating a pull request. You can do this by running `pytest` via your terminal in your GemPy folder: ```bash cd ./path/to/gempy pytest ``` All tests are located in the `test` folder and its subfolders. All contributed code must include test code in the pull request. ### Pull Requests All contributions are made via pull requests (PR's) to the master branch. You must complete the checklist in the [PR template](https://github.com/cgre-aachen/gempy/blob/master/.github/PULL_REQUEST_TEMPLATE.md) before we will review the PR and consider merging your contribution. ================================================ FILE: DevelopersGuide.md ================================================ Before a release. ---------------- # set version number in setup.py, also in the config file of the documentation and init of the package - [ ] setup.py - [ ] gempy.__init__ > Note: in the config for sphinx~ this is taken from gempy.__init__ Requirements version -------------------- - requirements.txt, optional_requirements.txt, dev_requirements.txt should either set minimum version and reject versions Github release -------------- # add new tag $ git tag X.X -m "Add X.X tag for PyPI" # push git tag $ git push --tags origin master PyPi release: ------------ New ``` # First create the dist python -m build # Second upload the distributions twine upload dist/* ``` ### Type of commits: - ENH: Enhancement, new functionality - BUG: Bug fix - DOC: Additions/updates to documentation - TST: Additions/updates to tests - BLD: Updates to the build process/scripts - PERF: Performance improvement - CLN: Code cleanup ## Documentation update The documentation is created using the [Sphinx documentation framework](https://www.sphinx-doc.org/en/master/) and the [Sphinx Gallery extension](https://sphinx-gallery.github.io/stable/index.html), which builds the documentation on basis of the repository code and the added examples. The documentation includes the tutorials and example models, which are part of the main repository, as well as additional external files. Also, opposed to the standard approach with GitHub Actions, the documentation is created offline, to avoid an unnecessary bloating of the repository and to reduce downtimes during update. Creating an update of the documentation can therefore be quite involved (depending on the level of changes). Please follow the steps below carefully. ### General case: using a fork #### Create fork and perform changes - If you don't already have one, create a fork of the main GemPy repository to your own GitHub account. Make sure to tick the box to fork _all_ branches (not only the _main_ branch). - Clone the repository to your local computer. - Create a new branch of the `main` repository for the subsequent pull request. - Perform the changes, e.g.: - Update text in the documentation - Update examples (and/ or add new ones) - Perform changes in code and/ or function docstrings - etc. - If you have performed changes before, then you can also copy these changes into the branch (Note: if you have changes in a separate branch, then they can also be copied with `git restore` or `git checkout` - please see git documentation for details). #### Update documentation using Sphinx - Update the documentation using sphinx in the branch where the changes were made (`main` branch or new branch based on `main`): - Check that you have `sphinx` and `sphinx-gallery` installed; - Change to folder with documentation from main repo with `cd docs`; - Run update with `make html`; - Wait... (can take some hours when run for the first time) - The updated documentation is now in the subfolder `build/html`. Preview the generated documentation locally: open `build/html/index.html` in a web browser. #### Add updated documentation to branch `gh-pages` - If everything is fine, first commit all changes that were made in the main repo: - `git add .` - `git commit -m "update message"` - Copy updated documentation to a temporary directory,for example `/tmp/docs-html` with: - `mkdir /tmp/docs-html` - `cp -R docs/build/html/* /tmp/docs-html/` - checkout the documentation branch: `git checkout gh-pages` - Copy the updated files into the main folder of the `gh-pages` branch: `cp -R /tmp/docs-html/* .` - To be sure: check updated documentation, open `index.html`, now in the main folder of the repository. - Commit all changes: - `git add .` - `git commit -m "Updated documentation in gh-pages branch` #### Contribute updates back to main repository - Push _both_ branches `main` and `gh-pages` back to your own remote GitHub profile - Create a pull request for both branches (make sure to create the pull request for the `gh-pages` branch also to the `gh-pages` branch of the original gempy repository) - Please include meaningful descriptions about your changes (both, in the main repo, as well as in the documnetation). ### Special case: documentation update for maintainers with repository write rights - `git worktree add ../gempy_docs gh-pages` This will create a new folder called `gempy_docs` in the parent directory of the current repo. This folder will contain the `gh-pages` branch of the repo. This is where the docs will be pushed to. - `cp -r --force ./docs/build/html/* ../gempy_docs/` This will copy the contents of the `docs/build/html` folder to the `VisualBayesicDocs` folder. - `cd ../gempy_docs` This will change the current directory to the `gempy_docs` folder. - `git add .` This will add all the files in the current directory to the staging area. - `git commit -m "Update docs"` This will commit the changes to the `gh-pages` branch. - `git push origin gh-pages` This will push the changes to the `gh-pages` branch of the repo. - `cd ../gempy` This will change the current directory back to the `gempy` folder. ================================================ FILE: LICENSE ================================================ Copyright (c) 2020-2023 The GemPy Engine Developers EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016 This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined below) which is provided under the terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such use is covered by a right of the copyright holder of the Work). The Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following notice immediately following the copyright notice for the Work: Licensed under the EUPL or has expressed by any other means his willingness to license under the EUPL. 1. Definitions In this Licence, the following terms have the following meaning: - ‘The Licence’: this Licence. - ‘The Original Work’: the work or software distributed or communicated by the Licensor under this Licence, available as Source Code and also as Executable Code as the case may be. - ‘Derivative Works’: the works or software that could be created by the Licensee, based upon the Original Work or modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in the country mentioned in Article 15. - ‘The Work’: the Original Work or its Derivative Works. - ‘The Source Code’: the human-readable form of the Work which is the most convenient for people to study and modify. - ‘The Executable Code’: any code which has generally been compiled and which is meant to be interpreted by a computer as a program. - ‘The Licensor’: the natural or legal person that distributes or communicates the Work under the Licence. - ‘Contributor(s)’: any natural or legal person who modifies the Work under the Licence, or otherwise contributes to the creation of a Derivative Work. - ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of the Work under the terms of the Licence. - ‘Distribution’ or ‘Communication’: any act of selling, giving, lending, renting, distributing, communicating, transmitting, or otherwise making available, online or offline, copies of the Work or providing access to its essential functionalities at the disposal of any other natural or legal person. 2. Scope of the rights granted by the Licence The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, sublicensable licence to do the following, for the duration of copyright vested in the Original Work: - use the Work in any circumstance and for all usage, - reproduce the Work, - modify the Work, and make Derivative Works based upon the Work, - communicate to the public, including the right to make available or display the Work or copies thereof to the public and perform publicly, as the case may be, the Work, - distribute the Work or copies thereof, - lend and rent the Work or copies thereof, - sublicense rights in the Work or copies thereof. Those rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the applicable law permits so. In the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed by law in order to make effective the licence of the economic rights here above listed. The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to any patents held by the Licensor, to the extent necessary to make use of the rights granted on the Work under this Licence. 3. Communication of the Source Code The Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as Executable Code, the Licensor provides in addition a machine-readable copy of the Source Code of the Work along with each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to distribute or communicate the Work. 4. Limitations on copyright Nothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the exclusive rights of the rights owners in the Work, of the exhaustion of those rights or of other applicable limitations thereto. 5. Obligations of the Licensee The grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those obligations are the following: Attribution right: The Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the Licence with every copy of the Work he/she distributes or communicates. The Licensee must cause any Derivative Work to carry prominent notices stating that the Work has been modified and the date of modification. Copyleft clause: If the Licensee distributes or communicates copies of the Original Works or Derivative Works, this Distribution or Communication will be done under the terms of this Licence or of a later version of this Licence unless the Original Work is expressly distributed only under this version of the Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the Work or Derivative Work that alter or restrict the terms of the Licence. Compatibility clause: If the Licensee Distributes or Communicates Derivative Works or copies thereof based upon both the Work and another work licensed under a Compatible Licence, this Distribution or Communication can be done under the terms of this Compatible Licence. For the sake of this clause, ‘Compatible Licence’ refers to the licences listed in the appendix attached to this Licence. Should the Licensee's obligations under the Compatible Licence conflict with his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail. Provision of Source Code: When distributing or communicating copies of the Work, the Licensee will provide a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available for as long as the Licensee continues to distribute or communicate the Work. Legal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the copyright notice. 6. Chain of Authorship The original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or licensed to him/her and that he/she has the power and authority to grant the Licence. Each time You accept the Licence, the original Licensor and subsequent Contributors grant You a licence to their contributions to the Work, under the terms of this Licence. 7. Disclaimer of Warranty The Work is a work in progress, which is continuously improved by numerous Contributors. It is not a finished work and may therefore contain defects or ‘bugs’ inherent to this type of development. For the above reason, the Work is provided under the Licence on an ‘as is’ basis and without warranties of any kind concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this Licence. This disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work. 8. Disclaimer of Liability Except in the cases of wilful misconduct or damages directly caused to natural persons, the Licensor will in no event be liable for any direct or indirect, material or moral, damages of any kind, arising out of the Licence or of the use of the Work, including without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, loss of data or any commercial damage, even if the Licensor has been advised of the possibility of such damage. However, the Licensor will be liable under statutory product liability laws as far such laws apply to the Work. 9. Additional agreements While distributing the Work, You may choose to conclude an additional agreement, defining obligations or services consistent with this Licence. However, if accepting obligations, You may act only on your own behalf and on your sole responsibility, not on behalf of the original Licensor or any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against such Contributor by the fact You have accepted any warranty or additional liability. 10. Acceptance of the Licence The provisions of this Licence can be accepted by clicking on an icon ‘I agree’ placed under the bottom of a window displaying the text of this Licence or by affirming consent in any other similar way, in accordance with the rules of applicable law. Clicking on that icon indicates your clear and irrevocable acceptance of this Licence and all of its terms and conditions. Similarly, you irrevocably accept this Licence and all of its terms and conditions by exercising any rights granted to You by Article 2 of this Licence, such as the use of the Work, the creation by You of a Derivative Work or the Distribution or Communication by You of the Work or copies thereof. 11. Information to the public In case of any Distribution or Communication of the Work by means of electronic communication by You (for example, by offering to download the Work from a remote location) the distribution channel or media (for example, a website) must at least provide to the public the information requested by the applicable law regarding the Licensor, the Licence and the way it may be accessible, concluded, stored and reproduced by the Licensee. 12. Termination of the Licence The Licence and the rights granted hereunder will terminate automatically upon any breach by the Licensee of the terms of the Licence. Such a termination will not terminate the licences of any person who has received the Work from the Licensee under the Licence, provided such persons remain in full compliance with the Licence. 13. Miscellaneous Without prejudice of Article 9 above, the Licence represents the complete agreement between the Parties as to the Work. If any provision of the Licence is invalid or unenforceable under applicable law, this will not affect the validity or enforceability of the Licence as a whole. Such provision will be construed or reformed so as necessary to make it valid and enforceable. The European Commission may publish other linguistic versions or new versions of this Licence or updated versions of the Appendix, so far this is required and reasonable, without reducing the scope of the rights granted by the Licence. New versions of the Licence will be published with a unique version number. All linguistic versions of this Licence, approved by the European Commission, have identical value. Parties can take advantage of the linguistic version of their choice. 14. Jurisdiction Without prejudice to specific agreement between parties, - any litigation resulting from the interpretation of this License, arising between the European Union institutions, bodies, offices or agencies, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court of Justice of the European Union, as laid down in article 272 of the Treaty on the Functioning of the European Union, - any litigation arising between other parties and resulting from the interpretation of this License, will be subject to the exclusive jurisdiction of the competent court where the Licensor resides or conducts its primary business. 15. Applicable Law Without prejudice to specific agreement between parties, - this Licence shall be governed by the law of the European Union Member State where the Licensor has his seat, resides or has his registered office, - this licence shall be governed by Belgian law if the Licensor has no seat, residence or registered office inside a European Union Member State. Appendix ‘Compatible Licences’ according to Article 5 EUPL are: - GNU General Public License (GPL) v. 2, v. 3 - GNU Affero General Public License (AGPL) v. 3 - Open Software License (OSL) v. 2.1, v. 3.0 - Eclipse Public License (EPL) v. 1.0 - CeCILL v. 2.0, v. 2.1 - Mozilla Public Licence (MPL) v. 2 - GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3 - Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for works other than software - European Union Public Licence (EUPL) v. 1.1, v. 1.2 - Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong Reciprocity (LiLiQ-R+). The European Commission may update this Appendix to later versions of the above licences without producing a new version of the EUPL, as long as they provide the rights granted in Article 2 of this Licence and protect the covered Source Code from exclusive appropriation. All other changes or additions to this Appendix require the production of a new EUPL version. ================================================ FILE: MANIFEST.in ================================================ exclude notebooks/* exclude docs/* exclude examples/* include LICENSE ================================================ FILE: README.md ================================================ #

[![GitHub Stars](https://img.shields.io/github/stars/cgre-aachen/gempy.svg)](https://github.com/cgre-aachen/gempy/stargazers) [![GitHub Forks](https://img.shields.io/github/forks/cgre-aachen/gempy.svg)](https://github.com/cgre-aachen/gempy/network) [![Documentation Status](https://assets.readthedocs.org/static/projects/badges/passing-flat.svg)](http://docs.gempy.org) [![Build Status](http://terranigma-solutions.teamcity.com/app/rest/builds/buildType:(id:Gempy_TestingGemPy)/statusIcon)](http://terranigma-solutions.teamcity.com/viewType.html?buildTypeId=Gempy_TestingGemPy&guest=1) [![PyPI](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue)](https://www.python.org/downloads/) [![PyPI](https://img.shields.io/badge/pypi-1.0-blue.svg)](https://pypi.org/project/gempy/) [![license: EUPL v1.2](https://img.shields.io/badge/license-EUPL%20v1.2-blue.svg)](https://github.com/cgre-aachen/gempy/blob/master/LICENSE) [![DOI](https://zenodo.org/badge/96211155.svg)](https://zenodo.org/badge/latestdoi/96211155) ## What's New: GemPy 2024.1 (a.k.a GemPy v3) Release! Welcome to the era of GemPy v3! We are thrilled to announce the release of the latest version, a product of meticulous planning, redesign, and rigorous testing. While the core essence remains intact, v3 brings significant enhancements and novelties that promise to revolutionize your geomodeling experience. Delve into the exciting new features in the [What's New in GemPy v3](WhatsNewGemPy3.md). The journey from GemPy v2 to v3 has been transformative. To ensure that our users don't lose out on any previous functionalities, we've shifted v2 to a package named [gempy_legacy](https://github.com/gempy-project/gempy_legacy). While the core team will not develop any new features for this version, we'll continue maintaining it based on community requests. ## Overview [GemPy](https://www.gempy.org/) is a Python-based, **open-source geomodeling library**. It is capable of constructing complex **3D geological models** of folded structures, fault networks and unconformities, based on the underlying powerful **implicit representation** approach. ## Installation We provide the latest release version of GemPy via PyPi package services. We highly recommend using PyPi, `$ pip install gempy[base]` ## Resources After installation, you can either check the [notebook tutorials](https://docs.gempy.org/getting_started/get_started.html#sphx-glr-getting-started-get-started-py) or the [video introduction](https://www.youtube.com/watch?v=n0btC5Zilyc) to get started. Go to the [documentation site](http://docs.gempy.org/) for further information and enjoy the [tutorials and examples](https://www.gempy.org/tutorials). For questions and support, please use [discussions](https://github.com/cgre-aachen/gempy/discussions). If you find a bug or have a feature request, create an [issue](https://github.com/cgre-aachen/gempy/issues). Follow these [guidelines](https://github.com/cgre-aachen/gempy/blob/WIP_readme-update-march21/CONTRIBUTING.md) to contribute to GemPy. ## Gallery ### Geometries

colormapped image plot thumbnail colormapped image plot thumbnail colormapped image plot thumbnail
colormapped image plot thumbnail colormapped image plot thumbnail colormapped image plot thumbnail

### Features

colormapped image plot thumbnail colormapped image plot thumbnail colormapped image plot thumbnail
colormapped image plot thumbnail colormapped image plot thumbnail colormapped image plot thumbnail
### Case studies

colormapped image plot thumbnail colormapped image plot thumbnail colormapped image plot thumbnail
## Publications using GemPy * Marquetto, L., Jüstel, A., Troian, G.C., Reginato, P.A.R & Simões, J.C. (2024). [Developing a 3D hydrostratigraphical model of the emerged part of the Pelotas Basin along the northern coast of Rio Grande do Sul state, Brazil](https://link.springer.com/article/10.1007/s12665-024-11609-y). Environmental Earth Sciences, 83, 329. * Brisson, S., Wellmann, F., Chudalla, N., von Harten, J., & von Hagke, C. (2023). [Estimating uncertainties in 3-D models of complex fold-and-thrust belts: A case study of the Eastern Alps triangle zone](https://www.sciencedirect.com/science/article/pii/S2590197423000046). Applied Computing and Geosciences, 18, 100115. * Liang, Z., de la Varga, M., & Wellmann, F. (2023). [Kernel method for gravity forward simulation in implicit probabilistic geologic modeling](https://pubs.geoscienceworld.org/geophysics/article/88/3/G43/621596/Kernel-method-for-gravity-forward-simulation-in?casa_token=VjCR7rYOkKoAAAAA:W81L1AXgW_j9GiYPciBvLIdL8Zo66IzYVYiU6Ri8xLgIjbzTmpcDE74rzmAwnokX_71_XKg). Geophysics, 88(3), G43-G55. * Kong, S., Oh, J., Yoon, D., Ryu, D. W., & Kwon, H. S. (2023). [Integrating Deep Learning and Deterministic Inversion for Enhancing Fault Detection in Electrical Resistivity Surveys](https://www.mdpi.com/2076-3417/13/10/6250). Applied Sciences, 13(10), 6250. * Thomas, A. T., Micallef, A., Duan, S., & Zou, Z. (2023). [Characteristics and controls of an offshore freshened groundwater system in the Shengsi region, East China Sea](https://www.frontiersin.org/articles/10.3389/feart.2023.1198215/full). Frontiers in Earth Science, 11, 1198215. * Haehnel, P., Freund, H., Greskowiak, J. & Massmann, G. (2023) [Development of a three-dimensional hydrogeological model for the island of Norderney (Germany) using GemPy](https://doi.org/10.1002/gdj3.208). Geoscience Data Journal, 00, 1–17. * Jüstel, A., de la Varga, M., Chudalla, N., Wagner, J. D., Back, S., & Wellmann, F. (2023). [From Maps to Models-Tutorials for structural geological modeling using GemPy and GemGIS](https://jose.theoj.org/papers/10.21105/jose.00185). Journal of Open Source Education, 6(66), 185. * Thomas, A. T., von Harten, J., Jusri, T., Reiche, S., Wellmann, F. (2022). [An integrated modeling scheme for characterizing 3D hydrogeological heterogeneity of the New Jersey shelf](https://link.springer.com/article/10.1007/s11001-022-09475-z). Marine Geophysical Research, 43, 11. * Sehsah, H., Eldosouky, A. M., & Pham, L. T. (2022). [Incremental Emplacement of the Sierra Nevada Batholith Constrained by U-Pb Ages and Potential Field Data](https://www.journals.uchicago.edu/doi/full/10.1086/722724?casa_token=pkl8XXrtyokAAAAA:YeIh1t-qwt6AT8yz_vTj4OQapaR1_nZUjS3Az_77VZXlpyfGu0cN5DSzrz6NNjoj4Qv5iud4rdc). The Journal of Geology, 130(5), 381-391. * von Harten, J., de la Varga, M., Hillier, M., Wellmann, F. (2021). [Informed Local Smoothing in 3D Implicit Geological Modeling](https://www.mdpi.com/2075-163X/11/11/1281). Minerals 2021, 11, 1281. * Schaaf, A., de la Varga, M., Wellmann, F., & Bond, C. E. (2021). [Constraining stochastic 3-D structural geological models with topology information using approximate Bayesian computation in GemPy 2.1](https://gmd.copernicus.org/articles/14/3899/2021/gmd-14-3899-2021.html). Geosci. Model Dev., 14(6), 3899-3913. doi:10.5194/gmd-14-3899-2021 * Güdük, N., de la Varga, M. Kaukolinna, J. and Wellmann, F. (2021). [Model-Based Probabilistic Inversion Using Magnetic Data: A Case Study on the Kevitsa Deposit](https://www.mdpi.com/2076-3263/11/4/150), _Geosciences_, 11(4):150. * Wu, J., & Sun, B. (2021). [Discontinuous mechanical analysis of manifold element strain of rock slope based on open source Gempy](https://www.e3s-conferences.org/articles/e3sconf/abs/2021/24/e3sconf_caes2021_03084/e3sconf_caes2021_03084.html). In E3S Web of Conferences (Vol. 248, p. 03084). EDP Sciences. * Stamm, F. A., de la Varga, M., and Wellmann, F. (2019). [Actors, actions, and uncertainties: optimizing decision-making based on 3-D structural geological models](https://se.copernicus.org/articles/10/2015/2019/se-10-2015-2019.html), Solid Earth, 10, 2015–2043. * Wellmann, F., Schaaf, A., de la Varga, M., & von Hagke, C. (2019). [From Google Earth to 3D Geology Problem 2: Seeing Below the Surface of the Digital Earth]( https://www.sciencedirect.com/science/article/pii/B9780128140482000156). In Developments in Structural Geology and Tectonics (Vol. 5, pp. 189-204). Elsevier. Please let us know if your publication is missing! A continuously growing list of gempy-applications (e.g. listing real-world models) can be found [here](https://hackmd.io/@Japhiolite/B1juPvCxc). ## References * de la Varga, M., Schaaf, A., and Wellmann, F. (2019). [GemPy 1.0: open-source stochastic geological modeling and inversion](https://gmd.copernicus.org/articles/12/1/2019/gmd-12-1-2019.pdf), Geosci. Model Dev., 12, 1-32. * Wellmann, F., & Caumon, G. (2018). [3-D Structural geological models: Concepts, methods, and uncertainties.](https://hal.univ-lorraine.fr/hal-01921494/file/structural_models_for_geophysicsHAL.pdf) In Advances in Geophysics (Vol. 59, pp. 1-121). Elsevier. * Calcagno, P., Chilès, J. P., Courrioux, G., & Guillen, A. (2008). [Geological modelling from field data and geological knowledge: Part I. Modelling method coupling 3D potential-field interpolation and geological rules](https://www.sciencedirect.com/science/article/abs/pii/S0031920108001258). Physics of the Earth and Planetary Interiors, 171(1-4), 147-157. * Lajaunie, C., Courrioux, G., & Manuel, L. (1997). [Foliation fields and 3D cartography in geology: principles of a method based on potential interpolation](https://link.springer.com/article/10.1007/BF02775087). Mathematical Geology, 29(4), 571-584. ================================================ FILE: WhatsNewGemPy3.md ================================================ ## **What's New: GemPy v3 Release!** **Introducing GemPy Version 3: Future-Proofing GemPy and its Role in the Open-Source Geoscience Ecosystem** We are excited to announce the release of GemPy v3, which has been meticulously reworked to enhance robustness, reliability, and ease of installation. With this release, we aim to strengthen GemPy’s position as one of the cornerstones in the open-source geoscience ecosystem. Our ongoing commitment is to develop and provide a reliable and essential tool that promotes transparency and openness in geological modeling and beyond - thereby empowering users to realize their projects and implement novel scientific approaches. **1. Transition from GemPy v2 to v3: Significant Changes** While the core essence of GemPy remains unchanged, the upgrade from v2 to v3 introduces substantial changes to workflow steps and function names, potentially affecting familiar processes. To ensure that our users retain full access to previous functionalities and can continue running their existing GemPy v2-based projects, we have transitioned v2 to a package named [gempy_legacy](https://github.com/gempy-project/gempy_legacy). We have updated our documentation and tutorials to reflect the changes in GemPy v3 and are preparing additional support materials, including short videos that showcase key functionalities of the new version. Although the core GemPy team will not develop new features for the legacy version, we are committed to maintaining it based on community requests. **2. Refined API** The GemPy API has been extensively reworked to increase robustness and readiness for production environments. We've redesigned the API and data classes to optimize utility, minimize code repetition, and boost performance. **3. Transitioning from Theano/Aesara to NumPy & PyTorch** Due to discontinued support and frequent dependency issues with Theano/Aesara, we have decisively moved away from using these frameworks in GemPy (this transition also means that PyMC is no longer supported). Instead, to ensure GemPy's future-proofness, v3 incorporates a flexible tensor library framework that currently utilizes **`numpy`** and has optional dependencies on **`PyTorch`**. Our restructured code makes it easy to integrate additional tensor libraries in the backend. Additionally, similar functionalities to those provided by PyMC will be part of the upcoming **`gempy_probability`** module, which will enhance GemPy’s capabilities in probabilistic modeling. **4. General Refactoring for Greater Robustness** We've undertaken a refactoring of GemPy to enhance its robustness and reliability. Key improvements include: - **Enhanced State Management:** We’ve made improvements to ensure consistently valid states in GemPy. Before, invalid states could arise during data adjustments. - **Optimized Dependency Management:** We've streamlined the handling of dependencies. Most dependencies are now optional, which simplifies setup and integration for users. - **Modular Design:** We've divided GemPy into several distinct libraries. This modular approach allows users to leverage specific functionalities according to their needs: - **`gempy_engine`** [here](https://github.com/gempy-project/gempy_engine): Handles core computational algorithms. - **`gempy_viewer`** [here](https://github.com/gempy-project/gempy_viewer): Provides visualization capabilities. - **`gempy_plugins`** [here](https://github.com/gempy-project/gempy_plugins): Supports additional functionalities through plugins. - **`gempy_probability`**: Focuses on probabilistic modeling and uncertainty analysis (Coming soon). - **`gempy`**: Now leaner and primarily focused on documentation and managing the API. **5. Octree Implementation for Efficient Model Computation** We have introduced an octree-based approach in GemPy v3 to optimize model computation and iteration times. **6. Dual Contouring for High-Quality Meshing** To ensure compatibility with our new octree approach, we have implemented dual contouring in GemPy v3. This method guarantees high-quality mesh generation, enhancing both the precision and visual appeal of 3D geological models. **7. Initial Steps in LiquidEarth Integration** We have begun integrating GemPy with the [LiquidEarth app](https://www.terranigma-solutions.com/liquid-earth-one) to significantly extend GemPy's applicability in practical scenarios, enhancing workflow integration and data visualization capabilities. LiquidEarth, developed by the same main developers as GemPy, is a commercial, cloud-based software solution. It empowers experts to visualize, edit, and communicate geological data and models in intuitive 3D, facilitating real-time collaboration across multiple devices, independent of location. This integration aims to leverage LiquidEarth's commercial platform, which utilizes emerging technologies to provide novel environments for working with 3D geoscience data and focuses on ease of use and on offering a low entry barrier. Simultaneously, GemPy will continue to serve as a completely free and open-source tool, offering a flexible, reliable, and transparent solution for 3D geological modeling. Together, this direct integration between GemPy and LiquidEarth is designed to maximize the strengths of both systems: enhancing the visual representation of 3D geoscience projects, connecting them to the broader open-source geoscience ecosystem, and enhancing the utility of GemPy for companies and industry applications. 1. **Other Changes, Prototypes, and Future Developments** GemPy v3 introduces numerous other smaller changes and feature prototypes. These include optimizations to the nugget effect for improved model stability, the inclusion of external implicit functions for modeling features such as dykes, and a prototype to accommodate fault zone thickness. Additionally, improved caching mechanisms have been implemented to enhance performance. One of the most requested features, which we plan to address in the near future, is the implementation of finite faults. Stay tuned for future updates as we continue to expand the GemPy documentation, publish additional examples, and progress with developments. --- **In Conclusion** With the release of v3, we are reinforcing the role of GemPy as a key contributing piece within the larger open-source geoscience ecosystem. This update not only improves core functionalities but also introduces important integrations and enhancements that make it more robust and pave the way for future developments. Dedicated to advancing GemPy as a valuable tool for both academic research and industry applications, our team values your ongoing support and feedback. We invite you to explore the new features and join us in shaping the future of open-source geosciences. Looking forward to the results and innovative applications you achieve with this new version of GemPy! ================================================ FILE: docs/.buildinfo ================================================ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. config: 6b4aef288104d0a5b66327c5a7278fec tags: 645f666f9bcd5a90fca523b33c5a78b7 ================================================ FILE: docs/.nojekyll ================================================ ================================================ FILE: docs/CNAME ================================================ gempy.rocks ================================================ FILE: docs/Makefile ================================================ # Minimal makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build SPHINXPROJ = gempy SOURCEDIR = source BUILDDIR = build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) html-noplot: export SPHX_GLR_THEME = $(theme) html-noplot: $(SPHINXBUILD) -D plot_gallery=0 -b html $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." ================================================ FILE: docs/__init__.py ================================================ ================================================ FILE: docs/developers_notes/dev_log/2022-2023.md ================================================ ## Refactoring for v3 notes: - I want to make proper subpackages of the library - Once the subpackages are done we can start moving them out to different repos - First proposition: - integration tests - notebooks - scripts - examples - GemPy - Plugins: - Addons - Assets - Bayesian - API - API Modules - gempy_api - Plotting - Core - Data - Interpolation - Theano - GemPy Engine > I think Pluggins and addons have to be split depending on how couple are they to the interpolator? ## Refactoring notes: Doing: - [-] Refactoring interpolation (Aug-Sep 2023) - TODO: - [ ] Saving and loading models (Sep-Oct 2023) - [ ] Refactoring Geophysics (Oct-Nov 2023) - [ ] Refactoring topology - [ ] Orientations from surface points - Move to gempy_plugins ================================================ FILE: docs/developers_notes/dev_log/2025_05.md ================================================ ### From gempy_prob notes: **Saving models** - ? Do we want to try to save the full input as versioning so that we can just have one system to go back and forth? - A way to save the model already with the correct **nugget effects** instead of having to "load nuggets" # TODO: -[ ] Saving and loading models - [x] Make tests passing for InterpOptions serializable - [x] Dealing with large numpy arrays - [x] Trying to have a better implementation for deserializing complex fields - [ ] Make save and load function -[ ] Better api for nugget effect optimization ## Saving models - From gempy - StructuralFrame - OrientationsTable - SurfacePointsTable - From Engine - Input - EngineGrid - GeophysicsInput - InterpolationOptions - InputDataDescriptor - InterpolatorInput - Solutions (Not sure if I want to save them) - RawArraysSolutions - Solutions - Testing - [ ] 10 Test to go in modules - [ ] test api ## What do I have in the engine server logic? ================================================ FILE: docs/developers_notes/dev_log/log_2024-05.md ================================================ ## Optimizing solver ### Debugging Vector model 1 #### Questions - [x] How many times do the system of equations gets solved? - Without caching is 1 per scalar field x 2 (centers and corners) x n_octree levels - [x] How many iterations we need to reach the solution? - Model 1 takes 5000 iterations (actually starts to diverge after 4k) - [ ] Has Pykeops become slower with the latest additions to the gradient? - [x] Is the Jacobi pre-conditioner bad for all cases? - Model 1: - Numpy Jacobi: Converge in - 1602 iterations and reach 5000 - time 150 sec - More or less good results: Mesh closed - Numpy No jacobi - 1018 iterations and reach 5000 - time 150 sec too - Results similar? I would say maybe a bit worse - Pykeosp No jacobi - 92 iterations and reach 5000 - time 324 (all on running the solver) - [ ] Can be that pykeops is faster than invert the matrix but still slower that any other CG - Since the matrix is already constructed, it makes sense - [ ] Then which cases is worth using pykeops? The number of iterations will need to be rather small Will it make sense on edits reusing the previous weights? This is going to need a hell of orchestrator - [ ] How much memory takes numpy direct, numpy cg and pykeops cg - numpy direct: 1.5 or so - numpy cg: 1.25 - pykeops cg: 1.1 - **Note** Now the exporting takes quite a lot of memory ### Experiments conclusions - Using pykeops CG to solve a ill posed problem is not realistic - if the model fits in memory probably the best thing to do is make the first run in torch an use the weights as initial point - if the model does not fit in memory we should try to construct the sparse version of it and try to run the incomplete cholesky decomposition - I didn't find any improvement using the Jacobi pre-conditioner. Mostly the opposite - With ichol we get different results with numpy or pykeops - Pykeops - ichol does not give super good results either at least before the convergence happens - Model 1 converge **without** ichol on 1290 and 8518 - Model 1 converge **With** ichol 496 (506 in pykeops) 5080 (4995 in pykeops) ### TODO: - [x] Clean solver interface - [ ] Add citation for pymatting ### Things to try: - [x] Pykeops as linear operator to use exact solver - Does not look good. Probably is not even possible mathematically - [x] Falkon ### Optimal solver - Tools we have: - keops - CG - Incomplete cholesky decomposition - passing the weights as initial point - Variables to choose what to use: - Size of the covariance matrix - Number of CG iterations we are going to need. This depends on: - Conditional number - Do we have weights - **Strategy**: - If the Number of CG iterations is a handful -> **use keops** - If the number of CG iterations is large: - Use **direct solver** if the matrix fits in memory - Then for changes hopefully we can use the weights as initial point and use **keops** - If the matrix does not fit in memory: - Construct the sparse version of the matrix - Use **incomplete cholesky decomposition** - Once we have the decomposition is better to use **keops** to solve the system (except if the number of iterations has to be very large) - Optimizing nugget effects still seems the best way to do this - If memory is not an issue. **Direct solver with torch and keops for exporting seems to be the best option** #### Notes - [ ] I need to make similar default env file for gempy itself and using the default when we call the engine or whatever ================================================ FILE: docs/developers_notes/dev_log/log_2024-06-25.md ================================================ ## Goals - [ ] 1. Fixing 2024.2.0 for whatever version of python that is not working ## TODO: - [x] Analyze error: - [x] Set up environment 3.11 - [x] Fixing the lines of code - [x] Test the code - [ ] Release hot fix ## Extra points: - [ ] Setting up github actions - [ ] Categories for the tests like I did in subsurface - [ ] Run tests in python 3.10, 3.11 and 3.12 ================================================ FILE: docs/developers_notes/dev_log/log_2024-06.md ================================================ # Refactoring grid to add transform ## TODO: - [x] Rotation of pyvista grid - [x] Rotation of pyvista meshes - [ ] Run something with octrees again - [ ] **We do need settings presets** ## Release Notes: - (Beta) Pivot grids - Analysis tools: - Eigenvalues and condition numbers - Transformed data plots - Octree refinement evaluation - Improved octree testing - LiquidEarth integration - Chunking for large grids ## Notes: ### Optimizing interpolation June 2024 - Create_grad_kernel is call 27 times ### Wholes issue - Spremberg with 1.5 std of extra refinement: Number of voxels marked by stats: 424 of torch.Size([512]). Number of voxels marked total by corners: 281 Dense Grid would be 512 voxels Number of voxels marked by stats: 2535 of torch.Size([3568]). Number of voxels marked total by corners: 1492 Dense Grid would be 4096 voxels Number of voxels marked by stats: 12148 of torch.Size([21152]). Number of voxels marked total by corners: 7614 Dense Grid would be 32768 voxels Number of voxels marked by stats: 69619 of torch.Size([101432]). Number of voxels marked total by corners: 37423 Dense Grid would be 262144 voxels Chunking done: 12 chunks - Spremberg with 1 Number of voxels marked by stats: 408 of torch.Size([512]). Number of voxels marked total by corners: 281 Dense Grid would be 512 voxels Number of voxels marked by stats: 1953 of torch.Size([3504]). Number of voxels marked total by corners: 1492 Dense Grid would be 4096 voxels Number of voxels marked by stats: 8632 of torch.Size([16856]). Number of voxels marked total by corners: 7612 Dense Grid would be 32768 voxels Chunking done: 13 chunks Number of voxels marked by stats: 47653 of torch.Size([79080]). Number of voxels marked total by corners: 37408 Dense Grid would be 262144 voxels Chunking done: 10 chunks ### Other: {'_cached_pivot': [200, 200, 0], '_is_default_transform': False, 'position': array([0., 0., 0.]), 'rotation': array([ 0., -0., -45.]), 'scale': array([1., 1., 1.])} ## Questions: ================================================ FILE: docs/index.html ================================================ Title ================================================ FILE: docs/main_docstrings ================================================ :class:`gempy.interpolator.InterpolatorData` :class:`gempy.data_management.InputData` :class:`gempy.data_management.GridClass` :class:`_pn.core.frame.DataFrame` :class:`_np.ndarray` :class:`matplotlib.pyplot.Figure` :class:`DataFrame` :class:`ndarray` itype(str {'all', 'interfaces', 'orientaions', 'formations', 'series', 'faults', 'fautls_relations'}): input data type to be retrieved. ================================================ FILE: docs/source/_static/nothing.txt ================================================ ================================================ FILE: docs/source/_templates/base.rst ================================================ {{ fullname | escape | underline}} .. currentmodule:: {{ module }} .. auto{{ objtype }}:: {{ objname }} .. include:: ../gen_modules/backreferences/{{fullname}}.{{item}}examples .. raw:: html

================================================ FILE: docs/source/_templates/class.rst ================================================ {{ fullname | escape | underline}} .. currentmodule:: {{ module }} .. autoclass:: {{ objname }} :no-undoc-members: {% block examples%} .. include:: ../gen_modules/backreferences/{{fullname}}.examples .. raw:: html
{% endblock %} {% block methods %} {% if methods %} .. rubric:: Methods .. autosummary:: {% for item in methods %} ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %} {% block attributes %} {% if attributes %} .. rubric:: Attributes .. autosummary:: {% for item in attributes %} ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %} ================================================ FILE: docs/source/_templates/module.rst ================================================ {{ fullname | escape | underline}} .. automodule:: {{ fullname }} {% block functions %} {% if functions %} .. rubric:: Functions .. autosummary:: {% for item in functions %} {{ item }} {%- endfor %} {% endif %} {% endblock %} {% block classes %} {% if classes %} .. rubric:: Classes .. autosummary:: {% for item in classes %} {{ item }} {%- endfor %} {% endif %} {% endblock %} {% block exceptions %} {% if exceptions %} .. rubric:: Exceptions .. autosummary:: {% for item in exceptions %} {{ item }} {%- endfor %} {% endif %} {% endblock %} ================================================ FILE: docs/source/api_reference.rst ================================================ Code ==== .. toctree:: :maxdepth: 3 GemPy API --------- .. currentmodule:: gempy .. autosummary:: :toctree: GemPy API :template: base.rst compute_model create_geomodel map_stack_to_surfaces structural_elements_from_borehole_set set_section_grid set_active_grid set_topography_from_random set_topography_from_file set_topography_from_subsurface_structured_grid set_topography_from_arrays set_custom_grid set_centered_grid generate_example_model set_fault_relation set_is_fault set_is_finite_fault add_surface_points add_orientations delete_surface_points delete_orientations create_orientations_from_surface_points_coords modify_surface_points modify_orientations add_structural_group remove_structural_group_by_index remove_structural_group_by_name remove_element_by_name calculate_gravity_gradient Plot ---- .. currentmodule:: gempy_viewer .. autosummary:: :toctree: Plot :template: base.rst plot_2d plot_3d Data Classes ============ .. toctree:: :maxdepth: 3 Modeling Classes ---------------- .. module:: gempy.core.data .. autosummary:: :toctree: Modeling Classes :template: class.rst GeoModel StructuralFrame StructuralGroup StructuralElement SurfacePointsTable OrientationsTable InterpolationOptions Grid Topography Solutions RawArraysSolution FaultsData GeophysicsInput Transform Helper Classes -------------- .. currentmodule:: gempy.core.data .. autosummary:: :toctree: Helper Classes :template: class.rst ImporterHelper GemPyEngineConfig ColorsGenerator Enumerators ----------- .. currentmodule:: gempy.core.data .. autosummary:: :toctree: Modeling Classes :template: class.rst StackRelationType GlobalAnisotropy AvailableBackends FaultsRelationSpecialCase ================================================ FILE: docs/source/conf.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # # GemPy documentation build configuration file, created by # sphinx-quickstart on Tue Jul 4 10:28:52 2017. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # import datetime import os import sys import warnings import pyvista from sphinx_gallery.sorting import FileNameSortKey import gempy # External examples: sys.path.insert(0, os.path.abspath('.')) import make_external_gallery make_external_gallery.make_example_gallery() # region PyVista Configuration pyvista.set_error_output_file('errors.txt') pyvista.OFF_SCREEN = True # Not necessary - simply an insurance policy. Ensure that offscreen rendering is used for docs generation pyvista.set_plot_theme('document') # Preferred plotting style for documentation pyvista.FIGURE_PATH = os.path.join(os.path.abspath('_images/'), 'auto-generated/') # Save figures in specified directory pyvista.BUILDING_GALLERY = True if not os.path.exists(pyvista.FIGURE_PATH): os.makedirs(pyvista.FIGURE_PATH) sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. # # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinx.ext.githubpages', 'sphinx.ext.napoleon', 'sphinx_gallery.gen_gallery', "pyvista.ext.plot_directive", "sphinx_design", 'sphinx_automodapi.automodapi', 'sphinx_automodapi.smart_resolver', ] if run_intersphinx := False: # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { 'numpy' : ('https://numpy.org/doc/stable/', None), 'python' : ('https://docs.python.org/{.major}'.format(sys.version_info), None), 'matplotlib': ('https://matplotlib.org/stable/', None), 'mayavi' : ('http://docs.enthought.com/mayavi/mayavi', None), 'sklearn' : ('https://scikit-learn.org/stable', None), 'skimage' : ('https://scikit-image.org/docs/dev/', None), 'pyvista' : ('https://docs.pyvista.org/', None), 'sphinx' : ('https://www.sphinx-doc.org/en/master/', None), 'pandas' : ('https://pandas.pydata.org/pandas-docs/stable/', None), } napoleon_google_docstring = True autodoc_default_options = { 'autodoc_default_flags': ['members'], 'members' : None, 'member-order' : 'bysource', 'special-members' : '__init__', 'undoc-members' : True, 'exclude-members' : '__weakref__' } autosummary_generate = True autosummary_imported_members = True # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst'] # The master toctree document. master_doc = 'index' # region General information about the project. project = 'GemPy' year = datetime.date.today().year copyright = u'2017-{}, Gempy Developers'.format(year) with open(os.path.join(os.path.dirname(__file__), '../../AUTHORS.rst'), 'r') as f: author = f.read() version = gempy.__version__ release = gempy.__version__ # The full version, including alpha/beta/rc tags. today_fmt = '%d %B %Y' language = 'en' # endregion # region building the documentation configuration # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path exclude_patterns = ['_build', '**.ipynb_checkpoints', 'Thumbs.db', '.DS_Store', 'errors.txt', '../test'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' highlight_language = 'python3' todo_include_todos = True # If true, `todo` and `todoList` produce output, else they produce nothing. linkcheck_retries = 3 linkcheck_timeout = 500 # * -- Sphinx Gallery Options sphinx_gallery_conf = { # path to your examples scripts "examples_dirs" : [ "../../examples/tutorials", "../../examples/examples", # "../../examples/integrations", ], # path where to save gallery generated examples "gallery_dirs" : [ 'tutorials', "examples", # 'integrations' ], "filename_pattern" : r"\.py", # "ignore_pattern": r"(__init__\.py|ch1_7_3d_visualization\.py|mik\.py)$", # Exclude specific files: uncomment for faster build as long as examples are broken "download_all_examples" : False, # Remove the "Download all examples" button from the top level gallery "within_subsection_order": FileNameSortKey, # Sort gallery example by file name instead of number of lines (default) "backreferences_dir" : 'gen_modules/backreferences', # directory where function granular galleries are stored "doc_module" : ("gempy", "gempy_viewer", 'numpy', 'pandas', 'matplotlib'), # Modules for which function level galleries are created. In "image_scrapers" : ('pyvista', 'matplotlib'), 'first_notebook_cell' : ("%matplotlib inline\n" "from pyvista import set_plot_theme\n" "set_plot_theme('document')"), 'reference_url' : { 'gempy': None, # The module you locally document uses None 'numpy': 'https://numpy.org/doc/stable/' }, } # endregion # region -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'alabaster' html_theme_options = { 'github_user' : 'gempy-project', 'github_repo' : 'gempy', 'github_type' : 'star', 'logo' : 'logos/gempy.png', 'logo_name' : False, 'travis_button' : False, 'page_width' : '1200px', 'fixed_sidebar' : False, 'show_related' : True, 'sidebar_collapse': True, } # Custom sidebar templates, maps document names to template names. # html_sidebars = { '**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html']} html_sidebars = {'**': ['about.html', 'navigation.html', 'relations.html', 'searchbox.html', 'donate.html', ]} # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] html_favicon = '_static/logos/favicon.ico' # endregion # -- Options for HTMLHelp output ------------------------------------------ # Output file base name for HTML help builder. htmlhelp_basename = 'GemPydoc' # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [(master_doc, 'gempy', 'GemPy Documentation', [author], 1)] # region other options # Remove matplotlib agg warnings from generated doc when using plt.show warnings.filterwarnings("ignore", category=UserWarning, message='Matplotlib is currently using agg, which is a' ' non-GUI backend, so cannot show the figure.') # endregion ================================================ FILE: docs/source/index.rst ================================================ .. GeMpy documentation master file, created by sphinx-quickstart on Wed Dec 14 12:44:40 2016. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. .. ../logos/gempy1.png :width: 30% About ===== Open-source software for implicit 3D structural geological modeling in Python. ****************************************************************************** Overview -------- ``GemPy`` is a Python-based, community-driven, **open-source geomodeling library**. It is capable of constructing complex **3D geological models** including various features such as fold structures, fault networks and unconformities, based on an underlying powerful **implicit** approach. From the ground up, ``GemPy`` was designed to be easily embedded in probabilistic frameworks for conducting uncertainty analysis regarding subsurface structures. .. Check out the documentation either in `gempy.org `_ (better option), or `read the docs `_. 3D models created with GemPy may look like this: .. image:: ./_images/AlesModel_example.png Contents: .. toctree:: :maxdepth: 1 self installation .. toctree:: :maxdepth: 1 tutorials/index examples/index .. toctree:: :maxdepth: 1 external/external_examples .. toctree:: :maxdepth: 1 api_reference Features -------- Geological features ^^^^^^^^^^^^^^^^^^^ ``GemPy`` is capable of modeling complex 3D geological scenarios, including: * Multiple conformal layers (e.g. sequences of sedimentary layers) * Several sequences of layers, with conformal continuation or unconformities * Magmatic bodies of (almost) arbitrary shapes * Faults (offset calculated automatically from affected geological objects) * Full fault networks (faults affecting faults) * Folds (affecting single layers or entire layer stacks, including overturned and recumbent folds) Combining these elements in GemPy allows for the generation of realistic 3D geological models, on a par with most commercial geomodeling software. Interpolation approach ^^^^^^^^^^^^^^^^^^^^^^ The generation of complex structural settings is based on the powerful interpolation algorithm underlying ``GemPy``\ , a unviersal cokriging method devised by `Lajaunie et al. (1997)` and extended by `Calcagno et al. (2008)`\ . This method is used to interpolate a 3D scalar field, such that geologically significant interfaces are isosurfces in this field. The algorithm allows for a direct integration of two of the most relevant geological input data types: * **Surface contact points**\ : 3D coordinates of points marking the boundaries between different features (e.g. layer interfaces, fault planes, unconformities). * **Orientation measurements**\ : Orientation of the poles perpendicular to the dipping of surfaces at any point in 3D space. ``GemPy`` also allows for the definition of topological elements such as combining multiple stratigraphic sequences and complex fault networks to be considered in the modeling process. .. image:: ./_images/data_to_model.png Integrated visualization ^^^^^^^^^^^^^^^^^^^^^^^^ Models generated with ``GemPy`` can be visualized in several ways: * direct visualization of 2D model sections (or geological maps) using `matplotlib `_, including hillshading and other options for intuitive representation of results; * 3D visualization using `Pyvista `_, including interactive plots .. image:: _images/3D_view_pyvista_example.png :target: https://cgre-aachen.github.io/gempy/_images/sphx_glr_ch1_1_basics_009.png :width: 70% For a more detailed elaboration of the theory behind ``GemPy``\ , we refer to the **open access scientific publication**\ : `\ "GemPy 1.0: open-source stochastic geological modeling and inversion" by de la Varga et al. (2019) `_. Publications using GemPy ------------------------ - Marquetto, L., Jüstel, A., Troian, G.C., Reginato, P.A.R & Simões, J.C. (2024). `Developing a 3D hydrostratigraphical model of the emerged part of the Pelotas Basin along the northern coast of Rio Grande do Sul state, Brazil `_. Environmental Earth Sciences, 83, 329. - Brisson, S., Wellmann, F., Chudalla, N., von Harten, J., & von Hagke, C. (2023). `Estimating uncertainties in 3-D models of complex fold-and-thrust belts: A case study of the Eastern Alps triangle zone `_. Applied Computing and Geosciences, 18, 100115. - Liang, Z., de la Varga, M., & Wellmann, F. (2023). `Kernel method for gravity forward simulation in implicit probabilistic geologic modeling `_. Geophysics, 88(3), G43-G55. - Kong, S., Oh, J., Yoon, D., Ryu, D. W., & Kwon, H. S. (2023). `Integrating Deep Learning and Deterministic Inversion for Enhancing Fault Detection in Electrical Resistivity Surveys `_. Applied Sciences, 13(10), 6250. - Thomas, A. T., Micallef, A., Duan, S., & Zou, Z. (2023). `Characteristics and controls of an offshore freshened groundwater system in the Shengsi region, East China Sea `_. Frontiers in Earth Science, 11, 1198215. - Haehnel, P., Freund, H., Greskowiak, J., & Massmann, G. (2023). `Development of a three-dimensional hydrogeological model for the island of Norderney (Germany) using GemPy `_. Geoscience Data Journal, 00, 1–17. - Jüstel, A., de la Varga, M., Chudalla, N., Wagner, J. D., Back, S., & Wellmann, F. (2023). `From Maps to Models-Tutorials for structural geological modeling using GemPy and GemGIS `_. Journal of Open Source Education, 6(66), 185. - Thomas, A. T., von Harten, J., Jusri, T., Reiche, S., & Wellmann, F. (2022). `An integrated modeling scheme for characterizing 3D hydrogeological heterogeneity of the New Jersey shelf `_. Marine Geophysical Research, 43, 11. - Sehsah, H., Eldosouky, A. M., & Pham, L. T. (2022). `Incremental Emplacement of the Sierra Nevada Batholith Constrained by U-Pb Ages and Potential Field Data `_. The Journal of Geology, 130(5), 381-391. - von Harten, J., de la Varga, M., Hillier, M., & Wellmann, F. (2021). `Informed Local Smoothing in 3D Implicit Geological Modeling `_. Minerals 2021, 11, 1281. - Schaaf, A., de la Varga, M., Wellmann, F., & Bond, C. E. (2021). `Constraining stochastic 3-D structural geological models with topology information using approximate Bayesian computation in GemPy 2.1 `_. Geosci. Model Dev., 14(6), 3899-3913. doi:10.5194/gmd-14-3899-2021. - Güdük, N., de la Varga, M., Kaukolinna, J., & Wellmann, F. (2021). `Model-Based Probabilistic Inversion Using Magnetic Data: A Case Study on the Kevitsa Deposit `_. Geosciences, 11(4):150. - Wu, J., & Sun, B. (2021). `Discontinuous mechanical analysis of manifold element strain of rock slope based on open source Gempy `_. In E3S Web of Conferences (Vol. 248, p. 03084). EDP Sciences. - Stamm, F. A., de la Varga, M., & Wellmann, F. (2019). `Actors, actions, and uncertainties: optimizing decision-making based on 3-D structural geological models `_. Solid Earth, 10, 2015–2043. - Wellmann, F., Schaaf, A., de la Varga, M., & von Hagke, C. (2019). `From Google Earth to 3D Geology Problem 2: Seeing Below the Surface of the Digital Earth `_. In Developments in Structural Geology and Tectonics (Vol. 5, pp. 189-204). Elsevier. References ---------- * de la Varga, M., Schaaf, A., and Wellmann, F.: GemPy 1.0: `open-source stochastic geological modeling and inversion,` Geosci. Model Dev., 12, 1–32, https://doi.org/10.5194/gmd-12-1-2019, 2019. * Calcagno, P., Chilès, J. P., Courrioux, G., & Guillen, A. (2008). `Geological modelling from field data and geological knowledge: Part I. Modelling method coupling 3D potential-field interpolation and geological rules.` Physics of the Earth and Planetary Interiors, 171(1-4), 147-157. * `Lajaunie, C., Courrioux, G., & Manuel, L. (1997). `Foliation fields and 3D cartography in geology: principles of a method based on potential interpolation.` Mathematical Geology, 29(4), 571-584. Indices and tables ================== * :ref:`genindex` * :ref:`search` .. image:: _static/logos/logo_CGRE.png :width: 40% .. image:: _static/logos/Terranigma.png :width: 40% ================================================ FILE: docs/source/installation.rst ================================================ .. role:: raw-html-m2r(raw) :format: html Installation ------------ Installing ``GemPy`` ^^^^^^^^^^^^^^^^^^^^ The latest release version of ``GemPy`` is available via **PyPi**. To install the core version, simply use pip: .. code-block:: bash $ pip install gempy This will install ``GemPy`` with the minimal required dependencies. GemPy viewer ^^^^^^^^^^^^ For visualization in 2-D and 3-D, the additional package ``gempy-viewer`` can be used and installed with: .. code-block:: bash $ pip install gempy-viewer The 3-D visualization is based on `pyvista`. This package needs to be installed separately. Please check: - PyVista: Installation guide available on the `PyVista installation page `_. Enhanced Installation Options ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ For additional features, ``GemPy`` offers enhanced installation options: - Base Features: For the majority of functionalities, install with base dependencies: .. code-block:: bash $ pip install gempy[base] - Optional Features: To access optional features such as data download support, install with optional dependencies: .. code-block:: bash $ pip install gempy[opt] - Development Version: For development purposes, including testing tools: .. code-block:: bash $ pip install gempy[dev] Note: Some advanced functionalities in ``GemPy`` require `PyTorch`. For installation, please follow the instructions on the `PyTorch installation page `_. Manual Installation ^^^^^^^^^^^^^^^^^^^ For the latest, cutting-edge version of ``GemPy``, you can clone the repository and install it manually: 1. Clone the repository: .. code-block:: bash $ git clone https://github.com/cgre-aachen/gempy.git 2. Navigate to the root of the cloned repository and install using pip: .. code-block:: bash $ pip install -e . Dependencies ^^^^^^^^^^^^ ``GemPy`` relies on numerous open-source libraries. Core dependencies are automatically installed with the package. Enhanced functionalities require additional dependencies, structured as follows: - Core Dependencies: Installed with the basic package. - Base Dependencies: Additional libraries for extended functionalities (`base-requirements.txt`). - Optional Dependencies: Libraries for optional features (`optional-requirements.txt`). - Development Dependencies: Tools needed for development (`dev-requirements.txt`). ================================================ FILE: docs/source/make_external_gallery.py ================================================ """ Modified after https://github.com/pyvista/pyvista/blob/ab70c26edbcfb107286c827bd4914562056219fb/docs/make_external_gallery.py A helper script to generate the external 2-examples gallery. """ import os from io import StringIO def format_icon(title, description, link, image): body = r""" .. grid-item-card:: {} :link: {} :text-align: center :class-title: pyvista-card-title .. image:: {} """ content = body.format(title, link, image) return content class Example(): def __init__(self, title, description, link, image): self.title = title self.description = description self.link = link self.image = image def format(self): return format_icon(self.title, self.description, self.link, self.image) ############################################################################### articles = dict( _1=Example( title="Vector Model 1: Construction", description="Build a basic structural model", link="https://vector-raw-materials.github.io/vector-geology/examples/02_structural_modeling/01_model_1_gempy_step_by_step.html#sphx-glr-examples-02-structural-modeling-01-model-1-gempy-step-by-step-py", image="https://vector-raw-materials.github.io/vector-geology/_images/sphx_glr_01_model_1_gempy_step_by_step_001.png", ), _2=Example( title="Vector Model 1: Forward Gravity", description="Get the gravity response of the model", link="https://vector-raw-materials.github.io/vector-geology/examples/03_forward_engines/02_model_1_gempy_fw_gravity.html#sphx-glr-examples-03-forward-engines-02-model-1-gempy-fw-gravity-py", image="https://vector-raw-materials.github.io/vector-geology/_images/sphx_glr_02_model_1_gempy_fw_gravity_003.png", ), _3=Example( title="Spremberg: Importing Boreholes", description="Import data from well csv files", link="https://vector-raw-materials.github.io/vector-geology/examples/02_structural_modeling/03_model_spremberg_import.html#sphx-glr-examples-02-structural-modeling-03-model-spremberg-import-py", image="https://vector-raw-materials.github.io/vector-geology/_images/sphx_glr_03_model_spremberg_import_003.png", ), _4=Example( title="Spremberg: Constructing the Model", description="Build a structural model from borehole data", link="https://vector-raw-materials.github.io/vector-geology/examples/02_structural_modeling/04_model_spremberg_building.html#sphx-glr-examples-02-structural-modeling-04-model-spremberg-building-py", image="https://vector-raw-materials.github.io/vector-geology/_images/sphx_glr_04_model_spremberg_building_008.png", ), ) ############################################################################### def make_example_gallery(): """Make the example gallery.""" path = "./external/external_examples.rst" with StringIO() as new_fid: new_fid.write( """ .. _external_examples: External Examples ================== Vector Examples --------------- These are examples from the Vector project. .. grid:: 3 :gutter: 1 """ ) # Reverse to put the latest items at the top for example in list(articles.values())[::-1]: new_fid.write(example.format()) new_fid.write( """ .. raw:: html
""" ) new_fid.seek(0) new_text = new_fid.read() # check if it's necessary to overwrite the table existing = "" if os.path.exists(path): with open(path) as existing_fid: existing = existing_fid.read() # write if different or does not exist if new_text != existing: with open(path, "w", encoding="utf-8") as fid: fid.write(new_text) return ================================================ FILE: examples/__init__.py ================================================ ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_faults.csv ================================================ ,isFault,isFinite EarlyGranite_Series,False,False BIF_Series,False,False SimpleMafic_Series,False,False Basement,False,False ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_faults_relations.csv ================================================ ,EarlyGranite_Series,BIF_Series,SimpleMafic_Series,Basement EarlyGranite_Series,False,False,False,False BIF_Series,False,False,False,False SimpleMafic_Series,False,False,False,False Basement,False,False,False,False ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_kriging_data.csv ================================================ ,range,$C_o$,drift equations,nugget grad,nugget scalar values,86591.22357375486,178524761.9047619,[3 3 3 0],0.01,1e-06 ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_options.csv ================================================ ,dtype,output,aesara_optimizer,device,verbosity values,float64,geology,fast_compile,cpu,[] ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series,smooth 15,743403.6875,6877878.25,454.74995199999995,0.7289193836681321,0.3393090442016824,0.5454662898901393,0.17435731030158103,-0.9692501424997381,0.17364817766793042,80.0,169.802194,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 16,738704.4065,6877046.0,458.14874000000003,0.6805345417666262,0.33074001317916457,0.5455012845669923,0.17005791273562937,-0.9700137198552169,0.17364817766793042,80.0,170.056246,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 17,735326.7815,6875283.75,452.96645599999994,0.6457577638664378,0.31259549540273673,0.5454479266188236,0.8938984296759075,-0.4132697760747355,0.17364817766793042,80.0,114.81218500000001,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 18,734151.969,6874304.75,448.179887,0.6336616331867841,0.30251549375534115,0.5453986430402685,-0.4396965705831378,-0.8811998843666176,0.17364817766793042,80.0,206.51804199999998,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 19,734200.938,6875724.5,461.98580400000003,0.6341658288973772,0.31713355538852794,0.5455407918309771,-0.857926514169013,0.4835373891210603,0.17364817766793042,80.0,299.406115,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 20,735082.063,6879102.25,480.551436,0.6432380877855911,0.35191162031650586,0.5457319477054868,-0.9791340537242994,0.10555953404893238,0.17364817766793042,80.0,276.153239,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 21,734592.563,6882039.25,487.287083,0.6381980869618933,0.38215162525869256,0.5458012994244411,-0.6723043953762564,-0.7196201153024675,0.17364817766793042,80.0,223.05309300000002,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 22,732683.469,6882332.75,481.71195199999994,0.6185416307156908,0.38517356650844803,0.5457438966362241,0.3108420554206961,-0.9344642994644278,0.17364817766793042,80.0,161.600709,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 23,730627.5315,6880472.5,477.40265800000003,0.5973732411478233,0.36602001894504904,0.545699527187175,0.8442658343469975,-0.5070123384573562,0.17364817766793042,80.0,120.98634799999999,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 24,728767.4065,6878759.25,470.031623,0.5782209806122138,0.3483800160621068,0.5456236333721157,0.23857012308693834,-0.9554740220235208,0.17364817766793042,80.0,165.980598,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 25,728571.594,6879934.25,472.536776,0.5762048515799557,0.3604780772834447,0.5456494269843395,-0.8624104574918853,0.4754939675756334,0.17364817766793042,80.0,298.87034700000004,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 26,729256.9065,6882724.5,471.72292400000003,0.5832609814359115,0.38920711160075366,0.5456410473832151,-0.9822538012829838,-0.07087863046064441,0.17364817766793042,80.0,265.87273700000003,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 27,727739.4375,6884242.0,474.25872599999997,0.567636783254224,0.4048316289653326,0.5456671565643565,-0.10193532939980383,-0.9795179932042825,0.17364817766793042,80.0,185.941204,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 28,724802.4065,6883312.0,473.707869,0.5373964591291459,0.39525614221142263,0.5456614848182202,0.5700993409362939,-0.8030149761097184,0.17364817766793042,80.0,144.627207,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 29,722403.813,6880913.25,470.70706500000006,0.5127000072073552,0.37055807893084025,0.5456305878731094,0.8192953473908405,-0.5464443650887268,0.17364817766793042,80.0,123.702047,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 30,721229.0005,6880766.25,477.680894,0.5006038765277017,0.3690445342503835,0.5457023919668873,-0.955039237532274,-0.24030473396155966,0.17364817766793042,80.0,255.876557,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 31,720690.563,6882822.25,489.90942300000006,0.495060004324413,0.39021356733214585,0.5458282996200694,-0.9487350298778479,-0.26409875704593466,0.17364817766793042,80.0,254.444427,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 32,718928.344,6883605.5,509.462245,0.4769158057308778,0.3982780834611781,0.5460296198222871,0.06399643026772625,-0.9827261914206341,0.17364817766793042,80.0,176.27408400000002,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 33,715991.2815,6882773.25,505.16586399999994,0.4466751572747963,0.3897090524386603,0.5459853833283568,0.4523816530880285,-0.8747554803151861,0.17364817766793042,80.0,152.65415900000002,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 34,712907.3755,6880766.25,512.582136,0.41492257549704975,0.3690445342503835,0.546061742913625,0.5981974408083341,-0.7823082079353031,0.17364817766793042,80.0,142.59641100000002,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 35,710459.844,6880521.5,511.839758,0.38972224704755865,0.36652453383853467,0.5460540992246945,-0.7829565734412656,-0.5973485703467495,0.17364817766793042,80.0,232.658556,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 36,709970.344,6882724.5,532.9679150000001,0.3846822462238609,0.38920711160075366,0.5462716394262945,-0.9555635021311216,0.23821146862908438,0.17364817766793042,80.0,283.99789599999997,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 37,709089.2505,6883312.0,519.457428,0.37561031166664915,0.39525614221142263,0.5461325324485446,0.4394815627262955,-0.8813071351213059,0.17364817766793042,80.0,153.495937,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 38,705858.5005,6880032.25,494.307044,0.34234579141912796,0.36148710707041587,0.545873578503547,0.7823117472581675,-0.5981928121393597,0.17364817766793042,80.0,127.40325,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 39,701844.5315,6875137.25,476.658525,0.3010170742254671,0.311087098833438,0.5456918654283743,0.7357966048102152,-0.6545606669689805,0.17364817766793042,80.0,131.656118,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 40,698466.9375,6871074.25,463.972201,0.26624061550817,0.269253547563399,0.5455612442160971,0.7825830449493052,-0.5978378443618282,0.17364817766793042,80.0,127.377257,1.0,EarlyGranite,EarlyGranite_Series,1,1,0.01 0,739426.6276840001,6891935.451483999,75.422691,0.6879706916384385,0.48404511582219845,0.5415606520803518,-0.6040227735540536,-0.7198463103919542,0.3420201433266688,70.0,220.0,1.0,SimpleBIF,BIF_Series,3,2,0.01 1,717311.112372,6891940.971392999,-1497.488309,0.4602644293524706,0.48410195003242695,0.5253656107410191,0.8660254037854386,1.0000530287619361e-12,0.5000000000010001,60.0,90.0,1.0,SimpleBIF,BIF_Series,3,2,0.01 2,723415.321182,6891939.447817,-5298.1543090000005,0.5231147203237131,0.4840862629552179,0.4862331086560341,0.0593911746148847,0.33682408883446513,0.9396926207869084,20.0,10.0,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 3,742907.686575,6891934.582632001,-2786.869309,0.7238124478753751,0.48403616992885884,0.5120898573149512,-0.8137976813483737,-0.29619813272502366,0.5000000000010001,60.0,250.0,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 4,712584.536312,6891942.15112,-582.769334,0.4115985514450749,0.48411409676389305,0.5347837606643122,0.8660253779324091,-0.00021160992272160206,0.5000000000010001,60.0,90.014,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 5,724309.279198,6905712.031145,-3763.8629950000004,0.532319110797648,0.625891842766388,0.5020305131225353,0.766044443119978,1.0000469066937634e-12,0.6427876096875393,50.0,90.0,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 6,728653.9332569999,6905714.891064,-4196.807995,0.5770526348753636,0.6259212891282221,0.49757281515192076,-0.1579856938790021,-0.00010478009447487647,0.9874413955027208,9.09,269.962,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 7,732788.182361,6905717.612482001,-1680.306995,0.6196197827600052,0.6259493094529728,0.5234832689064383,-0.8660252133152075,-0.0005743697555669816,0.5000000000010001,60.0,269.962,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 8,727261.874621,6877214.496202,-5666.992176,0.5627196896821558,0.33247488753436794,0.48243547197883097,9.999162292252465e-13,0.3420201433266687,0.9396926207869084,20.0,360.0,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 9,718902.5312979999,6900478.748653,-1882.8952969999998,0.4766500324125068,0.5720088027861601,0.5213973747104187,0.35135316564372676,0.042375304195105545,0.9352835327263932,20.726,83.12299999999999,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 10,733335.732778,6903150.931884,-1538.6292970000002,0.625257483582673,0.5995221954017079,0.5249420139822699,-0.7587575629491816,-0.19754255501034038,0.6206963022499282,51.633,255.407,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 11,730820.452963,6902599.428688001,-3825.776297,0.5993596034204055,0.593843795887698,0.5013930400008237,-0.36419606058097953,-0.07271406390723276,0.9284793451490311,21.801,258.709,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 12,725461.656,6915002.0,510.686328,0.5441842385428782,0.7215434274064846,0.5460422232529885,0.8435050562949495,-0.19621218108503954,0.5000000000010001,60.0,103.095,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 13,726102.312,6917775.5,499.040304,0.5507805751469789,0.7501,0.5459223132007867,1e-12,-0.8660254037834386,0.5000000000010001,-60.0,0.0,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 14,727390.156,6913486.75,517.5692429999999,0.5640405032793464,0.7059420765421167,0.5461130912760108,-0.8215644704637983,-0.2739193692847363,0.5000000000010001,-60.0,71.561,1.0,SimpleMafic1,SimpleMafic_Series,4,3,0.01 ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_rescaling_data.csv ================================================ ,rescaling factor,centers values,97123.0,[ 7.21180062e+05 6.89349475e+06 -3.95136022e+03] ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_series.csv ================================================ ,order_series,BottomRelation,isActive EarlyGranite_Series,1,Erosion,True BIF_Series,2,Erosion,True SimpleMafic_Series,3,Erosion,True Basement,4,Erosion,False ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_surface_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series,smooth 43,745312.75,6878221.0,452.733051,0.7485755155833325,0.34283807440050246,0.5454455234290538,EarlyGranite,EarlyGranite_Series,1,1,1e-06 44,741494.625,6877535.5,460.20235,0.7092632517529318,0.33578001400286234,0.5455224289921028,EarlyGranite,EarlyGranite_Series,1,1,1e-06 45,735914.188,6876556.5,456.48238899999996,0.6518058317803195,0.32570001235546675,0.5454841274466398,EarlyGranite,EarlyGranite_Series,1,1,1e-06 46,734739.375,6874011.0,446.031913,0.639709695952555,0.2994909784500067,0.5453765270224354,EarlyGranite,EarlyGranite_Series,1,1,1e-06 47,733564.563,6874598.5,452.620638,0.6276135704210122,0.30554000906067563,0.5454443659998147,EarlyGranite,EarlyGranite_Series,1,1,1e-06 48,734837.313,6876850.5,469.89565,0.6407180873737421,0.32872710171638025,0.5456222333638788,EarlyGranite,EarlyGranite_Series,1,1,1e-06 49,735326.813,6881354.0,492.347775,0.64575808819744,0.3750961389166315,0.5458534054343461,EarlyGranite,EarlyGranite_Series,1,1,1e-06 50,733858.313,6882724.5,486.360734,0.6306380857263466,0.38920711160075366,0.545791761529195,EarlyGranite,EarlyGranite_Series,1,1,1e-06 51,731508.625,6881941.0,476.162317,0.6064451757050338,0.3811400214161424,0.5456867563604914,EarlyGranite,EarlyGranite_Series,1,1,1e-06 52,729746.438,6879004.0,468.440123,0.5883013065906115,0.3509000164739557,0.5456072469342998,EarlyGranite,EarlyGranite_Series,1,1,1e-06 53,727788.375,6878514.5,465.16227599999996,0.5681406546338148,0.3458600156502579,0.5455734974928699,EarlyGranite,EarlyGranite_Series,1,1,1e-06 54,729354.813,6881354.0,469.46642099999997,0.5842690485260954,0.3750961389166315,0.5456178139266703,EarlyGranite,EarlyGranite_Series,1,1,1e-06 55,729159.0,6884095.0,480.639992,0.5822529143457266,0.40331808428487587,0.5457328594977503,EarlyGranite,EarlyGranite_Series,1,1,1e-06 56,726319.875,6884389.0,472.41144699999995,0.5530206521627214,0.40634517364578937,0.5456481365690928,EarlyGranite,EarlyGranite_Series,1,1,1e-06 57,723284.938,6882235.0,475.41346100000004,0.5217722660955691,0.3841671107770559,0.5456790459726326,EarlyGranite,EarlyGranite_Series,1,1,1e-06 58,721522.688,6879591.5,471.253042,0.5036277483191414,0.3569490470846246,0.5456362093736807,EarlyGranite,EarlyGranite_Series,1,1,1e-06 59,720935.313,6881941.0,492.156175,0.4975800047362619,0.3811400214161424,0.5458514326781504,EarlyGranite,EarlyGranite_Series,1,1,1e-06 60,720445.813,6883703.5,498.30804000000006,0.49254000391256414,0.39928711324814925,0.5459147736478486,EarlyGranite,EarlyGranite_Series,1,1,1e-06 61,717410.875,6883507.5,507.58461900000003,0.4612916075491902,0.39726905367420695,0.5460102873675649,EarlyGranite,EarlyGranite_Series,1,1,1e-06 62,714571.688,6882039.0,506.53461200000004,0.43205870700040117,0.3821490512031136,0.5459994762620595,EarlyGranite,EarlyGranite_Series,1,1,1e-06 63,711243.063,6879493.5,505.437117,0.39778644399369834,0.35594001729765345,0.5459881762095488,EarlyGranite,EarlyGranite_Series,1,1,1e-06 64,709676.625,6881549.5,515.202397,0.3816580501014178,0.3771090503794158,0.546088721703407,EarlyGranite,EarlyGranite_Series,1,1,1e-06 65,710264.063,6883899.5,524.0556650000001,0.3877064423463028,0.40130517282209155,0.5461798769189584,EarlyGranite,EarlyGranite_Series,1,1,1e-06 66,707914.438,6882724.5,507.24563600000005,0.3635141809869955,0.38920711160075366,0.5460067971232355,EarlyGranite,EarlyGranite_Series,1,1,1e-06 67,703802.563,6877340.0,483.05280700000003,0.3211774018512604,0.333767102540078,0.5457577023773977,EarlyGranite,EarlyGranite_Series,1,1,1e-06 68,699886.5,6872934.5,470.146586,0.2808567465996726,0.28840709512679796,0.5456248170567218,EarlyGranite,EarlyGranite_Series,1,1,1e-06 69,697047.375,6869214.0,456.299059,0.2516244844166675,0.2501,0.5454822398402026,EarlyGranite,EarlyGranite_Series,1,1,1e-06 0,735484.817806,6891936.435338001,-1819.319309,0.647384940807018,0.4840552458017232,0.5220519672168281,SimpleMafic2,BIF_Series,2,2,1e-06 1,729854.915982,6891937.840530001,-1432.263309,0.5894182200096779,0.4840697139709505,0.5260371818415823,SimpleMafic2,BIF_Series,2,2,1e-06 2,724084.2671609999,6891939.280852,-4739.830309,0.5300023368409125,0.4840845438464651,0.4919817366844105,SimpleMafic2,BIF_Series,2,2,1e-06 3,733521.625,6895282.5,521.55524,0.6271714712272067,0.5185070714454867,0.5461541319872738,SimpleMafic2,BIF_Series,2,2,1e-06 4,721933.375,6884591.5,496.66929500000003,0.507856272973446,0.4084301586647859,0.5458979007650093,SimpleMafic2,BIF_Series,2,2,1e-06 5,724251.0,6886909.0,484.550926,0.5317190552186403,0.4322916538821906,0.5457731273436776,SimpleMafic2,BIF_Series,2,2,1e-06 6,727316.313,6886460.5,478.25442300000003,0.5632801993348637,0.42767379817345014,0.5457082971489761,SimpleMafic2,BIF_Series,2,2,1e-06 7,729858.25,6887133.5,484.25957400000004,0.5894525478002121,0.4346031557921399,0.5457701275187133,SimpleMafic2,BIF_Series,2,2,1e-06 8,732699.25,6885040.0,494.52648099999993,0.6187041154000597,0.41304801437352634,0.5458758378756834,SimpleMafic2,BIF_Series,2,2,1e-06 9,716849.5,6887358.0,508.98189400000007,0.45551156574652757,0.4369146577020891,0.5460246740216015,SimpleMafic2,BIF_Series,2,2,1e-06 10,719017.625,6892217.5,508.179387,0.477835062755475,0.4869491500468478,0.5460164112311193,SimpleMafic2,BIF_Series,2,2,1e-06 11,739179.440691,6891935.513181,-552.591309,0.685425599404878,0.4840457510682332,0.535094480318771,SimpleBIF,BIF_Series,3,2,1e-06 12,735564.599804,6891936.415425,-2652.196309,0.6482063939952432,0.4840550407730381,0.5134764804629182,SimpleBIF,BIF_Series,3,2,1e-06 13,730009.0099770001,6891937.802069,-2088.409309,0.5910048060397647,0.48406931796793723,0.519281356753807,SimpleBIF,BIF_Series,3,2,1e-06 14,718795.791326,6891940.600826,-2773.169309,0.47555101393078886,0.4840981345922167,0.5122309155606808,SimpleBIF,BIF_Series,3,2,1e-06 15,724143.38616,6891939.266096001,-5569.907309,0.5306110391977182,0.48408439191541197,0.48343507935298535,SimpleBIF,BIF_Series,3,2,1e-06 16,723877.188,6899768.5,529.1521690000001,0.5278702037622393,0.5646959247552072,0.546232351657177,SimpleBIF,BIF_Series,3,2,1e-06 17,732998.313,6898049.0,521.619609,0.6217833345345589,0.5469915704827899,0.5461547947448081,SimpleBIF,BIF_Series,3,2,1e-06 18,743689.438,6891769.0,512.811278,0.7318615343430492,0.48233129433810734,0.546064102210599,SimpleBIF,BIF_Series,3,2,1e-06 19,712961.813,6882722.5,547.826016,0.4154830760993788,0.3891865191561216,0.5464246217373845,SimpleBIF,BIF_Series,3,2,1e-06 20,716284.875,6891346.5,515.58686,0.4496980612213379,0.4779811404095837,0.5460926802199273,SimpleBIF,BIF_Series,3,2,1e-06 21,718942.875,6897600.5,538.490136,0.4770654201373516,0.5423737147740494,0.5463284974413888,SimpleBIF,BIF_Series,3,2,1e-06 22,722157.625,6882947.0,481.747055,0.5101652008278162,0.39149802106607084,0.5457442580645161,SimpleBIF,BIF_Series,3,2,1e-06 23,723952.0,6885488.5,480.122832,0.5286404847461467,0.4176658700822668,0.5457275347034173,SimpleBIF,BIF_Series,3,2,1e-06 24,728736.813,6885488.5,477.929009,0.5779059831347875,0.4176658700822668,0.5457049466140873,SimpleBIF,BIF_Series,3,2,1e-06 25,738829.813,6878087.0,470.08143099999995,0.6818257549705009,0.3414583806101541,0.5456241462063569,SimpleBIF,BIF_Series,3,2,1e-06 26,715522.708428,6891941.417769,-2810.185309,0.4418506247541775,0.48410654601896497,0.5118497905954306,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 27,722100.017223,6891939.776110001,-5640.110309000001,0.5095720583486912,0.4840896431329439,0.48271225365773296,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 28,728133.723035,6891938.27013,-8458.173309,0.57169643477858,0.4840741372280518,0.4536968505091482,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 29,733022.378883,6891937.049949001,-7358.592309000001,0.6220311222161589,0.4840615739732153,0.4650183809396332,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 30,737972.021729,6891935.814546,-5589.549309,0.6729937453435337,0.4840488539892735,0.4832328409542539,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 31,726443.009736,6905713.435698,-5023.656995,0.5542884747794032,0.6259063043563294,0.4890593940261318,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 32,727109.3352020001,6886862.614432001,-6720.406176,0.5611491099121743,0.4318140577618129,0.47158928724401017,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 33,726266.236469,6901753.8156550005,-5708.065297,0.5524683779228401,0.5851371761065918,0.48201257399380165,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 34,732617.810926,6902964.017319,-3068.116297,0.617865600588944,0.5975976814863659,0.5091940758007887,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 35,709728.25,6885850.5,532.9365769999999,0.38218959257848295,0.4213931025606705,0.5462713167632796,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 36,714271.063,6897386.0,536.8312540000001,0.428963405166644,0.5401651750872605,0.5463114172235207,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 37,722693.188,6907492.5,555.452867,0.5156794765400571,0.6442239459242404,0.5465031494908518,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 38,725092.188,6913005.0,514.864987,0.5403801138762184,0.7009818714413681,0.5460852476550353,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 39,744692.688,6890291.0,496.01971100000003,0.7421912193816085,0.46711347775501166,0.5458912125037324,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 40,738924.813,6900193.5,551.633725,0.682803896090524,0.569071819239521,0.5464638267557633,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 41,729430.813,6908717.5,517.178069,0.5850515614221139,0.6568368182613799,0.5461090636615425,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 42,726929.75,6916017.0,502.161614,0.5593000607477117,0.7319940930572573,0.5459544509024639,SimpleMafic1,SimpleMafic_Series,4,3,1e-06 ================================================ FILE: examples/data/gempy_models/Greenstone/Greenstone_surfaces.csv ================================================ ,surface,series,order_surfaces,isBasement,isFault,isActive,color,vertices,edges,id,value_0 3,EarlyGranite,EarlyGranite_Series,1,False,False,True,#728f02,"[[ 6.96913326e+05 6.86300000e+06 -1.47480000e+04] [ 6.97020000e+05 6.86309351e+06 -1.47480000e+04] [ 6.97020000e+05 6.86300000e+06 -1.49709013e+04] ... [ 7.45781532e+05 6.87774000e+06 -2.04000000e+02] [ 7.45980000e+05 6.87774000e+06 -5.31339188e+02] [ 7.45980000e+05 6.87779400e+06 -2.04000000e+02]]","[[ 2 1 0] [ 0 1 3] [ 3 1 4] ... [3577 3634 3635] [3576 3634 3577] [3636 3637 3635]]",1,2.61 0,SimpleMafic2,BIF_Series,1,False,False,True,#015482,"[[ 7.17372390e+05 6.88444000e+06 -2.04000000e+02] [ 7.17420000e+05 6.88444000e+06 -2.19525421e+02] [ 7.17420000e+05 6.88416750e+06 -2.04000000e+02] ... [ 7.45980000e+05 6.89022786e+06 -1.01200000e+03] [ 7.45980000e+05 6.89058852e+06 -6.08000000e+02] [ 7.45980000e+05 6.89094654e+06 -2.04000000e+02]]","[[ 2 1 0] [ 0 1 3] [ 3 1 4] ... [1049 1050 990] [ 991 1051 992] [1050 1051 991]]",2,2.92 1,SimpleBIF,BIF_Series,2,False,False,True,#9f0052,"[[ 7.14839407e+05 6.88042000e+06 -2.04000000e+02] [ 7.15380000e+05 6.88042000e+06 -2.72209213e+02] [ 7.15380000e+05 6.87984794e+06 -2.04000000e+02] ... [ 7.45980000e+05 6.89114000e+06 -6.54912231e+02] [ 7.45980000e+05 6.89117842e+06 -6.08000000e+02] [ 7.45980000e+05 6.89150733e+06 -2.04000000e+02]]","[[ 2 1 0] [ 0 1 3] [ 3 1 4] ... [1332 1334 1265] [1334 1266 1265] [1334 1335 1266]]",3,3.1 2,SimpleMafic1,SimpleMafic_Series,1,False,False,True,#ffbe00,"[[ 6.96000000e+05 6.86300000e+06 -2.45178632e+03] [ 6.97020000e+05 6.86393305e+06 -2.22400000e+03] [ 6.97020000e+05 6.86300000e+06 -2.48451546e+03] ... [ 7.45267801e+05 6.88176000e+06 -2.04000000e+02] [ 7.45222338e+05 6.88310000e+06 -2.04000000e+02] [ 7.45091231e+05 6.88444000e+06 -2.04000000e+02]]","[[ 2 1 0] [ 0 1 3] [ 4 3 1] ... [3030 3018 3029] [3029 3018 3014] [3030 3021 3018]]",4,2.92 4,basement,Basement,1,True,False,True,#443988,,,5,2.61 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_faults.csv ================================================ ,isFault,isFinite Fault_Series,True,False Strat_Series,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_faults_relations.csv ================================================ ,Fault_Series,Strat_Series Fault_Series,False,True Strat_Series,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_kriging_data.csv ================================================ ,range,$C_o$,drift equations values,3464.1016151377544,285714.2857142857,[3 3] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_options.csv ================================================ ,dtype,output,aesara_optimizer,device,verbosity values,float64,geology,fast_compile,cpu,[] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series,smooth 2,500,1000,864.602,0.40799473684210524,0.5001,0.4907847368421052,-0.9486830155918029,9.998257297572324e-13,0.31622861338970926,71.565,270.0,1.0,Main_Fault,Fault_Series,1,1,0.01 1,400,1000,1400.0,0.38167894736842106,0.5001,0.631678947368421,0.3162286133897092,1.0000193634179593e-12,0.9486830155938029,18.435,90.0,1.0,Sandstone_2,Strat_Series,2,2,0.01 0,1000,1000,950.0,0.5395736842105263,0.5001,0.5132578947368421,0.3162286133897092,1.0000193634179593e-12,0.9486830155938029,18.435,90.0,1.0,Shale,Strat_Series,4,2,0.01 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_rescaling_data.csv ================================================ ,rescaling factor,centers values,3800,[ 850. 1000. 900.] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_series.csv ================================================ ,order_series,BottomRelation,isActive Fault_Series,1,Fault,True Strat_Series,2,Erosion,True ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_surface_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series,smooth 52,700,1000,900,0.46062631578947366,0.5001,0.5001,Main_Fault,Fault_Series,1,1,2e-06 53,600,1000,600,0.4343105263157895,0.5001,0.42115263157894733,Main_Fault,Fault_Series,1,1,2e-06 54,500,1000,300,0.40799473684210524,0.5001,0.34220526315789473,Main_Fault,Fault_Series,1,1,2e-06 55,800,1000,1200,0.4869421052631579,0.5001,0.5790473684210526,Main_Fault,Fault_Series,1,1,2e-06 56,900,1000,1500,0.5132578947368421,0.5001,0.6579947368421053,Main_Fault,Fault_Series,1,1,2e-06 44,0,1000,1500,0.27641578947368417,0.5001,0.6579947368421053,Sandstone_2,Strat_Series,2,2,2e-06 45,300,1000,1400,0.3553631578947368,0.5001,0.631678947368421,Sandstone_2,Strat_Series,2,2,2e-06 46,600,1000,1300,0.4343105263157895,0.5001,0.6053631578947368,Sandstone_2,Strat_Series,2,2,2e-06 47,1100,1000,1300,0.5658894736842105,0.5001,0.6053631578947368,Sandstone_2,Strat_Series,2,2,2e-06 48,1400,1000,1250,0.6448368421052632,0.5001,0.5922052631578947,Sandstone_2,Strat_Series,2,2,2e-06 49,1700,1000,1300,0.7237842105263158,0.5001,0.6053631578947368,Sandstone_2,Strat_Series,2,2,2e-06 50,1500,500,1200,0.6711526315789473,0.36852105263157897,0.5790473684210526,Sandstone_2,Strat_Series,2,2,2e-06 51,1500,1500,1150,0.6711526315789473,0.631678947368421,0.5658894736842105,Sandstone_2,Strat_Series,2,2,2e-06 31,900,150,920,0.5132578947368421,0.27641578947368417,0.5053631578947368,Siltstone,Strat_Series,3,2,2e-06 32,900,300,920,0.5132578947368421,0.3158894736842105,0.5053631578947368,Siltstone,Strat_Series,3,2,2e-06 33,900,1500,920,0.5132578947368421,0.631678947368421,0.5053631578947368,Siltstone,Strat_Series,3,2,2e-06 34,900,1700,820,0.5132578947368421,0.6843105263157895,0.4790473684210526,Siltstone,Strat_Series,3,2,2e-06 35,900,1950,870,0.5132578947368421,0.7501,0.4922052631578947,Siltstone,Strat_Series,3,2,2e-06 36,0,1000,1300,0.27641578947368417,0.5001,0.6053631578947368,Siltstone,Strat_Series,3,2,2e-06 37,300,1000,1200,0.3553631578947368,0.5001,0.5790473684210526,Siltstone,Strat_Series,3,2,2e-06 38,600,1000,1100,0.4343105263157895,0.5001,0.5527315789473684,Siltstone,Strat_Series,3,2,2e-06 39,1100,1000,1100,0.5658894736842105,0.5001,0.5527315789473684,Siltstone,Strat_Series,3,2,2e-06 40,1400,1000,1050,0.6448368421052632,0.5001,0.5395736842105263,Siltstone,Strat_Series,3,2,2e-06 41,1700,1000,1100,0.7237842105263158,0.5001,0.5527315789473684,Siltstone,Strat_Series,3,2,2e-06 42,1500,500,1000,0.6711526315789473,0.36852105263157897,0.5264157894736842,Siltstone,Strat_Series,3,2,2e-06 43,1500,1500,950,0.6711526315789473,0.631678947368421,0.5132578947368421,Siltstone,Strat_Series,3,2,2e-06 0,800,50,750,0.4869421052631579,0.2501,0.46062631578947366,Shale,Strat_Series,4,2,2e-06 1,800,150,700,0.4869421052631579,0.27641578947368417,0.44746842105263157,Shale,Strat_Series,4,2,2e-06 2,800,300,700,0.4869421052631579,0.3158894736842105,0.44746842105263157,Shale,Strat_Series,4,2,2e-06 3,800,500,800,0.4869421052631579,0.36852105263157897,0.4737842105263158,Shale,Strat_Series,4,2,2e-06 4,800,1000,1000,0.4869421052631579,0.5001,0.5264157894736842,Shale,Strat_Series,4,2,2e-06 5,800,1500,700,0.4869421052631579,0.631678947368421,0.44746842105263157,Shale,Strat_Series,4,2,2e-06 6,800,1700,600,0.4869421052631579,0.6843105263157895,0.42115263157894733,Shale,Strat_Series,4,2,2e-06 7,800,1950,650,0.4869421052631579,0.7501,0.4343105263157895,Shale,Strat_Series,4,2,2e-06 8,0,1000,1100,0.27641578947368417,0.5001,0.5527315789473684,Shale,Strat_Series,4,2,2e-06 9,300,1000,1000,0.3553631578947368,0.5001,0.5264157894736842,Shale,Strat_Series,4,2,2e-06 10,450,1000,950,0.39483684210526315,0.5001,0.5132578947368421,Shale,Strat_Series,4,2,2e-06 11,1100,1000,900,0.5658894736842105,0.5001,0.5001,Shale,Strat_Series,4,2,2e-06 12,1400,1000,850,0.6448368421052632,0.5001,0.4869421052631579,Shale,Strat_Series,4,2,2e-06 13,1700,1000,900,0.7237842105263158,0.5001,0.5001,Shale,Strat_Series,4,2,2e-06 14,1500,500,800,0.6711526315789473,0.36852105263157897,0.4737842105263158,Shale,Strat_Series,4,2,2e-06 15,1500,1500,750,0.6711526315789473,0.631678947368421,0.46062631578947366,Shale,Strat_Series,4,2,2e-06 16,800,50,450,0.4869421052631579,0.2501,0.38167894736842106,Sandstone_1,Strat_Series,5,2,2e-06 17,800,150,400,0.4869421052631579,0.27641578947368417,0.36852105263157897,Sandstone_1,Strat_Series,5,2,2e-06 18,800,300,400,0.4869421052631579,0.3158894736842105,0.36852105263157897,Sandstone_1,Strat_Series,5,2,2e-06 19,800,500,500,0.4869421052631579,0.36852105263157897,0.39483684210526315,Sandstone_1,Strat_Series,5,2,2e-06 20,800,1000,700,0.4869421052631579,0.5001,0.44746842105263157,Sandstone_1,Strat_Series,5,2,2e-06 21,800,1500,400,0.4869421052631579,0.631678947368421,0.36852105263157897,Sandstone_1,Strat_Series,5,2,2e-06 22,800,1700,300,0.4869421052631579,0.6843105263157895,0.34220526315789473,Sandstone_1,Strat_Series,5,2,2e-06 23,800,1950,350,0.4869421052631579,0.7501,0.3553631578947368,Sandstone_1,Strat_Series,5,2,2e-06 24,0,1000,800,0.27641578947368417,0.5001,0.4737842105263158,Sandstone_1,Strat_Series,5,2,2e-06 25,300,1000,700,0.3553631578947368,0.5001,0.44746842105263157,Sandstone_1,Strat_Series,5,2,2e-06 26,1100,1000,600,0.5658894736842105,0.5001,0.42115263157894733,Sandstone_1,Strat_Series,5,2,2e-06 27,1400,1000,550,0.6448368421052632,0.5001,0.40799473684210524,Sandstone_1,Strat_Series,5,2,2e-06 28,1700,1000,600,0.7237842105263158,0.5001,0.42115263157894733,Sandstone_1,Strat_Series,5,2,2e-06 29,1500,500,500,0.6711526315789473,0.36852105263157897,0.39483684210526315,Sandstone_1,Strat_Series,5,2,2e-06 30,1500,1500,450,0.6711526315789473,0.631678947368421,0.38167894736842106,Sandstone_1,Strat_Series,5,2,2e-06 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-1_Basics/Tutorial_ch1-1_Basics_surfaces.csv ================================================ ,surface,series,order_surfaces,isBasement,isFault,isActive,color,vertices,edges,sfai,id 4,Main_Fault,Fault_Series,1,False,True,True,#527682,"[[ 400. 0. 40. ] [ 386.66667938 0. 0. ] [ 400. 40. 40. ] ... [1013.33335876 1960. 1880. ] [1026.66664124 1960. 1920. ] [1040. 1960. 1960. ]]","[[ 2 1 0] [ 3 1 2] [ 0 5 4] ... [3297 3294 3298] [3299 3295 3296] [3298 3295 3299]]",-0.55768591019109,1 3,Sandstone_2,Strat_Series,1,False,False,True,#728f02,"[[ 0. 0. 1399.34921265] [ 0. 40. 1399.55947876] [ 40. 0. 1383.18862915] ... [1960. 1880. 1193.70231628] [1960. 1920. 1189.24514771] [1960. 1960. 1185.27381897]]","[[ 2 1 0] [ 3 1 2] [ 5 1 4] ... [3763 3696 3762] [3763 3697 3696] [3764 3697 3763]]",0.8179798867858623,2 2,Siltstone,Strat_Series,2,False,False,True,#ffbe00,"[[ 31.40995264 40. 1160. ] [ 40. 0. 1156.60209656] [ 32.15043068 0. 1160. ] ... [1960. 1880. 983.82293701] [1960. 1920. 978.76838684] [1960. 1960. 974.21592712]]","[[ 2 1 0] [ 0 1 3] [ 0 5 4] ... [3905 3836 3904] [3905 3838 3836] [3906 3838 3905]]",0.730487102963508,3 0,Shale,Strat_Series,3,False,False,True,#015482,"[[ 0. 0. 949.93782043] [ 0. 40. 949.11277771] [ 40. 0. 931.37695312] ... [1960. 1880. 781.52374268] [1960. 1920. 776.03805542] [1960. 1960. 771.07551575]]","[[ 2 1 0] [ 3 1 2] [ 3 4 1] ... [4047 3978 4046] [4047 3980 3978] [4048 3980 4047]]",0.6496588766460675,4 1,Sandstone_1,Strat_Series,4,False,False,True,#9f0052,"[[ 11.65150642 40. 640. ] [ 40. 0. 628.33042145] [ 17.65681148 0. 640. ] ... [1960. 1880. 512.40386963] [1960. 1920. 507.28397369] [1960. 1960. 502.67974854]]","[[ 2 1 0] [ 0 1 3] [ 0 5 4] ... [4128 4061 4127] [4128 4062 4061] [4129 4062 4128]]",0.5520920084971302,5 5,basement,Strat_Series,5,True,False,True,#ff3f20,,,,6 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_faults.csv ================================================ ,isFault,isFinite seafloor_series,False,False right_series,False,False onlap_series,False,False left_series,False,False basement,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_faults_relations.csv ================================================ ,seafloor_series,right_series,onlap_series,left_series,basement seafloor_series,False,False,False,False,False right_series,False,False,False,False,False onlap_series,False,False,False,False,False left_series,False,False,False,False,False basement,False,False,False,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_kriging_data.csv ================================================ ,range,$C_o$,drift equations,nugget grad,nugget scalar values,1854.7236990991407,81904.76190476191,[3 3 3 3],0.01,1e-06 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_options.csv ================================================ ,dtype,output,aesara_optimizer,device,verbosity values,float64,geology,fast_compile,cpu,[] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series 0,200.0,50.0,-200.0,0.3126,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 1,500.0,50.0,-200.0,0.5001,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 2,800.0,50.0,-200.0,0.6876,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 4,700.0,50.0,-450.0,0.6251,0.5001,0.59385,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,right_series,2,2 3,900.0,50.0,-450.0,0.7501,0.5001,0.59385,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,right_series,2,2 6,700.0,50.0,-700.0,0.6251,0.5001,0.4376,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,right_series,3,2 5,900.0,50.0,-700.0,0.7501,0.5001,0.4376,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,right_series,3,2 7,300.0,50.0,-200.0,0.3751,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,onlap_surface,onlap_series,4,3 8,700.0,50.0,-1000.0,0.6251,0.5001,0.2501,1.000000000001,1.0000612323399569e-12,1.0000612323399569e-12,90.0,90.0,1.0,onlap_surface,onlap_series,4,3 9,550.0,50.0,-500.0,0.53135,0.5001,0.5626,0.766044443119978,1.0000469066937634e-12,0.6427876096875393,50.0,90.0,1.0,onlap_surface,onlap_series,4,3 10,100.0,50.0,-400.0,0.2501,0.5001,0.6251,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,left_series,5,4 11,450.0,50.0,-1000.0,0.46885,0.5001,0.2501,1.000000000001,2.3054614646942163e-12,1.0000612323399569e-12,90.0,89.9999999999252,1.0,rock3,left_series,5,4 12,300.0,50.0,-500.0,0.3751,0.5001,0.5626,0.766044443119978,1.0000469066937634e-12,0.6427876096875393,49.99999999992522,89.9999999999252,1.0,rock3,left_series,5,4 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_rescaling_data.csv ================================================ ,rescaling factor,centers values,1600.0,[ 500. 50. -600.] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_series.csv ================================================ ,order_series,BottomRelation seafloor_series,1,Erosion right_series,2,Onlap onlap_series,3,Erosion left_series,4,Erosion basement,5,Erosion ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_surface_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series 0,200.0,0.0,-200.0,0.3126,0.46885,0.7501,seafloor,seafloor_series,6,1 1,200.0,100.0,-200.0,0.3126,0.53135,0.7501,seafloor,seafloor_series,6,1 2,500.0,0.0,-200.0,0.5001,0.46885,0.7501,seafloor,seafloor_series,6,1 3,500.0,100.0,-200.0,0.5001,0.53135,0.7501,seafloor,seafloor_series,6,1 4,800.0,0.0,-200.0,0.6876,0.46885,0.7501,seafloor,seafloor_series,6,1 5,800.0,100.0,-200.0,0.6876,0.53135,0.7501,seafloor,seafloor_series,6,1 7,700.0,0.0,-450.0,0.6251,0.46885,0.59385,rock1,right_series,4,2 6,700.0,100.0,-450.0,0.6251,0.53135,0.59385,rock1,right_series,4,2 8,900.0,0.0,-450.0,0.7501,0.46885,0.59385,rock1,right_series,4,2 9,900.0,100.0,-450.0,0.7501,0.53135,0.59385,rock1,right_series,4,2 13,700.0,0.0,-700.0,0.6251,0.46885,0.4376,rock2,right_series,5,2 12,700.0,100.0,-700.0,0.6251,0.53135,0.4376,rock2,right_series,5,2 11,900.0,0.0,-700.0,0.7501,0.46885,0.4376,rock2,right_series,5,2 10,900.0,100.0,-700.0,0.7501,0.53135,0.4376,rock2,right_series,5,2 14,300.0,0.0,-200.0,0.3751,0.46885,0.7501,onlap_surface,onlap_series,3,3 15,300.0,100.0,-200.0,0.3751,0.53135,0.7501,onlap_surface,onlap_series,3,3 16,700.0,0.0,-1000.0,0.6251,0.46885,0.2501,onlap_surface,onlap_series,3,3 17,700.0,100.0,-1000.0,0.6251,0.53135,0.2501,onlap_surface,onlap_series,3,3 18,550.0,0.0,-500.0,0.53135,0.46885,0.5626,onlap_surface,onlap_series,3,3 19,550.0,100.0,-500.0,0.53135,0.53135,0.5626,onlap_surface,onlap_series,3,3 20,100.0,0.0,-400.0,0.2501,0.46885,0.6251,rock3,left_series,2,4 21,100.0,100.0,-400.0,0.2501,0.53135,0.6251,rock3,left_series,2,4 22,450.0,0.0,-1000.0,0.46885,0.46885,0.2501,rock3,left_series,2,4 23,450.0,100.0,-1000.0,0.46885,0.53135,0.2501,rock3,left_series,2,4 24,300.0,0.0,-500.0,0.3751,0.46885,0.5626,rock3,left_series,2,4 25,300.0,100.0,-500.0,0.3751,0.53135,0.5626,rock3,left_series,2,4 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-8_Onlap_relations/Tutorial_ch1-8_Onlap_relations_surfaces.csv ================================================ ,surface,series,order_surfaces,isBasement,color,vertices,edges,id 4,basement,basement,1,False,#ff3f20,"[[-200. -500. -210.] [-200. -480. -210.] [-176. -500. -210.] ... [ 976. 440. -210.] [ 976. 460. -210.] [ 976. 480. -210.]]","[[ 2 1 0] [ 3 1 2] [ 3 4 1] ... [2498 2448 2497] [2498 2449 2448] [2499 2449 2498]]",1 3,rock3,left_series,1,False,#9f0052,"[[ 400. -500. -460.00003815] [ 400. -480. -460.00003815] [ 424. -500. -460.00003815] ... [ 976. 440. -460.00003815] [ 976. 460. -460.00003815] [ 976. 480. -460.00003815]]","[[ 2 1 0] [ 3 1 2] [ 3 4 1] ... [1111 1061 1110] [1111 1062 1061] [1112 1062 1111]]",2 5,onlap_surface,onlap_series,1,False,#ffbe00,"[[ 544. -500. -710.] [ 544. -480. -710.] [ 568. -500. -710.] ... [ 976. 440. -710.] [ 976. 460. -710.] [ 976. 480. -710.]]","[[ 2 1 0] [ 3 1 2] [ 3 4 1] ... [842 792 841] [842 793 792] [843 793 842]]",3 1,rock1,right_series,1,False,#728f02,"[[ 52.39768219 -480. -220. ] [ 64. -500. -227.81341553] [ 45.62319183 -500. -220. ] ... [ 688.02554321 40. -980. ] [ 688.29644775 40. -1000. ] [ 688.20480347 60. -1000. ]]","[[ 2 1 0] [ 0 1 3] [ 0 3 4] ... [3321 3322 3320] [3320 3173 3161] [3322 3185 3172]]",4 2,rock2,right_series,2,False,#443988,"[[ -184.16520214 -480. -420. ] [ -176. -500. -425.53325653] [ -192.13578463 -500. -420. ] ... [ 427.72203064 280. -1000. ] [ 424.01483154 280. -960. ] [ 425.82922363 300. -1000. ]]","[[ 2 1 0] [ 0 1 3] [ 0 5 4] ... [3199 2969 3201] [3201 2969 2958] [3202 2978 2967]]",5 0,seafloor,seafloor_series,1,True,#015482,"[[-200. -500. -210.] [-200. -480. -210.] [-176. -500. -210.] ... [ 976. 440. -210.] [ 976. 460. -210.] [ 976. 480. -210.]]","[[ 2 1 0] [ 3 1 2] [ 3 4 1] ... [2498 2448 2497] [2498 2449 2448] [2499 2449 2498]]",6 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_faults.csv ================================================ ,isFault,isFinite fault_series1,True,False series2,False,False series1,False,False basement_series,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_faults_relations.csv ================================================ ,fault_series1,series2,series1,basement_series fault_series1,False,False,True,True series2,False,False,False,False series1,False,False,False,False basement_series,False,False,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_kriging_data.csv ================================================ ,range,$C_o$,drift equations,nugget grad,nugget scalar values,1732.0508075688772,71428.57142857142,[3 3 3],0.01,1e-06 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_options.csv ================================================ ,dtype,output,aesara_optimizer,device,verbosity values,float64,geology,fast_compile,cpu,[0] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series 10,500.0,500.0,-600.0,0.5001,0.5001,0.46885,0.8949343616030251,1.0000547989250692e-12,0.4461978131108087,63.5,90.0,1.0,fault1,fault_series1,1,1 9,850.0,500.0,-425.0,0.71885,0.5001,0.578225,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock5,series2,2,2 8,150.0,500.0,-400.0,0.28135,0.5001,0.59385,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock5,series2,2,2 7,150.0,500.0,-450.0,0.28135,0.5001,0.5626,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series2,3,2 6,850.0,500.0,-525.0,0.71885,0.5001,0.515725,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series2,3,2 5,150.0,500.0,-500.0,0.28135,0.5001,0.53135,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 4,850.0,500.0,-575.0,0.71885,0.5001,0.484475,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 3,850.0,500.0,-625.0,0.71885,0.5001,0.453225,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 2,150.0,500.0,-550.0,0.28135,0.5001,0.5001,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 0,150.0,500.0,-600.0,0.28135,0.5001,0.46885,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 1,850.0,500.0,-675.0,0.71885,0.5001,0.421975,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_rescaling_data.csv ================================================ ,rescaling factor,centers values,1600.0,[ 500. 500. -550.] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_series.csv ================================================ ,order_series,BottomRelation fault_series1,1,Fault series2,2,Erosion series1,3,Erosion basement_series,4,Erosion ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_surface_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series 57,450.0,200.0,-500.0,0.46885,0.3126,0.53135,fault1,fault_series1,2,1 58,450.0,500.0,-500.0,0.46885,0.5001,0.53135,fault1,fault_series1,2,1 59,450.0,800.0,-500.0,0.46885,0.6876,0.53135,fault1,fault_series1,2,1 62,500.0,800.0,-600.0,0.5001,0.6876,0.46885,fault1,fault_series1,2,1 61,500.0,500.0,-600.0,0.5001,0.5001,0.46885,fault1,fault_series1,2,1 63,500.0,800.0,-600.0,0.5001,0.6876,0.46885,fault1,fault_series1,2,1 64,550.0,800.0,-700.0,0.53135,0.6876,0.40635,fault1,fault_series1,2,1 65,550.0,500.0,-700.0,0.53135,0.5001,0.40635,fault1,fault_series1,2,1 60,550.0,200.0,-700.0,0.53135,0.3126,0.40635,fault1,fault_series1,2,1 56,900.0,800.0,-425.0,0.7501,0.6876,0.578225,rock5,series2,6,2 55,900.0,500.0,-425.0,0.7501,0.5001,0.578225,rock5,series2,6,2 54,900.0,200.0,-425.0,0.7501,0.3126,0.578225,rock5,series2,6,2 53,800.0,800.0,-425.0,0.6876,0.6876,0.578225,rock5,series2,6,2 52,800.0,500.0,-425.0,0.6876,0.5001,0.578225,rock5,series2,6,2 51,800.0,200.0,-425.0,0.6876,0.3126,0.578225,rock5,series2,6,2 50,200.0,800.0,-400.0,0.3126,0.6876,0.59385,rock5,series2,6,2 49,200.0,500.0,-400.0,0.3126,0.5001,0.59385,rock5,series2,6,2 48,200.0,200.0,-400.0,0.3126,0.3126,0.59385,rock5,series2,6,2 47,100.0,800.0,-400.0,0.2501,0.6876,0.59385,rock5,series2,6,2 46,100.0,500.0,-400.0,0.2501,0.5001,0.59385,rock5,series2,6,2 45,100.0,200.0,-400.0,0.2501,0.3126,0.59385,rock5,series2,6,2 34,100.0,500.0,-450.0,0.2501,0.5001,0.5626,rock4,series2,7,2 35,100.0,800.0,-450.0,0.2501,0.6876,0.5626,rock4,series2,7,2 33,100.0,200.0,-450.0,0.2501,0.3126,0.5626,rock4,series2,7,2 36,200.0,200.0,-450.0,0.3126,0.3126,0.5626,rock4,series2,7,2 37,200.0,500.0,-450.0,0.3126,0.5001,0.5626,rock4,series2,7,2 38,200.0,800.0,-450.0,0.3126,0.6876,0.5626,rock4,series2,7,2 39,800.0,200.0,-525.0,0.6876,0.3126,0.515725,rock4,series2,7,2 40,800.0,500.0,-525.0,0.6876,0.5001,0.515725,rock4,series2,7,2 41,800.0,800.0,-525.0,0.6876,0.6876,0.515725,rock4,series2,7,2 42,900.0,200.0,-525.0,0.7501,0.3126,0.515725,rock4,series2,7,2 43,900.0,500.0,-525.0,0.7501,0.5001,0.515725,rock4,series2,7,2 44,900.0,800.0,-525.0,0.7501,0.6876,0.515725,rock4,series2,7,2 66,900.0,500.0,-575.0,0.7501,0.5001,0.484475,rock3,series1,3,3 25,100.0,200.0,-500.0,0.2501,0.3126,0.53135,rock3,series1,3,3 26,100.0,500.0,-500.0,0.2501,0.5001,0.53135,rock3,series1,3,3 24,100.0,800.0,-500.0,0.2501,0.6876,0.53135,rock3,series1,3,3 27,200.0,200.0,-500.0,0.3126,0.3126,0.53135,rock3,series1,3,3 28,200.0,500.0,-500.0,0.3126,0.5001,0.53135,rock3,series1,3,3 29,200.0,800.0,-500.0,0.3126,0.6876,0.53135,rock3,series1,3,3 30,800.0,200.0,-575.0,0.6876,0.3126,0.484475,rock3,series1,3,3 31,800.0,500.0,-575.0,0.6876,0.5001,0.484475,rock3,series1,3,3 32,800.0,800.0,-575.0,0.6876,0.6876,0.484475,rock3,series1,3,3 67,900.0,500.0,-575.0,0.7501,0.5001,0.484475,rock3,series1,3,3 68,900.0,200.0,-575.0,0.7501,0.3126,0.484475,rock3,series1,3,3 69,900.0,800.0,-575.0,0.7501,0.6876,0.484475,rock3,series1,3,3 17,200.0,800.0,-550.0,0.3126,0.6876,0.5001,rock2,series1,4,3 16,200.0,500.0,-550.0,0.3126,0.5001,0.5001,rock2,series1,4,3 15,200.0,200.0,-550.0,0.3126,0.3126,0.5001,rock2,series1,4,3 13,100.0,500.0,-550.0,0.2501,0.5001,0.5001,rock2,series1,4,3 14,100.0,800.0,-550.0,0.2501,0.6876,0.5001,rock2,series1,4,3 12,100.0,200.0,-550.0,0.2501,0.3126,0.5001,rock2,series1,4,3 18,900.0,200.0,-625.0,0.7501,0.3126,0.453225,rock2,series1,4,3 19,900.0,500.0,-625.0,0.7501,0.5001,0.453225,rock2,series1,4,3 20,900.0,800.0,-625.0,0.7501,0.6876,0.453225,rock2,series1,4,3 21,800.0,200.0,-625.0,0.6876,0.3126,0.453225,rock2,series1,4,3 22,800.0,500.0,-625.0,0.6876,0.5001,0.453225,rock2,series1,4,3 23,800.0,800.0,-625.0,0.6876,0.6876,0.453225,rock2,series1,4,3 0,100.0,200.0,-600.0,0.2501,0.3126,0.46885,rock1,series1,5,3 1,100.0,500.0,-600.0,0.2501,0.5001,0.46885,rock1,series1,5,3 2,100.0,800.0,-600.0,0.2501,0.6876,0.46885,rock1,series1,5,3 3,200.0,200.0,-600.0,0.3126,0.3126,0.46885,rock1,series1,5,3 4,200.0,500.0,-600.0,0.3126,0.5001,0.46885,rock1,series1,5,3 5,200.0,800.0,-600.0,0.3126,0.6876,0.46885,rock1,series1,5,3 6,900.0,200.0,-675.0,0.7501,0.3126,0.421975,rock1,series1,5,3 7,900.0,500.0,-675.0,0.7501,0.5001,0.421975,rock1,series1,5,3 8,900.0,800.0,-675.0,0.7501,0.6876,0.421975,rock1,series1,5,3 9,800.0,200.0,-675.0,0.6876,0.3126,0.421975,rock1,series1,5,3 10,800.0,500.0,-675.0,0.6876,0.5001,0.421975,rock1,series1,5,3 11,800.0,800.0,-675.0,0.6876,0.6876,0.421975,rock1,series1,5,3 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9a_Fault_relations/Tutorial_ch1-9a_Fault_relations_surfaces.csv ================================================ ,surface,series,order_surfaces,isBasement,color,vertices,edges,id 4,basement,basement_series,1,False,#325916,,,1 5,fault1,fault_series1,1,False,#015482,,,2 0,rock3,series1,1,False,#728f02,,,3 3,rock2,series1,2,False,#443988,,,4 1,rock1,series1,3,False,#ff3f20,,,5 7,rock5,series2,1,False,#9f0052,,,6 6,rock4,series2,2,True,#ffbe00,,,7 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_faults.csv ================================================ ,isFault,isFinite fault_series2,True,False fault_series1,True,False series1,False,False basement_series,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_faults_relations.csv ================================================ ,fault_series2,fault_series1,series1,basement_series fault_series2,False,True,True,True fault_series1,False,False,True,True series1,False,False,False,False basement_series,False,False,False,False ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_kriging_data.csv ================================================ ,range,$C_o$,drift equations,nugget grad,nugget scalar values,1732.0508075688772,71428.57142857142,[3 3 3],0.01,1e-06 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_options.csv ================================================ ,dtype,output,aesara_optimizer,device,verbosity values,float64,geology,fast_compile,cpu,[0] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series 13,550.0,500.0,-600.0,0.53135,0.5001,0.53135,-0.8949343616010249,9.576199963080072e-18,0.4461978131108091,63.49999999993597,270.0,1.0,fault2,fault_series2,1,1 10,350.0,500.0,-700.0,0.40635,0.5001,0.46885,0.8949343616030251,1.0000547989250692e-12,0.4461978131108087,63.5,90.0,1.0,fault1,fault_series1,2,2 11,400.0,500.0,-625.0,0.4376,0.5001,0.515725,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 7,150.0,500.0,-550.0,0.28135,0.5001,0.5626,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 6,850.0,500.0,-525.0,0.71885,0.5001,0.578225,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 12,400.0,500.0,-675.0,0.4376,0.5001,0.484475,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 5,150.0,500.0,-600.0,0.28135,0.5001,0.53135,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 4,850.0,500.0,-575.0,0.71885,0.5001,0.546975,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 3,850.0,500.0,-625.0,0.71885,0.5001,0.515725,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 2,150.0,500.0,-650.0,0.28135,0.5001,0.5001,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 0,150.0,500.0,-700.0,0.28135,0.5001,0.46885,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 1,850.0,500.0,-675.0,0.71885,0.5001,0.484475,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_rescaling_data.csv ================================================ ,rescaling factor,centers values,1600.0,[ 500. 500. -650.] ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_series.csv ================================================ ,order_series,BottomRelation fault_series2,1,Fault fault_series1,2,Fault series1,3,Erosion basement_series,4,Erosion ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_surface_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series 71,500.0,500.0,-700.0,0.5001,0.5001,0.46885,fault2,fault_series2,3,1 66,500.0,200.0,-700.0,0.5001,0.3126,0.46885,fault2,fault_series2,3,1 72,500.0,800.0,-700.0,0.5001,0.6876,0.46885,fault2,fault_series2,3,1 73,550.0,200.0,-600.0,0.53135,0.3126,0.53135,fault2,fault_series2,3,1 74,550.0,500.0,-600.0,0.53135,0.5001,0.53135,fault2,fault_series2,3,1 75,550.0,800.0,-600.0,0.53135,0.6876,0.53135,fault2,fault_series2,3,1 76,600.0,200.0,-500.0,0.5626,0.3126,0.59385,fault2,fault_series2,3,1 77,600.0,500.0,-500.0,0.5626,0.5001,0.59385,fault2,fault_series2,3,1 78,600.0,800.0,-500.0,0.5626,0.6876,0.59385,fault2,fault_series2,3,1 57,300.0,200.0,-600.0,0.3751,0.3126,0.53135,fault1,fault_series1,2,2 58,300.0,500.0,-600.0,0.3751,0.5001,0.53135,fault1,fault_series1,2,2 59,300.0,800.0,-600.0,0.3751,0.6876,0.53135,fault1,fault_series1,2,2 62,350.0,200.0,-700.0,0.40635,0.3126,0.46885,fault1,fault_series1,2,2 61,350.0,500.0,-700.0,0.40635,0.5001,0.46885,fault1,fault_series1,2,2 63,350.0,800.0,-700.0,0.40635,0.6876,0.46885,fault1,fault_series1,2,2 64,400.0,800.0,-800.0,0.4376,0.6876,0.40635,fault1,fault_series1,2,2 65,400.0,500.0,-800.0,0.4376,0.5001,0.40635,fault1,fault_series1,2,2 60,400.0,200.0,-800.0,0.4376,0.3126,0.40635,fault1,fault_series1,2,2 79,400.0,200.0,-625.0,0.4376,0.3126,0.515725,rock4,series1,4,3 34,100.0,500.0,-550.0,0.2501,0.5001,0.5626,rock4,series1,4,3 35,100.0,800.0,-550.0,0.2501,0.6876,0.5626,rock4,series1,4,3 33,100.0,200.0,-550.0,0.2501,0.3126,0.5626,rock4,series1,4,3 36,200.0,200.0,-550.0,0.3126,0.3126,0.5626,rock4,series1,4,3 37,200.0,500.0,-550.0,0.3126,0.5001,0.5626,rock4,series1,4,3 38,200.0,800.0,-550.0,0.3126,0.6876,0.5626,rock4,series1,4,3 39,800.0,200.0,-525.0,0.6876,0.3126,0.578225,rock4,series1,4,3 40,800.0,500.0,-525.0,0.6876,0.5001,0.578225,rock4,series1,4,3 41,800.0,800.0,-525.0,0.6876,0.6876,0.578225,rock4,series1,4,3 42,900.0,200.0,-525.0,0.7501,0.3126,0.578225,rock4,series1,4,3 43,900.0,500.0,-525.0,0.7501,0.5001,0.578225,rock4,series1,4,3 44,900.0,800.0,-525.0,0.7501,0.6876,0.578225,rock4,series1,4,3 80,400.0,500.0,-625.0,0.4376,0.5001,0.515725,rock4,series1,4,3 81,400.0,800.0,-625.0,0.4376,0.6876,0.515725,rock4,series1,4,3 82,400.0,800.0,-675.0,0.4376,0.6876,0.484475,rock3,series1,5,3 25,100.0,200.0,-600.0,0.2501,0.3126,0.53135,rock3,series1,5,3 26,100.0,500.0,-600.0,0.2501,0.5001,0.53135,rock3,series1,5,3 24,100.0,800.0,-600.0,0.2501,0.6876,0.53135,rock3,series1,5,3 27,200.0,200.0,-600.0,0.3126,0.3126,0.53135,rock3,series1,5,3 28,200.0,500.0,-600.0,0.3126,0.5001,0.53135,rock3,series1,5,3 29,200.0,800.0,-600.0,0.3126,0.6876,0.53135,rock3,series1,5,3 30,800.0,200.0,-575.0,0.6876,0.3126,0.546975,rock3,series1,5,3 31,800.0,500.0,-575.0,0.6876,0.5001,0.546975,rock3,series1,5,3 32,800.0,800.0,-575.0,0.6876,0.6876,0.546975,rock3,series1,5,3 67,900.0,500.0,-575.0,0.7501,0.5001,0.546975,rock3,series1,5,3 68,900.0,200.0,-575.0,0.7501,0.3126,0.546975,rock3,series1,5,3 69,900.0,800.0,-575.0,0.7501,0.6876,0.546975,rock3,series1,5,3 83,400.0,200.0,-675.0,0.4376,0.3126,0.484475,rock3,series1,5,3 84,400.0,500.0,-675.0,0.4376,0.5001,0.484475,rock3,series1,5,3 17,200.0,800.0,-650.0,0.3126,0.6876,0.5001,rock2,series1,6,3 16,200.0,500.0,-650.0,0.3126,0.5001,0.5001,rock2,series1,6,3 15,200.0,200.0,-650.0,0.3126,0.3126,0.5001,rock2,series1,6,3 13,100.0,500.0,-650.0,0.2501,0.5001,0.5001,rock2,series1,6,3 14,100.0,800.0,-650.0,0.2501,0.6876,0.5001,rock2,series1,6,3 12,100.0,200.0,-650.0,0.2501,0.3126,0.5001,rock2,series1,6,3 18,900.0,200.0,-625.0,0.7501,0.3126,0.515725,rock2,series1,6,3 19,900.0,500.0,-625.0,0.7501,0.5001,0.515725,rock2,series1,6,3 20,900.0,800.0,-625.0,0.7501,0.6876,0.515725,rock2,series1,6,3 21,800.0,200.0,-625.0,0.6876,0.3126,0.515725,rock2,series1,6,3 22,800.0,500.0,-625.0,0.6876,0.5001,0.515725,rock2,series1,6,3 23,800.0,800.0,-625.0,0.6876,0.6876,0.515725,rock2,series1,6,3 0,100.0,200.0,-700.0,0.2501,0.3126,0.46885,rock1,series1,7,3 1,100.0,500.0,-700.0,0.2501,0.5001,0.46885,rock1,series1,7,3 2,100.0,800.0,-700.0,0.2501,0.6876,0.46885,rock1,series1,7,3 3,200.0,200.0,-700.0,0.3126,0.3126,0.46885,rock1,series1,7,3 4,200.0,500.0,-700.0,0.3126,0.5001,0.46885,rock1,series1,7,3 5,200.0,800.0,-700.0,0.3126,0.6876,0.46885,rock1,series1,7,3 6,900.0,200.0,-675.0,0.7501,0.3126,0.484475,rock1,series1,7,3 7,900.0,500.0,-675.0,0.7501,0.5001,0.484475,rock1,series1,7,3 8,900.0,800.0,-675.0,0.7501,0.6876,0.484475,rock1,series1,7,3 9,800.0,200.0,-675.0,0.6876,0.3126,0.484475,rock1,series1,7,3 10,800.0,500.0,-675.0,0.6876,0.5001,0.484475,rock1,series1,7,3 11,800.0,800.0,-675.0,0.6876,0.6876,0.484475,rock1,series1,7,3 ================================================ FILE: examples/data/gempy_models/Tutorial_ch1-9b_Fault_relations/Tutorial_ch1-9b_Fault_relations_surfaces.csv ================================================ ,surface,series,order_surfaces,isBasement,color,vertices,edges,id 4,basement,basement_series,1,False,#325916,,,1 5,fault1,fault_series1,1,False,#9f0052,,,2 7,fault2,fault_series2,1,False,#015482,,,3 6,rock4,series1,1,False,#ffbe00,,,4 0,rock3,series1,2,False,#728f02,,,5 3,rock2,series1,3,False,#443988,,,6 1,rock1,series1,4,True,#ff3f20,,,7 ================================================ FILE: examples/data/input_data/AlesModel/2018_interf.csv ================================================ X,Y,Z,X_r,Y_r,Z_r,formation,series,id,order_series,smooth 737866.44,1916440.94,408.293632,0.4736471608999658,0.4589280664098209,0.4929178917721893,fault_left,fault_left,1,1,1e-08 737393.89,1917771.71,321.804233,0.4598361365138869,0.4978219335609481,0.4903901016997599,fault_left,fault_left,1,1,1e-08 737824.59,1917182.81,345.54013599999996,0.4724240281720912,0.4806103956052571,0.4910838211689349,fault_left,fault_left,1,1,1e-08 739063.13,1914761.51,356.96948399999997,0.5086223270677365,0.4098440569193649,0.4914178620195221,fault_left,fault_left,1,1,1e-08 738479.04,1915276.11,377.76717,0.4915513690026311,0.42488405935101975,0.4920257074295741,fault_left,fault_left,1,1,1e-08 738375.75,1915524.08,379.181089,0.4885325546785621,0.4321313764963295,0.4920670314583308,fault_left,fault_left,1,1,1e-08 737590.48,1917621.64,314.629286,0.4655817915431097,0.4934358994277979,0.4901804024764273,fault_left,fault_left,1,1,1e-08 737692.8,1917370.45,344.002004,0.4685722560763542,0.4860944726675845,0.4910388668179434,fault_left,fault_left,1,1,1e-08 737973.38,1916306.72,407.53772299999997,0.4767726522719865,0.4550052737040767,0.4928957991309181,fault_left,fault_left,1,1,1e-08 736659.33,1919824.65,409.42467999999997,0.4383674536802389,0.5578223661144561,0.492950948446636,fault_left,fault_left,1,1,1e-08 736175.65,1921407.13,617.1316879999998,0.4242311373643809,0.6040728578518069,0.4990215156938012,fault_left,fault_left,1,1,1e-08 742298.34,1916230.43,227.104821,0.6031764783831367,0.4527755772689595,0.4876223609559666,fault_lr,fault_lr,2,2,1e-08 743019.23,1915920.01,346.222435,0.624245633752266,0.4437030596730941,0.4911037624410281,fault_lr,fault_lr,2,2,1e-08 743444.65,1915465.78,442.65879299999995,0.6366792090233,0.43042746638796175,0.4939222681907748,fault_lr,fault_lr,2,2,1e-08 743159.56,1915758.03,352.647665,0.628347000913624,0.4389689368711533,0.4912915499941254,fault_lr,fault_lr,2,2,1e-08 742804.77,1916009.65,285.059311,0.6179776995869113,0.4463229310644111,0.4893161729857473,fault_lr,fault_lr,2,2,1e-08 739523.11,1918881.5,272.56482,0.5220659732366271,0.5302573091898324,0.4889510016390271,fault_right,fault_right,3,3,1e-08 739523.11,1918881.5,272.56482,0.5220659732366271,0.5302573091898324,0.4889510016390271,fault_right,fault_right,3,3,1e-08 739337.25,1919764.72,328.226726,0.5166339195017909,0.5560708166668697,0.4905778092596846,fault_right,fault_right,3,3,1e-08 739368.8,1920230.31,412.295905,0.5175560183683268,0.5696784239971344,0.4930348645581437,fault_right,fault_right,3,3,1e-08 739523.11,1918881.5,272.56482,0.5220659732366271,0.5302573091898324,0.4889510016390271,fault_right,fault_right,3,3,1e-08 739520.42,1918475.21,293.752678,0.5219873537136184,0.5183828385564151,0.4895702504455593,fault_right,fault_right,3,3,1e-08 739432.91,1921404.27,307.2002950000001,0.5194297349557597,0.6039892698087587,0.4899632784136509,fault_right,fault_right,3,3,1e-08 739630.11,1922747.93,315.142413,0.5251932182039547,0.6432598676853862,0.4901953994280941,fault_right,fault_right,3,3,1e-08 740296.43,1921980.39,362.909221,0.5446674786397484,0.6208272919636784,0.4915914602684988,TRIAS,Trias_Series,4,4,1e-08 740508.41,1918165.96,285.94569,0.5508629308656741,0.5093445160690687,0.4893420788200174,TRIAS,Trias_Series,4,4,1e-08 740514.08,1918162.75,286.344702,0.5510286456223519,0.50925069872005,0.4893537405795398,TRIAS,Trias_Series,4,4,1e-08 740669.86,1917432.62,263.89051,0.5555815635757199,0.4879114896733719,0.4886974811503118,TRIAS,Trias_Series,4,4,1e-08 740635.79,1917668.07,253.27375899999998,0.5545858137062181,0.4947928899309153,0.4883871897378433,TRIAS,Trias_Series,4,4,1e-08 742991.43,1917577.86,294.191288,0.6234331345925325,0.4921563593841629,0.4895830695195324,TRIAS,Trias_Series,4,4,1e-08 740634.56,1917780.73,240.40215800000001,0.5545498650023886,0.4980855573890355,0.4880109967523414,TRIAS,Trias_Series,4,4,1e-08 740486.85,1918229.12,293.930121,0.5502328056180502,0.5111904673974508,0.4895754364990989,TRIAS,Trias_Series,4,4,1e-08 738689.37,1913266.01,228.512532,0.4976985973575646,0.3661356938479776,0.4876635035460619,TRIAS,Trias_Series,4,4,1e-08 736436.36,1914663.25,275.063473,0.4318508012469217,0.4069722523353495,0.4890240287420116,TRIAS,Trias_Series,4,4,1e-08 739480.9,1914378.88,397.960997,0.5208323189369002,0.3986610873693748,0.4926159041011333,TRIAS,Trias_Series,4,4,1e-08 739010.32,1913618.88,289.093957,0.5070788709301219,0.3764488801248049,0.4894340919240506,TRIAS,Trias_Series,4,4,1e-08 737664.53,1915280.47,392.885671,0.4677460204200326,0.42501148727678745,0.492467569636731,TRIAS,Trias_Series,4,4,1e-08 739235.16,1913852.37,341.805969,0.5136501770838996,0.3832729962689359,0.4909746842067114,TRIAS,Trias_Series,4,4,1e-08 738837.12,1913660.75,277.421806,0.5020168258054398,0.37767259738445297,0.4890929547701007,TRIAS,Trias_Series,4,4,1e-08 739393.81,1914213.3,388.044555,0.5182869753462043,0.3938217488489112,0.4923260803316165,TRIAS,Trias_Series,4,4,1e-08 734994.57,1914860.35,319.97495499999997,0.3897121982427779,0.4127328129247005,0.49033663814443895,TRIAS,Trias_Series,4,4,1e-08 734969.6,1914830.89,312.390252,0.3889824103284407,0.41187179762808296,0.4901149631511172,TRIAS,Trias_Series,4,4,1e-08 735293.07,1915162.86,383.20226,0.3984363349039675,0.4215741482056941,0.4921845565683543,TRIAS,Trias_Series,4,4,1e-08 736383.76,1914654.5,285.911443,0.4303134826928903,0.4067165196861522,0.4893410778970417,TRIAS,Trias_Series,4,4,1e-08 744631.28,1915597.24,237.51625099999998,0.6713603557109633,0.4342695937095017,0.4879266515360618,TRIAS,Trias_Series,4,4,1e-08 743326.24,1917494.53,284.65094,0.6332184886814182,0.4897209077661475,0.4893042376945833,TRIAS,Trias_Series,4,4,1e-08 743962.83,1917976.36,380.284645,0.6518238426417077,0.5038031548933222,0.49209928463540703,TRIAS,Trias_Series,4,4,1e-08 744599.59,1917804.1,378.553655,0.6704341651220399,0.4987685827618093,0.4920486937030146,TRIAS,Trias_Series,4,4,1e-08 744779.37,1917816.16,352.115701,0.6756885211989208,0.4991210554188693,0.4912760025012114,TRIAS,Trias_Series,4,4,1e-08 743882.54,1918004.3,354.08227,0.649477239852675,0.5046197457754433,0.4913334786040913,TRIAS,Trias_Series,4,4,1e-08 744383.16,1917954.25,404.866132,0.6641086545773809,0.5031569550220331,0.4928177176401751,TRIAS,Trias_Series,4,4,1e-08 742547.93,1917432.62,258.595194,0.6104711426017868,0.4879114896733719,0.4885427171287098,TRIAS,Trias_Series,4,4,1e-08 744897.72,1915938.38,216.479536,0.6791474879454922,0.44423995210346257,0.4873118201237921,TRIAS,Trias_Series,4,4,1e-08 742951.88,1917594.1,297.1717470000001,0.6222772230181591,0.4926309991810729,0.489670178168206,TRIAS,Trias_Series,4,4,1e-08 742988.98,1917578.29,294.372889,0.6233615294507552,0.4921689268172072,0.4895883770972269,TRIAS,Trias_Series,4,4,1e-08 743621.68,1917245.1,310.120003,0.6418531919818616,0.4824309198016585,0.4900486115178478,TRIAS,Trias_Series,4,4,1e-08 743554.29,1916129.0,333.121762,0.6398836121842144,0.44981112439946574,0.4907208744624499,TRIAS,Trias_Series,4,4,1e-08 744213.33,1917981.47,417.092773,0.6591451030558718,0.5039525027604497,0.4931750606451711,TRIAS,Trias_Series,4,4,1e-08 744096.32,1916643.18,252.89897799999997,0.6557252999378622,0.4648388516639546,0.4883762361677863,TRIAS,Trias_Series,4,4,1e-08 740283.5,1922177.04,318.029812,0.5442895788507045,0.6265747005882149,0.4902797882504438,TRIAS,Trias_Series,4,4,1e-08 740026.49,1919226.66,393.828972,0.5367780533455372,0.5403451584694822,0.4924951391068705,TRIAS,Trias_Series,4,4,1e-08 740198.96,1921924.73,340.36240899999996,0.5418187630606298,0.6192005400489008,0.4909324938726457,TRIAS,Trias_Series,4,4,1e-08 740622.56,1920430.02,263.877564,0.5541991459406322,0.5755152659824136,0.4886971027828973,LIAS,Trias_Series,5,4,1e-08 742338.68,1916021.86,279.577625,0.6043554789624102,0.446679787709754,0.4891559620048504,LIAS,Trias_Series,5,4,1e-08 742962.41,1915754.07,338.8456970000001,0.6225849789948511,0.4388531995807747,0.4908881655551795,LIAS,Trias_Series,5,4,1e-08 740250.38,1915746.79,361.170595,0.5433215942402569,0.43864043001664177,0.4915406461618767,LIAS,Trias_Series,5,4,1e-08 740575.99,1916712.63,382.096377,0.5528380637151308,0.4668686382338682,0.4921522353810066,LIAS,Trias_Series,5,4,1e-08 741692.4,1917804.23,322.012201,0.5854669193597506,0.4987723822183084,0.4903961798949129,LIAS,Trias_Series,5,4,1e-08 740279.61,1915964.2,388.697682,0.544175887421518,0.4449945826180103,0.4923451690056705,LIAS,Trias_Series,5,4,1e-08 740685.57,1916842.12,373.177158,0.5560407132807348,0.4706531891761107,0.4918915570377333,LIAS,Trias_Series,5,4,1e-08 737998.2,1914565.78,479.27601,0.477498056198051,0.4041235367562343,0.4949924645233055,LIAS,Trias_Series,5,4,1e-08 737647.22,1914948.76,463.56652199999996,0.4672401081734474,0.4153167356121882,0.4945333297823028,LIAS,Trias_Series,5,4,1e-08 739044.73,1912441.1,408.556167,0.5080845578397094,0.34202638874519303,0.4929255647745958,LIAS,Trias_Series,5,4,1e-08 737202.17,1914649.25,424.31333499999994,0.4542328149705602,0.4065630800966338,0.4933860930393372,LIAS,Trias_Series,5,4,1e-08 736756.84,1914346.68,428.446007,0.4412173383228945,0.39771999122032986,0.4935068769432028,LIAS,Trias_Series,5,4,1e-08 743818.75,1912418.6,240.5518,0.6476128757735541,0.34136879050439983,0.4880153702774948,LIAS,Trias_Series,5,4,1e-08 745077.89,1917580.22,351.885855,0.6844132423918805,0.4922253341329712,0.4912692848867557,LIAS,Trias_Series,5,4,1e-08 744927.29,1917531.94,388.405188,0.6800117181668388,0.4908142744411706,0.4923366204038998,LIAS,Trias_Series,5,4,1e-08 743989.37,1915728.65,391.690452,0.6525995162999598,0.4381102597016162,0.4924326374628749,LIAS,Trias_Series,5,4,1e-08 744823.69,1917585.15,383.714198,0.6769838436003394,0.4923694212141742,0.4921995187696074,LIAS,Trias_Series,5,4,1e-08 744751.75,1917543.75,427.77315300000004,0.6748812828251116,0.4911594404511174,0.4934872117162379,LIAS,Trias_Series,5,4,1e-08 743488.53,1915920.13,391.063561,0.6379616717257893,0.4437065668637081,0.4924143155775963,LIAS,Trias_Series,5,4,1e-08 744698.22,1915505.99,251.51053100000001,0.6733167835437925,0.4316026675107293,0.4883356565986914,LIAS,Trias_Series,5,4,1e-08 743849.68,1915939.44,391.370157,0.6485168541552326,0.4442709322872527,0.4924232763327178,LIAS,Trias_Series,5,4,1e-08 743278.24,1917818.27,366.70364700000016,0.6318156124343927,0.4991827235205644,0.4917023583957175,LIAS,Trias_Series,5,4,1e-08 742583.28,1917715.36,311.579231,0.6115043025045434,0.4961750153001212,0.4900912597741018,LIAS,Trias_Series,5,4,1e-08 744683.28,1916855.67,306.412791,0.6728801383119075,0.4710492094500052,0.4899402623583168,LIAS,Trias_Series,5,4,1e-08 744517.55,1917008.18,344.409197,0.6680364158031679,0.4755065564590441,0.4910507676801863,LIAS,Trias_Series,5,4,1e-08 743775.88,1917781.2,384.146673,0.6463599319254296,0.4980992938856201,0.4922121585384601,LIAS,Trias_Series,5,4,1e-08 741032.89,1918012.0,293.501641,0.5661916919915052,0.5048447905067356,0.4895629134904672,LIAS,Trias_Series,5,4,1e-08 741563.92,1918256.34,385.419706,0.5817118872718796,0.5119860151358673,0.4922493649500722,LIAS,Trias_Series,5,4,1e-08 742691.39,1920626.2,190.941086,0.614663988985083,0.5812489381103587,0.4865654183552328,LIAS,Trias_Series,5,4,1e-08 742677.48,1920258.21,249.220857,0.6142574471393295,0.5704938458157153,0.4882687372389408,LIAS,Trias_Series,5,4,1e-08 738269.72,1921452.93,445.53063899999995,0.4854336595020589,0.6054114356041783,0.4940062024519938,CARBO,Carbon_Series,6,5,1e-08 738303.67,1921808.49,356.782866,0.4864259021809467,0.6158032414040211,0.4914124078120333,CARBO,Carbon_Series,6,5,1e-08 738748.69,1922490.64,290.2778600000001,0.4994323185861787,0.6357401587354439,0.4894686933698314,CARBO,Carbon_Series,6,5,1e-08 739081.0,1923227.79,190.943769,0.5091446062038686,0.6572845384332567,0.4865654967701697,CARBO,Carbon_Series,6,5,1e-08 738610.18,1920687.66,450.18432800000005,0.4953841438158591,0.5830452042383198,0.4941422139053093,CARBO,Carbon_Series,6,5,1e-08 738215.08,1920369.15,495.88862400000005,0.4838367187075279,0.5737362435416512,0.4954779945562556,CARBO,Carbon_Series,6,5,1e-08 738756.07,1921036.97,322.8385990000001,0.4996480108091591,0.5932543438601645,0.4904203326891793,CARBO,Carbon_Series,6,5,1e-08 739495.68,1918476.01,301.097111,0.5212642879146309,0.5184062198272003,0.489784903166467,CARBO,Carbon_Series,6,5,1e-08 739360.42,1918338.41,332.001554,0.5173110995568667,0.5143846412523911,0.4906881346042223,CARBO,Carbon_Series,6,5,1e-08 740287.77,1917340.35,309.376807,0.5444143763835133,0.4852147523543497,0.4900268904341961,CARBO,Carbon_Series,6,5,1e-08 739371.21,1915126.02,362.180369,0.5176264544465604,0.4204974406860996,0.4915701584110322,CARBO,Carbon_Series,6,5,1e-08 740150.49,1916464.03,470.111993,0.5404021503170197,0.4596029083378195,0.4947246315696256,CARBO,Carbon_Series,6,5,1e-08 739938.44,1915893.33,360.803356,0.5342046522298985,0.4429232942924577,0.4915299130187501,CARBO,Carbon_Series,6,5,1e-08 739566.06,1918295.28,280.233682,0.5233212552118321,0.5131240984912651,0.4891751363128086,CARBO,Carbon_Series,6,5,1e-08 739406.24,1915202.86,344.144319,0.518650261841005,0.4227432117448819,0.4910430261998829,CARBO,Carbon_Series,6,5,1e-08 739377.5,1915006.14,349.567567,0.5178102896880987,0.4169937572591499,0.4912015292374023,CARBO,Carbon_Series,6,5,1e-08 740098.4,1915742.07,339.35886,0.5388797373231132,0.4385024805190184,0.4909031635590035,CARBO,Carbon_Series,6,5,1e-08 732766.89,1916821.87,275.938602,0.3246047116183279,0.4700613507593968,0.4890496057771613,CARBO,Carbon_Series,6,5,1e-08 732562.65,1915888.73,238.175373,0.3186354731872348,0.4427888519854483,0.4879459154235137,CARBO,Carbon_Series,6,5,1e-08 732723.16,1918021.2,409.60850600000003,0.32332663290411123,0.5051136751207475,0.4929563210534899,CARBO,Carbon_Series,6,5,1e-08 732676.24,1921256.41,467.96727000000004,0.3219553213726426,0.5996678264361477,0.4946619486331016,CARBO,Carbon_Series,6,5,1e-08 732750.45,1919560.2,561.168737,0.32412422650371986,0.5500933947910015,0.4973859095548148,CARBO,Carbon_Series,6,5,1e-08 732720.18,1920848.75,573.946948,0.32323953767044233,0.5877533153765168,0.4977593730692185,CARBO,Carbon_Series,6,5,1e-08 736848.7,1920059.05,378.13127099999997,0.4439020927406391,0.5646730784541012,0.4920363488596662,CARBO,Carbon_Series,6,5,1e-08 732632.45,1918000.37,418.83802599999996,0.3206754890631156,0.50450488528272,0.4932260684363951,CARBO,Carbon_Series,6,5,1e-08 733045.34,1919166.4,509.82800999999995,0.3327428551804982,0.5385839642476954,0.4958853952545373,CARBO,Carbon_Series,6,5,1e-08 737317.64,1918964.09,469.96870599999994,0.45760760914231,0.532671133132373,0.4947204437794421,CARBO,Carbon_Series,6,5,1e-08 736114.5,1921563.35,596.432678,0.4224439314788467,0.6086386355041111,0.4984165542465941,CARBO,Carbon_Series,6,5,1e-08 739398.95,1918627.46,295.403237,0.5184372000109869,0.522832586652449,0.4896184906542138,CARBO,Carbon_Series,6,5,1e-08 739464.03,1918899.48,262.882472,0.5203392663892478,0.5307828032506968,0.4886680196385138,CARBO,Carbon_Series,6,5,1e-08 738860.01,1921160.75,292.738664,0.5026858224157406,0.5968720109821822,0.4895406142756686,CARBO,Carbon_Series,6,5,1e-08 738164.28,1920367.57,499.65459000000004,0.4823520080127613,0.5736900655318579,0.4955880608947662,CARBO,Carbon_Series,6,5,1e-08 738992.27,1923206.11,192.8737,0.5065513310080656,0.6566509059950187,0.4866219020693009,CARBO,Carbon_Series,6,5,1e-08 ================================================ FILE: examples/data/input_data/AlesModel/2018_orient_clust_n_init5_0.csv ================================================ G_x,G_y,G_z,X,Y,Z,azimuth,beta,dip,formation,kappa,n_points,polarity -0.08919935074047941,-0.0073888885276777215,0.9959863855263296,736036.39,1920815.352,577.4070517999999,265.0,0.0,5.135122660567592,CARBO,50.356608656837594,5.0,1.0 0.469145720235759,-0.05941826976322069,0.8811196073194695,739813.86125,1922763.3875,263.06821175,97.0,0.0,28.22228270571677,CARBO,37.875011391967796,7.0,1.0 0.05105627916682106,0.014711741981880688,0.9985874128014524,735071.7894736844,1915714.274210526,398.3932698421053,74.0,0.0,3.0457650566519243,CARBO,40.85151023581397,19.0,1.0 0.017718302384519217,-0.16124089271089542,0.9867560165909324,736843.6799999998,1919419.86,457.6914725,174.0,0.0,9.335281708407823,CARBO,666.0,2.0,1.0 -0.0691678365841328,0.027232923232359853,0.9972332617168821,737556.3633333333,1916518.4666666663,397.822736,291.0,0.0,4.263063997660994,CARBO,666.0,3.0,1.0 0.2620026302303849,-0.21984631039195413,0.9396926207869084,736796.42,1916118.91,413.013233,130.0,0.0,19.99999999983248,CARBO,9999.0,1.0,1.0 0.32460463938905193,-0.13396763023268093,0.9363143180241039,738540.3159999999,1921666.3,374.46126220000014,112.0,0.0,20.55846984031324,CARBO,381.69951373946,5.0,1.0 0.07248412660264883,0.12997563487274708,0.9888641897298523,734162.4554545453,1915829.3327272728,314.0251029090909,29.0,0.0,8.558593221432304,CARBO,53.045701620389615,11.0,1.0 0.5245506561518105,-0.0514443565336272,0.849823562459612,739554.94,1918975.6775,269.43893975000003,96.0,0.0,31.80751575093777,CARBO,41.90083935174373,4.0,1.0 0.1254092178525891,-0.2568546459016822,0.9582787793519812,740609.13,1917678.2266666663,252.46486633333333,154.0,0.0,16.60878100269336,CARBO,873.760975955269,3.0,1.0 0.3166932677113568,-0.13185389017176966,0.939318862704712,739750.0875,1913271.7125,359.0839065,113.0,0.0,20.06251886987799,CARBO,45.30716668828325,4.0,1.0 -0.40536090738946345,0.04680274418392728,0.9129578511066349,737532.84,1917010.5533333328,366.533319,277.0,0.0,24.08264055136453,CARBO,666.0,3.0,1.0 -0.5416752204187018,-0.4545194776710438,0.7071067811875476,737276.51,1917645.86,334.509462,230.0,0.0,44.99999999991897,CARBO,9999.0,1.0,1.0 0.2399002065628744,-0.03291582761783611,0.9702393721053189,736451.7225,1914790.42,255.3093155,98.0,0.0,14.013340459444615,CARBO,37.209041517028304,4.0,1.0 0.2032728437532261,-0.36082419087504797,0.9102120930156022,737642.5325000002,1915441.525,380.20571175,151.0,0.0,24.46532231864515,CARBO,666.0,4.0,1.0 0.4924038765071039,0.0868240888344652,0.8660254037854387,739664.93,1921938.17,399.879234,80.0,0.0,29.99999999988541,CARBO,9999.0,1.0,1.0 0.4678672849671235,-0.15786962694268755,0.8695846045937504,740348.1566666666,1921530.5,236.128146,109.0,0.0,29.589596295121485,CARBO,47.35399871939433,3.0,1.0 0.5731606265872918,-0.006687427256816024,0.8194157518907895,739137.2725,1922013.5,383.344886,91.0,0.0,34.97364902761085,CARBO,666.0,4.0,1.0 0.4269658154545369,-0.05239779365097064,0.9027483944343256,739123.7175,1922598.0325,330.85404175,97.0,0.0,25.478283406889,CARBO,54.919123435194244,4.0,1.0 9.569611691366305e-13,0.18938438791646164,0.9819030265833316,735337.075,1916971.795,453.442238,0.0,0.0,10.916859969674675,CARBO,666.0,2.0,1.0 0.4278435505534904,0.25716433117725457,0.8664966260868753,738227.0466666667,1920339.0,493.38518433333337,59.0,0.0,29.945957749383744,CARBO,43.00686176896232,3.0,1.0 0.3449041685328705,-0.1966894299219348,0.9177986613008506,738764.0179999998,1920520.668,460.9494244,120.0,0.0,23.393646250223803,CARBO,64.81522042318878,5.0,1.0 0.2620026302303849,-0.21984631039195413,0.9396926207869084,739787.85,1920759.56,365.665274,130.0,0.0,19.99999999983248,CARBO,9999.0,1.0,1.0 0.06146660566208687,0.542414055777291,0.8378596830517694,740492.49,1918179.945,285.6418950000001,6.0,0.0,33.08520719212673,CARBO,666.0,2.0,1.0 0.4028487066898393,0.2372680764903892,0.8839778161225963,739773.0440000001,1919571.298,346.37311680000005,60.0,0.0,27.874007693681325,CARBO,666.0,5.0,1.0 0.3997040806106872,-0.024349487552978617,0.9163207682897252,740234.16,1916489.2733333327,476.420221,93.0,0.0,23.60600454929677,CARBO,74.9072013985504,3.0,1.0 0.4896261176232261,-0.3769954343176898,0.7862192489661031,740077.0240000002,1915836.674,356.90800079999997,128.0,0.0,38.16641508399026,CARBO,666.0,5.0,1.0 0.5152937784518611,-0.19288078202749376,0.8350265419813113,739394.56,1915077.2,354.51441650000015,111.0,0.0,33.381397972948086,CARBO,79.78003690087824,2.0,1.0 -0.04048821886178445,0.15110408990490634,0.9876883405950534,737592.955,1917191.35,349.6497645,345.0,0.0,9.000000000030887,CARBO,183.03803725598584,2.0,1.0 -0.2972999793431481,-0.02263068489262401,0.9545158848253152,737177.7780000002,1915605.426,371.0439818,266.0,0.0,17.347125955503348,CARBO,666.0,5.0,1.0 -0.17377441737179208,-0.4706868276292413,0.8650181282281978,738199.2799999998,1915118.343333333,393.99741466666666,200.0,0.0,30.115224676449717,CARBO,666.0,3.0,1.0 -0.4255099775022222,-0.2664602376456752,0.8648353605165949,738323.7366666667,1915338.886666667,384.4379933333333,238.0,0.0,30.13608910805213,CARBO,666.0,3.0,1.0 0.4097585902985068,0.08355228331967568,0.9083594627836764,739113.4325,1923251.3225,194.01153375,78.0,0.0,24.720383116757922,CARBO,107.9306952120908,4.0,1.0 0.6566483562740564,-0.23223786112054198,0.7175503550725453,739466.8424999998,1922977.7275,319.9717875,109.0,0.0,44.147398194630156,CARBO,129.029783844,4.0,1.0 0.4132277268409566,0.5461095363525313,0.7287024221688021,736019.6125,1919179.4775,475.87599400000005,37.0,0.0,43.222276452419656,CARBO,666.0,4.0,1.0 0.19706916343102754,-0.03462008512819723,0.9797781353604046,733657.7849999998,1919413.9575,564.1686862500002,100.0,0.0,11.542046293779672,CARBO,666.0,4.0,1.0 0.17012365670205967,0.22431016725473601,0.9595534848545296,734902.3700000001,1917701.9966666668,479.4419156666667,37.0,0.0,16.3513257251375,CARBO,666.0,3.0,1.0 0.00014219558216625118,0.4096027617744644,0.9122639734896626,734399.0025,1917628.5525,498.10804375,0.0,0.0,24.17988491186076,CARBO,666.0,4.0,1.0 0.2605261688334936,-0.17235520338683832,0.9499577881245164,733403.6399999999,1918982.238,515.1245334,123.0,0.0,18.202616344934427,CARBO,666.0,5.0,1.0 0.39287742804603415,0.10527118957008344,0.9135454576436008,732609.935,1915865.255,236.4034865,75.0,0.0,23.999999999859142,CARBO,9999.0,2.0,1.0 -0.05717876331606505,-0.16637096379925898,0.984404028552378,744349.298,1917978.862,386.5614356,199.0,0.0,10.132343483632832,CARBO,666.0,5.0,1.0 1e-12,1e-12,1.000000000001,744355.17,1915992.61,231.46082,45.0,0.0,0.0,CARBO,9999.0,1.0,1.0 0.31038112812163243,-0.01409681015958586,0.9505076723779076,742213.6675,1916312.4525,232.79258450000003,93.0,0.0,18.101486249477716,CARBO,666.0,4.0,1.0 0.6289072148590881,0.19682598512329733,0.7521537387252877,742970.0766666669,1916018.91,326.58763733333336,73.0,0.0,41.222712617419454,CARBO,666.0,3.0,1.0 0.5093529769540599,0.08537413366005334,0.8563123274657631,742969.2825,1917576.92,294.47896625,80.0,0.0,31.09498113031221,CARBO,77.66124198203576,4.0,1.0 0.13570747141528122,-0.27324682358179925,0.9523232936374746,742839.2660000002,1917112.334,237.83881659999997,154.0,0.0,17.763621621288834,CARBO,137.38020883781874,5.0,1.0 0.06106307513197672,-0.2408456762202865,0.9686406253618622,742862.1166666667,1916967.943333333,232.116058,166.0,0.0,14.386754825609248,CARBO,116.86903491434099,3.0,1.0 0.4175398659907633,0.021520659821244,0.9084037216509374,738872.1366666667,1920943.5433333328,338.4717980000001,87.0,0.0,24.71431856159539,CARBO,666.0,3.0,1.0 0.2921541536552971,-0.3338541563002491,0.8962072041793716,739681.4750000002,1919888.135,408.3076565,139.0,0.0,26.336085165002732,CARBO,666.0,2.0,1.0 0.2569117850535059,0.04912287439262773,0.9651856183719416,739523.958,1920077.112,439.4422176,79.0,0.0,15.162997646611338,CARBO,666.0,5.0,1.0 0.4545194776730436,0.4545194776730436,0.766044443119978,738757.81,1919920.23,455.535046,45.0,0.0,39.99999999991086,CARBO,9999.0,1.0,1.0 0.5456167097325716,-0.11144650215120963,0.8305914056976891,739751.15,1918337.073333333,260.8311956666667,102.0,0.0,33.84046232393883,CARBO,666.0,3.0,1.0 0.8385580704278931,-0.2935388846183893,0.4589719879657588,740355.0966666667,1917336.113333333,300.270205,109.0,0.0,62.67920836145788,CARBO,666.0,3.0,1.0 0.17848218420446196,0.10725439897711073,0.9780800600266132,740454.4733333333,1916614.99,433.5922066666667,59.0,0.0,12.018598496798706,CARBO,666.0,3.0,1.0 -0.03333899187405102,0.33776342877028714,0.9406404083421896,737720.7499999999,1917256.8525,341.47707025,354.0,0.0,19.840615780499878,CARBO,666.0,4.0,1.0 0.4934228837726026,-0.028317512719525505,0.8693284628050022,740003.335,1921293.295,240.015737,93.0,0.0,29.619303915420584,CARBO,666.0,2.0,1.0 0.2943938004657894,-0.014345718239539385,0.955576522637251,739670.2339999998,1921448.212,297.7281536000001,93.0,0.0,17.14213463057128,CARBO,666.0,5.0,1.0 0.4727230012069338,-0.2144715284898026,0.8547133599032819,740014.7066666667,1922103.176666667,373.265022,114.0,0.0,31.271917563231806,CARBO,666.0,3.0,1.0 0.6757997033692831,-0.04123144487515162,0.7359311984686452,740166.6033333332,1921897.06,334.9639363333333,93.0,0.0,42.61404016958024,CARBO,666.0,3.0,1.0 0.16597384080137995,-0.3114226705770553,0.9356647927651724,736663.41,1918173.5,360.333436,152.0,0.0,20.66418642358398,CARBO,666.0,4.0,1.0 -0.0749139728256559,0.06181533290774914,0.995272204621922,736573.065,1918403.465,383.7678875,310.0,0.0,5.573631079533034,CARBO,666.0,2.0,1.0 0.1739462743155605,-0.14564259779065974,0.9739255245451388,733051.1425000002,1920730.8925,550.6254452500001,130.0,0.0,13.112745459506275,CARBO,666.0,4.0,1.0 0.3200657590435575,-0.10554991511757662,0.9414972784382034,733379.98,1917424.596666667,402.9813698333333,108.0,0.0,19.69545560614078,CARBO,37.879244180471524,6.0,1.0 0.24978415509575586,0.086450088627782,0.964434683137924,733096.1399999999,1915831.3125,223.88591975000003,71.0,0.0,15.326627380217564,CARBO,666.0,4.0,1.0 0.1844001221818576,0.0214570741279082,0.9826170102889454,733368.9266666665,1916476.0633333328,344.204105,83.0,0.0,10.698699581376957,CARBO,666.0,3.0,1.0 0.5503565600597404,-0.004556824185328606,0.8349172965944313,732893.8766666666,1916816.7733333327,303.701378,90.0,0.0,33.39277246756096,CARBO,666.0,3.0,1.0 -0.1937571905262764,0.04070501337768551,0.9802046995425427,739241.415,1920893.1425,363.3268895,282.0,0.0,11.419253372850985,CARBO,666.0,4.0,1.0 0.0943873837376932,0.16711033359056993,0.9814097809775496,739148.2999999998,1920683.0633333328,435.158729,29.0,0.0,11.065091022232899,CARBO,666.0,3.0,1.0 0.26568567303789425,0.17457797831329294,0.9481211170680908,739275.938,1920273.424,419.4241126,57.0,0.0,18.5365375454816,CARBO,666.0,5.0,1.0 0.022204154377566204,-0.5769861983507479,0.8164520209057776,739575.9083333333,1918303.595,286.18147749999997,178.0,0.0,35.26881154243328,CARBO,666.0,5.0,1.0 0.4435121193014305,0.47002126384158,0.7631362994704927,740596.2000000002,1917374.7866666669,271.90120500000006,43.0,0.0,40.258527262380035,CARBO,666.0,3.0,1.0 -0.2253261150679777,0.2779743935074511,0.9337871162221812,740617.2399999999,1917243.13,286.11923966666666,321.0,0.0,20.966929633157264,CARBO,666.0,3.0,1.0 0.517916914105456,-0.1398846185201572,0.8439160879998391,739315.8175,1914191.99,378.341819,105.0,0.0,32.444011015083625,CARBO,666.0,4.0,1.0 -0.020779909163771662,-0.17508313836735925,0.9843343385428458,738803.7333333334,1914738.3100000003,386.44077033333326,187.0,0.0,10.155015563147435,CARBO,666.0,3.0,1.0 -0.11440892506698755,-0.10668804861369173,0.9876883405961376,735344.62,1920221.76,547.15273,227.0,0.0,8.999999999633774,CARBO,9999.0,1.0,1.0 0.2579613632863356,-0.3082441164536164,0.9156645126481556,734101.5766666669,1920367.5133333327,566.4812573333334,140.0,0.0,23.699726410029964,CARBO,666.0,3.0,1.0 0.008300450030412236,0.0901171929300573,0.9958965779977856,733448.9075,1918173.3875,431.19044725,5.0,0.0,5.1922947890619415,CARBO,666.0,4.0,1.0 0.07696315252303408,0.05012979383122152,0.9957729042930196,732877.0899999999,1918020.275,427.99933675,57.0,0.0,5.270014050545028,CARBO,666.0,4.0,1.0 0.15468988791574534,0.05051780896415792,0.9866706591127938,733664.3533333334,1917776.766666666,425.5402773333333,72.0,0.0,9.365383283141973,CARBO,666.0,3.0,1.0 0.3322951158296534,-0.18951176418188004,0.9239400669050069,744122.8533333334,1916527.51,233.05656466666665,120.0,0.0,22.49093499347876,CARBO,666.0,3.0,1.0 0.2747395334551825,0.09999701235450843,0.9563047559627637,743635.75,1917119.215,295.6579785,70.0,0.0,17.00000000005327,CARBO,263.28647970857367,2.0,1.0 -0.026379452015374262,-0.20334873442018608,0.9787509472389172,743697.8828571428,1916357.2514285718,250.68072628571426,187.0,0.0,11.832580290661259,CARBO,52.33199925850806,7.0,1.0 0.08519466763892111,-0.297438026137472,0.9509324314657368,734509.422,1920093.0280000002,583.1630546,164.0,0.0,18.022992746879773,CARBO,666.0,5.0,1.0 -0.05170551277099178,-0.2399335173334452,0.9694113921391116,742843.0266666667,1916833.9066666663,238.0558193333333,192.0,0.0,14.207929252496676,CARBO,666.0,3.0,1.0 0.16167574793516254,-0.4373674210475678,0.8846302569637811,742780.73,1916794.07,232.61629700000003,160.0,0.0,27.793945111254374,CARBO,666.0,3.0,1.0 -0.049052287239138716,-0.6046505463828914,0.7949789870653688,742821.8699999999,1916799.6225,235.33294175,185.0,0.0,37.34672903325644,CARBO,666.0,4.0,1.0 -0.7898289189347565,0.5767422185900228,-0.20865927276354665,736443.814,1916683.31,462.12948940000007,306.0,0.0,102.04379377329796,CARBO,666.0,5.0,1.0 -0.3434505490669991,-0.03609858197871799,0.9384767512968568,736239.2200000002,1916415.324166667,444.68498691666673,264.0,0.0,20.20269977210405,CARBO,666.0,5.0,1.0 -0.032443653601890665,0.03500769319894482,0.9988602859048152,740857.4535294119,1921627.787647059,259.83954705882354,317.0,0.0,2.735752760829026,LIAS,46.59114320542883,17.0,1.0 -0.04289991343489544,0.12753512800503886,0.9909058424250092,741302.2011111111,1918527.4588888888,383.7812412222222,341.0,0.0,7.73300954776947,LIAS,41.62826679893828,9.0,1.0 -0.0009809362879855557,-0.2354060686457703,0.9718966100407708,737117.7385714286,1914459.7085714287,431.61183014285723,180.0,0.0,13.61568081718811,LIAS,44.13487909442333,7.0,1.0 0.17404973841895025,-0.07815102680545168,0.9816308397587908,741093.1587500002,1916616.92125,447.0601745,114.0,0.0,10.998902035395837,LIAS,40.84428509791752,8.0,1.0 0.09048458526933828,-0.04972774128567429,0.9946555642911072,740341.538,1915874.312,388.5223144,119.0,0.0,5.926280045527343,LIAS,73.48940259984286,5.0,1.0 0.12473561927733826,0.043576540294201216,0.9912326217490458,740775.4400000002,1919682.1684615384,544.873105923077,71.0,0.0,7.592596411800223,LIAS,49.84927995084792,13.0,1.0 0.4271978028920712,-0.1343359094212218,0.8941229784790012,742906.3666666667,1920470.64,210.38406633333332,107.0,0.0,26.60399957779192,LIAS,252.94125113552784,3.0,1.0 -0.262002630228385,0.21984631039395414,0.9396926207869084,739893.94,1913298.17,350.380514,310.0,0.0,19.99999999983248,LIAS,9999.0,2.0,1.0 0.14215746435704324,0.09537278334371854,0.9852386957102568,741352.5733333335,1916018.6716666662,462.9731968333333,56.0,0.0,9.856793944582886,LIAS,42.82510892429321,6.0,1.0 0.09807282000581362,0.08943271869267078,0.9911526173114537,740475.7699999998,1916521.102,456.0512386,48.0,0.0,7.627210891641238,LIAS,107.16715177638386,5.0,1.0 0.0976706845920976,-0.1532933798814919,0.9833420447920548,742070.245,1915779.7575,394.83891625,147.0,0.0,10.472568178091343,LIAS,57.87905109729157,4.0,1.0 -0.0013133812877957885,0.17284094583134135,0.9849488730252552,741683.2729999998,1915694.5580000002,416.4049943,-0.0,0.0,9.953329188630578,LIAS,82.37955918306733,10.0,1.0 -0.228034461951213,0.12682079441229827,0.9653583636490932,742906.8180000002,1914851.202,348.3706076,299.0,0.0,15.125111723631425,LIAS,56.51849743481521,5.0,1.0 -0.07452752476711758,0.3010482745600731,0.9506921607105476,740244.9475,1919679.33,516.9595852499998,346.0,0.0,18.06743415869916,LIAS,408.4879916544275,4.0,1.0 0.4687475384499989,0.17061015138200267,0.8666994412381244,742940.5175,1920211.745,228.873077,70.0,0.0,29.92267058865957,LIAS,44.57871172414149,4.0,1.0 -0.06676517241675071,0.05602263155222212,0.9961946980927456,742894.82,1917959.18,460.65872,310.0,0.0,4.9999999993425375,LIAS,9999.0,1.0,1.0 0.0199522211710739,0.2072696738035611,0.9780803602934202,741755.82,1920252.2933333328,436.25664366666666,5.0,0.0,12.01851587591881,LIAS,75.5064748353995,3.0,1.0 -0.07561103909746959,-0.09979393583082986,0.9921311108608544,745705.2233333333,1915678.9833333327,202.11504366666668,217.0,0.0,7.192494524863747,LIAS,78.86914189112053,3.0,1.0 -0.054900346145957145,-0.0168985797733023,0.9983488318191692,745964.735,1917018.475,272.90566975,253.0,0.0,3.293010090920688,LIAS,666.0,4.0,1.0 -0.23190365523409906,-0.29755695708520186,0.926110442646696,743898.365,1915695.7975,412.9625075,218.0,0.0,22.163599620016395,LIAS,91.86530866941943,4.0,1.0 -0.3113078485132851,0.07650366460652716,0.9472246896886722,741894.700769231,1913315.2023076925,299.6655424615385,284.0,0.0,18.69742431420336,LIAS,49.81845863432659,13.0,1.0 0.1382599328582329,-0.03646517011352128,0.9897244476795696,740689.815,1914585.208333333,444.37858716666665,105.0,0.0,8.220775814578912,LIAS,88.7699709803838,6.0,1.0 -0.251363132162353,-0.015288186887960829,0.9677721049561256,739377.5916666667,1913453.5566666662,367.8307606666667,267.0,0.0,14.585688028093562,LIAS,666.0,5.0,1.0 0.19094303692731207,-0.0939237664173896,0.9770972739451004,741029.62,1915776.555,355.51362,116.0,0.0,12.286087364500894,LIAS,565.1358336839141,2.0,1.0 0.1891095166325812,-0.08408664242495979,0.9783491336351704,740725.6241666669,1916527.8775,421.15844650000014,114.0,0.0,11.944334847059073,LIAS,68.27582613757997,11.0,1.0 -0.11739463034257246,0.1523094326396227,0.9813359962294907,740057.955,1919990.52,500.554997,322.0,0.0,11.087096640692348,LIAS,666.0,4.0,1.0 0.2469195662564325,0.09041854892402043,0.9648083819133256,743053.085,1920237.49,237.06288849999999,70.0,0.0,15.245412268556962,LIAS,666.0,2.0,1.0 0.4178408116409457,-0.11595836692717287,0.9010897365228498,742407.91,1919041.915,292.0945225000001,106.0,0.0,25.698319994763512,LIAS,60.86130611847397,2.0,1.0 0.2264807107291865,-0.1128576901246437,0.967455233820838,742290.46,1920221.18,308.3663630000001,116.0,0.0,14.657609043376999,LIAS,113.83884934768386,2.0,1.0 -0.26442259179913824,-0.1929234754468198,0.9449133428879848,745414.7050000002,1915275.1425,216.71141725,234.0,0.0,19.106227193755892,LIAS,93.01581201822792,4.0,1.0 -0.34158219204304685,0.06925108176457129,0.9372971213833444,743982.2228571429,1917218.8014285718,410.2376285714285,281.0,0.0,20.397512582748,LIAS,85.77671724482917,7.0,1.0 -0.24179219079730285,-0.0308938012449084,0.9698361250820062,743441.5149999999,1915445.945,442.9701195,263.0,0.0,14.108438537683732,LIAS,666.0,2.0,1.0 -0.21924158840109548,0.09971778641465076,0.9705614297858359,741692.568,1914193.108,403.63392180000005,294.0,0.0,13.936932653966489,LIAS,666.0,5.0,1.0 0.04205229295372515,0.047616365485254386,0.9979801032061254,740292.1,1914422.11,478.5598985,41.0,0.0,3.642296946580049,LIAS,82.29064486566396,4.0,1.0 0.32739406877331506,0.22229987599589893,0.9183658796276468,740955.8899999999,1916039.0875,396.475758,56.0,0.0,23.31165812583447,LIAS,666.0,4.0,1.0 -0.3415161042543516,-0.19549721966382705,0.9193190891299085,742723.9639999998,1915862.168,339.4486666,240.0,0.0,23.17326045426997,LIAS,666.0,5.0,1.0 -0.05265472051106973,-0.01814006214615224,0.9984480049322724,742310.9933333333,1915743.636666667,369.60657833333335,251.0,0.0,3.1925593763123823,LIAS,666.0,3.0,1.0 0.24895179226356706,0.1971850415476281,0.9482304912407205,742686.4366666665,1919714.5666666662,239.26175266666667,52.0,0.0,18.516815265762478,LIAS,254.57239952008143,3.0,1.0 0.5961477754102641,0.381113865392916,0.7066541243625934,742795.1366666667,1919738.5433333328,251.1139053333333,57.0,0.0,45.03666635938898,LIAS,135.89349874365521,3.0,1.0 0.4698463103939541,-0.17101007166183432,0.8660254037854387,742318.06,1919744.03,245.047332,110.0,0.0,29.99999999988541,LIAS,9999.0,1.0,1.0 0.14163077457212625,-0.3004198022107941,0.9432330921536451,744963.1780000002,1915453.928,239.9798214,155.0,0.0,19.39820008249564,LIAS,666.0,5.0,1.0 -0.19440071445627816,-0.20879451390250425,0.9584431194302068,744797.9483333335,1916794.4933333327,311.4523028333333,223.0,0.0,16.57580716084547,LIAS,57.06697233701696,5.0,1.0 0.2891380983455003,-0.09354156199955907,0.9527062171854608,740244.9033333333,1914089.58,470.6701516666667,108.0,0.0,17.691567458987738,LIAS,666.0,3.0,1.0 0.11824272901483493,0.2249163911904735,0.9671769610619241,742496.97,1920116.958,266.5526094,28.0,0.0,14.720485820522347,LIAS,666.0,5.0,1.0 -0.06336893494954535,0.12364528850413578,0.9903010757916452,745352.2440000002,1917402.932,364.97309360000014,333.0,0.0,7.986399936082772,LIAS,666.0,5.0,1.0 -0.4001598693216967,0.2467272101275932,0.8826084991473271,743896.6375000002,1917500.8,406.78858775,302.0,0.0,28.04135599142993,LIAS,666.0,4.0,1.0 -0.05689378717118266,-0.2744254923906118,0.9599238230752952,744430.62,1917390.38,446.6613685,192.0,0.0,16.275785360532254,LIAS,666.0,2.0,1.0 -0.2780844026066757,-0.008355398707114912,0.9605203029292684,744805.4066666667,1917547.9966666668,401.04658,268.0,0.0,16.15339487438163,LIAS,666.0,3.0,1.0 -0.4470972316697441,0.0425921841224655,0.8934707445042223,744757.4240000001,1917272.406,436.96156239999993,275.0,0.0,26.68732761887444,LIAS,666.0,5.0,1.0 0.055725450080890235,-0.26359614626688266,0.9630221938701778,737415.6566666666,1914843.586,421.81760086666657,168.0,0.0,15.62987980759584,TRIAS,50.56407855701874,15.0,1.0 0.30691002014358165,-0.20475410784145545,0.9294525242622756,740244.2266666666,1915875.1866666668,372.34757233333335,124.0,0.0,21.650366250532688,TRIAS,666.0,3.0,1.0 -0.0199627893923028,-0.3261212252840455,0.9451171532984212,736156.2809090908,1914605.866363637,315.5559065454545,184.0,0.0,19.070519110475853,TRIAS,56.11869022819319,11.0,1.0 -0.3220654306648967,0.004378227676478208,0.9467072881799566,739831.9199999998,1919995.24,473.31402649999995,271.0,0.0,18.789680431416713,TRIAS,666.0,2.0,1.0 0.09339060527363266,0.12369378608063387,0.9879160096544964,740304.9975,1922093.4725,336.2459120000001,37.0,0.0,8.916227094776172,TRIAS,52.1787674268316,4.0,1.0 -0.03091738765866635,0.35719272580120925,0.9335188652486172,740672.605,1917438.79,263.189224,355.0,0.0,21.009840196019574,TRIAS,193.5003727176326,2.0,1.0 0.22931496441325744,-0.3882757000044628,0.8925562323361991,744867.615,1916081.2675,243.8227185,149.0,0.0,26.80375944537877,TRIAS,666.0,4.0,1.0 -0.02243332226336828,0.011933750328206764,0.9996771136998844,739480.936,1914039.492,389.2310268,298.0,0.0,1.4560427487314551,TRIAS,50.9834966255021,5.0,1.0 0.14995445055177015,-0.1970916060936847,0.968849091224804,739660.345,1912787.84,359.653983,143.0,0.0,14.338604112527086,TRIAS,147.31117091221805,2.0,1.0 0.2292247448657589,0.05016757072384922,0.9720798481549214,740620.988,1921597.968,208.5630142,78.0,0.0,13.571010752724158,TRIAS,666.0,5.0,1.0 0.1883683909654389,0.049672006533906285,0.9808414963958176,740408.082,1918519.916,338.379541,75.0,0.0,11.233478034612656,TRIAS,666.0,5.0,1.0 0.3338575575699093,-0.10079954729255856,0.9372185350915068,740617.1025,1916897.97,341.82130325,107.0,0.0,20.410427628946906,TRIAS,69.90516065153099,4.0,1.0 0.11983531427901566,0.024982102419430482,0.9924794164164588,734931.01,1914466.865,290.603854,78.0,0.0,7.031305316398642,TRIAS,666.0,2.0,1.0 0.09029543281987401,0.008356237843816047,0.9958799667133432,734947.02,1913656.27,201.2818655,85.0,0.0,5.2028009920018174,TRIAS,666.0,4.0,1.0 0.3840424474994877,-0.1510854899493627,0.9108702285426636,744094.7599999999,1916705.55,268.3869486666667,111.0,0.0,24.37411097524199,TRIAS,666.0,3.0,1.0 -0.2372552402364447,-0.09430022721038472,0.966859564843011,743773.4199999998,1915901.1466666663,372.3534893333333,248.0,0.0,14.7918835935429,TRIAS,666.0,3.0,1.0 -0.19826689127314606,-0.16636567534180194,0.9659258262900684,742928.54,1915746.53,346.172781,230.0,0.0,14.9999999997786,TRIAS,9999.0,1.0,1.0 -0.4913503896343961,-0.3629448375454871,0.7917359657772327,742803.7799999998,1915956.913333333,294.8992603333333,234.0,0.0,37.65196259185392,TRIAS,666.0,3.0,1.0 0.257852618479621,-0.2720411429963707,0.9270952721594644,742488.9650000002,1916136.47,261.3245,137.0,0.0,22.01354464609896,TRIAS,666.0,2.0,1.0 0.01704645427133248,-0.11430654263585732,0.9932992664385756,739222.7200000002,1913788.9,346.05783199999996,172.0,0.0,6.636538392529192,TRIAS,54.12043941924902,3.0,1.0 0.1354371336566728,-0.24451599141936106,0.9601399443659614,738832.11,1913289.25,253.0959795,151.0,0.0,16.231543623671566,TRIAS,66.32438694271504,2.0,1.0 -0.08726466715882404,0.2397577025388359,0.9669028503107014,740716.6,1918191.14,307.093429,340.0,0.0,14.78216645359319,TRIAS,990.1395530035628,2.0,1.0 0.21986497545985165,-0.022615426020991,0.9752681349618308,740736.9375,1917741.35,252.31542275,96.0,0.0,12.769245200322326,TRIAS,68.37643083900122,4.0,1.0 -0.17199320654523148,0.23362433590423226,0.9569942562918524,741400.2840000001,1917921.818,308.7250188,324.0,0.0,16.864354012731205,TRIAS,666.0,5.0,1.0 0.1911257307309869,0.04285534533405747,0.9806295806413576,740571.98,1916832.81,345.90669450000007,77.0,0.0,11.295635861896393,TRIAS,666.0,2.0,1.0 0.2861334003211585,-0.2446995998784597,0.9264177152019348,742420.4733333333,1919351.8233333328,249.1324573333333,131.0,0.0,22.116885393037453,TRIAS,82.60792275923285,3.0,1.0 -0.175374546598977,-0.20813447837296548,0.9622493477875768,743825.6020000002,1917840.4740000002,383.3749121999999,220.0,0.0,15.793400797981286,TRIAS,666.0,5.0,1.0 0.07564318932658234,0.2823042258106117,0.9563380322866878,743468.96,1917402.846666667,308.02254633333337,15.0,0.0,16.99347765910808,TRIAS,205.9197368336889,3.0,1.0 -0.17884529693769666,-0.1656702779933702,0.9698287058820576,743426.1200000001,1917843.223333333,345.712927,227.0,0.0,14.110182330160836,TRIAS,226.29033711307446,3.0,1.0 -0.497560954182561,-0.16035314124499428,0.8524787193624263,744488.0066666667,1917861.086666667,394.63205466666665,252.0,0.0,31.51769916042881,TRIAS,666.0,3.0,1.0 -0.1552445777135846,-0.13753147105918478,0.9782557004990196,742279.155,1916059.41,243.58473525,228.0,0.0,11.970173614280837,TRIAS,666.0,4.0,1.0 -0.17996954858316488,-0.4607308540736007,0.8691018592129358,742203.4499999998,1916147.93,238.785178,201.0,0.0,29.64556309256173,TRIAS,666.0,3.0,1.0 0.0940780648088157,-0.23931894989078906,0.9663724737103176,739305.5266666667,1913707.953333333,374.58330466666666,159.0,0.0,14.900803401416676,TRIAS,666.0,3.0,1.0 -0.2486692678569797,-0.2975970665112235,0.921737262579412,739155.19,1913049.363333333,331.29034733333333,220.0,0.0,22.818606023380504,TRIAS,57.665843713907925,3.0,1.0 -0.2308720267551523,0.5875580087192097,0.7755473510056529,742620.4633333335,1917638.2866666662,291.78879333333333,339.0,0.0,39.145316312009726,TRIAS,78.51131668087326,3.0,1.0 -0.16282177754906355,0.11162633204065656,0.9803206775085959,742674.5775000001,1920051.9125,224.14819625,304.0,0.0,11.385641463290904,TRIAS,666.0,4.0,1.0 0.4698463103939541,-0.17101007166183432,0.8660254037854387,742639.24,1920662.49,188.15616,110.0,0.0,29.99999999988541,TRIAS,9999.0,1.0,1.0 -0.043009101959541184,0.10483120856650584,0.9935595779112192,742706.4880000001,1920197.136,226.6922744,338.0,0.0,6.506211216205774,TRIAS,110.57825451892624,5.0,1.0 -0.0960705785928054,-0.028353171985708626,0.9949706234694532,744682.5833333335,1917773.883333333,373.5769333333333,254.0,0.0,5.748795937126647,TRIAS,666.0,3.0,1.0 -0.3077152623992029,0.11858691984436773,0.9440595636549716,744819.47,1917595.118,392.177902,291.0,0.0,19.255118528329934,TRIAS,666.0,5.0,1.0 -0.14225918750713604,-0.2456324481698785,0.9588675737430492,743028.63,1915824.083333333,333.87490099999997,210.0,0.0,16.490346488528665,TRIAS,666.0,3.0,1.0 -0.4621265452496264,-0.20657487497441804,0.8624186206274472,742959.0160000002,1915933.0,324.5065408000001,246.0,0.0,30.41076017337381,TRIAS,666.0,5.0,1.0 -0.06710119001714136,-0.22604349903108475,0.9718033581152452,738834.3233333335,1912992.9933333327,297.9519140000001,197.0,0.0,13.638358795210106,TRIAS,666.0,3.0,1.0 -0.08852132690037684,0.3303660895503521,0.9396926207869084,743040.04,1917630.17,300.7260080000001,345.0,0.0,19.99999999983248,TRIAS,9999.0,1.0,1.0 0.07216284643211215,0.2825471190049828,0.9565352315188392,743100.7420000002,1917758.218,332.3188164,14.0,0.0,16.954775561113152,TRIAS,666.0,5.0,1.0 0.001733725198842746,0.18470470212988005,0.9827925351812798,742768.745,1917604.815,300.8858815,1.0,0.0,10.644390735335056,TRIAS,666.0,4.0,1.0 -0.052413242772351,0.21861775943705128,0.9744019331060516,742394.7159999999,1917459.51,268.82865240000007,347.0,0.0,12.99188054104146,TRIAS,86.12539741431755,5.0,1.0 0.12495393946292968,-0.2266630251159853,0.9659246275243036,742532.6699999998,1919603.73,226.404902,151.0,0.0,15.000265372928805,TRIAS,97.77203820573187,2.0,1.0 -0.01954091690420066,-0.04032682794113752,0.9989954451921936,742598.7,1919846.62,208.3317845,206.0,0.0,2.5683890592670284,TRIAS,666.0,2.0,1.0 0.3192301606383364,0.16384957993474394,0.9334052815867444,742971.71,1917595.244,297.5639738,63.0,0.0,21.027984323000574,TRIAS,666.0,5.0,1.0 -0.0817545910314656,0.014983475336641412,0.9965398548538408,742108.0385714284,1917696.0028571428,293.83691585714286,280.0,0.0,4.767712896650262,TRIAS,50.730340327600786,6.0,1.0 0.3266625212767311,0.0016704080965186721,0.945139570079425,742596.5959999998,1919714.084,220.72519640000002,90.0,0.0,19.066587705464002,TRIAS,666.0,5.0,1.0 -0.9106174280000568,-0.23194422040603874,0.3420201433266688,737738.17,1917423.03,357.440542,255.71,,70.0,fault_left,30.0,,1.0 -0.9361168066618591,-0.0818996083180894,0.3420201433266688,737837.47,1916727.55,404.256019,265.0,,70.0,fault_left,30.0,,1.0 -0.8443743289408636,-0.4123763016743828,0.3420201433266688,737461.66,1917722.82,316.354856,243.97,,70.0,fault_left,30.0,,1.0 -0.9254165783973234,-0.33682408883246506,0.17364817766793042,736735.28,1919849.34,408.343143,250.0,,80.0,fault_left,30.0,,1.0 -0.7870995606144171,-0.5133191046877951,-0.34202014332466885,736036.13,1921546.28,607.2240009999998,56.889,,70.0,fault_left,30.0,,-1.0 0.5265407845193631,0.3686878264956124,0.766044443119978,739523.48,1918873.25,270.371423,55.0,,40.0,fault_right,30.0,,1.0 -0.5426374335051785,-0.8397857043708806,0.017452406438283597,742287.45,1916216.85,225.982851,212.86900000000003,,89.0,fault_lr,30.0,,1.0 -0.29619813272502377,-0.8137976813483737,0.5000000000010001,743018.29,1915887.52,343.775456,200.0,,60.0,fault_lr,30.0,,1.0 -0.3830222215584891,-0.6634139481679384,0.6427876096875393,743443.55,1915469.56,442.843385,210.0,,50.0,fault_lr,30.0,,1.0 ================================================ FILE: examples/data/input_data/Claudius/APoints.csv ================================================ X;Y;Z;Strati;Cutoff 550464.3105;7817886.25;-8833.120117;0;0.46661092 549339.3105;7817886.25;-8864.879883;0;0.210270623 551626.8105;7820570.359;-8846.129883;0;0.792055027 549801.8105;7819031.219;-8852.179688;0;0.613674535 551801.8105;7821809.18;-8845.959961;0;0.694099828 549751.8105;7817980.098;-8867.639648;0;0.729885444 549826.8105;7818055.18;-8869.389648;0;0.987447522 552101.8105;7818561.969;-8811.410156;0;0.178154293 551264.3105;7818130.258;-8796.799805;0;0.694003308 550489.3105;7818224.109;-8839.269531;0;0.590733537 549301.8105;7819068.758;-8906.370117;0;0.216899074 551076.8105;7818543.199;-8809.919922;0;0.27758717 550701.8105;7817341.918;-8813.429688;0;0.030947733 549576.8105;7817811.168;-8853.530273;0;0.269810173 549389.3105;7820532.82;-8951.950195;0;0.643913885 551126.8105;7820814.371;-8876.94043;0;0.228564786 552301.8105;7817304.379;-8752.639648;0;0.349591845 549126.8105;7819068.758;-8917.820313;0;0.727694847 551064.3105;7820983.297;-8890.679688;0;0.582675121 549689.3105;7816684.969;-8833;0;0.744824074 549276.8105;7818167.797;-8881.370117;0;0.169930941 549014.3105;7819294;-8941.469727;0;0.866805154 550326.8105;7819819.559;-8795;0;0.274763064 551289.3105;7819575.551;-8821.089844;0;0.155746655 552039.3105;7818824.75;-8811.799805;0;0.658915177 550976.8105;7818543.199;-8817.389648;0;0.970219291 552001.8105;7818092.719;-8784.299805;0;0.577062026 552439.3105;7821415.008;-8861.370117;0;0.136361184 548901.8105;7820044.801;-8941.980469;0;0.919952257 550414.3105;7820551.59;-8801.360352;0;0.505665143 550476.8105;7818055.18;-8837.169922;0;0.054720248 551251.8105;7818637.047;-8804.530273;0;0.209671601 549864.3105;7819706.938;-8861.839844;0;0.008864605 551776.8105;7816684.969;-8771.910156;0;0.376516007 552289.3105;7817642.238;-8775.69043;0;0.721713696 549889.3105;7818055.18;-8867.129883;0;0.250801475 551164.3105;7818055.18;-8795.950195;0;0.484609572 551489.3105;7818130.258;-8785.040039;0;0.788206189 549389.3105;7818637.047;-8872.040039;0;0.089640717 549426.8105;7817266.84;-8792.830078;0;0.514833967 550651.8105;7817754.859;-8825.389648;0;0.930896345 550289.3105;7818524.43;-8843.530273;0;0.651831149 550526.8105;7818486.891;-8825.19043;0;0.598106112 549951.8105;7818055.18;-8866.719727;0;0.098748477 551164.3105;7821020.84;-8888.820313;0;0.882187161 548889.3105;7816684.969;-8874.269531;0;0.120690791 552326.8105;7820945.758;-8842.610352;0;0.799556106 552314.3105;7816778.816;-8744.5;0;0.089182882 552151.8105;7819125.07;-8811.219727;0;0.339198473 552039.3105;7820851.91;-8850.009766;0;0.563298752 550089.3105;7819500.469;-8819.410156;0;0.44377567 549114.3105;7821433.781;-8954.410156;0;0.841413932 551976.8105;7818956.141;-8813.040039;0;0.418925612 551526.8105;7821227.309;-8900.94043;0;0.631017517 550964.3105;7819275.23;-8806.349609;0;0.730229504 552014.3105;7817661.008;-8789.830078;0;0.730947994 549751.8105;7821809.18;-8968.230469;0;0.280564613 550976.8105;7818186.57;-8807.730469;0;0.797289925 551464.3105;7821152.23;-8895.769531;0;0.534160543 549464.3105;7820194.961;-8927.660156;0;0.409677331 551526.8105;7819425.391;-8820.830078;0;0.10597476 551364.3105;7820908.219;-8886.349609;0;0.846224418 551289.3105;7821471.32;-8904.669922;0;0.894134796 551801.8105;7821752.867;-8853.799805;0;0.773581906 551989.3105;7819500.469;-8808.730469;0;0.446160856 550626.8105;7820082.34;-8775.349609;0;0.983553712 549601.8105;7821471.32;-8963.980469;0;0.836591737 552039.3105;7818561.969;-8808.179688;0;0.106387335 551501.8105;7821809.18;-8880.339844;0;0.717504355 550126.8105;7820007.258;-8812.509766;0;0.55064124 551414.3105;7820833.141;-8879.469727;0;0.965958174 548876.8105;7821133.457;-8967.650391;0;0.148674618 552226.8105;7817379.461;-8762.620117;0;0.16188132 552039.3105;7821039.609;-8859.179688;0;0.310148636 549864.3105;7819049.988;-8849.620117;0;0.060442438 549014.3105;7816666.199;-8873.290039;0;0.658301432 552039.3105;7821827.949;-8841.919922;0;0.679099802 551864.3105;7817567.16;-8791.19043;0;0.293323436 549476.8105;7818543.199;-8864.049805;0;0.891848067 550114.3105;7817154.219;-8821.719727;0;0.264234236 550289.3105;7817754.859;-8843.040039;0;0.464320375 551314.3105;7818561.969;-8791.709961;0;0.238738626 549951.8105;7818130.258;-8868.280273;0;0.14891568 551751.8105;7819200.148;-8814.780273;0;0.469940022 551776.8105;7820532.82;-8829.129883;0;0.358069313 551664.3105;7817923.789;-8796.480469;0;0.087957194 549989.3105;7821264.848;-8940.540039;0;0.006284792 549114.3105;7818749.668;-8913.709961;0;0.156123122 552439.3105;7821321.16;-8860.669922;0;0.836576464 550701.8105;7819275.23;-8776.019531;0;0.898506135 550589.3105;7819763.25;-8802.730469;0;0.782361767 551039.3105;7820645.438;-8847.509766;0;0.2480937 552064.3105;7821114.691;-8859.950195;0;0.188699889 550489.3105;7817698.547;-8830.540039;0;0.076482453 549401.8105;7818899.828;-8880.830078;0;0.470392548 550939.3105;7820551.59;-8817.929688;0;0.596265885 549501.8105;7821020.84;-8954.589844;0;0.536405685 549726.8105;7819500.469;-8878.55957;0;0.819746289 551014.3105;7820908.219;-8879.870117;0;0.80504246 549001.8105;7821152.23;-8970.549805;0;0.860708897 551664.3105;7819932.18;-8825.889648;0;0.840030654 549289.3105;7818561.969;-8891.139648;0;0.74449786 550601.8105;7818299.188;-8818.980469;0;0.101736479 552401.8105;7818017.637;-8798.700195;0;0.664439441 550001.8105;7821433.781;-8961.639648;0;0.342978014 549226.8105;7818561.969;-8899.490234;0;0.054721766 551751.8105;7820589.129;-8834.570313;0;0.770688894 549639.3105;7819688.168;-8896.299805;0;0.39193778 550139.3105;7818730.898;-8819.5;0;0.444602386 549576.8105;7817905.02;-8864.790039;0;0.456983211 549064.3105;7819125.07;-8927.280273;0;0.773547057 550826.8105;7821546.398;-8912.099609;0;0.972811684 551864.3105;7817266.84;-8780.049805;0;0.076605585 550551.8105;7821490.09;-8923.629883;0;0.926948254 550364.3105;7819012.449;-8785.080078;0;0.801429957 549464.3105;7819294;-8906.129883;0;0.941065078 552226.8105;7816684.969;-8756.900391;0;0.30713161 552214.3105;7819969.719;-8789.929688;0;0.657676354 552126.8105;7818017.637;-8795.349609;0;0.097893513 552214.3105;7820626.668;-8817.290039;0;0.703808708 552214.3105;7821734.102;-8841.55957;0;0.787870081 550526.8105;7817754.859;-8830.5;0;0.296286942 551989.3105;7820626.668;-8835.160156;0;0.344676397 551751.8105;7820307.578;-8805.879883;0;0.320219085 550464.3105;7817754.859;-8832.94043;0;0.500190215 549364.3105;7817811.168;-8858.280273;0;0.467368456 552376.8105;7818805.98;-8818.769531;0;0.946561696 549351.8105;7820626.668;-8954.030273;0;0.506935236 549789.3105;7821752.867;-8967.650391;0;0.148978804 551914.3105;7819106.301;-8817.459961;0;0.703241817 548914.3105;7820138.648;-8948.950195;0;0.472008331 549751.8105;7816684.969;-8836.69043;0;0.67139843 551701.8105;7818073.949;-8778.019531;0;0.817614164 549939.3105;7817548.387;-8848.80957;0;0.766182596 548889.3105;7821227.309;-8963.900391;0;0.444085989 548939.3105;7821133.457;-8968.570313;0;0.589389843 552301.8105;7820232.5;-8802.400391;0;0.546939538 552014.3105;7817998.871;-8786.230469;0;0.784774484 550039.3105;7819143.84;-8838.240234;0;0.738710856 551789.3105;7819932.18;-8818.839844;0;0.503958367 549076.8105;7821133.457;-8966.889648;0;0.448873325 551164.3105;7820983.297;-8886.570313;0;0.338517892 549164.3105;7818167.797;-8896.69043;0;0.506966689 551939.3105;7820082.34;-8773.769531;0;0.410915665 552201.8105;7817060.367;-8726.889648;0;0.326247009 552039.3105;7821752.867;-8847.639648;0;0.030755491 551401.8105;7821171;-8894.30957;0;0.585472125 552214.3105;7820720.52;-8831.269531;0;0.292591532 551914.3105;7817567.16;-8789.259766;0;0.013767675 551189.3105;7817980.098;-8791.530273;0;0.425516338 549651.8105;7820138.648;-8907.269531;0;0.238658974 551076.8105;7818693.359;-8820.589844;0;0.295531087 552326.8105;7820532.82;-8817.519531;0;0.36213422 550351.8105;7818393.039;-8845.980469;0;0.509198011 552101.8105;7818486.891;-8812.25;0;0.383670356 548889.3105;7818186.57;-8913.30957;0;0.279105408 549539.3105;7821471.32;-8964.799805;0;0.891044534 551001.8105;7821490.09;-8912.839844;0;0.949069584 550089.3105;7819575.551;-8824.360352;0;0.68382459 550264.3105;7818956.141;-8803.240234;0;0.099079303 551839.3105;7819763.25;-8821.290039;0;0.158513942 549564.3105;7820401.43;-8926.610352;0;0.794049073 549601.8105;7820063.57;-8916.55957;0;0.609534905 550576.8086;7817567.16;-8828.150391;0;0.450561722 549751.8105;7818956.141;-8858.030273;0;0.200180631 551939.3105;7821602.711;-8868.660156;0;0.471506007 551639.3105;7820476.508;-8841.200195;0;0.289092065 550239.3105;7818130.258;-8858.230469;0;0.614301246 549276.8105;7817998.871;-8871.379883;0;0.467395292 552076.8105;7820044.801;-8776.169922;0;0.095005336 549951.8105;7820101.109;-8855.030273;0;0.997265158 550701.8105;7821715.328;-8930.530273;0;0.052010715 552264.3105;7821339.93;-8859.610352;0;0.233070915 549151.8105;7817623.469;-8825.55957;0;0.397689994 551839.3105;7819688.168;-8821.259766;0;0.569289221 551939.3105;7821565.168;-8873.330078;0;0.629061553 550151.8105;7821246.078;-8933.120117;0;0.662727184 550189.3105;7819049.988;-8812.759766;0;0.773541393 550851.8105;7820026.027;-8810.370117;0;0.615777323 550601.8105;7818336.73;-8817.990234;0;0.731149878 549964.3105;7818956.141;-8844.490234;0;0.390240637 550864.3105;7818299.188;-8821.080078;0;0.985454338 549176.8105;7817022.828;-8836.349609;0;0.049312827 551514.3105;7821321.16;-8902.660156;0;0.289407801 551951.8105;7818017.637;-8785.129883;0;0.560648146 551489.3105;7818055.18;-8788.099609;0;0.368239624 549814.3105;7817980.098;-8867.179688;0;0.965812619 549564.3105;7817773.629;-8847.280273;0;0.364161628 549801.8105;7820739.289;-8924.870117;0;0.96995329 552214.3105;7818956.141;-8813.419922;0;0.400141915 550389.3105;7817041.598;-8822.209961;0;0.405752561 551726.8105;7819932.18;-8821.950195;0;0.382794353 549476.8105;7818092.719;-8874.370117;0;0.56850982 549201.8105;7816947.75;-8843.919922;0;0.070780511 551614.3105;7820026.027;-8815.349609;0;0.480669811 549339.3105;7821339.93;-8955.490234;0;0.19606128 549739.3105;7816835.129;-8837.360352;0;0.02315849 552276.8105;7821508.859;-8855.55957;0;0.070154711 552439.3105;7819162.609;-8817.519531;0;0.255871046 549676.8105;7817867.48;-8863.150391;0;0.119420349 550814.3105;7821809.18;-8927.049805;0;0.850167894 551676.8105;7816947.75;-8790.580078;0;0.005130977 552414.3105;7819725.711;-8806.400391;0;0.877972239 549339.3105;7821734.102;-8972.839844;0;0.025500917 549726.8105;7820082.34;-8896.370117;0;0.686787978 550589.3105;7818486.891;-8821.919922;0;0.466685218 550701.8105;7818524.43;-8833.969727;0;0.242000852 548926.8105;7817379.461;-8860.209961;0;0.061159257 551664.3105;7817323.148;-8786.919922;0;0.405147717 549389.3105;7821809.18;-8976.709961;0;0.83073517 551526.8105;7821002.07;-8887.540039;0;0.528838407 549526.8105;7820213.73;-8919.629883;0;0.345863973 550601.8105;7820026.027;-8780.169922;0;0.563598399 550176.8105;7818224.109;-8860.150391;0;0.223264024 551051.8105;7819932.18;-8822.360352;0;0.156513292 551851.8105;7818055.18;-8778.879883;0;0.450699557 550639.3105;7817998.871;-8823.070313;0;0.675969077 551026.8105;7819012.449;-8811.030273;0;0.022479008 548976.8105;7817360.688;-8852.419922;0;0.594297933 549926.8105;7821321.16;-8947.490234;0;0.580973943 552276.8105;7819181.379;-8818.080078;0;0.822587216 551764.3105;7818224.109;-8782.700195;0;0.844699284 550126.8105;7818486.891;-8849.679688;0;0.103116899 551301.8105;7820739.289;-8875.209961;0;0.581546867 552339.3105;7817116.68;-8720.759766;0;0.440820897 550176.8105;7817154.219;-8818.389648;0;0.678345528 550626.8105;7819425.391;-8779.910156;0;0.790317716 550401.8105;7817923.789;-8839.679688;0;0.815131493 552401.8105;7821264.848;-8858.269531;0;0.299775366 551214.3105;7818055.18;-8795.299805;0;0.662496422 550826.8105;7820851.91;-8879.269531;0;0.344759016 550014.3105;7818317.957;-8860.419922;0;0.994552857 550026.8105;7819650.629;-8827.790039;0;0.987443545 550851.8105;7820908.219;-8885.75;0;0.217126811 551964.3105;7819369.078;-8814.679688;0;0.941223585 549989.3105;7817905.02;-8864.509766;0;0.244038384 549114.3105;7818993.68;-8913.459961;0;0.166195573 549776.8105;7818167.797;-8868.759766;0;0.214135346 552264.3105;7818730.898;-8817.889648;0;0.509957369 550689.3105;7821583.941;-8922.929688;0;0.183832695 551176.8105;7819369.078;-8814.620117;0;0.124736771 549126.8105;7819294;-8934.419922;0;0.479842351 551351.8105;7821546.398;-8902.120117;0;0.024136487 549251.8105;7821264.848;-8956.639648;0;0.279062096 550751.8105;7818186.57;-8808.290039;0;0.84570089 550651.8105;7816684.969;-8840.009766;0;0.58889203 551901.8105;7819763.25;-8816.839844;0;0.112088343 550226.8105;7817661.008;-8844.849609;0;0.108105225 550114.3105;7817717.32;-8853.570313;0;0.63893575 551676.8105;7819782.02;-8826.490234;0;0.364798295 550801.8105;7819500.469;-8801.700195;0;0.605712748 551739.3105;7821734.102;-8858.05957;0;0.997622965 549339.3105;7821640.25;-8961.730469;0;0.153598144 552451.8105;7817379.461;-8725.280273;0;0.50709432 551376.8105;7817754.859;-8797.290039;0;0.823442849 550276.8105;7818918.598;-8807.889648;0;0.934903952 549651.8105;7821396.238;-8960.049805;0;0.193370673 551726.8105;7816853.898;-8786.139648;0;0.767548812 551626.8105;7818130.258;-8779.530273;0;0.955072512 551739.3105;7817717.32;-8799.94043;0;0.968322664 551789.3105;7819857.098;-8825.75;0;0.376051565 551764.3105;7818073.949;-8774.759766;0;0.00353932 550989.3105;7819631.859;-8810.230469;0;0.827431407 549964.3105;7818824.75;-8836.360352;0;0.980473345 549926.8105;7817886.25;-8865.429688;0;0.939402241 549676.8105;7817998.871;-8867.519531;0;0.412134208 551351.8105;7821246.078;-8892.410156;0;0.745246478 551414.3105;7819200.148;-8817.860352;0;0.538393286 550039.3105;7821734.102;-8959.339844;0;0.441429073 548889.3105;7818355.5;-8921.879883;0;0.550005876 551776.8105;7819669.398;-8824.410156;0;0.615024907 550626.8105;7819669.398;-8804.230469;0;0.567569277 551314.3105;7818637.047;-8797.389648;0;0.208196998 550726.8105;7817417;-8813.150391;0;0.398641871 552064.3105;7817210.527;-8768.570313;0;0.558974013 552076.8105;7820082.34;-8771.530273;0;0.777237675 549951.8105;7818224.109;-8864.330078;0;0.866550903 550614.3105;7820532.82;-8813.799805;0;0.457298487 550401.8105;7817980.098;-8842.389648;0;0.643011703 551626.8105;7819688.168;-8828.230469;0;0.817555282 551776.8105;7816778.816;-8778.780273;0;0.457764978 550376.8105;7819275.23;-8803.290039;0;0.091032761 551289.3105;7819425.391;-8812.629883;0;0.707769906 549864.3105;7819106.301;-8845.169922;0;0.941833519 549576.8105;7819143.84;-8884.280273;0;0.809313464 549839.3105;7819369.078;-8848.580078;0;0.400016346 550326.8105;7821339.93;-8921.209961;0;0.68319967 552064.3105;7817642.238;-8787.120117;0;0.815488065 552214.3105;7819331.539;-8816.009766;0;0.953103201 552389.3105;7817567.16;-8750.950195;0;0.782406771 551689.3105;7819181.379;-8816.910156;0;0.327135729 552214.3105;7818092.719;-8807.410156;0;0.32966741 550789.3105;7821039.609;-8903.860352;0;0.891110201 551589.3105;7818881.059;-8797.299805;0;0.720466561 552276.8105;7820720.52;-8829.980469;0;0.535495352 552326.8105;7821640.25;-8845.089844;0;0.198529743 551751.8105;7818805.98;-8798.55957;0;0.130473388 550326.8105;7821715.328;-8943.230469;0;0.494656987 550551.8105;7820551.59;-8811.679688;0;0.407227499 550864.3105;7819444.16;-8802.379883;0;0.57807525 550064.3105;7819932.18;-8821.25;0;0.275067994 551201.8105;7820570.359;-8855.969727;0;0.886569317 549001.8105;7817191.758;-8852.969727;0;0.888169803 550414.3105;7818393.039;-8841.540039;0;0.660830099 549726.8105;7818486.891;-8843.040039;0;0.234720966 550289.3105;7817154.219;-8817.089844;0;0.11423372 550639.3105;7818242.879;-8817.919922;0;0.047466983 552414.3105;7819650.629;-8812.570313;0;0.850797222 550901.8105;7821377.469;-8919.410156;0;0.029563571 552051.8105;7819350.309;-8813.290039;0;0.520500124 550789.3105;7821377.469;-8919.679688;0;0.139484216 551051.8105;7818956.141;-8816.389648;0;0.03387833 549651.8105;7821809.18;-8969.629883;0;0.650388941 552301.8105;7820889.449;-8840.179688;0;0.823834473 552389.3105;7816947.75;-8705.070313;0;0.883365705 551351.8105;7819594.32;-8817.980469;0;0.352645963 551039.3105;7820682.98;-8853.219727;0;0.974386436 551139.3105;7818693.359;-8820.049805;0;0.644269628 549551.8105;7821640.25;-8966.179688;0;0.004985855 552064.3105;7816853.898;-8768.240234;0;0.763731345 551589.3105;7818730.898;-8790.459961;0;0.789053609 551676.8105;7817210.527;-8787.230469;0;0.599501866 551351.8105;7819425.391;-8808.410156;0;0.252059628 551576.8105;7817886.25;-8796.980469;0;0.255271626 551639.3105;7819275.23;-8823.070313;0;0.455229417 549514.3105;7819162.609;-8893.080078;0;0.922766593 552264.3105;7819031.219;-8812.269531;0;0.229818037 551814.3105;7820007.258;-8798.950195;0;0.861162099 550264.3105;7821565.168;-8935.269531;0;0.134059892 549189.3105;7817923.789;-8865.099609;0;0.987990847 550464.3105;7817829.938;-8834.099609;0;0.840948169 550076.8105;7820138.648;-8815.360352;0;0.686453025 551426.8105;7820664.211;-8871.700195;0;0.012963097 550114.3105;7818224.109;-8863.209961;0;0.362540248 550339.3105;7817980.098;-8849.080078;0;0.24477704 549814.3105;7819800.789;-8871.830078;0;0.572751122 549751.8105;7817811.168;-8860.099609;0;0.213907395 551976.8105;7821095.918;-8862.639648;0;0.737043003 550789.3105;7820889.449;-8887.429688;0;0.628715121 549051.8105;7818524.43;-8914;0;0.220026317 550176.8105;7817398.227;-8831.969727;0;0.882104319 550589.3105;7818805.98;-8815.070313;0;0.117520061 549101.8105;7817473.309;-8827.900391;0;0.876582588 551801.8105;7819031.219;-8811.160156;0;0.181146303 552114.3105;7820307.578;-8773.030273;0;0.840112823 550639.3105;7818956.141;-8804.950195;0;0.211102238 552339.3105;7817811.168;-8785.120117;0;0.738337193 549289.3105;7819162.609;-8911.30957;0;0.41856166 551989.3105;7818411.809;-8802.469727;0;0.653107448 551814.3105;7818956.141;-8808.110352;0;0.274869416 551676.8105;7817717.32;-8801.230469;0;0.738399736 551514.3105;7820776.828;-8867.610352;0;0.349536967 551176.8105;7817454.539;-8784.25;0;0.600080952 550901.8105;7820908.219;-8884.990234;0;0.735177283 552039.3105;7818956.141;-8812.650391;0;0.302507176 550364.3105;7819481.699;-8807.849609;0;0.149472588 548889.3105;7818430.578;-8923;0;0.389860153 550501.8105;7819350.309;-8771.150391;0;0.374120848 549776.8105;7820044.801;-8890.30957;0;0.777769333 551601.8105;7818393.039;-8797;0;0.081995567 550289.3105;7817661.008;-8838.780273;0;0.566762649 550439.3105;7819631.859;-8784.419922;0;0.000547758 552189.3105;7817022.828;-8728.030273;0;0.18165804 549664.3105;7818167.797;-8869.339844;0;0.417115394 549801.8105;7816797.59;-8835.879883;0;0.099253458 551576.8105;7821339.93;-8902.769531;0;0.117207527 549689.3105;7819143.84;-8865.419922;0;0.005698287 551976.8105;7817736.09;-8793.740234;0;0.875343236 550464.3105;7817398.227;-8829.290039;0;0.143844799 551076.8105;7820570.359;-8844.889648;0;0.93446893 551551.8105;7819913.41;-8837.610352;0;0.156853489 551601.8105;7820363.887;-8835.780273;0;0.38459787 550851.8105;7821227.309;-8915.120117;0;0.025173665 551239.3105;7821546.398;-8906.379883;0;0.278515776 549989.3105;7817736.09;-8857.959961;0;0.011383125 551976.8105;7821734.102;-8852.759766;0;0.366706399 549651.8105;7819932.18;-8901.349609;0;0.594568998 549351.8105;7819913.41;-8925.469727;0;0.289018734 551001.8105;7819519.238;-8807.919922;0;0.677391029 549701.8105;7818730.898;-8848.589844;0;0.981764015 549926.8105;7821677.789;-8970.580078;0;0.544355135 549439.3105;7821396.238;-8963.709961;0;0.488012466 550839.3105;7819913.41;-8809.349609;0;0.684210103 552301.8105;7816872.668;-8735.599609;0;0.99564572 551064.3105;7821490.09;-8911.280273;0;0.695715458 552089.3105;7819988.488;-8779.769531;0;0.156660225 550114.3105;7817492.078;-8838.240234;0;0.566571524 551151.8105;7819875.867;-8829.780273;0;0.606951499 549701.8105;7818693.359;-8843.490234;0;0.860939276 550901.8105;7821302.391;-8919.490234;0;0.53883348 550414.3105;7818937.367;-8787.870117;0;0.578708403 551589.3105;7818974.91;-8804.870117;0;0.145527028 549351.8105;7817773.629;-8855.030273;0;0.667347876 552264.3105;7821640.25;-8845.610352;0;0.778609413 550414.3105;7818055.18;-8843.150391;0;0.151839125 550951.8105;7821827.949;-8919.209961;0;0.455306672 550051.8105;7820326.348;-8832.099609;0;0.759756296 550914.3105;7819275.23;-8801.769531;0;0.600285451 552376.8105;7819031.219;-8814.450195;0;0.818600123 551139.3105;7819181.379;-8813.230469;0;0.918944133 549526.8105;7819294;-8900.379883;0;0.401064165 551839.3105;7816966.52;-8782.610352;0;0.06817791 551751.8105;7821415.008;-8893.780273;0;0.670235176 549489.3105;7821471.32;-8964.730469;0;0.987176324 549014.3105;7821114.691;-8970.679688;0;0.40755362 552214.3105;7820851.91;-8845.519531;0;0.860575393 551826.8105;7820438.969;-8818.05957;0;0.123828198 550201.8105;7820213.73;-8801.360352;0;0.917947605 550026.8105;7820176.188;-8820.040039;0;0.739571202 549139.3105;7817341.918;-8822.469727;0;0.303789279 550864.3105;7819706.938;-8809.44043;0;0.275504312 550014.3105;7818167.797;-8868.280273;0;0.557551211 552064.3105;7818899.828;-8813.080078;0;0.96264243 550639.3105;7817417;-8821.360352;0;0.596764707 550814.3105;7819350.309;-8800.480469;0;0.93531703 551639.3105;7817661.008;-8802.80957;0;0.717121944 550639.3105;7817567.16;-8825.839844;0;0.012716885 552164.3105;7819500.469;-8814.30957;0;0.797832786 549376.8105;7821396.238;-8963.360352;0;0.021291122 552201.8105;7821640.25;-8845.719727;0;0.916140854 549814.3105;7818336.73;-8858.230469;0;0.682517939 551976.8105;7819406.617;-8813.139648;0;0.072680553 551676.8105;7819688.168;-8827.019531;0;0.253446031 551214.3105;7819875.867;-8833.379883;0;0.334818824 550476.8105;7821452.551;-8919.950195;0;0.966746422 549714.3105;7818843.52;-8859.980469;0;0.830185665 551814.3105;7819200.148;-8813.929688;0;0.534159932 549001.8105;7819068.758;-8924.019531;0;0.322102701 549064.3105;7819068.758;-8921.549805;0;0.914863938 549564.3105;7821827.949;-8975.580078;0;0.048080467 551189.3105;7818637.047;-8811.519531;0;0.57380112 551589.3105;7819369.078;-8823.589844;0;0.903397177 551639.3105;7819462.93;-8823.209961;0;0.926769338 551039.3105;7819706.938;-8817.870117;0;0.207250884 549926.8105;7817829.938;-8864.799805;0;0.262548149 551864.3105;7817398.227;-8783.740234;0;0.105767482 551489.3105;7818693.359;-8789.419922;0;0.739003129 551701.8105;7820776.828;-8857.990234;0;0.379771617 550001.8105;7817379.461;-8837;0;0.883295517 551214.3105;7819800.789;-8832.280273;0;0.619311631 549614.3105;7818993.68;-8861.769531;0;0.529323256 550751.8105;7817341.918;-8808.639648;0;0.071907802 551064.3105;7819782.02;-8822.839844;0;0.743031327 551976.8105;7821640.25;-8862.450195;0;0.188083388 550826.8105;7817623.469;-8813.519531;0;0.231944298 551751.8105;7818956.141;-8806.120117;0;0.081075187 549176.8105;7818655.82;-8907.320313;0;0.523533441 550064.3105;7819988.488;-8828.769531;0;0.713602545 549326.8105;7818261.648;-8877.139648;0;0.955065992 552276.8105;7821734.102;-8840.049805;0;0.965565739 551139.3105;7820589.129;-8853.799805;0;0.247350285 552276.8105;7819594.32;-8820.780273;0;0.993601804 550226.8105;7817886.25;-8857.209961;0;0.98022686 550151.8105;7821321.16;-8938.219727;0;0.127263188 549826.8105;7819932.18;-8878.259766;0;0.130582004 552276.8105;7818393.039;-8817.5;0;0.855704422 549289.3105;7819294;-8917.629883;0;0.787318538 549226.8105;7821433.781;-8951.860352;0;0.849073757 551814.3105;7821339.93;-8886.209961;0;0.220052172 552189.3105;7817229.301;-8759.540039;0;0.831022514 551014.3105;7817266.84;-8788.330078;0;0.04209583 550789.3105;7821133.457;-8910.540039;0;0.436525473 549214.3105;7821208.539;-8962.580078;0;0.352584662 551864.3105;7821827.949;-8845.139648;0;0.627060046 551526.8105;7821152.23;-8896;0;0.402259922 551589.3105;7818561.969;-8790.69043;0;0.653088657 549864.3105;7819275.23;-8840.459961;0;0.68309166 552339.3105;7817736.09;-8783.459961;0;0.152035601 550951.8105;7821546.398;-8901.730469;0;0.524038033 552214.3105;7821095.918;-8856.040039;0;0.892057249 551464.3105;7821809.18;-8884.879883;0;0.224307816 552114.3105;7817285.609;-8770.740234;0;0.411254734 549026.8105;7820795.598;-8962.05957;0;0.702830542 549351.8105;7819237.688;-8906.94043;0;0.484459282 551089.3105;7819200.148;-8809.990234;0;0.074688656 551889.3105;7819425.391;-8814.849609;0;0.670384706 550589.3105;7819725.711;-8802.589844;0;0.53922961 552151.8105;7818655.82;-8814.509766;0;0.725614855 552101.8105;7821039.609;-8857.080078;0;0.019472854 549939.3105;7820251.27;-8845.959961;0;0.422057718 549964.3105;7819425.391;-8833.490234;0;0.337631924 549614.3105;7818149.027;-8870.419922;0;0.569645618 552326.8105;7818712.129;-8818.910156;0;0.737514378 548889.3105;7819218.918;-8944.070313;0;0.127979307 551651.8105;7817285.609;-8786.629883;0;0.193515057 549414.3105;7819237.688;-8904.099609;0;0.85329758 552439.3105;7817473.309;-8727.410156;0;0.687000595 550576.8086;7817492.078;-8827.660156;0;0.003797192 549326.8105;7818186.57;-8878.650391;0;0.555013552 552051.8105;7820607.898;-8828.490234;0;0.562587264 549476.8105;7821246.078;-8957.950195;0;0.031145345 549789.3105;7819519.238;-8868.070313;0;0.792651747 549401.8105;7817998.871;-8873.94043;0;0.816785981 550951.8105;7821152.23;-8906.089844;0;0.837811533 552201.8105;7817191.758;-8751.5;0;0.82619807 550614.3105;7821490.09;-8919.570313;0;0.190369212 549664.3105;7817961.328;-8867.75;0;0.133868426 549714.3105;7818899.828;-8861.030273;0;0.903878317 551914.3105;7821734.102;-8854.769531;0;0.874439531 550176.8105;7817473.309;-8835.860352;0;0.053901143 550401.8105;7817567.16;-8831;0;0.100364623 549389.3105;7818242.879;-8875.679688;0;0.00139708 549564.3105;7817867.48;-8861.080078;0;0.518721125 550676.8105;7820007.258;-8793.879883;0;0.416670902 551814.3105;7817642.238;-8796.669922;0;0.432203883 550364.3105;7819988.488;-8783.639648;0;0.36871197 548951.8105;7819294;-8944.259766;0;0.853167683 551239.3105;7819369.078;-8816.759766;0;0.341070427 549739.3105;7819031.219;-8853.620117;0;0.281279808 549489.3105;7817886.25;-8863;0;0.271312259 551401.8105;7819669.398;-8820.889648;0;0.416229032 552114.3105;7816778.816;-8767.290039;0;0.937876326 551626.8105;7816947.75;-8792.69043;0;0.97627957 549989.3105;7817473.309;-8841.280273;0;0.146532969 551551.8105;7818073.949;-8785.370117;0;0.912099886 550176.8105;7818299.188;-8856.570313;0;0.903302477 550576.8086;7817998.871;-8828.730469;0;0.876590938 549226.8105;7818730.898;-8898.44043;0;0.106756984 549789.3105;7821339.93;-8950.339844;0;0.384170189 549401.8105;7821039.609;-8958.009766;0;0.386411136 549876.8105;7817548.387;-8849.669922;0;0.929428552 550301.8105;7818468.117;-8844.94043;0;0.378847015 551976.8105;7821246.078;-8870.459961;0;0.070057962 551876.8105;7820870.68;-8854.009766;0;0.721727232 550926.8105;7819650.629;-8807.650391;0;0.990941813 550426.8105;7819275.23;-8788.549805;0;0.918611088 551476.8105;7818843.52;-8797.700195;0;0.431089937 549014.3105;7820213.73;-8948.639648;0;0.303100566 549664.3105;7820082.34;-8907.730469;0;0.611977481 550351.8105;7818055.18;-8848.099609;0;0.642377834 551101.8105;7819706.938;-8822.150391;0;0.136614774 551126.8105;7821471.32;-8909.410156;0;0.569461456 550801.8105;7821846.719;-8927.650391;0;0.26807433 551301.8105;7818787.207;-8813.570313;0;0.777542112 551726.8105;7819838.328;-8828.620117;0;0.552590509 551526.8105;7819369.078;-8820.889648;0;0.215037536 549901.8105;7819369.078;-8839.389648;0;0.900374114 551176.8105;7821471.32;-8906.25;0;0.703363451 552176.8105;7817379.461;-8768.139648;0;0.638599743 551626.8105;7819988.488;-8820.980469;0;0.149351581 548901.8105;7817341.918;-8866.099609;0;0.693130773 551689.3105;7819125.07;-8811.740234;0;0.979126564 551789.3105;7819763.25;-8823.849609;0;0.168630449 551601.8105;7821677.789;-8872.160156;0;0.56983815 550451.8105;7817492.078;-8828.780273;0;0.209273808 549701.8105;7821321.16;-8956.290039;0;0.96878146 550351.8105;7817736.09;-8836.459961;0;0.010724046 552064.3105;7817548.387;-8782.150391;0;0.816349549 549664.3105;7817698.547;-8844.030273;0;0.70707453 550614.3105;7819988.488;-8784.570313;0;0.426603077 549226.8105;7816797.59;-8847.959961;0;0.267489261 551714.3105;7821527.629;-8888.879883;0;0.004304976 550639.3105;7817492.078;-8823.339844;0;0.784769707 550226.8105;7817736.09;-8848.280273;0;0.954287813 551101.8105;7819425.391;-8810.330078;0;0.985704114 550201.8105;7819425.391;-8816.910156;0;0.79541488 552401.8105;7820288.809;-8812.589844;0;0.853435691 549064.3105;7817248.07;-8840.200195;0;0.545144689 550001.8105;7819913.41;-8839.969727;0;0.498455958 550614.3105;7818167.797;-8827.230469;0;0.855833568 551564.3105;7820532.82;-8851.469727;0;0.584026151 551826.8105;7818637.047;-8790.280273;0;0.315098631 551864.3105;7819031.219;-8813.459961;0;0.72736345 550026.8105;7819425.391;-8824.200195;0;0.695061466 549476.8105;7821752.867;-8979.120117;0;0.693848293 551964.3105;7817398.227;-8781.570313;0;0.786470068 552101.8105;7821809.18;-8837.80957;0;0.105484702 552439.3105;7816947.75;-8697.25;0;0.418920438 552289.3105;7820532.82;-8811.700195;0;0.663697247 549889.3105;7820007.258;-8873.94043;0;0.275699743 550439.3105;7821659.02;-8942.089844;0;0.623781001 551076.8105;7818055.18;-8802.040039;0;0.665091659 549151.8105;7821846.719;-8963.450195;0;0.704975863 549389.3105;7821640.25;-8964.219727;0;0.265214514 551989.3105;7818167.797;-8790.139648;0;0.658690412 550126.8105;7818299.188;-8858.75;0;0.702171196 550476.8105;7818862.289;-8800.740234;0;0.064666057 551389.3105;7819800.789;-8831.530273;0;0.468272358 552414.3105;7821227.309;-8856.839844;0;0.747635779 551501.8105;7819294;-8819.969727;0;0.311429665 549651.8105;7821640.25;-8961.429688;0;0.209535439 549689.3105;7816760.051;-8832.969727;0;0.672021946 550676.8105;7820101.109;-8780.900391;0;0.614210409 550101.8105;7819838.328;-8816.509766;0;0.795067214 550976.8105;7816647.43;-8810.299805;0;0.430216301 551764.3105;7818505.66;-8786.280273;0;0.630932563 548951.8105;7816666.199;-8875.320313;0;0.322962377 550389.3105;7819763.25;-8784.280273;0;0.989424919 551514.3105;7820739.289;-8865.69043;0;0.849267138 552289.3105;7819894.641;-8788.070313;0;0.76586076 549551.8105;7818149.027;-8873.629883;0;0.680985376 551814.3105;7818730.898;-8790.339844;0;0.132280892 550389.3105;7820176.188;-8787.070313;0;0.440493127 550451.8105;7820101.109;-8773.799805;0;0.941060711 552189.3105;7817923.789;-8794.179688;0;0.291429216 551039.3105;7818130.258;-8804.099609;0;0.655430862 552314.3105;7816835.129;-8740.259766;0;0.185824353 549439.3105;7817886.25;-8862.94043;0;0.348146658 550039.3105;7821809.18;-8956.870117;0;0.53728296 549926.8105;7821809.18;-8967.519531;0;0.487713043 551139.3105;7821752.867;-8903.480469;0;0.870844564 550326.8105;7821396.238;-8925.280273;0;0.580407548 551814.3105;7817398.227;-8785.75;0;0.079512649 552451.8105;7818017.637;-8795.80957;0;0.651603698 551814.3105;7821508.859;-8884.05957;0;0.130438123 549114.3105;7818655.82;-8914.709961;0;0.067944108 552439.3105;7819031.219;-8812.230469;0;0.612841079 550639.3105;7817923.789;-8824.80957;0;0.780829575 552214.3105;7818655.82;-8818.849609;0;0.366476647 551026.8105;7818449.348;-8812.360352;0;0.067864122 549664.3105;7817905.02;-8865.099609;0;0.740092919 552401.8105;7817379.461;-8735.55957;0;0.273534103 550151.8105;7819556.777;-8823.30957;0;0.900950405 551464.3105;7817905.02;-8796.740234;0;0.697270105 550189.3105;7819988.488;-8805.94043;0;0.371647183 549926.8105;7821508.859;-8966.839844;0;0.082612165 550864.3105;7819838.328;-8811.94043;0;0.384377991 551714.3105;7821490.09;-8893.209961;0;0.664294955 551989.3105;7816778.816;-8774.280273;0;0.115950246 549564.3105;7818393.039;-8858.05957;0;0.360644534 550514.3105;7819538.008;-8785.330078;0;0.632474684 552439.3105;7821565.168;-8850.490234;0;0.466366327 552389.3105;7817022.828;-8692.549805;0;0.857565081 552376.8105;7821565.168;-8850.120117;0;0.212480613 551014.3105;7821058.379;-8902.580078;0;0.045374009 552051.8105;7820288.809;-8776.80957;0;0.220778703 552164.3105;7820945.758;-8853.889648;0;0.827781094 551989.3105;7821490.09;-8876.839844;0;0.35277957 548889.3105;7819294;-8947.019531;0;0.396088963 550951.8105;7821415.008;-8917.740234;0;0.706390677 549139.3105;7821809.18;-8962.69043;0;0.488259249 549051.8105;7818411.809;-8912.469727;0;0.600653298 549339.3105;7818899.828;-8885.030273;0;0.539034521 551776.8105;7819631.859;-8825.19043;0;0.445720627 552201.8105;7818712.129;-8815.75;0;0.204152857 552164.3105;7816684.969;-8760.540039;0;0.665108433 550751.8105;7818862.289;-8812.240234;0;0.349615348 550139.3105;7820138.648;-8803.549805;0;0.208603532 552001.8105;7816684.969;-8770.530273;0;0.077424262 550939.3105;7820589.129;-8823.330078;0;0.17666995 549714.3105;7817698.547;-8848.269531;0;0.036698151 551526.8105;7821077.148;-8892.290039;0;0.592823432 551526.8105;7819594.32;-8823.360352;0;0.670924216 549876.8105;7821565.168;-8966.44043;0;0.504227787 551051.8105;7817473.309;-8780.570313;0;0.564048364 550814.3105;7818130.258;-8804.230469;0;0.162826838 549264.3105;7821846.719;-8973.269531;0;0.124018384 549676.8105;7816853.898;-8837.30957;0;0.016050718 552314.3105;7819012.449;-8813.269531;0;0.183367401 551789.3105;7819444.16;-8820.610352;0;0.88266578 550139.3105;7817529.617;-8841.910156;0;0.860632393 550351.8105;7817510.848;-8827.209961;0;0.374434625 550076.8105;7820082.34;-8826.179688;0;0.899971428 550876.8105;7817022.828;-8810.349609;0;0.972562622 551939.3105;7817304.379;-8776.969727;0;0.181080824 551701.8105;7818899.828;-8800.049805;0;0.758667325 552126.8105;7817642.238;-8786.919922;0;0.78024486 550301.8105;7818130.258;-8853.900391;0;0.773105577 551139.3105;7818524.43;-8806.839844;0;0.472229852 552389.3105;7817473.309;-8737.580078;0;0.819357027 550476.8105;7821415.008;-8914.339844;0;0.386099879 551814.3105;7820870.68;-8858.129883;0;0.334796865 548889.3105;7818843.52;-8934.549805;0;0.617992018 552076.8105;7817923.789;-8788.980469;0;0.531640318 549451.8105;7818242.879;-8873.639648;0;0.841106447 551789.3105;7817905.02;-8794.759766;0;0.484846115 551464.3105;7821227.309;-8899.389648;0;0.816751988 551789.3105;7816853.898;-8783.69043;0;0.442480115 551626.8105;7821508.859;-8893.839844;0;0.532280014 550139.3105;7819049.988;-8823.339844;0;0.668614442 550414.3105;7818805.98;-8808.169922;0;0.660941821 552026.8105;7817736.09;-8792.429688;0;0.15033011 549264.3105;7818036.41;-8873.099609;0;0.335110383 549226.8105;7818355.5;-8895.629883;0;0.009971371 549614.3105;7819181.379;-8883.530273;0;0.079097843 550551.8105;7821715.328;-8940.200195;0;0.561831597 552126.8105;7821415.008;-8864.44043;0;0.298377939 550926.8105;7818524.43;-8826.379883;0;0.0631859 550489.3105;7817661.008;-8830.240234;0;0.087796343 551076.8105;7817679.777;-8790.780273;0;0.456230134 550039.3105;7817829.938;-8862.459961;0;0.360668248 550551.8105;7818543.199;-8822.410156;0;0.760769107 550276.8105;7819575.551;-8818.269531;0;0.90988111 552014.3105;7817379.461;-8778.959961;0;0.641837814 550726.8105;7821208.539;-8919.790039;0;0.773121974 549126.8105;7821264.848;-8967.910156;0;0.71255682 552126.8105;7821152.23;-8858.5;0;0.39646434 550364.3105;7819181.379;-8800.679688;0;0.057260732 550014.3105;7818374.27;-8857.040039;0;0.198919038 550551.8105;7818618.281;-8820.400391;0;0.198306064 549751.8105;7819782.02;-8884.990234;0;0.386488736 551314.3105;7818374.27;-8791.509766;0;0.194770527 549401.8105;7819049.988;-8897.650391;0;0.138447542 548989.3105;7820983.297;-8966.339844;0;0.421108642 551089.3105;7816647.43;-8797.509766;0;0.053669053 550701.8105;7821546.398;-8919.709961;0;0.756827268 552226.8105;7817567.16;-8772.669922;0;0.957931257 552014.3105;7817473.309;-8782.709961;0;0.116310955 550551.8105;7818599.508;-8820.94043;0;0.206408225 552014.3105;7819819.559;-8801.490234;0;0.999131089 550814.3105;7818974.91;-8805.379883;0;0.630065633 549801.8105;7818862.289;-8854.089844;0;0.827951166 550964.3105;7820720.52;-8853.129883;0;0.665276618 549464.3105;7819049.988;-8891.469727;0;0.633096644 550364.3105;7821095.918;-8901.370117;0;0.697494951 551876.8105;7818224.109;-8784.509766;0;0.306940459 550101.8105;7821583.941;-8950.330078;0;0.955501724 552051.8105;7818393.039;-8806.589844;0;0.517279831 551414.3105;7819125.07;-8814.570313;0;0.52123481 550714.3105;7817454.539;-8816.009766;0;0.102917794 551151.8105;7818149.027;-8796.990234;0;0.190840892 551064.3105;7817717.32;-8793.110352;0;0.775286318 549814.3105;7821396.238;-8956.389648;0;0.19245795 550926.8105;7818355.5;-8824.339844;0;0.334591566 551651.8105;7820758.059;-8857.860352;0;0.526494962 549001.8105;7816760.051;-8878.240234;0;0.048531344 551176.8105;7821546.398;-8903.450195;0;0.946857204 552439.3105;7817135.449;-8702.839844;0;0.775498638 550351.8105;7817679.777;-8835.400391;0;0.501064349 551939.3105;7818393.039;-8797.929688;0;0.563149369 549726.8105;7819369.078;-8869.790039;0;0.774614473 548939.3105;7818242.879;-8916.660156;0;0.475090885 551751.8105;7821246.078;-8888.509766;0;0.744097998 551751.8105;7819444.16;-8821.80957;0;0.742907689 550276.8105;7821133.457;-8909.75;0;0.394035135 551389.3105;7818805.98;-8803.230469;0;0.282703267 549951.8105;7820026.027;-8861.419922;0;0.537353773 551489.3105;7818317.957;-8793.200195;0;0.932498816 551839.3105;7818862.289;-8803.75;0;0.419094746 550051.8105;7817661.008;-8855.030273;0;0.380455459 551251.8105;7821002.07;-8887.870117;0;0.740274485 550926.8105;7818618.281;-8821.080078;0;0.7436434 549251.8105;7820570.359;-8960.849609;0;0.882535484 551014.3105;7821715.328;-8909.070313;0;0.104939537 549864.3105;7821339.93;-8950.219727;0;0.237246343 551826.8105;7820701.75;-8844.700195;0;0.406732366 551464.3105;7821546.398;-8889.129883;0;0.148190654 551639.3105;7818862.289;-8795.570313;0;0.330935713 549951.8105;7818543.199;-8837.19043;0;0.951243505 550864.3105;7819181.379;-8780.110352;0;0.615087822 551651.8105;7821827.949;-8858.040039;0;0.465419183 550551.8105;7818655.82;-8818.620117;0;0.222335667 551701.8105;7820382.66;-8824.009766;0;0.473827086 551064.3105;7819800.789;-8823.129883;0;0.09620683 552126.8105;7821490.09;-8861.860352;0;0.065577674 549876.8105;7821752.867;-8969.759766;0;0.87323579 550126.8105;7819932.18;-8809.900391;0;0.073398655 549114.3105;7817623.469;-8828.830078;0;0.914505445 550776.8105;7821659.02;-8919.639648;0;0.124567176 549151.8105;7816778.816;-8855.919922;0;0.829982706 549151.8105;7819200.148;-8929.080078;0;0.624236076 550601.8105;7821827.949;-8938.969727;0;0.143689134 552214.3105;7819575.551;-8818.799805;0;0.523571133 551239.3105;7821058.379;-8891.169922;0;0.574978268 550314.3105;7819369.078;-8817.070313;0;0.99807304 549539.3105;7820082.34;-8922.639648;0;0.134850455 552039.3105;7818655.82;-8808.150391;0;0.524203843 552164.3105;7821827.949;-8834.679688;0;0.612829898 550564.3105;7821246.078;-8910.790039;0;0.051483828 549964.3105;7820157.418;-8839.799805;0;0.675489945 549789.3105;7821715.328;-8964.339844;0;0.390978956 551826.8105;7818336.73;-8787.370117;0;0.603641257 551889.3105;7819669.398;-8819.009766;0;0.873510149 549114.3105;7818355.5;-8905.929688;0;0.790024792 552314.3105;7817266.84;-8749.330078;0;0.572088613 550014.3105;7818543.199;-8839.25;0;0.659908368 550914.3105;7818805.98;-8813.019531;0;0.050365392 551376.8105;7818205.34;-8789.879883;0;0.995310005 550026.8105;7818974.91;-8838.509766;0;0.050726847 551976.8105;7821396.238;-8876.019531;0;0.302185905 550064.3105;7818655.82;-8829.049805;0;0.719936706 551164.3105;7817923.789;-8792.05957;0;0.332386132 551851.8105;7817022.828;-8776.679688;0;0.657799112 551189.3105;7819294;-8818.950195;0;0.127142134 549726.8105;7818336.73;-8859.19043;0;0.45963365 551151.8105;7818205.34;-8797.879883;0;0.295143358 549601.8105;7818543.199;-8855.69043;0;0.622955696 551701.8105;7821358.699;-8896.990234;0;0.041439578 551239.3105;7817661.008;-8790.219727;0;0.997692378 550701.8105;7818974.91;-8805.269531;0;0.421617746 551139.3105;7819012.449;-8818.019531;0;0.372181631 549439.3105;7821809.18;-8979.070313;0;0.368257342 549839.3105;7819425.391;-8853.25;0;0.831328935 550114.3105;7817998.871;-8860.290039;0;0.225808436 550701.8105;7819143.84;-8772.049805;0;0.186916603 548939.3105;7817004.059;-8857.620117;0;0.80714449 550176.8105;7818374.27;-8854.209961;0;0.508129473 551151.8105;7817754.859;-8791.799805;0;0.28206382 549889.3105;7819950.949;-8869.259766;0;0.906469365 549939.3105;7817492.078;-8845.139648;0;0.903807374 552389.3105;7818411.809;-8821;0;0.614378223 549114.3105;7821302.391;-8967.19043;0;0.379669753 550776.8105;7821471.32;-8914.049805;0;0.517886533 551264.3105;7820570.359;-8860.799805;0;0.127089587 550239.3105;7818637.047;-8838.700195;0;0.947851855 551726.8105;7820101.109;-8790.55957;0;0.647627127 549539.3105;7821246.078;-8959.610352;0;0.131146232 552214.3105;7819763.25;-8803.419922;0;0.69328492 549014.3105;7818449.348;-8915.799805;0;0.462713726 551889.3105;7819331.539;-8813.660156;0;0.784493787 551126.8105;7821171;-8901.769531;0;0.724480655 549201.8105;7821715.328;-8958.25;0;0.684998293 552389.3105;7819275.23;-8818.450195;0;0.918031092 551464.3105;7819181.379;-8818.530273;0;0.714620689 550901.8105;7817191.758;-8803.599609;0;0.83690951 549876.8105;7821396.238;-8958.69043;0;0.826470847 552326.8105;7821339.93;-8856.80957;0;0.086414637 550564.3105;7819369.078;-8772.80957;0;0.866425812 550939.3105;7821490.09;-8910.320313;0;0.286073906 551264.3105;7818205.34;-8795.860352;0;0.167035925 549526.8105;7820157.418;-8922.719727;0;0.463422713 549564.3105;7818224.109;-8872.259766;0;0.586177014 552226.8105;7819650.629;-8816.910156;0;0.392586523 550564.3105;7819838.328;-8794.700195;0;0.964621023 551876.8105;7820926.988;-8857.290039;0;0.693636565 551289.3105;7819519.238;-8817.269531;0;0.857521566 551289.3105;7819725.711;-8831.379883;0;0.313627188 552276.8105;7817210.527;-8747.759766;0;0.824446959 550264.3105;7819425.391;-8819.69043;0;0.066141475 551089.3105;7818449.348;-8803.509766;0;0.10307961 551851.8105;7819594.32;-8822.349609;0;0.514240178 551164.3105;7819519.238;-8815.299805;0;0.66028394 552376.8105;7819331.539;-8820.830078;0;0.378947041 552089.3105;7821358.699;-8866.94043;0;0.236203265 551014.3105;7821227.309;-8907.330078;0;0.850918836 549114.3105;7818186.57;-8901.419922;0;0.707734188 550401.8105;7821189.77;-8905.740234;0;0.566209446 550964.3105;7821002.07;-8896.990234;0;0.924456842 551526.8105;7818956.141;-8803.419922;0;0.507462666 552114.3105;7816966.52;-8748.580078;0;0.660712483 550726.8105;7821377.469;-8919.25;0;0.473020725 550264.3105;7821508.859;-8936.139648;0;0.163874669 552214.3105;7819481.699;-8817.959961;0;0.749453341 549901.8105;7818655.82;-8823.080078;0;0.976636976 550676.8105;7821659.02;-8928.849609;0;0.994912383 551739.3105;7819350.309;-8820.129883;0;0.996631965 549114.3105;7820044.801;-8937.25;0;0.851282032 551801.8105;7817548.387;-8792.540039;0;0.878420454 550289.3105;7818205.34;-8854.709961;0;0.174200066 550551.8105;7818637.047;-8819.620117;0;0.279837929 550814.3105;7818186.57;-8809.790039;0;0.514344541 549701.8105;7819312.77;-8872.94043;0;0.261950364 550476.8105;7820551.59;-8807.019531;0;0.789807468 549476.8105;7820101.109;-8928.620117;0;0.161006891 549901.8105;7818299.188;-8858.200195;0;0.750405156 551926.8105;7818899.828;-8811.19043;0;0.050822328 551651.8105;7818468.117;-8793.540039;0;0.278643661 551089.3105;7818299.188;-8804.490234;0;0.627961048 550351.8105;7818317.957;-8850.370117;0;0.112143957 551964.3105;7819538.008;-8808.120117;0;0.810137932 550039.3105;7819706.938;-8827.370117;0;0.650712913 551176.8105;7821058.379;-8891.549805;0;0.197958872 550701.8105;7818805.98;-8819.019531;0;0.014172216 552126.8105;7821433.781;-8863.950195;0;0.403829091 551039.3105;7818186.57;-8804.19043;0;0.26465733 551651.8105;7820664.211;-8852.030273;0;0.931722387 552126.8105;7821189.77;-8858.610352;0;0.22334091 551526.8105;7819012.449;-8806.790039;0;0.603815112 551764.3105;7820758.059;-8853.44043;0;0.416414609 549264.3105;7818073.949;-8874.75;0;0.202765037 551314.3105;7818317.957;-8792.410156;0;0.564009016 550301.8105;7819012.449;-8794.709961;0;0.621113458 551826.8105;7821677.789;-8861.030273;0;0.98268497 549101.8105;7817529.617;-8829.459961;0;0.611119699 549614.3105;7818712.129;-8853.490234;0;0.893690439 552101.8105;7817022.828;-8741.55957;0;0.536970317 552226.8105;7817661.008;-8782.049805;0;0.215744685 549701.8105;7821659.02;-8959.320313;0;0.117931498 549414.3105;7820701.75;-8957.75;0;0.453796538 551301.8105;7820814.371;-8879.219727;0;0.667537501 549789.3105;7818655.82;-8829.870117;0;0.759479071 551376.8105;7819894.641;-8834.870117;0;0.916941645 549426.8105;7821321.16;-8956.889648;0;0.891569257 549839.3105;7818543.199;-8832.30957;0;0.642744104 550714.3105;7818693.359;-8831.839844;0;0.720342863 549001.8105;7820307.578;-8947.530273;0;0.980729831 551701.8105;7820476.508;-8833.410156;0;0.929386264 549001.8105;7818355.5;-8916.830078;0;0.337727849 551864.3105;7821433.781;-8882.30957;0;0.005156431 549926.8105;7819294;-8832.990234;0;0.814050278 552151.8105;7818092.719;-8803.05957;0;0.426524522 551489.3105;7818449.348;-8796.419922;0;0.653645624 551414.3105;7818712.129;-8791.679688;0;0.019435766 550551.8105;7818561.969;-8822.110352;0;0.529545785 552339.3105;7819425.391;-8821.070313;0;0.392354355 552126.8105;7821171;-8858.620117;0;0.603241209 551401.8105;7821377.469;-8892.459961;0;0.978378166 549814.3105;7821246.078;-8947.480469;0;0.768389033 549039.3105;7818993.68;-8918.730469;0;0.925221812 551226.8105;7819556.777;-8819.240234;0;0.252798463 549726.8105;7820213.73;-8889.919922;0;0.183988518 549939.3105;7821583.941;-8970.040039;0;0.13126129 551064.3105;7821827.949;-8914.769531;0;0.707506592 550364.3105;7818693.359;-8825.19043;0;0.016022338 549876.8105;7817998.871;-8866.419922;0;0.63285689 550176.8105;7818618.281;-8839.959961;0;0.948276443 551926.8105;7821490.09;-8879.55957;0;0.280059136 549164.3105;7818242.879;-8899.179688;0;0.755899612 551414.3105;7817980.098;-8791.790039;0;0.612198092 551876.8105;7819819.559;-8818.599609;0;0.17049962 551064.3105;7821546.398;-8907.879883;0;0.375110132 551401.8105;7821659.02;-8894.120117;0;0.143498467 550964.3105;7819012.449;-8805.990234;0;0.936528813 550914.3105;7820833.141;-8874.509766;0;0.158223379 550251.8105;7817792.398;-8850.240234;0;0.35280144 552051.8105;7820758.059;-8842.870117;0;0.85081702 551626.8105;7818674.59;-8792.719727;0;0.171339349 549364.3105;7819444.16;-8913.740234;0;0.835261348 550751.8105;7819706.938;-8810.990234;0;0.326782862 550926.8105;7818299.188;-8819.660156;0;0.604169367 550814.3105;7817360.688;-8801.05957;0;0.583005268 548914.3105;7819162.609;-8937.820313;0;0.351751482 549139.3105;7820514.051;-8965.790039;0;0.000949787 551964.3105;7819932.18;-8797.330078;0;0.399367892 551639.3105;7820851.91;-8868.219727;0;0.65838939 550039.3105;7821640.25;-8964.080078;0;0.989520183 550551.8105;7818524.43;-8822.650391;0;0.334446948 549264.3105;7820532.82;-8959.69043;0;0.68112686 549201.8105;7821734.102;-8959.910156;0;0.655765822 549226.8105;7818974.91;-8902.330078;0;0.473313309 552126.8105;7821508.859;-8860.700195;0;0.329137058 550926.8105;7818017.637;-8802.429688;0;0.740836432 551651.8105;7821809.18;-8859.110352;0;0.811374494 550214.3105;7821227.309;-8923.80957;0;0.815681973 549351.8105;7819162.609;-8903.820313;0;0.806807423 551251.8105;7819181.379;-8819.040039;0;0.801878591 552089.3105;7817060.367;-8741.480469;0;0.265754818 551801.8105;7819106.301;-8812.379883;0;0.301154182 551076.8105;7819294;-8816.629883;0;0.458980233 551639.3105;7820908.219;-8875.160156;0;0.308005268 550726.8105;7818730.898;-8828.490234;0;0.381397104 549414.3105;7819481.699;-8910.589844;0;0.595518434 552126.8105;7821471.32;-8862.780273;0;0.837785569 551701.8105;7817661.008;-8801.339844;0;0.711456168 550814.3105;7818524.43;-8836.259766;0;0.338687056 551139.3105;7820720.52;-8870.549805;0;0.775921555 549176.8105;7819125.07;-8919.889648;0;0.66101499 552439.3105;7817717.32;-8769.360352;0;0.435190474 551426.8105;7818073.949;-8789.009766;0;0.614189122 549939.3105;7819932.18;-8856.410156;0;0.952749715 551476.8105;7819125.07;-8814.900391;0;0.402677094 550239.3105;7818317.957;-8853.19043;0;0.110638707 551351.8105;7821490.09;-8900.700195;0;0.675220139 549989.3105;7821715.328;-8966.30957;0;0.511798977 551264.3105;7818486.891;-8792;0;0.995084553 551651.8105;7821790.41;-8860.280273;0;0.159350289 550401.8105;7818205.34;-8848.490234;0;0.035307656 551189.3105;7820814.371;-8877.719727;0;0.222874772 549876.8105;7817717.32;-8855.44043;0;0.715631888 551176.8105;7821827.949;-8907.240234;0;0.734668743 552126.8105;7821452.551;-8863.400391;0;0.094296503 550851.8105;7818787.207;-8815.709961;0;0.689333956 551189.3105;7818843.52;-8818.719727;0;0.906381331 551376.8105;7818486.891;-8788.089844;0;0.815220915 550676.8105;7821490.09;-8916.139648;0;0.798974435 550864.3105;7819556.777;-8803.410156;0;0.961538876 550639.3105;7818693.359;-8827.900391;0;0.119924507 550151.8105;7821396.238;-8939.05957;0;0.48411141 549114.3105;7821039.609;-8961.830078;0;0.523115063 551639.3105;7817473.309;-8794.839844;0;0.254898426 551889.3105;7816872.668;-8776.700195;0;0.387988113 549464.3105;7818055.18;-8873.900391;0;0.191785807 548939.3105;7818730.898;-8928.790039;0;0.636864331 548939.3105;7818073.949;-8900.780273;0;0.58740444 552164.3105;7818393.039;-8813.040039;0;0.365030298 549651.8105;7817248.07;-8809.19043;0;0.375652614 549251.8105;7819819.559;-8932.860352;0;0.54721808 552126.8105;7821527.629;-8859.379883;0;0.350810925 551426.8105;7818374.27;-8792.799805;0;0.789087258 551989.3105;7818261.648;-8797.929688;0;0.510262759 550126.8105;7819669.398;-8828.290039;0;0.800898563 549289.3105;7818637.047;-8890.089844;0;0.794629853 550901.8105;7821715.328;-8917.839844;0;0.750714234 552101.8105;7820851.91;-8847.820313;0;0.18382692 549676.8105;7818224.109;-8870.05957;0;0.338737225 550851.8105;7818693.359;-8824.790039;0;0.195773477 552089.3105;7818712.129;-8809.990234;0;0.889815786 549001.8105;7820945.758;-8965.160156;0;0.881398651 548939.3105;7819988.488;-8942.349609;0;0.427141043 551276.8105;7819875.867;-8835.639648;0;0.327281385 552414.3105;7818505.66;-8821.370117;0;0.559418696 549351.8105;7820044.801;-8931.269531;0;0.740302565 552064.3105;7820457.738;-8802.490234;0;0.797505212 551926.8105;7818730.898;-8802.929688;0;0.954560943 549701.8105;7821734.102;-8964.849609;0;0.28764721 549176.8105;7820138.648;-8934.839844;0;0.938535631 550289.3105;7817510.848;-8827.400391;0;0.234289667 549739.3105;7819650.629;-8882.919922;0;0.252734793 551239.3105;7821715.328;-8901.040039;0;0.001422856 549701.8105;7821565.168;-8956.259766;0;0.61821455 549039.3105;7820063.57;-8939.679688;0;0.262823623 549814.3105;7817548.387;-8847.799805;0;0.854556097 550439.3105;7821358.699;-8914.780273;0;0.991381973 550751.8105;7818130.258;-8805.219727;0;0.291342923 550964.3105;7818712.129;-8817.009766;0;0.699764433 551651.8105;7818336.73;-8792.580078;0;0.972591976 551726.8105;7820626.668;-8840.820313;0;0.946137178 552389.3105;7817191.758;-8723.629883;0;0.81877534 551539.3105;7820607.898;-8856.830078;0;0.120251248 551001.8105;7817529.617;-8787.089844;0;0.573391162 552176.8105;7820551.59;-8808.759766;0;0.315972369 549339.3105;7818468.117;-8886.490234;0;0.981793319 549951.8105;7818712.129;-8822.379883;0;0.529835913 550076.8105;7819369.078;-8818.700195;0;0.712252005 550039.3105;7821508.859;-8961.320313;0;0.519692914 552126.8105;7821396.238;-8864.780273;0;0.697821632 551651.8105;7817379.461;-8788.730469;0;0.478530319 549614.3105;7818336.73;-8862.519531;0;0.890375809 551239.3105;7821227.309;-8900.379883;0;0.715037853 549301.8105;7820870.68;-8968.019531;0;0.708241389 551864.3105;7817492.078;-8787;0;0.213291502 551651.8105;7818073.949;-8781.769531;0;0.081200541 550701.8105;7818355.5;-8815.75;0;0.372712232 550214.3105;7821396.238;-8935;0;0.020025786 550376.8105;7821827.949;-8943.80957;0;0.194513407 551364.3105;7819012.449;-8814.139648;0;0.098530846 550351.8105;7818524.43;-8839.75;0;0.577731585 550976.8105;7818130.258;-8805.269531;0;0.214726368 551714.3105;7818167.797;-8780.269531;0;0.697501662 549339.3105;7821246.078;-8956.480469;0;0.901423003 551001.8105;7817229.301;-8791.769531;0;0.329571003 552151.8105;7818824.75;-8812.580078;0;0.937432544 551026.8105;7818768.438;-8819.69043;0;0.085617977 550701.8105;7819200.148;-8765.839844;0;0.785908584 551976.8105;7820401.43;-8794.950195;0;0.15110502 550864.3105;7818355.5;-8826.719727;0;0.050182044 549626.8105;7819031.219;-8865.610352;0;0.999257295 551139.3105;7818956.141;-8819.139648;0;0.763093131 551014.3105;7821659.02;-8901.009766;0;0.461098699 551964.3105;7818468.117;-8803.240234;0;0.041151409 550089.3105;7819031.219;-8832.19043;0;0.248152628 551564.3105;7819744.48;-8832.110352;0;0.742253669 552089.3105;7821677.789;-8848.290039;0;0.429010049 549926.8105;7821264.848;-8941.099609;0;0.564242962 551789.3105;7819350.309;-8817.05957;0;0.665778782 552214.3105;7820044.801;-8793.299805;0;0.730289799 550701.8105;7816684.969;-8838.160156;0;0.420159239 551589.3105;7821020.84;-8887.25;0;0.226452993 549839.3105;7818242.879;-8861.610352;0;0.054578385 550251.8105;7821677.789;-8937.860352;0;0.314335721 552164.3105;7820795.598;-8844.410156;0;0.218745754 549551.8105;7820007.258;-8917.620117;0;0.239856899 551039.3105;7819406.617;-8809.290039;0;0.713382217 550726.8105;7821152.23;-8913.80957;0;0.758253487 550864.3105;7818862.289;-8811.259766;0;0.265729628 550076.8105;7818862.289;-8825.379883;0;0.912977919 550751.8105;7816666.199;-8834.089844;0;0.878360653 549514.3105;7818317.957;-8866.610352;0;0.639663782 550814.3105;7818468.117;-8835.780273;0;0.114548582 549076.8105;7821039.609;-8963.980469;0;0.524081726 549051.8105;7818881.059;-8917.040039;0;0.745926627 549826.8105;7817492.078;-8845.780273;0;0.181131253 549239.3105;7817417;-8793.089844;0;0.988262237 552051.8105;7820232.5;-8770.320313;0;0.554757298 550639.3105;7818374.27;-8816.25;0;0.30664745 549276.8105;7818881.059;-8887.240234;0;0.793662455 552326.8105;7817191.758;-8737.55957;0;0.747770457 549039.3105;7818186.57;-8905.530273;0;0.442904837 549651.8105;7821208.539;-8960.879883;0;0.792433806 552076.8105;7817360.688;-8775.379883;0;0.056672768 548914.3105;7820701.75;-8963.120117;0;0.629799373 550376.8105;7821508.859;-8936.089844;0;0.27937654 552114.3105;7819650.629;-8810.080078;0;0.589353318 551451.8105;7821715.328;-8890.429688;0;0.990094482 549439.3105;7821546.398;-8964.580078;0;0.986693382 551714.3105;7818336.73;-8787.099609;0;0.46698085 549814.3105;7820345.121;-8885.969727;0;0.495024429 551289.3105;7821339.93;-8902.209961;0;0.466476175 549976.8105;7819181.379;-8837.799805;0;0.705945524 551251.8105;7819012.449;-8818.009766;0;0.809333958 552326.8105;7817022.828;-8705.469727;0;0.023076267 551289.3105;7821659.02;-8901.490234;0;0.585687898 551126.8105;7821377.469;-8908.509766;0;0.14632 549051.8105;7818242.879;-8908.280273;0;0.811124445 551014.3105;7819575.551;-8809.879883;0;0.610676216 551076.8105;7819125.07;-8807.049805;0;0.515515927 550701.8105;7818299.188;-8808.900391;0;0.960989 550851.8105;7816891.438;-8820.75;0;0.6337183 550676.8105;7821321.16;-8924.259766;0;0.732514195 551876.8105;7820589.129;-8831.969727;0;0.069024807 550201.8105;7820607.898;-8853.959961;0;0.39236471 549614.3105;7818655.82;-8850.580078;0;0.482064361 549926.8105;7816853.898;-8837.889648;0;0.389139791 551289.3105;7821171;-8895.44043;0;0.891425404 552389.3105;7820382.66;-8812.669922;0;0.514508345 550064.3105;7818242.879;-8864.990234;0;0.80151815 550126.8105;7821677.789;-8947.969727;0;0.16995331 551064.3105;7821171;-8905.639648;0;0.912020124 551289.3105;7821827.949;-8897.599609;0;0.345162117 549489.3105;7821659.02;-8967.080078;0;0.910480928 551951.8105;7818824.75;-8809.610352;0;0.834074971 552101.8105;7818186.57;-8805.169922;0;0.273929632 551601.8105;7818224.109;-8787.280273;0;0.742424374 552439.3105;7817811.168;-8775.269531;0;0.17381721 551126.8105;7821659.02;-8903.139648;0;0.279586018 551476.8105;7818768.438;-8793.280273;0;0.163014854 551264.3105;7819294;-8820.259766;0;0.714321365 551651.8105;7821846.719;-8856.660156;0;0.560717632 549976.8105;7819500.469;-8835.179688;0;0.711701382 551514.3105;7821659.02;-8881.370117;0;0.545245151 549626.8105;7816760.051;-8833.320313;0;0.837762681 551326.8105;7819650.629;-8824.269531;0;0.663818819 549089.3105;7817004.059;-8848.009766;0;0.67909823 548889.3105;7818561.969;-8924.219727;0;0.570118647 549251.8105;7820626.668;-8960.099609;0;0.960758193 551539.3105;7818637.047;-8790.540039;0;0.885711358 550751.8105;7819782.02;-8811.490234;0;0.369479465 552201.8105;7817754.859;-8785.290039;0;0.605637062 549076.8105;7819988.488;-8939.19043;0;0.916232414 550839.3105;7821152.23;-8908.519531;0;0.845455832 549139.3105;7820232.5;-8939.669922;0;0.368160615 550751.8105;7818637.047;-8835.599609;0;0.709434448 551414.3105;7820983.297;-8888.509766;0;0.852778158 550789.3105;7816985.289;-8818.110352;0;0.533721028 550751.8105;7818468.117;-8834.080078;0;0.025489473 550489.3105;7818205.34;-8839.080078;0;0.477895128 550864.3105;7818017.637;-8804.009766;0;0.33155963 550551.8105;7818580.738;-8821.570313;0;0.847302958 550501.8105;7819669.398;-8791.740234;0;0.145181267 549089.3105;7816872.668;-8863.080078;0;0.256450434 552126.8105;7821208.539;-8858.620117;0;0.916483216 551639.3105;7820326.348;-8826.480469;0;0.214257791 549239.3105;7819237.688;-8920.080078;0;0.626807871 549601.8105;7818055.18;-8869.669922;0;0.534701169 550139.3105;7818974.91;-8818.540039;0;0.13993821 551426.8105;7818317.957;-8792.299805;0;0.669509393 551064.3105;7821339.93;-8908.969727;0;0.593791451 550251.8105;7818843.52;-8813.990234;0;0.70181321 549976.8105;7819706.938;-8837.330078;0;0.229037168 551189.3105;7819125.07;-8816.709961;0;0.346754507 551676.8105;7817135.449;-8789.330078;0;0.735998984 549389.3105;7818824.75;-8875.480469;0;0.731431784 549776.8105;7819444.16;-8865.69043;0;0.536058694 550401.8105;7817398.227;-8826.150391;0;0.36606411 549626.8105;7818899.828;-8859.620117;0;0.846751636 551039.3105;7818355.5;-8811.889648;0;0.757243767 549251.8105;7818524.43;-8896.080078;0;0.479888619 550801.8105;7817041.598;-8811.730469;0;0.085420158 551626.8105;7817811.168;-8800.110352;0;0.331655002 551201.8105;7818317.957;-8796.139648;0;0.979577901 549251.8105;7821696.559;-8961.230469;0;0.610410538 550201.8105;7819143.84;-8822.259766;0;0.492338928 549201.8105;7820213.73;-8934.730469;0;0.745264046 549764.3105;7821508.859;-8958.379883;0;0.030208485 550689.3105;7819369.078;-8785.780273;0;0.878197103 549701.8105;7821827.949;-8967.139648;0;0.763158782 551989.3105;7820926.988;-8857.219727;0;0.92509581 550826.8105;7821471.32;-8912.160156;0;0.255293988 550626.8105;7818055.18;-8823.209961;0;0.946253581 551301.8105;7819125.07;-8818.790039;0;0.440651567 550751.8105;7819406.617;-8798.150391;0;0.886859467 551076.8105;7820833.141;-8874.389648;0;0.91055334 552414.3105;7820119.879;-8809.129883;0;0.287300617 551501.8105;7819838.328;-8836.339844;0;0.099429835 551864.3105;7818787.207;-8799.900391;0;0.590674352 549889.3105;7817379.461;-8839.980469;0;0.412851776 552326.8105;7820607.898;-8823.660156;0;0.556615658 550751.8105;7820495.281;-8803.450195;0;0.682985838 550064.3105;7818486.891;-8849.209961;0;0.016429822 549976.8105;7816684.969;-8828.540039;0;0.773394653 549201.8105;7821771.641;-8963.469727;0;0.556765448 551539.3105;7818205.34;-8786.44043;0;0.155305177 552326.8105;7820795.598;-8836.150391;0;0.221091423 550001.8105;7817548.387;-8845.790039;0;0.167436227 549201.8105;7821752.867;-8961.80957;0;0.567365475 551851.8105;7821077.148;-8865.580078;0;0.790516604 552414.3105;7820758.059;-8836.44043;0;0.289587533 551964.3105;7820363.887;-8788.120117;0;0.729860901 551489.3105;7818524.43;-8793.700195;0;0.38964362 550751.8105;7818787.207;-8821.570313;0;0.071281333 551126.8105;7821246.078;-8904.469727;0;0.726033476 550089.3105;7821321.16;-8941.330078;0;0.783522158 548939.3105;7818674.59;-8927.740234;0;0.163379638 551964.3105;7820345.121;-8785.549805;0;0.45267849 549601.8105;7821377.469;-8959.44043;0;0.845279948 549139.3105;7818843.52;-8906.009766;0;0.974774131 552439.3105;7817304.379;-8721.580078;0;0.640419848 551676.8105;7821752.867;-8861.700195;0;0.66595409 549801.8105;7820270.039;-8872.790039;0;0.837016971 551951.8105;7818505.66;-8802.990234;0;0.073631069 552039.3105;7821246.078;-8865.290039;0;0.108680009 551214.3105;7818149.027;-8797.44043;0;0.21012145 552214.3105;7818505.66;-8818.679688;0;0.41777029 550476.8105;7819106.301;-8767.709961;0;0.05613196 552439.3105;7819988.488;-8808.620117;0;0.778945281 550489.3105;7821490.09;-8927.870117;0;0.707987485 551376.8105;7818637.047;-8789.929688;0;0.804065771 552414.3105;7819875.867;-8805.320313;0;0.197116291 552051.8105;7818336.73;-8804.44043;0;0.254574155 550926.8105;7819444.16;-8803.200195;0;0.80497222 552439.3105;7821640.25;-8844.709961;0;0.858316671 552314.3105;7821583.941;-8849.919922;0;0.591496739 552176.8105;7817285.609;-8766.519531;0;0.617820266 552326.8105;7818956.141;-8815.759766;0;0.768463492 552389.3105;7819106.301;-8816.370117;0;0.941601431 548889.3105;7820551.59;-8955.120117;0;0.155527014 550751.8105;7817792.398;-8820.429688;0;0.890195723 548914.3105;7817736.09;-8876.5;0;0.027866935 550726.8105;7817754.859;-8821.55957;0;0.030189105 549689.3105;7819688.168;-8890.910156;0;0.227169694 551951.8105;7819049.988;-8815.519531;0;0.58009214 552164.3105;7821039.609;-8856.280273;0;0.61672434 551239.3105;7817116.68;-8791.400391;0;0.42719328 548889.3105;7821677.789;-8970.410156;0;0.716780415 552176.8105;7816872.668;-8751.80957;0;0.910928392 548989.3105;7821302.391;-8964.169922;0;0.962799579 551514.3105;7820701.75;-8864.469727;0;0.026178662 551701.8105;7820007.258;-8807.030273;0;0.973775825 551076.8105;7819631.859;-8815.120117;0;0.749545788 548964.3105;7821508.859;-8958.290039;0;0.40205102 550451.8105;7819500.469;-8781.990234;0;0.106889422 552439.3105;7820607.898;-8832.620117;0;0.782767662 550039.3105;7819800.789;-8824.889648;0;0.093011581 551139.3105;7820645.438;-8862.959961;0;0.273772359 551826.8105;7818468.117;-8789.660156;0;0.538902782 550289.3105;7818374.27;-8849.610352;0;0.611049748 549814.3105;7821565.168;-8959.009766;0;0.353966497 549151.8105;7821358.699;-8961.629883;0;0.42904084 552151.8105;7821095.918;-8857.589844;0;0.05447507 551664.3105;7819857.098;-8830.290039;0;0.107840176 551376.8105;7821846.719;-8891.379883;0;0.40796886 550264.3105;7819275.23;-8822.69043;0;0.503789656 550614.3105;7819162.609;-8764.900391;0;0.446040194 550739.3105;7819500.469;-8800.139648;0;0.366699007 551614.3105;7819782.02;-8829.94043;0;0.085977696 551926.8105;7819181.379;-8816.740234;0;0.860110359 550689.3105;7819556.777;-8801.200195;0;0.209316556 550201.8105;7819350.309;-8819.299805;0;0.470962876 550451.8105;7817041.598;-8822.580078;0;0.534570265 552214.3105;7818242.879;-8815.240234;0;0.071386651 550701.8105;7820589.129;-8823.980469;0;0.097072398 552101.8105;7818261.648;-8806.860352;0;0.419004831 550326.8105;7821640.25;-8939.25;0;0.354814606 550151.8105;7821827.949;-8950.089844;0;0.32801687 549714.3105;7819988.488;-8897.650391;0;0.150996448 550176.8105;7819294;-8820.219727;0;0.480554739 550814.3105;7820682.98;-8845.280273;0;0.528166164 551851.8105;7818411.809;-8792.339844;0;0.10599144 549251.8105;7818468.117;-8896.040039;0;0.300842915 549676.8105;7819875.867;-8894.509766;0;0.391919357 550614.3105;7819200.148;-8762.089844;0;0.796608804 549551.8105;7821715.328;-8973.55957;0;0.499674215 550614.3105;7819049.988;-8784.349609;0;0.967812966 548989.3105;7819688.168;-8938.69043;0;0.669735005 551714.3105;7818637.047;-8791.929688;0;0.589095343 552439.3105;7818242.879;-8813.540039;0;0.90570138 548889.3105;7816741.277;-8877.070313;0;0.183369604 549051.8105;7821809.18;-8966.55957;0;0.580648226 549114.3105;7821677.789;-8960.849609;0;0.057788471 548939.3105;7818899.828;-8928.769531;0;0.777677466 552326.8105;7819988.488;-8803.629883;0;0.286482236 552389.3105;7819969.719;-8805.379883;0;0.019532683 549314.3105;7821396.238;-8956.889648;0;0.517976501 551826.8105;7818167.797;-8775.990234;0;0.959937051 552326.8105;7818242.879;-8815.299805;0;0.482956144 550301.8105;7816778.816;-8829.129883;0;0.587749778 552389.3105;7821734.102;-8834.740234;0;0.217441301 548939.3105;7821659.02;-8967.490234;0;0.57681065 549176.8105;7820701.75;-8964.839844;0;0.675425901 549876.8105;7819538.008;-8853.5;0;0.248927187 549976.8105;7817323.148;-8836.040039;0;0.335641183 551751.8105;7821002.07;-8870.820313;0;0.089713566 549851.8105;7818805.98;-8844.55957;0;0.518879474 549101.8105;7820851.91;-8962.490234;0;0.9044639 549364.3105;7819763.25;-8926.849609;0;0.741882861 550139.3105;7818805.98;-8815.089844;0;0.236154535 549326.8105;7821264.848;-8955.540039;0;0.991033763 549426.8105;7819913.41;-8922.099609;0;0.656973168 550001.8105;7819988.488;-8846.919922;0;0.573142754 552164.3105;7818561.969;-8816.44043;0;0.517624003 550189.3105;7820776.828;-8882.009766;0;0.76652449 549539.3105;7819838.328;-8912.730469;0;0.723384079 550951.8105;7819218.918;-8796.929688;0;0.790079391 549276.8105;7821039.609;-8960.639648;0;0.949017205 549389.3105;7818336.73;-8871.650391;0;0.384675024 549876.8105;7819782.02;-8860.349609;0;0.723609735 550714.3105;7817266.84;-8807.139648;0;0.540244666 548901.8105;7820983.297;-8972.129883;0;0.106772979 550839.3105;7821321.16;-8924.379883;0;0.524331357 549626.8105;7820307.578;-8902.69043;0;0.372200084 552226.8105;7816853.898;-8747.269531;0;0.101839878 552439.3105;7818881.059;-8813.040039;0;0.364230648 550214.3105;7821752.867;-8943.900391;0;0.7052328 550639.3105;7816947.75;-8828.599609;0;0.915104486 552439.3105;7818111.488;-8800.530273;0;0.738131589 551714.3105;7818561.969;-8790.469727;0;0.872984764 550489.3105;7821752.867;-8945.30957;0;0.891367542 549801.8105;7819706.938;-8873.639648;0;0.569961899 549976.8105;7819125.07;-8842.719727;0;0.173115051 551926.8105;7821189.77;-8868.620117;0;0.406792033 549989.3105;7817116.68;-8822.580078;0;0.581450324 552389.3105;7818655.82;-8821.30957;0;0.571875283 549439.3105;7818149.027;-8876.349609;0;0.751417448 549339.3105;7819631.859;-8925.160156;0;0.618116282 551589.3105;7821171;-8895.290039;0;0.670444776 552214.3105;7818167.797;-8813.5;0;0.725701531 550139.3105;7817567.16;-8845.769531;0;0.964000785 549114.3105;7821583.941;-8955.679688;0;0.135109069 549501.8105;7819200.148;-8898.240234;0;0.055860682 551376.8105;7821809.18;-8893.580078;0;0.356164487 552326.8105;7818167.797;-8813.209961;0;0.462804627 551314.3105;7818055.18;-8791.549805;0;0.294546132 552276.8105;7821415.008;-8859.019531;0;0.998319351 549589.3105;7819782.02;-8906.490234;0;0.56166675 550151.8105;7820232.5;-8804.879883;0;0.628543388 552301.8105;7821039.609;-8850.830078;0;0.026946509 549451.8105;7818411.809;-8868.339844;0;0.203832222 551639.3105;7821189.77;-8894.839844;0;0.188685743 550476.8105;7818768.438;-8804.169922;0;0.179048651 549114.3105;7818486.891;-8907.230469;0;0.74240833 552089.3105;7819106.301;-8811.719727;0;0.038015656 550476.8105;7819275.23;-8773.839844;0;0.011615867 549664.3105;7820007.258;-8906.379883;0;0.710931271 551651.8105;7818712.129;-8792.389648;0;0.640827312 550014.3105;7819350.309;-8823.44043;0;0.967486958 551976.8105;7817492.078;-8784.280273;0;0.669697058 549851.8105;7819594.32;-8860.139648;0;0.220251356 548914.3105;7817698.547;-8870.019531;0;0.095931548 552214.3105;7818580.738;-8819.580078;0;0.995812992 552439.3105;7820926.988;-8835.870117;0;0.705306944 550264.3105;7819763.25;-8814.650391;0;0.190721787 549214.3105;7816760.051;-8847.900391;0;0.898340054 548964.3105;7821527.629;-8958.69043;0;0.62829819 548889.3105;7818993.68;-8925.730469;0;0.268928397 551976.8105;7821171;-8865.589844;0;0.300567881 552326.8105;7818336.73;-8815.69043;0;0.739215747 552389.3105;7820626.668;-8829.759766;0;0.114884679 549926.8105;7818505.66;-8840.870117;0;0.107548134 549964.3105;7819369.078;-8830.599609;0;0.0834781 550026.8105;7818805.98;-8827.209961;0;0.249556914 551926.8105;7818655.82;-8801.860352;0;0.580361755 551689.3105;7821583.941;-8883.55957;0;0.451472781 551839.3105;7820514.051;-8825.879883;0;0.079863231 552439.3105;7819688.168;-8809.290039;0;0.65661994 550439.3105;7821734.102;-8946.25;0;0.618393787 550639.3105;7818862.289;-8812.290039;0;0.18068568 550176.8105;7818561.969;-8844.519531;0;0.532914261 549026.8105;7821677.789;-8965.790039;0;0.115070436 552339.3105;7817567.16;-8755.330078;0;0.130916633 549989.3105;7821339.93;-8949.400391;0;0.026273566 551814.3105;7820082.34;-8783.709961;0;0.353721984 551939.3105;7818092.719;-8779.790039;0;0.569027803 549101.8105;7821377.469;-8960.540039;0;0.976598437 552301.8105;7816666.199;-8749.040039;0;0.773044469 550376.8105;7821659.02;-8942.179688;0;0.634155981 552414.3105;7819913.41;-8806.169922;0;0.612864483 550239.3105;7818393.039;-8849.320313;0;0.803533359 550814.3105;7817191.758;-8806.469727;0;0.806635532 549114.3105;7818411.809;-8905.94043;0;0.575079343 551426.8105;7818618.281;-8787.580078;0;0.403133941 551301.8105;7818881.059;-8812.110352;0;0.880437519 552064.3105;7819594.32;-8806.700195;0;0.592390707 551764.3105;7819594.32;-8825.290039;0;0.351618545 550251.8105;7819125.07;-8815.459961;0;0.693660043 550689.3105;7819650.629;-8806.589844;0;0.947687392 549364.3105;7819688.168;-8924.480469;0;0.656362278 552439.3105;7819087.527;-8814.55957;0;0.385732104 551951.8105;7819613.09;-8808.519531;0;0.374236493 550739.3105;7819575.551;-8805.419922;0;0.966161035 549464.3105;7818974.91;-8882.980469;0;0.456826581 551226.8105;7821490.09;-8906.179688;0;0.149631157 549164.3105;7821602.711;-8954.900391;0;0.727162941 550064.3105;7820213.73;-8813.980469;0;0.654785744 548976.8105;7820457.738;-8953.19043;0;0.058160073 550214.3105;7821827.949;-8946.75;0;0.171330189 549139.3105;7820551.59;-8968.230469;0;0.241375528 549276.8105;7818824.75;-8886.469727;0;0.086004906 548889.3105;7819594.32;-8933.299805;0;0.107534252 552414.3105;7816797.59;-8731.009766;0;0.285511115 550451.8105;7821039.609;-8877.450195;0;0.736073471 552039.3105;7819125.07;-8815.349609;0;0.143012779 551339.3105;7817923.789;-8789.860352;0;0.532444315 549351.8105;7818543.199;-8881.849609;0;0.269849319 550839.3105;7819800.789;-8811.769531;0;0.495142765 549126.8105;7819688.168;-8936.580078;0;0.029653042 549539.3105;7821077.148;-8954.629883;0;0.470979152 549539.3105;7821152.23;-8960.620117;0;0.378316773 551639.3105;7819369.078;-8823.780273;0;0.255332241 552014.3105;7817567.16;-8784.860352;0;0.177714858 550501.8105;7818130.258;-8836.580078;0;0.653681264 551876.8105;7818712.129;-8797.469727;0;0.681821695 549039.3105;7821283.617;-8967.719727;0;0.776748105 548914.3105;7819725.711;-8941.219727;0;0.007591516 550476.8105;7819763.25;-8789.75;0;0.576171775 551464.3105;7819425.391;-8815.070313;0;0.325904143 549151.8105;7819462.93;-8925.290039;0;0.659118309 550101.8105;7821752.867;-8953.049805;0;0.547324692 552264.3105;7818787.207;-8815.780273;0;0.840479661 552389.3105;7821077.148;-8847.55957;0;0.877138145 549614.3105;7819462.93;-8891.280273;0;0.982514601 552201.8105;7821565.168;-8850.120117;0;0.330612979 549201.8105;7820889.449;-8967.009766;0;0.974805746 549664.3105;7819444.16;-8884.400391;0;0.318455213 550139.3105;7819406.617;-8815.629883;0;0.53931241 549814.3105;7819857.098;-8872.610352;0;0.459189304 551851.8105;7818524.43;-8793.280273;0;0.549326611 552289.3105;7819819.559;-8792.139648;0;0.287452751 549426.8105;7819688.168;-8921.110352;0;0.979301433 550989.3105;7817135.449;-8799.200195;0;0.72948328 552439.3105;7820701.75;-8836.849609;0;0.717877527 551339.3105;7817867.48;-8793.410156;0;0.180784433 549476.8105;7819763.25;-8919.679688;0;0.320152144 551064.3105;7817980.098;-8797.849609;0;0.26499095 548989.3105;7821208.539;-8969.660156;0;0.145275549 550176.8105;7819256.457;-8822.209961;0;0.476497279 549676.8105;7819594.32;-8890.660156;0;0.355268203 551689.3105;7819538.008;-8823.740234;0;0.719197361 551064.3105;7821415.008;-8913.950195;0;0.229262458 552001.8105;7819594.32;-8803.910156;0;0.201680125 552151.8105;7819988.488;-8783.730469;0;0.467201768 550389.3105;7818881.059;-8803.089844;0;0.055863739 551851.8105;7819913.41;-8814.830078;0;0.072240873 552189.3105;7817548.387;-8775.660156;0;0.910886892 549051.8105;7818580.738;-8916.610352;0;0.852590075 550789.3105;7820964.531;-8896.530273;0;0.236799046 549914.3105;7818881.059;-8845.879883;0;0.726365175 551914.3105;7817642.238;-8792.209961;0;0.53298167 549001.8105;7820645.438;-8964.730469;0;0.108793498 549539.3105;7819763.25;-8912.240234;0;0.713056455 549839.3105;7820119.879;-8874.700195;0;0.028886198 550151.8105;7821734.102;-8948.629883;0;0.486550829 548964.3105;7821433.781;-8959.900391;0;0.416144656 552439.3105;7818730.898;-8820.80957;0;0.54995974 550251.8105;7821171;-8915.459961;0;0.884167313 551926.8105;7819275.23;-8816;0;0.733529707 551501.8105;7818712.129;-8790.179688;0;0.447211471 552164.3105;7819406.617;-8813.730469;0;0.246657631 549276.8105;7821602.711;-8958.55957;0;0.003783924 550314.3105;7819294;-8817.30957;0;0.015037641 551251.8105;7818862.289;-8815.209961;0;0.989727716 550176.8105;7818149.027;-8862.290039;0;0.448068093 552389.3105;7821659.02;-8842.75;0;0.320919656 552289.3105;7820457.738;-8806.320313;0;0.473212421 549489.3105;7821095.918;-8955.259766;0;0.479655649 551076.8105;7820889.449;-8879.19043;0;0.841507477 549051.8105;7818824.75;-8919.55957;0;0.39406349 549414.3105;7820176.188;-8929.919922;0;0.900717351 549914.3105;7819631.859;-8849.509766;0;0.301686539 548914.3105;7820307.578;-8954.459961;0;0.653781144 551364.3105;7820082.34;-8834.910156;0;0.693715033 552226.8105;7820363.887;-8790.110352;0;0.468473864 549114.3105;7818918.598;-8907.469727;0;0.797257779 550539.3105;7818055.18;-8831.620117;0;0.040101489 550076.8105;7817154.219;-8822.349609;0;0.864646329 552439.3105;7820063.57;-8809.980469;0;0.095951488 551076.8105;7818862.289;-8820.450195;0;0.802312991 549014.3105;7819538.008;-8932.05957;0;0.758306805 551939.3105;7818242.879;-8793.599609;0;0.875099695 551751.8105;7817642.238;-8799.030273;0;0.779440286 552276.8105;7819500.469;-8821.230469;0;0.684531451 552389.3105;7817661.008;-8770.25;0;0.859313195 551076.8105;7818637.047;-8816.94043;0;0.590671046 549926.8105;7819031.219;-8848.129883;0;0.301683607 552339.3105;7820288.809;-8806.780273;0;0.175455064 550051.8105;7821565.168;-8960.519531;0;0.348819123 548889.3105;7821734.102;-8971.490234;0;0.527209194 552326.8105;7821827.949;-8827.349609;0;0.800865293 549601.8105;7821565.168;-8962.69043;0;0.032415792 549251.8105;7820495.281;-8957.459961;0;0.594764762 551689.3105;7817492.078;-8794.660156;0;0.057034995 551614.3105;7818055.18;-8785.169922;0;0.786764024 548939.3105;7816760.051;-8878.929688;0;0.258493039 551626.8105;7818618.281;-8792.879883;0;0.734280164 549264.3105;7819519.238;-8921.849609;0;0.092931541 551439.3105;7819875.867;-8833.400391;0;0.092351984 551639.3105;7819049.988;-8808.219727;0;0.773700835 551251.8105;7818956.141;-8816.599609;0;0.654364693 550251.8105;7817829.938;-8852.879883;0;0.534901601 550814.3105;7818805.98;-8815.580078;0;0.655723582 551626.8105;7820082.34;-8804.780273;0;0.734484337 550126.8105;7819725.711;-8827.230469;0;0.983323378 550714.3105;7816928.98;-8825.730469;0;0.804229392 551239.3105;7820833.141;-8879.75;0;0.301645005 552414.3105;7820776.828;-8836.480469;0;0.028754819 552214.3105;7821020.84;-8854.620117;0;0.477356756 550851.8105;7817886.25;-8809.110352;0;0.568947926 550439.3105;7819406.617;-8786.669922;0;0.368994498 549326.8105;7819481.699;-8916.530273;0;0.000143111 551014.3105;7820570.359;-8835.509766;0;0.996464485 550701.8105;7820908.219;-8891.040039;0;0.011526802 549039.3105;7821227.309;-8969.990234;0;0.6860431 549614.3105;7819218.918;-8886.959961;0;0.21548599 551289.3105;7821396.238;-8902.049805;0;0.014490732 549476.8105;7821302.391;-8956.820313;0;0.42287441 551664.3105;7818393.039;-8793.019531;0;0.69981747 549539.3105;7821321.16;-8957.379883;0;0.630520922 552276.8105;7819444.16;-8820.669922;0;0.274133882 549426.8105;7819857.098;-8923.200195;0;0.985583312 550801.8105;7819049.988;-8793.349609;0;0.123974499 551014.3105;7821396.238;-8916.179688;0;0.862210015 552439.3105;7820401.43;-8819.919922;0;0.971614398 549764.3105;7821583.941;-8955.44043;0;0.46072099 551276.8105;7819782.02;-8834.290039;0;0.789552569 551101.8105;7818111.488;-8799.730469;0;0.345013861 552439.3105;7818317.957;-8816.55957;0;0.569254221 549964.3105;7818899.828;-8843.169922;0;0.103224418 552151.8105;7818881.059;-8812.830078;0;0.368886805 551914.3105;7818974.91;-8811.19043;0;0.96525622 549901.8105;7818974.91;-8850.540039;0;0.803601571 549101.8105;7819369.078;-8933.969727;0;0.647312989 551376.8105;7818130.258;-8789.080078;0;0.896783772 549389.3105;7820438.969;-8946.610352;0;0.12835131 549739.3105;7818805.98;-8855.780273;0;0.095147545 548901.8105;7820176.188;-8954.110352;0;0.412862935 549151.8105;7819519.238;-8926.519531;0;0.498164397 550076.8105;7818730.898;-8818.660156;0;0.631342244 550814.3105;7817323.148;-8801.240234;0;0.47859034 549001.8105;7818749.668;-8925.450195;0;0.563787759 552276.8105;7818111.488;-8810.019531;0;0.453901672 551051.8105;7820138.648;-8827.179688;0;0.770153462 551964.3105;7820701.75;-8841.870117;0;0.216741196 552051.8105;7818242.879;-8801.530273;0;0.668360216 550114.3105;7817398.227;-8832.580078;0;0.21974948 550051.8105;7820814.371;-8898.129883;0;0.503840494 549251.8105;7818393.039;-8894.589844;0;0.453520388 552101.8105;7819350.309;-8812.980469;0;0.198002433 549051.8105;7818730.898;-8920.19043;0;0.158916024 550501.8105;7818674.59;-8812.089844;0;0.075428946 548914.3105;7821377.469;-8968.230469;0;0.225599056 551639.3105;7819519.238;-8823.709961;0;0.161414615 551914.3105;7821246.078;-8872.530273;0;0.579431176 552314.3105;7819688.168;-8812.570313;0;0.79504354 552276.8105;7819275.23;-8819;0;0.704038296 552301.8105;7821002.07;-8848.879883;0;0.263767441 549764.3105;7819594.32;-8876.75;0;0.873760094 551151.8105;7818374.27;-8797.980469;0;0.028887403 550726.8105;7817698.547;-8819.280273;0;0.623855103 550526.8105;7818787.207;-8809.070313;0;0.674169806 548976.8105;7820420.199;-8948.379883;0;0.235929415 549051.8105;7821734.102;-8966.030273;0;0.007023627 549026.8105;7818637.047;-8920.820313;0;0.158331172 551851.8105;7818561.969;-8793.150391;0;0.801701449 551876.8105;7818149.027;-8776.400391;0;0.280492014 549351.8105;7821508.859;-8964.889648;0;0.710788595 550251.8105;7819369.078;-8821.30957;0;0.442148884 549226.8105;7820138.648;-8932.490234;0;0.463195291 551389.3105;7819294;-8817.219727;0;0.081264808 551426.8105;7820119.879;-8828.240234;0;0.257165506 550026.8105;7818712.129;-8820.040039;0;0.648288194 550264.3105;7821809.18;-8946.900391;0;0.553360334 549026.8105;7821640.25;-8964.509766;0;0.597724203 550964.3105;7818637.047;-8816.44043;0;0.337617735 550176.8105;7819200.148;-8823.759766;0;0.779514153 549689.3105;7818787.207;-8857.209961;0;0.050993854 551576.8105;7821583.941;-8882.589844;0;0.535438794 552201.8105;7821246.078;-8858.730469;0;0.020893973 549651.8105;7821490.09;-8961.370117;0;0.362914849 550614.3105;7819012.449;-8793.070313;0;0.788944463 552114.3105;7819575.551;-8809.120117;0;0.043294076 549864.3105;7816872.668;-8840.860352;0;0.099311946 549114.3105;7820457.738;-8960.459961;0;0.389849945 549664.3105;7821546.398;-8958.799805;0;0.895697798 551701.8105;7821095.918;-8882.120117;0;0.033419296 549001.8105;7821827.949;-8970.19043;0;0.756645344 552414.3105;7818205.34;-8812.070313;0;0.173915195 551526.8105;7819181.379;-8821;0;0.153839423 551976.8105;7820063.57;-8775.709961;0;0.548168462 551464.3105;7821020.84;-8889.070313;0;0.602242559 549764.3105;7819875.867;-8882.200195;0;0.980671801 551614.3105;7819838.328;-8833;0;0.17467642 550676.8105;7820964.531;-8895.230469;0;0.628365253 552439.3105;7818937.367;-8811.719727;0;0.703494573 551626.8105;7818186.57;-8782.830078;0;0.76162114 551414.3105;7819350.309;-8812.179688;0;0.00012989 551426.8105;7818149.027;-8787.540039;0;0.609298367 552201.8105;7819819.559;-8792.849609;0;0.525615415 549426.8105;7819782.02;-8924.209961;0;0.576332871 549814.3105;7818374.27;-8855.719727;0;0.23232972 552189.3105;7818355.5;-8812.339844;0;0.957329918 550851.8105;7819031.219;-8798.870117;0;0.020078947 549264.3105;7819462.93;-8918.599609;0;0.11710884 552026.8105;7819988.488;-8784.049805;0;0.284849274 552114.3105;7820607.898;-8823.5;0;0.057314489 550176.8105;7816703.738;-8831.530273;0;0.420199608 551014.3105;7818693.359;-8817.75;0;0.436883594 548964.3105;7820363.887;-8946.839844;0;0.234012945 551376.8105;7821339.93;-8892.490234;0;0.590623967 552339.3105;7818393.039;-8819.80957;0;0.910311908 549176.8105;7820382.66;-8944.089844;0;0.987400351 551526.8105;7819519.238;-8821.459961;0;0.327162378 551976.8105;7818637.047;-8804.549805;0;0.466477986 551789.3105;7817022.828;-8781.230469;0;0.268227818 551964.3105;7820833.141;-8851.25;0;0.173465517 550976.8105;7818937.367;-8810.799805;0;0.334154414 552326.8105;7818092.719;-8806.589844;0;0.553061977 548914.3105;7821602.711;-8967.799805;0;0.224367793 551751.8105;7819988.488;-8808.120117;0;0.369936785 549401.8105;7819294;-8908.769531;0;0.024094559 549264.3105;7821433.781;-8953.469727;0;0.451697523 549189.3105;7820795.598;-8966.55957;0;0.444201552 549301.8105;7820232.5;-8930.700195;0;0.324645892 549626.8105;7819613.09;-8897.129883;0;0.130019138 551601.8105;7821621.48;-8878.320313;0;0.058633731 552039.3105;7819049.988;-8812.570313;0;0.127179422 549539.3105;7821377.469;-8959.280273;0;0.646274322 552339.3105;7821508.859;-8856.330078;0;0.710929471 549101.8105;7819538.008;-8929.709961;0;0.205151434 552339.3105;7819594.32;-8818.379883;0;0.959837884 549801.8105;7818787.207;-8846.990234;0;0.619374788 549164.3105;7820476.508;-8960.799805;0;0.289078947 550964.3105;7817905.02;-8806.360352;0;0.067546953 550701.8105;7817811.168;-8821.980469;0;0.18969018 551414.3105;7819575.551;-8815.30957;0;0.199528092 548889.3105;7818918.598;-8930.070313;0;0.46397142 551514.3105;7821715.328;-8882.200195;0;0.004934189 549101.8105;7816778.816;-8864.049805;0;0.994528561 549589.3105;7819857.098;-8906.200195;0;0.483072638 550189.3105;7818787.207;-8815.94043;0;0.779341934 549589.3105;7821302.391;-8957.650391;0;0.438277336 552414.3105;7820138.648;-8808.889648;0;0.917353305 549201.8105;7820851.91;-8967.69043;0;0.657316762 552176.8105;7820382.66;-8783.849609;0;0.982488458 550801.8105;7817867.48;-8814.080078;0;0.819887956 549976.8105;7816797.59;-8832.790039;0;0.791993231 549251.8105;7818430.578;-8895.709961;0;0.778376422 549164.3105;7818899.828;-8900.139648;0;0.784645516 548889.3105;7820739.289;-8964.769531;0;0.576095434 551839.3105;7818899.828;-8805.910156;0;0.284517394 552414.3105;7821039.609;-8844.679688;0;0.388854487 552176.8105;7819594.32;-8815.150391;0;0.593399189 549126.8105;7817266.84;-8826.830078;0;0.373823813 550926.8105;7819706.938;-8810.519531;0;0.425846701 549051.8105;7821602.711;-8961.660156;0;0.316722093 551639.3105;7816778.816;-8788.799805;0;0.92111379 549551.8105;7821546.398;-8964.009766;0;0.641897882 548914.3105;7820345.121;-8952.25;0;0.689459976 552114.3105;7819500.469;-8810.580078;0;0.475703412 551551.8105;7818130.258;-8782.290039;0;0.663435339 549764.3105;7819556.777;-8875.230469;0;0.524368219 551751.8105;7817492.078;-8792.509766;0;0.727099117 551301.8105;7818937.367;-8813.700195;0;0.773471481 550851.8105;7821396.238;-8919.179688;0;0.854795777 549776.8105;7820119.879;-8885.879883;0;0.878599175 550526.8105;7819125.07;-8764.629883;0;0.649354937 549251.8105;7821640.25;-8957.290039;0;0.171872995 551851.8105;7818374.27;-8791.410156;0;0.338896716 551351.8105;7819350.309;-8814.19043;0;0.082818857 548914.3105;7821339.93;-8966.740234;0;0.260605551 551701.8105;7821020.84;-8878.519531;0;0.139083067 551451.8105;7819725.711;-8825.570313;0;0.850548046 549401.8105;7820964.531;-8961.629883;0;0.146618798 549676.8105;7816910.207;-8838.019531;0;0.89152719 551314.3105;7820157.418;-8834.959961;0;0.62519993 550414.3105;7818149.027;-8845.570313;0;0.429903634 550064.3105;7819200.148;-8831.69043;0;0.830027492 550151.8105;7818092.719;-8861.509766;0;0.429800576 551639.3105;7818787.207;-8793.299805;0;0.960975963 550476.8105;7819800.789;-8789.009766;0;0.420387954 551739.3105;7819782.02;-8826.089844;0;0.161684034 550126.8105;7818543.199;-8845.049805;0;0.2072683 551426.8105;7820908.219;-8884.519531;0;0.138940447 551389.3105;7818899.828;-8805.959961;0;0.112211611 549001.8105;7821752.867;-8968.740234;0;0.957850278 552051.8105;7818092.719;-8790.419922;0;0.823645828 550539.3105;7821565.168;-8933.94043;0;0.880288375 552064.3105;7821077.148;-8858.980469;0;0.341473966 550239.3105;7817398.227;-8826.669922;0;0.35193351 551876.8105;7821508.859;-8880.05957;0;0.416544647 551901.8105;7819932.18;-8803.94043;0;0.622877707 551739.3105;7817041.598;-8784;0;0.429096305 552164.3105;7820157.418;-8776.709961;0;0.509393948 550264.3105;7821734.102;-8942.910156;0;0.125690865 552289.3105;7817548.387;-8760.44043;0;0.244490638 551201.8105;7818693.359;-8814.650391;0;0.538688772 549401.8105;7820926.988;-8963.540039;0;0.204772746 549864.3105;7821827.949;-8971.269531;0;0.470778115 551176.8105;7821302.391;-8905.120117;0;0.802675349 549401.8105;7820307.578;-8933.219727;0;0.677369374 550301.8105;7819988.488;-8797.549805;0;0.934726397 552389.3105;7819481.699;-8818.280273;0;0.895605694 548914.3105;7820213.73;-8955.400391;0;0.046111207 550864.3105;7818637.047;-8827.400391;0;0.87851417 552064.3105;7818862.289;-8812.780273;0;0.548978533 552101.8105;7819200.148;-8814.080078;0;0.888703419 551701.8105;7820532.82;-8834.910156;0;0.381157301 552176.8105;7820307.578;-8777.80957;0;0.99143683 550439.3105;7821508.859;-8933.240234;0;0.493931108 550526.8105;7818956.141;-8790.769531;0;0.142113184 552151.8105;7819256.457;-8814.110352;0;0.551211056 550101.8105;7821508.859;-8948.719727;0;0.667685537 550601.8105;7819575.551;-8795.799805;0;0.225000648 548976.8105;7817097.91;-8858.669922;0;0.028760786 552176.8105;7821358.699;-8863.589844;0;0.826689936 551326.8105;7819800.789;-8834.480469;0;0.951900099 552301.8105;7818674.59;-8820.599609;0;0.362260754 552151.8105;7820870.68;-8848.660156;0;0.881788137 549601.8105;7821077.148;-8957.080078;0;0.502686112 550401.8105;7818637.047;-8827.410156;0;0.390081273 551626.8105;7821565.168;-8887.200195;0;0.252165781 549851.8105;7820194.961;-8861.480469;0;0.330831574 551876.8105;7819481.699;-8817.30957;0;0.393708959 548989.3105;7820607.898;-8963.69043;0;0.341843447 549001.8105;7818599.508;-8920;0;0.485420376 551276.8105;7817792.398;-8790.379883;0;0.927341415 548914.3105;7817585.93;-8862.269531;0;0.859900686 550839.3105;7820983.297;-8895.969727;0;0.649811455 550589.3105;7819631.859;-8799.379883;0;0.226917705 550926.8105;7821039.609;-8900.450195;0;0.172665459 552389.3105;7818712.129;-8820.610352;0;0.777822127 549876.8105;7819875.867;-8862.769531;0;0.994696353 549751.8105;7819200.148;-8857.769531;0;0.796834434 549776.8105;7817379.461;-8830.269531;0;0.775971854 552376.8105;7821396.238;-8858.25;0;0.160378234 550301.8105;7818787.207;-8817.209961;0;0.333758751 550389.3105;7819125.07;-8791.900391;0;0.911889517 552151.8105;7819331.539;-8813.360352;0;0.995433476 548901.8105;7817492.078;-8862.929688;0;0.549742297 550576.8086;7821640.25;-8933.620117;0;0.095229175 551176.8105;7819444.16;-8812.780273;0;0.672714192 551851.8105;7818111.488;-8776.549805;0;0.165118615 551589.3105;7819031.219;-8808.849609;0;0.337948116 550939.3105;7817248.07;-8797.919922;0;0.720588907 549214.3105;7819369.078;-8924.969727;0;0.8020938 550814.3105;7819294;-8794.200195;0;0.458396761 550914.3105;7819106.301;-8787.830078;0;0.53057724 551389.3105;7817604.699;-8799.900391;0;0.665267347 549026.8105;7817829.938;-8875.379883;0;0.490636963 550626.8105;7820176.188;-8765.179688;0;0.291408888 551139.3105;7818468.117;-8801.160156;0;0.449328603 550976.8105;7818468.117;-8821.099609;0;0.17088205 549926.8105;7819800.789;-8850.790039;0;0.627546661 550464.3105;7818486.891;-8828.459961;0;0.996491677 552426.8105;7819425.391;-8822.669922;0;0.180073002 549439.3105;7819369.078;-8908.900391;0;0.193104726 549851.8105;7818974.91;-8854.509766;0;0.710782492 552226.8105;7820438.969;-8793.610352;0;0.857658495 549789.3105;7821640.25;-8958.620117;0;0.966512041 552201.8105;7819838.328;-8789.330078;0;0.259319062 550289.3105;7818055.18;-8853.540039;0;0.803036138 549626.8105;7818393.039;-8855.519531;0;0.705834791 552339.3105;7820438.969;-8811.620117;0;0.931947644 548964.3105;7820401.43;-8947.120117;0;0.074896419 549151.8105;7819218.918;-8929.830078;0;0.326527546 552414.3105;7818167.797;-8807.839844;0;0.285506586 549664.3105;7821715.328;-8965.330078;0;0.084703011 548964.3105;7821490.09;-8958.400391;0;0.913684371 549001.8105;7818805.98;-8925.870117;0;0.900863105 550589.3105;7821396.238;-8910.969727;0;0.144272218 549489.3105;7821171;-8959.620117;0;0.989609282 551614.3105;7820119.879;-8803.799805;0;0.865754216 551251.8105;7820082.34;-8839.629883;0;0.78077216 550389.3105;7819706.938;-8787.259766;0;0.619471465 549789.3105;7821677.789;-8961.179688;0;0.388362168 548901.8105;7817285.609;-8868.830078;0;0.256794313 550176.8105;7819237.688;-8822.759766;0;0.094789864 548964.3105;7821415.008;-8960.730469;0;0.010482466 552226.8105;7817304.379;-8762.259766;0;0.854146414 549114.3105;7820795.598;-8962.660156;0;0.465605655 551626.8105;7820532.82;-8843.610352;0;0.669316397 551751.8105;7821077.148;-8874.599609;0;0.690798839 548901.8105;7820645.438;-8961.849609;0;0.346426093 551676.8105;7817585.93;-8799.839844;0;0.610480476 550789.3105;7821302.391;-8924.549805;0;0.923346764 551876.8105;7819857.098;-8816.339844;0;0.887276771 550914.3105;7817323.148;-8794.490234;0;0.1766234 551864.3105;7819256.457;-8813.389648;0;0.247603478 551814.3105;7821002.07;-8864.089844;0;0.794685583 552276.8105;7819969.719;-8796.530273;0;0.550155409 548914.3105;7818468.117;-8923.280273;0;0.257738521 550251.8105;7818768.438;-8819.349609;0;0.166445928 551389.3105;7819256.457;-8818.780273;0;0.538395486 549501.8105;7818468.117;-8861.070313;0;0.109406365 550364.3105;7818468.117;-8841.660156;0;0.416896872 552101.8105;7818974.91;-8811.160156;0;0.027498918 550189.3105;7820082.34;-8802.040039;0;0.718430306 551889.3105;7820532.82;-8826.049805;0;0.423722538 552326.8105;7820157.418;-8805.429688;0;0.637088394 552276.8105;7818486.891;-8820.679688;0;0.829679331 550976.8105;7819725.711;-8813.980469;0;0.983980198 551976.8105;7819200.148;-8816.110352;0;0.629551363 551201.8105;7818393.039;-8793.769531;0;0.782702402 552414.3105;7820514.051;-8826.94043;0;0.521535844 548914.3105;7821827.949;-8974.669922;0;0.094051825 551764.3105;7818580.738;-8788.370117;0;0.460192345 548951.8105;7818411.809;-8919.570313;0;0.711497243 548964.3105;7817266.84;-8858.049805;0;0.384758821 549064.3105;7820945.758;-8963.040039;0;0.542877506 551039.3105;7820401.43;-8822.349609;0;0.619775186 548901.8105;7817191.758;-8868.589844;0;0.085593912 549476.8105;7819932.18;-8920.330078;0;0.111051667 549076.8105;7817097.91;-8838.75;0;0.780713579 551114.3105;7819481.699;-8812.509766;0;0.66544839 552151.8105;7819049.988;-8809.150391;0;0.158490081 552264.3105;7821565.168;-8850.360352;0;0.813943816 550214.3105;7819857.098;-8814.650391;0;0.901734136 550476.8105;7819725.711;-8789.759766;0;0.091922437 552314.3105;7818805.98;-8816.120117;0;0.410833098 548964.3105;7821546.398;-8959.509766;0;0.403850531 551876.8105;7817848.711;-8793.769531;0;0.303441895 551964.3105;7820870.68;-8853.889648;0;0.484803025 550989.3105;7817623.469;-8798.129883;0;0.780729033 550726.8105;7820983.297;-8899.820313;0;0.407033894 549176.8105;7818993.68;-8908.030273;0;0.535322321 548914.3105;7819763.25;-8940.94043;0;0.322332853 550239.3105;7818073.949;-8857.519531;0;0.628293076 551951.8105;7819012.449;-8813.410156;0;0.003241825 551189.3105;7818768.438;-8818.650391;0;0.895120142 551876.8105;7817229.301;-8780.490234;0;0.516608269 549164.3105;7821508.859;-8952.709961;0;0.479788388 550689.3105;7819481.699;-8793.589844;0;0.125399108 552414.3105;7816760.051;-8729.349609;0;0.477654363 550139.3105;7820063.57;-8810.709961;0;0.829121931 550964.3105;7821321.16;-8916.780273;0;0.807060915 551914.3105;7821095.918;-8865.19043;0;0.789590575 549901.8105;7817191.758;-8828.019531;0;0.996354243 549814.3105;7818411.809;-8852.120117;0;0.125354834 548889.3105;7816835.129;-8875.290039;0;0.644797245 552314.3105;7819650.629;-8816.160156;0;0.915861846 549451.8105;7818655.82;-8862.719727;0;0.723935885 552389.3105;7820945.758;-8838.969727;0;0.022141191 549326.8105;7820945.758;-8965.030273;0;0.987552315 550914.3105;7819369.078;-8805.530273;0;0.679020712 550814.3105;7820645.438;-8836.44043;0;0.196901764 549876.8105;7819500.469;-8851.839844;0;0.696289956 549214.3105;7819444.16;-8921.209961;0;0.942141346 549001.8105;7820551.59;-8963.519531;0;0.463392156 549151.8105;7819594.32;-8930.419922;0;0.245061627 549501.8105;7818393.039;-8863.110352;0;0.64459775 549026.8105;7818693.359;-8922.450195;0;0.314875345 551764.3105;7818655.82;-8788.700195;0;0.645880566 551264.3105;7818036.41;-8792.780273;0;0.256891854 549564.3105;7818486.891;-8855.129883;0;0.58854465 549226.8105;7821583.941;-8956.889648;0;0.361144565 550876.8105;7817492.078;-8800.589844;0;0.654192772 549001.8105;7821583.941;-8961.410156;0;0.28023453 549339.3105;7819594.32;-8924.69043;0;0.550310084 552126.8105;7820457.738;-8798.950195;0;0.526054264 551501.8105;7819763.25;-8831.070313;0;0.015682502 550026.8105;7820739.289;-8889.910156;0;0.905420927 551464.3105;7819650.629;-8821.990234;0;0.027579699 552101.8105;7818317.957;-8807.929688;0;0.714659834 549589.3105;7819913.41;-8908.009766;0;0.642173052 551414.3105;7819519.238;-8811.730469;0;0.11146671 550039.3105;7819294;-8824.519531;0;0.995282369 551576.8105;7819500.469;-8822.849609;0;0.755201322 549726.8105;7818655.82;-8838.139648;0;0.938108372 549451.8105;7818486.891;-8867.450195;0;0.89219242 549676.8105;7818561.969;-8847.009766;0;0.185973455 551039.3105;7819857.098;-8820.950195;0;0.498692023 550439.3105;7821827.949;-8945.129883;0;0.327204021 551089.3105;7819875.867;-8824.849609;0;0.098508565 549801.8105;7818712.129;-8832.669922;0;0.555188746 548976.8105;7820476.508;-8955.599609;0;0.544106444 548939.3105;7819613.09;-8934.570313;0;0.794305806 552326.8105;7821171;-8854.450195;0;0.713072214 550064.3105;7819237.688;-8828.879883;0;0.250220832 550101.8105;7821809.18;-8952.980469;0;0.168877128 552401.8105;7817829.938;-8780.280273;0;0.305702403 551976.8105;7819256.457;-8815.660156;0;0.911481275 552201.8105;7817116.68;-8735.830078;0;0.265613814 550689.3105;7819819.559;-8807.469727;0;0.9973239 548914.3105;7821790.41;-8973.75;0;0.775144009 549326.8105;7821020.84;-8962.389648;0;0.026879552 551939.3105;7818336.73;-8796.660156;0;0.635291235 551876.8105;7819988.488;-8795.549805;0;0.521927572 549801.8105;7819106.301;-8845.429688;0;0.316371999 552439.3105;7821715.328;-8837.009766;0;0.653243987 552276.8105;7818186.57;-8816.620117;0;0.680715621 549264.3105;7821790.41;-8973.150391;0;0.16794284 551814.3105;7819275.23;-8812.639648;0;0.758187006 551376.8105;7821302.391;-8891.969727;0;0.159470462 551626.8105;7820607.898;-8849.900391;0;0.33890311 551026.8105;7818843.52;-8818.650391;0;0.623416083 552276.8105;7818261.648;-8815.299805;0;0.107112342 548939.3105;7820532.82;-8956.530273;0;0.768202622 549026.8105;7817097.91;-8849.410156;0;0.938066519 550951.8105;7819181.379;-8791.139648;0;0.427370727 549164.3105;7818430.578;-8902.040039;0;0.767676452 549389.3105;7818393.039;-8875.219727;0;0.568572242 551864.3105;7821020.84;-8863.540039;0;0.637090128 549514.3105;7818993.68;-8878.44043;0;0.082178015 549026.8105;7817792.398;-8872.139648;0;0.67543659 549476.8105;7819706.938;-8917.540039;0;0.902946212 550276.8105;7818693.359;-8830.269531;0;0.497184159 551701.8105;7818505.66;-8789.379883;0;0.029670157 550364.3105;7818130.258;-8848.589844;0;0.009151908 550514.3105;7820964.531;-8875.540039;0;0.728993985 550189.3105;7821171;-8924.629883;0;0.475393965 551864.3105;7817661.008;-8794.740234;0;0.990885672 549039.3105;7816853.898;-8869.980469;0;0.538771591 551976.8105;7821339.93;-8874.530273;0;0.288897161 549501.8105;7818637.047;-8858.290039;0;0.523984115 552339.3105;7819800.789;-8796.459961;0;0.083887048 550201.8105;7819500.469;-8817.139648;0;0.535980265 551126.8105;7821321.16;-8905.110352;0;0.692688878 549126.8105;7817097.91;-8830.94043;0;0.536299053 550839.3105;7819763.25;-8811.480469;0;0.604794953 551464.3105;7819369.078;-8814.969727;0;0.566500897 552201.8105;7819031.219;-8810.25;0;0.707614179 549151.8105;7819387.852;-8928.379883;0;0.836513756 550489.3105;7821809.18;-8944.820313;0;0.067548346 551864.3105;7820063.57;-8781.150391;0;0.546467744 549264.3105;7820720.52;-8964.790039;0;0.891521008 552276.8105;7821189.77;-8856.400391;0;0.599087045 552214.3105;7819425.391;-8817.25;0;0.123275127 549726.8105;7818580.738;-8840.150391;0;0.764687357 551739.3105;7821565.168;-8881.679688;0;0.921220928 552389.3105;7818336.73;-8817.099609;0;0.169906136 551464.3105;7819500.469;-8815.839844;0;0.679932231 549539.3105;7819932.18;-8914.69043;0;0.518360415 550214.3105;7819782.02;-8820.950195;0;0.882696986 549251.8105;7820457.738;-8952.419922;0;0.87994627 550089.3105;7819275.23;-8824.019531;0;0.444872645 550701.8105;7820551.59;-8815.639648;0;0.774519659 549926.8105;7818449.348;-8846.820313;0;0.012230188 549476.8105;7819838.328;-8920.040039;0;0.543448358 549676.8105;7818637.047;-8844.530273;0;0.136086517 549101.8105;7819613.09;-8932.280273;0;0.150658988 552151.8105;7821583.941;-8852.259766;0;0.662010363 550039.3105;7821321.16;-8944.540039;0;0.943497369 549351.8105;7821452.551;-8965.799805;0;0.668620939 550589.3105;7821452.551;-8914.049805;0;0.260156886 549414.3105;7819988.488;-8925.580078;0;0.008080403 549676.8105;7819838.328;-8894.320313;0;0.828568511 550601.8105;7819538.008;-8791.150391;0;0.865825699 552414.3105;7821002.07;-8841.709961;0;0.594993765 549026.8105;7817360.688;-8843.519531;0;0.673231555 552389.3105;7818261.648;-8814.530273;0;0.041759949 549514.3105;7820438.969;-8942.19043;0;0.818639036 551601.8105;7820739.289;-8858.740234;0;0.321435747 548939.3105;7821752.867;-8972.009766;0;0.002091617 551976.8105;7817154.219;-8771.929688;0;0.812512775 551764.3105;7817998.871;-8782.19043;0;0.546469092 552301.8105;7816703.738;-8747.900391;0;0.171614423 548964.3105;7820382.66;-8946.69043;0;0.182342375 552151.8105;7821264.848;-8859.80957;0;0.001993902 550164.3105;7820833.141;-8893.129883;0;0.115971561 552051.8105;7820701.75;-8839.540039;0;0.964780092 552439.3105;7817642.238;-8760.969727;0;0.346444961 551364.3105;7818937.367;-8809.849609;0;0.651997628 552276.8105;7818937.367;-8814.830078;0;0.799249102 549339.3105;7818317.957;-8876.150391;0;0.72464557 551689.3105;7819369.078;-8822.820313;0;0.318365109 552389.3105;7818092.719;-8802.089844;0;0.166805418 552051.8105;7819444.16;-8810.580078;0;0.200618751 552039.3105;7821565.168;-8865.549805;0;0.795051609 550389.3105;7819556.777;-8797.5;0;0.610778027 550714.3105;7816985.289;-8822.94043;0;0.211322888 550039.3105;7820626.668;-8875.740234;0;0.126311311 551464.3105;7819594.32;-8819.5;0;0.363583759 549339.3105;7818712.129;-8877.990234;0;0.335683436 548964.3105;7821452.551;-8959.200195;0;0.824030697 549339.3105;7821302.391;-8955;0;0.152130171 549976.8105;7819049.988;-8845.599609;0;0.978657185 549226.8105;7819312.77;-8924.879883;0;0.528631468 549701.8105;7821471.32;-8959.660156;0;0.342018074 550076.8105;7818787.207;-8818.599609;0;0.347486434 551801.8105;7817473.309;-8789.019531;0;0.176323772 551389.3105;7818862.289;-8804.860352;0;0.35993327 551414.3105;7819444.16;-8809.339844;0;0.168851305 549214.3105;7819538.008;-8925.230469;0;0.838889652 549014.3105;7819519.238;-8932.919922;0;0.76060676 552326.8105;7819519.238;-8820.070313;0;0.883438684 552389.3105;7820682.98;-8832.929688;0;0.359208843 552439.3105;7821095.918;-8848.150391;0;0.724331621 549351.8105;7819312.77;-8913.040039;0;0.193371305 552326.8105;7819256.457;-8819.459961;0;0.124804682 552189.3105;7818299.188;-8812.549805;0;0.744309805 552164.3105;7818261.648;-8812.55957;0;0.536688683 550326.8105;7821583.941;-8937.969727;0;0.860993379 551489.3105;7818393.039;-8795.679688;0;0.188816186 550914.3105;7817829.938;-8808.969727;0;0.570423909 548964.3105;7821471.32;-8958.709961;0;0.754221384 549601.8105;7818956.141;-8859.299805;0;0.566750511 552414.3105;7818561.969;-8820.530273;0;5.62E-05 549339.3105;7818411.809;-8884.490234;0;0.916862257 551426.8105;7818561.969;-8788.400391;0;0.81874495 552089.3105;7819031.219;-8809.849609;0;0.288987674 552301.8105;7820194.961;-8802.049805;0;0.801040562 552439.3105;7820326.348;-8816.719727;0;0.328387207 548964.3105;7820495.281;-8956.339844;0;0.411657446 550976.8105;7819800.789;-8814.580078;0;0.720264048 551226.8105;7819425.391;-8813.799805;0;0.390703924 550276.8105;7818730.898;-8823.959961;0;0.465253567 550389.3105;7818862.289;-8806.320313;0;0.38334368 551301.8105;7819369.078;-8816.25;0;0.357622536 549176.8105;7820758.059;-8965.480469;0;0.010178126 551264.3105;7817980.098;-8788.080078;0;0.767749958 549314.3105;7819782.02;-8929.209961;0;0.387590494 552389.3105;7818956.141;-8815.849609;0;0.8363836 549064.3105;7820607.898;-8969.969727;0;0.06133359 549851.8105;7818730.898;-8829.919922;0;0.260743312 550076.8105;7818317.957;-8860.509766;0;0.053708286 550701.8105;7820870.68;-8886.219727;0;0.158927915 549814.3105;7818280.418;-8860.530273;0;0.338274215 552389.3105;7820044.801;-8809.55957;0;0.81860436 551451.8105;7819800.789;-8831.5;0;0.391746456 551189.3105;7820664.211;-8868.089844;0;0.156673539 552389.3105;7818862.289;-8817.320313;0;0.63869805 549164.3105;7821659.02;-8955.339844;0;0.128895051 551351.8105;7820851.91;-8882.240234;0;0.172706857 549401.8105;7818561.969;-8873.05957;0;0.777845616 551964.3105;7820664.211;-8839.25;0;0.928151658 552289.3105;7817736.09;-8786.070313;0;0.409458853 552226.8105;7820288.809;-8788.30957;0;0.246985022 552201.8105;7817154.219;-8743.950195;0;0.561945711 551376.8105;7818543.199;-8787.469727;0;0.389333763 548976.8105;7820438.969;-8950.610352;0;0.522234708 549314.3105;7819706.938;-8927.360352;0;0.486337999 550764.3105;7819294;-8788.490234;0;0.67552913 549176.8105;7821114.691;-8963.69043;0;0.760808382 550114.3105;7816722.508;-8829.429688;0;0.044793046 552176.8105;7821321.16;-8862.19043;0;0.43538497 550389.3105;7821321.16;-8916;0;0.434386253 549264.3105;7819387.852;-8920.320313;0;0.594217809 549601.8105;7821734.102;-8972.330078;0;0.15218501 552414.3105;7820551.59;-8828.910156;0;0.236531004 551051.8105;7819481.699;-8810.070313;0;0.443275294 549189.3105;7819049.988;-8911.629883;0;0.764290988 549926.8105;7819106.301;-8844.570313;0;0.662624495 550376.8105;7821565.168;-8938.980469;0;0.728420685 552151.8105;7818956.141;-8812.230469;0;0.6453909 550114.3105;7820833.141;-8897.30957;0;0.414248601 549051.8105;7820532.82;-8966.719727;0;0.557715595 550526.8105;7816666.199;-8839.360352;0;0.004929876 552439.3105;7819500.469;-8816.769531;0;0.720058002 550501.8105;7818712.129;-8808.120117;0;0.799750326 550526.8105;7819294;-8767.910156;0;0.165203441 551414.3105;7818956.141;-8806.900391;0;0.479070116 550576.8086;7818956.141;-8798.269531;0;0.576303437 551076.8105;7819669.398;-8817.719727;0;0.24077391 551539.3105;7818374.27;-8796.540039;0;0.910534791 551989.3105;7818317.957;-8799.450195;0;0.40595359 549101.8105;7819444.16;-8929.959961;0;0.05040665 550251.8105;7820007.258;-8805.629883;0;0.194136216 549314.3105;7820701.75;-8961.480469;0;0.624638695 549164.3105;7818505.66;-8903.25;0;0.311821755 551964.3105;7817548.387;-8786.740234;0;0.24793418 551876.8105;7818486.891;-8796.879883;0;0.214017929 552301.8105;7820851.91;-8838.25;0;0.462305991 551514.3105;7820664.211;-8862.990234;0;0.696704545 552264.3105;7820926.988;-8846.160156;0;0.083940738 548939.3105;7818974.91;-8923.900391;0;0.581669227 552439.3105;7818637.047;-8822.570313;0;0.606897989 549039.3105;7819669.398;-8936.910156;0;0.850355008 552414.3105;7818599.508;-8821.05957;0;0.770022679 552276.8105;7818317.957;-8814.089844;0;0.247446621 552164.3105;7818186.57;-8811.360352;0;0.183613993 551926.8105;7818561.969;-8800.509766;0;0.293706466 551026.8105;7818618.281;-8814.400391;0;0.297782122 549501.8105;7819237.688;-8901.700195;0;0.799947302 550926.8105;7818956.141;-8807.400391;0;0.416764421 552289.3105;7820307.578;-8801.009766;0;0.517551151 552276.8105;7821809.18;-8833.370117;0;0.98469119 549476.8105;7820044.801;-8926.230469;0;0.229985045 550264.3105;7819631.859;-8820.019531;0;0.765964973 551414.3105;7820514.051;-8863.19043;0;0.869379952 549551.8105;7816703.738;-8832.679688;0;0.241819983 551076.8105;7820176.188;-8824.790039;0;0.688204835 552214.3105;7819125.07;-8812.990234;0;0.110449665 550526.8105;7817811.168;-8831.30957;0;0.326410157 549714.3105;7819932.18;-8892.860352;0;0.97503228 549389.3105;7818486.891;-8877.910156;0;0.179170883 550576.8086;7817435.77;-8827.30957;0;0.973221284 550864.3105;7817792.398;-8812.519531;0;0.110026588 549014.3105;7817266.84;-8849.849609;0;0.214913262 548964.3105;7819894.641;-8942.769531;0;0.680967147 548939.3105;7816816.359;-8878.099609;0;0.844029204 550589.3105;7819594.32;-8796.519531;0;0.293978461 549201.8105;7820288.809;-8935.530273;0;0.881466917 549201.8105;7821339.93;-8958.160156;0;0.911759167 549001.8105;7820720.52;-8963.150391;0;0.88269872 551764.3105;7820457.738;-8825.959961;0;0.645161695 551251.8105;7818561.969;-8799.19043;0;0.604181141 552101.8105;7821752.867;-8842.290039;0;0.758989717 551876.8105;7821358.699;-8878.69043;0;0.058770723 548989.3105;7816853.898;-8873.639648;0;0.135484926 551239.3105;7821415.008;-8903.870117;0;0.721004804 549089.3105;7820645.438;-8970.25;0;0.097927054 549339.3105;7820532.82;-8955.009766;0;0.034547528 550076.8105;7818167.797;-8866.780273;0;0.704782565 549176.8105;7819763.25;-8937.860352;0;0.212212918 550064.3105;7821020.84;-8924.540039;0;0.696178842 551889.3105;7819613.09;-8819.209961;0;0.511717279 551576.8105;7820457.738;-8848.879883;0;0.699906796 551589.3105;7819425.391;-8823.030273;0;0.706697542 552264.3105;7818862.289;-8813.780273;0;0.082666007 549489.3105;7821827.949;-8978.839844;0;0.637173011 551151.8105;7819800.789;-8829.259766;0;0.517364975 552339.3105;7820363.887;-8807.009766;0;0.023337323 550176.8105;7819913.41;-8811.480469;0;0.38965547 549226.8105;7819162.609;-8918.5;0;0.151129383 551926.8105;7820945.758;-8858.299805;0;0.442748747 551676.8105;7817548.387;-8797.919922;0;0.866613825 550214.3105;7819706.938;-8823.879883;0;0.260820528 551689.3105;7818824.75;-8797.19043;0;0.170341384 551576.8105;7821264.848;-8901.879883;0;0.561919448 550901.8105;7821246.078;-8913.580078;0;0.655214967 552114.3105;7820232.5;-8767.900391;0;0.164064737 552051.8105;7819500.469;-8808.709961;0;0.063387499 548889.3105;7819444.16;-8944.110352;0;0.687015605 548914.3105;7818505.66;-8923.599609;0;0.411679047 552051.8105;7817304.379;-8773.660156;0;0.279201232 548901.8105;7817154.219;-8869.490234;0;0.066927625 549614.3105;7818468.117;-8851.679688;0;0.339511558 552101.8105;7820682.98;-8835;0;0.277496725 551539.3105;7818468.117;-8797.839844;0;0.620473698 548889.3105;7819369.078;-8946.259766;0;0.900467512 550576.8086;7821659.02;-8934.709961;0;0.383913568 549214.3105;7821152.23;-8963.80957;0;0.461707027 548914.3105;7821565.168;-8965.490234;0;0.332400811 551451.8105;7821396.238;-8895.019531;0;0.707128058 550126.8105;7817266.84;-8829.490234;0;0.244390501 549964.3105;7820682.98;-8890.219727;0;0.979151429 549289.3105;7820119.879;-8931.769531;0;0.665465805 549801.8105;7816741.277;-8833.469727;0;0.112840777 550089.3105;7820664.211;-8878.820313;0;0.812247611 551976.8105;7820007.258;-8784.25;0;0.339291511 551464.3105;7820401.43;-8852.179688;0;0.257684851 550389.3105;7819425.391;-8802.780273;0;0.347294655 551051.8105;7817341.918;-8783.44043;0;0.024932302 550114.3105;7817341.918;-8831.589844;0;0.621640087 550014.3105;7817210.527;-8827.360352;0;0.599028022 548976.8105;7816910.207;-8865.44043;0;0.454232505 550851.8105;7817942.559;-8806.450195;0;0.284830629 552176.8105;7819894.641;-8782.230469;0;0.597314436 549164.3105;7819988.488;-8938.330078;0;0.869248518 551101.8105;7817604.699;-8787.459961;0;0.755537159 549176.8105;7819782.02;-8938.120117;0;0.053063618 551626.8105;7819613.09;-8826.349609;0;0.574369271 548964.3105;7819819.559;-8940.480469;0;0.936399112 549251.8105;7819688.168;-8930.339844;0;0.079620626 549039.3105;7819462.93;-8934.389648;0;0.3774832 548989.3105;7819369.078;-8940.860352;0;0.155340733 548964.3105;7819857.098;-8941.419922;0;0.140010704 549176.8105;7819744.48;-8937.419922;0;0.119859833 548964.3105;7819932.18;-8943.509766;0;0.184091954 551251.8105;7820138.648;-8837.120117;0;0.759892091 550714.3105;7817229.301;-8805.94043;0;0.947892004 549076.8105;7820795.598;-8961.919922;0;0.335725455 550151.8105;7819500.469;-8817.160156;0;0.773398038 550889.3105;7817266.84;-8799.730469;0;0.023207251 550914.3105;7817341.918;-8793.339844;0;0.062295718 549501.8105;7818167.797;-8874.969727;0;0.29023876 550476.8105;7819838.328;-8787.599609;0;0.931305597 548901.8105;7817248.07;-8869.19043;0;0.229613651 550814.3105;7817154.219;-8806.889648;0;0.951575889 549439.3105;7819406.617;-8908.549805;0;0.825532926 551689.3105;7821433.781;-8897.709961;0;0.680055207 549326.8105;7821546.398;-8962.110352;0;0.531369404 548901.8105;7821020.84;-8973.759766;0;0.590923295 550501.8105;7818149.027;-8836.980469;0;0.642697287 552276.8105;7820138.648;-8798.629883;0;0.798641945 550414.3105;7818449.348;-8837.330078;0;0.37751834 550939.3105;7817604.699;-8803.509766;0;0.256774453 548939.3105;7819462.93;-8940.110352;0;0.22428961 549101.8105;7820682.98;-8968.219727;0;0.611517977 551139.3105;7818787.207;-8820.910156;0;0.436213164 550114.3105;7816778.816;-8829.790039;0;0.191058365 551651.8105;7816722.508;-8783.120117;0;0.850288216 550501.8105;7821677.789;-8939.679688;0;0.122710629 548901.8105;7820607.898;-8959.719727;0;0.908981366 551239.3105;7818805.98;-8816.549805;0;0.852709478 549201.8105;7820607.898;-8963.570313;0;0.267190662 551914.3105;7821640.25;-8864.580078;0;0.402998092 551889.3105;7817811.168;-8793.980469;0;0.260650234 550276.8105;7821077.148;-8904.959961;0;0.462125178 550501.8105;7816985.289;-8828.660156;0;0.460644371 550801.8105;7819444.16;-8801.509766;0;0.781343525 550939.3105;7817548.387;-8797.980469;0;0.407717748 551626.8105;7817116.68;-8790.240234;0;0.617070484 551039.3105;7819200.148;-8804.870117;0;0.189063975 549989.3105;7816853.898;-8834.860352;0;0.857165371 550339.3105;7821171;-8910.280273;0;0.384142619 549989.3105;7819838.328;-8837.950195;0;0.775198305 548889.3105;7819969.719;-8941.660156;0;0.846367608 549239.3105;7820194.961;-8932.290039;0;0.375130941 549189.3105;7821264.848;-8963.070313;0;0.111093491 549826.8105;7820814.371;-8927.25;0;0.529700149 551764.3105;7820851.91;-8861.69043;0;0.414197305 552339.3105;7819181.379;-8817.070313;0;0.634367004 551601.8105;7819932.18;-8832.570313;0;0.4802287 549826.8105;7820945.758;-8942.650391;0;0.83163442 549514.3105;7818824.75;-8862.269531;0;0.992276553 549014.3105;7819969.719;-8942.80957;0;0.434153014 549726.8105;7818167.797;-8868.919922;0;0.486827778 549339.3105;7820345.121;-8937.589844;0;0.402208526 552289.3105;7817116.68;-8727.889648;0;0.695782349 549639.3105;7819538.008;-8891.780273;0;0.174533009 552151.8105;7820720.52;-8837.280273;0;0.893157325 552414.3105;7819763.25;-8804.080078;0;0.682774987 552339.3105;7819725.711;-8807.94043;0;0.054630881 550889.3105;7817623.469;-8809.509766;0;0.473233998 550576.8086;7817923.789;-8829.080078;0;0.126343662 549414.3105;7821246.078;-8955.709961;0;0.064788044 549926.8105;7819857.098;-8852.459961;0;0.529255001 551701.8105;7819462.93;-8822.919922;0;0.917137115 549664.3105;7818505.66;-8847.730469;0;0.98936759 549276.8105;7821527.629;-8958.629883;0;0.893276226 548901.8105;7817060.367;-8868.980469;0;0.813659652 551751.8105;7819125.07;-8810.620117;0;0.689472352 551139.3105;7820101.109;-8834.330078;0;0.12026332 551026.8105;7820495.281;-8829.94043;0;0.341824324 550801.8105;7819688.168;-8810.269531;0;0.579272557 551164.3105;7819932.18;-8830.780273;0;0.686625853 548989.3105;7817154.219;-8856.469727;0;0.049119786 550801.8105;7820457.738;-8793.139648;0;0.670418128 548939.3105;7819387.852;-8943.219727;0;0.995478085 552014.3105;7819744.48;-8803.570313;0;0.173236569 549214.3105;7819969.719;-8936.530273;0;0.381369934 550989.3105;7817473.309;-8785.139648;0;0.499014749 550939.3105;7817492.078;-8791.80957;0;0.566164053 550351.8105;7818956.141;-8793.129883;0;0.404116836 552089.3105;7818637.047;-8810.80957;0;0.167893866 551051.8105;7817623.469;-8790.070313;0;0.988179351 552289.3105;7817905.02;-8796.040039;0;0.988322905 551676.8105;7819594.32;-8825.719727;0;0.732150057 549989.3105;7820326.348;-8849.650391;0;0.033923394 549251.8105;7820270.039;-8933.19043;0;0.701430005 552064.3105;7819763.25;-8801.049805;0;0.853044913 548964.3105;7819800.789;-8940.429688;0;0.069698665 548964.3105;7819875.867;-8942.110352;0;0.367551547 548989.3105;7819444.16;-8938.19043;0;0.702609625 549001.8105;7821077.148;-8970.379883;0;0.762352117 549039.3105;7819387.852;-8937.290039;0;0.507732436 549576.8105;7817961.328;-8869.099609;0;0.798301602 548926.8105;7821208.539;-8965.570313;0;0.770207178 550864.3105;7819125.07;-8780.69043;0;0.691457712 549176.8105;7819725.711;-8936.780273;0;0.073958345 550126.8105;7820758.059;-8887.110352;0;0.216102339 551264.3105;7817923.789;-8787.230469;0;0.443202002 549801.8105;7819294;-8849.44043;0;0.680428206 551864.3105;7821752.867;-8853.30957;0;0.165488016 550926.8105;7819838.328;-8813.080078;0;0.017017575 549564.3105;7817229.301;-8801.339844;0;0.981034176 549364.3105;7820176.188;-8929.570313;0;0.699841867 551176.8105;7821227.309;-8903.540039;0;0.107973737 549301.8105;7820607.898;-8957.469727;0;0.41557558 550589.3105;7818881.059;-8808.820313;0;0.776419623 551589.3105;7818805.98;-8793.05957;0;0.330055275 550326.8105;7819556.777;-8811.639648;0;0.294721503 549314.3105;7820288.809;-8932.580078;0;0.034442823 549114.3105;7821527.629;-8953.139648;0;0.226839241 549226.8105;7821095.918;-8961.259766;0;0.273667524 549176.8105;7821433.781;-8953.870117;0;0.262426134 549789.3105;7820607.898;-8916.30957;0;0.148830549 551464.3105;7821095.918;-8893.099609;0;0.034027811 549201.8105;7819669.398;-8932.709961;0;0.114157656 550364.3105;7816760.051;-8832.610352;0;0.38274585 551339.3105;7817980.098;-8787.25;0;0.5884941 550464.3105;7820945.758;-8864.919922;0;0.599095237 552139.3105;7821659.02;-8846.820313;0;0.570609535 552326.8105;7821433.781;-8858.719727;0;0.678931827 549889.3105;7818130.258;-8867.469727;0;0.581171372 552426.8105;7820457.738;-8823.679688;0;0.323117341 549951.8105;7817210.527;-8829.160156;0;0.299677536 549114.3105;7819988.488;-8938.280273;0;0.348435843 551851.8105;7819425.391;-8817.120117;0;0.207027871 549001.8105;7819125.07;-8929.879883;0;0.67790764 550751.8105;7819218.918;-8770.959961;0;0.249082324 552326.8105;7818468.117;-8822.070313;0;0.383822145 548951.8105;7819237.688;-8942.040039;0;0.102862511 551276.8105;7817848.711;-8790.049805;0;0.452575943 550126.8105;7818130.258;-8863.679688;0;0.800508885 550989.3105;7819444.16;-8805.849609;0;0.288146661 551926.8105;7821321.16;-8875.730469;0;0.81317782 551726.8105;7817905.02;-8798.410156;0;0.04886866 551239.3105;7820739.289;-8874.719727;0;0.070718126 550576.8086;7818242.879;-8828.759766;0;0.565317376 549114.3105;7820889.449;-8963.370117;0;0.599574339 549276.8105;7820964.531;-8964.040039;0;0.347189229 548964.3105;7819913.41;-8943.280273;0;0.46677705 549926.8105;7819725.711;-8849.629883;0;0.823360215 552376.8105;7821321.16;-8857.790039;0;0.378175504 549864.3105;7816816.359;-8837.290039;0;0.684610775 549226.8105;7818167.797;-8888.339844;0;0.341237401 548901.8105;7817097.91;-8870.860352;0;0.868429906 549001.8105;7820251.27;-8950.290039;0;0.774687398 550239.3105;7817060.367;-8815.780273;0;0.848991032 549726.8105;7820814.371;-8940.30957;0;0.23883533 549364.3105;7820720.52;-8960.94043;0;0.628598938 550951.8105;7821227.309;-8909.099609;0;0.930238618 550939.3105;7816966.52;-8812.160156;0;0.652348353 550339.3105;7817923.789;-8847.05957;0;0.419202914 549264.3105;7819594.32;-8927.669922;0;0.906495867 551026.8105;7817829.938;-8804.700195;0;0.194750976 549814.3105;7816666.199;-8836.5;0;0.455050933 548964.3105;7819838.328;-8940.820313;0;0.393109615 550501.8105;7819425.391;-8772.030273;0;0.696264196 550151.8105;7819125.07;-8826.700195;0;0.414481714 551814.3105;7821433.781;-8888.099609;0;0.157543368 550401.8105;7821020.84;-8885.030273;0;0.81289531 549601.8105;7821133.457;-8961.950195;0;0.799300814 551989.3105;7818561.969;-8805.19043;0;0.659781654 549389.3105;7821565.168;-8964.820313;0;0.53595181 550989.3105;7820476.508;-8821.339844;0;0.065845868 549401.8105;7820870.68;-8965.030273;0;0.236658474 548889.3105;7819669.398;-8939.669922;0;0.676039449 549101.8105;7819838.328;-8939.959961;0;0.438711569 549051.8105;7819613.09;-8932.929688;0;0.730071098 549364.3105;7820795.598;-8966.900391;0;0.106711123 549176.8105;7821039.609;-8960.19043;0;0.769881341 549476.8105;7819613.09;-8917.5;0;0.112685201 551101.8105;7817548.387;-8783.849609;0;0.336034252 550726.8105;7817961.328;-8813.070313;0;0.564279765 549664.3105;7819387.852;-8882.480469;0;0.992016132 549289.3105;7821095.918;-8961.69043;0;0.233441086 549426.8105;7821095.918;-8955.709961;0;0.902107258 551639.3105;7817980.098;-8789.669922;0;0.094433361 552064.3105;7819838.328;-8793.929688;0;0.814531109 549414.3105;7819538.008;-8916.820313;0;0.716891704 550164.3105;7820664.211;-8871.230469;0;0.71707379 549076.8105;7820138.648;-8938.519531;0;0.477483656 549889.3105;7817135.449;-8825.360352;0;0.766704175 550451.8105;7817154.219;-8816.330078;0;0.290445274 549476.8105;7820288.809;-8924.700195;0;0.9817362 549651.8105;7820213.73;-8904.69043;0;0.021774712 550626.8105;7819350.309;-8775.209961;0;0.138317912 550426.8105;7819200.148;-8782.639648;0;0.885875554 550089.3105;7819782.02;-8823.200195;0;0.540389234 549964.3105;7819631.859;-8838.950195;0;0.001602949 549289.3105;7816703.738;-8835.330078;0;0.185847966 549376.8105;7821171;-8956.860352;0;0.948927327 551751.8105;7819031.219;-8808.19043;0;0.96526973 551214.3105;7817792.398;-8789.730469;0;0.293891823 550589.3105;7817360.688;-8823.259766;0;0.470145298 551164.3105;7817154.219;-8793.860352;0;0.833362571 549876.8105;7821020.84;-8942.209961;0;0.708990695 550539.3105;7820870.68;-8867.070313;0;0.319259572 552276.8105;7820382.66;-8801.349609;0;0.923965078 550626.8105;7821020.84;-8896.719727;0;0.116689016 550814.3105;7817754.859;-8816.179688;0;0.425686918 550951.8105;7817961.328;-8803.259766;0;0.271825054 549189.3105;7819894.641;-8937.040039;0;0.17524107 549526.8105;7819538.008;-8905.110352;0;0.989298275 550389.3105;7819838.328;-8780.849609;0;0.393876958 550689.3105;7817886.25;-8819.660156;0;0.151343982 548889.3105;7820814.371;-8966.5;0;0.44296428 551026.8105;7817773.629;-8801.80957;0;0.474954265 549026.8105;7820870.68;-8964.019531;0;0.452508498 551576.8105;7819106.301;-8814.929688;0;0.090353813 550801.8105;7817285.609;-8802.629883;0;0.926597808 550751.8105;7817172.988;-8806.80957;0;0.593701644 549776.8105;7820964.531;-8948.94043;0;0.566943988 548989.3105;7820007.258;-8942.5;0;0.006193687 550489.3105;7821208.539;-8900.490234;0;0.240469565 551001.8105;7817698.547;-8800.370117;0;0.718287994 550901.8105;7817135.449;-8803.019531;0;0.333286994 550826.8105;7817679.777;-8812.509766;0;0.930182334 550326.8105;7819631.859;-8809.05957;0;0.952410813 549451.8105;7820607.898;-8950.790039;0;0.823308292 550576.8086;7821171;-8905.870117;0;0.814325135 548889.3105;7819519.238;-8934.820313;0;0.095935442 550114.3105;7820983.297;-8919.44043;0;0.758802442 550814.3105;7817398.227;-8801.389648;0;0.484471285 550901.8105;7820514.051;-8810.589844;0;0.222812294 549339.3105;7820401.43;-8943.200195;0;0.814421765 549651.8105;7819519.238;-8889.209961;0;0.463971166 549839.3105;7817154.219;-8827.620117;0;0.382977563 549151.8105;7819894.641;-8938.849609;0;0.657848236 549564.3105;7819462.93;-8896.709961;0;0.973315266 551026.8105;7820194.961;-8818.740234;0;0.043236949 550189.3105;7820307.578;-8804.269531;0;0.802656301 549214.3105;7820945.758;-8964.089844;0;0.812149946 550814.3105;7820420.199;-8784.75;0;0.008123949 550914.3105;7818862.289;-8811.519531;0;0.892248955 551314.3105;7820101.109;-8838.089844;0;0.794557296 549039.3105;7821358.699;-8961.990234;0;0.373750626 552126.8105;7820551.59;-8811.30957;0;0.801499331 550889.3105;7817417;-8792.919922;0;0.639167252 550139.3105;7819350.309;-8816.200195;0;0.80597242 550751.8105;7819350.309;-8794.269531;0;0.841787211 549101.8105;7820101.109;-8936.620117;0;0.282522231 550139.3105;7820607.898;-8865.049805;0;0.660548986 551151.8105;7817698.547;-8789.94043;0;0.437383031 551851.8105;7819106.301;-8815.150391;0;0.553247512 549339.3105;7819406.617;-8915.599609;0;0.757156203 551326.8105;7817623.469;-8796.69043;0;0.788025269 548889.3105;7820870.68;-8969.05957;0;0.429795382 549914.3105;7816684.969;-8833.230469;0;0.762093125 551976.8105;7818899.828;-8813.080078;0;0.111976842 552276.8105;7820795.598;-8836.740234;0;0.177170156 550201.8105;7817304.379;-8827.570313;0;0.761816532 550939.3105;7817417;-8788.429688;0;0.749257197 550201.8105;7820138.648;-8799.820313;0;0.263972308 549001.8105;7820157.418;-8946.379883;0;0.096691035 550964.3105;7818862.289;-8813.44043;0;0.507901594 549001.8105;7819763.25;-8940.209961;0;0.087301114 549376.8105;7821114.691;-8957.570313;0;0.154966296 551626.8105;7819106.301;-8813.169922;0;0.212807645 549101.8105;7819894.641;-8939.839844;0;0.204825982 549339.3105;7821171;-8959.150391;0;0.363090913 550901.8105;7820476.508;-8804.820313;0;0.055346799 550464.3105;7816666.199;-8834.860352;0;0.830074571 550889.3105;7817679.777;-8808.790039;0;0.141232901 549151.8105;7819838.328;-8939.230469;0;0.009583455 549401.8105;7820607.898;-8951.620117;0;0.992793091 549301.8105;7820776.828;-8968.509766;0;0.390314131 549364.3105;7819538.008;-8919.700195;0;0.10792616 549401.8105;7821715.328;-8972.950195;0;0.336229363 550326.8105;7819425.391;-8814.94043;0;0.237483934 549864.3105;7816684.969;-8835.370117;0;0.755246428 548976.8105;7820063.57;-8941.919922;0;0.463960855 549014.3105;7816928.98;-8862.129883;0;0.127505022 552239.3105;7819913.41;-8785.94043;0;0.581850702 550864.3105;7819369.078;-8804.469727;0;0.841074127 550976.8105;7820420.199;-8814.160156;0;0.222335719 549801.8105;7821020.84;-8948.910156;0;0.697371397 550051.8105;7817079.141;-8820.230469;0;0.666265161 550101.8105;7816666.199;-8828.94043;0;0.215215084 549089.3105;7820232.5;-8943.480469;0;0.455125584 550376.8105;7819350.309;-8806.360352;0;0.86075525 549464.3105;7819462.93;-8905.429688;0;0.157440111 549151.8105;7816853.898;-8855.830078;0;0.156917536 551701.8105;7818956.141;-8802.360352;0;0.588813213 550789.3105;7817961.328;-8808.679688;0;0.293052237 550064.3105;7817229.301;-8827.700195;0;0.356884863 551001.8105;7817323.148;-8787.349609;0;0.324031089 551576.8105;7819669.398;-8828.129883;0;0.62241451 549564.3105;7819594.32;-8904.650391;0;0.847421086 549951.8105;7819556.777;-8840.759766;0;0.498009178 550726.8105;7817923.789;-8815.570313;0;0.066552411 550801.8105;7817248.07;-8803.740234;0;0.869117159 548989.3105;7821377.469;-8960.540039;0;0.09167084 551089.3105;7818787.207;-8821.530273;0;0.058259406 549576.8105;7819538.008;-8898.980469;0;0.271763452 551801.8105;7818805.98;-8797.919922;0;0.72212658 550014.3105;7818242.879;-8865.110352;0;0.620698744 550976.8105;7817754.859;-8805.459961;0;0.18347856 552076.8105;7817998.871;-8790.570313;0;0.927313257 551751.8105;7818899.828;-8803.879883;0;0.001140855 551739.3105;7819538.008;-8824.080078;0;0.998439313 548914.3105;7820101.109;-8945.169922;0;0.643894571 552076.8105;7820551.59;-8815.240234;0;0.872605526 551064.3105;7817548.387;-8783.610352;0;0.448644753 549339.3105;7821095.918;-8960.549805;0;0.174782715 548976.8105;7820870.68;-8966.290039;0;0.363511781 549426.8105;7819631.859;-8921.55957;0;0.943566903 549514.3105;7819387.852;-8901.269531;0;0.308774911 551539.3105;7818787.207;-8793.009766;0;0.052542012 550951.8105;7817698.547;-8805.679688;0;0.560247811 548939.3105;7819519.238;-8934.160156;0;0.970201635 550426.8105;7820476.508;-8804.469727;0;0.578275401 549464.3105;7821696.559;-8972.099609;0;0.299691639 552226.8105;7819200.148;-8816.5;0;0.632102178 552026.8105;7819256.457;-8814.230469;0;0.605772461 552214.3105;7820213.73;-8786.799805;0;0.903254409 548914.3105;7820270.039;-8955.660156;0;0.868967317 551401.8105;7821227.309;-8894.950195;0;0.173441751 551801.8105;7819538.008;-8823.799805;0;0.842612252 550376.8105;7819631.859;-8796.030273;0;0.984278926 549114.3105;7820401.43;-8949.55957;0;0.572695312 550264.3105;7819500.469;-8817.830078;0;0.343086331 550614.3105;7821114.691;-8905.040039;0;0.07642836 551214.3105;7819950.949;-8834.929688;0;0.4684546 549226.8105;7821508.859;-8954.660156;0;0.680287595 550689.3105;7819425.391;-8789.450195;0;0.729597646 551364.3105;7820983.297;-8888.80957;0;0.318978379 551489.3105;7819894.641;-8835.679688;0;0.445627298 552276.8105;7819744.48;-8804.530273;0;0.309579588 550689.3105;7819763.25;-8808.5;0;0.441468082 549276.8105;7821189.77;-8961.400391;0;0.279683808 549551.8105;7819369.078;-8896.459961;0;0.34817657 549651.8105;7819782.02;-8897.900391;0;0.886597005 549201.8105;7819838.328;-8936.450195;0;0.973051536 550414.3105;7821133.457;-8896.009766;0;0.374002344 549314.3105;7819538.008;-8921.660156;0;0.809332971 551339.3105;7817154.219;-8788.129883;0;0.178433936 551876.8105;7819200.148;-8815.120117;0;0.905695218 549264.3105;7820776.828;-8968.950195;0;0.410032967 551164.3105;7819575.551;-8817.830078;0;0.065829655 549001.8105;7820119.879;-8943.599609;0;0.830181376 549426.8105;7820363.887;-8936.820313;0;0.355362339 549114.3105;7819650.629;-8934.44043;0;0.482889633 551251.8105;7817079.141;-8791.589844;0;0.86299077 550976.8105;7817172.988;-8797.299805;0;0.262957811 550264.3105;7819838.328;-8810.860352;0;0.985456285 550101.8105;7820251.27;-8813.009766;0;0.095888011 549239.3105;7818224.109;-8888.830078;0;0.571671986 550576.8086;7821095.918;-8899.360352;0;0.190414771 549226.8105;7818805.98;-8895.549805;0;0.196374977 551889.3105;7817191.758;-8780.730469;0;0.134723543 549114.3105;7820945.758;-8962.099609;0;0.454635224 549489.3105;7819988.488;-8921.780273;0;0.074139115 549201.8105;7819594.32;-8929.410156;0;0.997950085 551226.8105;7819631.859;-8823.769531;0;0.938015795 549251.8105;7821339.93;-8951.730469;0;0.099061452 550501.8105;7821039.609;-8882.269531;0;0.663796344 551089.3105;7817848.711;-8798.19043;0;0.261203215 550114.3105;7817304.379;-8831;0;0.818157673 551551.8105;7819819.559;-8837.030273;0;0.041527501 550801.8105;7819106.301;-8781.290039;0;0.531559827 548901.8105;7816872.668;-8869.150391;0;0.330065988 549001.8105;7821039.609;-8968.849609;0;0.643692643 552101.8105;7817492.078;-8779.280273;0;0.311674684 549351.8105;7820870.68;-8966.69043;0;0.064944908 548926.8105;7819669.398;-8939.379883;0;0.50474555 550326.8105;7819706.938;-8801.820313;0;0.170392534 550726.8105;7819031.219;-8794.740234;0;0.378628685 550826.8105;7817454.539;-8802.879883;0;0.829971131 551439.3105;7820345.121;-8839.179688;0;0.150224788 549414.3105;7820795.598;-8965.019531;0;0.66732675 549214.3105;7821039.609;-8959.259766;0;0.198653842 550039.3105;7816666.199;-8826.919922;0;0.316467816 551226.8105;7819500.469;-8815.959961;0;0.143444673 549001.8105;7819613.09;-8933.280273;0;0.045381501 548989.3105;7820701.75;-8963.05957;0;0.794822341 550501.8105;7821171;-8895.950195;0;0.123276237 548926.8105;7820870.68;-8968.599609;0;0.293336142 549701.8105;7819763.25;-8892.570313;0;0.213832009 550064.3105;7820945.758;-8914.450195;0;0.018487427 550501.8105;7821133.457;-8891.370117;0;0.026241995 549126.8105;7818055.18;-8889.070313;0;0.759495823 549789.3105;7819369.078;-8856.769531;0;0.185454943 552401.8105;7819819.559;-8800.900391;0;0.486577069 551901.8105;7817379.461;-8782.339844;0;0.801502111 549339.3105;7819369.078;-8915.769531;0;0.643776468 550189.3105;7820288.809;-8805.139648;0;0.542321752 548989.3105;7820814.371;-8963.400391;0;0.245414311 550476.8105;7820270.039;-8784.19043;0;0.764333709 549176.8105;7820964.531;-8962.25;0;0.874355987 548926.8105;7820795.598;-8965.200195;0;0.10384963 549601.8105;7819369.078;-8890.959961;0;0.778227136 550626.8105;7821171;-8912;0;0.948266427 549114.3105;7819125.07;-8924.339844;0;0.496573457 551689.3105;7817998.871;-8787.230469;0;0.043914386 550739.3105;7817886.25;-8816.44043;0;0.120782809 550551.8105;7820983.297;-8883.389648;0;0.434867235 551689.3105;7819049.988;-8806.379883;0;0.364416395 552114.3105;7819838.328;-8790.339844;0;0.366517882 551589.3105;7820664.211;-8856.969727;0;0.428248598 552439.3105;7819838.328;-8807.900391;0;0.480969678 551976.8105;7819331.539;-8815.790039;0;0.46371486 549439.3105;7821471.32;-8967.19043;0;0.207844793 549239.3105;7819894.641;-8933.099609;0;0.685087957 549051.8105;7819763.25;-8939.700195;0;0.623558277 550326.8105;7816666.199;-8830.719727;0;0.717614812 551064.3105;7817154.219;-8796.69043;0;0.489807134 551964.3105;7819462.93;-8811.820313;0;0.095899258 549464.3105;7819538.008;-8912.589844;0;0.14270261 549564.3105;7818899.828;-8860.44043;0;0.80240226 551589.3105;7818486.891;-8795.349609;0;0.036507379 549789.3105;7818224.109;-8864.910156;0;0.702778566 552414.3105;7820495.281;-8825.599609;0;0.706650055 549939.3105;7821734.102;-8968.730469;0;0.85643527 552139.3105;7817923.789;-8792.5;0;0.055555824 550626.8105;7819819.559;-8802.799805;0;0.99039736 550514.3105;7817097.91;-8816.400391;0;0.513707451 550801.8105;7819575.551;-8806.259766;0;0.834112556 549301.8105;7819237.688;-8912.219727;0;0.252606291 548889.3105;7817004.059;-8862.799805;0;0.108837048 549614.3105;7820007.258;-8912.290039;0;0.464509989 552214.3105;7820776.828;-8839.599609;0;0.934438215 550214.3105;7819575.551;-8822.980469;0;0.988013175 549989.3105;7821640.25;-8969.280273;0;0.429321936 550539.3105;7820607.898;-8816.410156;0;0.16894286 550764.3105;7817548.387;-8816.379883;0;0.944751618 549064.3105;7817923.789;-8879.990234;0;0.21757067 549001.8105;7817886.25;-8881.740234;0;0.500671489 550814.3105;7816666.199;-8827.839844;0;0.875476908 551351.8105;7817398.227;-8787.80957;0;0.45897948 550264.3105;7820157.418;-8801;0;0.535404714 551476.8105;7820063.57;-8822.639648;0;0.186532865 551376.8105;7817548.387;-8797.740234;0;0.011881994 550039.3105;7820682.98;-8882.389648;0;0.154332998 550539.3105;7820776.828;-8850.80957;0;0.306360533 549551.8105;7820720.52;-8948.870117;0;0.811003742 550639.3105;7817041.598;-8820.469727;0;0.122494101 550739.3105;7820213.73;-8774.469727;0;0.14609406 551476.8105;7819950.949;-8832.950195;0;0.758195769 550451.8105;7819556.777;-8781.860352;0;0.470025557 550439.3105;7819688.168;-8786.009766;0;0.790272881 551939.3105;7819688.168;-8812.650391;0;0.472131827 550564.3105;7819425.391;-8778.379883;0;0.131980152 549801.8105;7819650.629;-8870.94043;0;0.723455931 550089.3105;7820607.898;-8869.480469;0;0.32358898 549739.3105;7816910.207;-8838.75;0;0.697596755 549276.8105;7817754.859;-8850.570313;0;0.764005672 550926.8105;7817754.859;-8807.490234;0;0.028816207 550614.3105;7820926.988;-8882.660156;0;0.063148189 549864.3105;7816741.277;-8833.429688;0;0.208086256 549864.3105;7820889.449;-8932.660156;0;0.667406034 549289.3105;7819894.641;-8929.429688;0;0.161219995 549839.3105;7817323.148;-8833.139648;0;0.784051804 550101.8105;7820908.219;-8908.530273;0;0.560934598 550864.3105;7819631.859;-8806.269531;0;0.787767042 549214.3105;7816703.738;-8844.610352;0;0.474821724 550764.3105;7817661.008;-8816.730469;0;0.326820622 550814.3105;7820495.281;-8805.469727;0;0.892381429 552439.3105;7819331.539;-8822.910156;0;0.884994875 549876.8105;7820814.371;-8921.030273;0;0.078033505 550414.3105;7816741.277;-8836.959961;0;0.628966511 549901.8105;7817266.84;-8833.19043;0;0.958699525 549926.8105;7816741.277;-8831.990234;0;0.169094618 550576.8086;7817097.91;-8814.980469;0;0.941145806 549839.3105;7817210.527;-8830.179688;0;0.380169619 550039.3105;7819857.098;-8823.799805;0;0.253027966 550326.8105;7816722.508;-8830.400391;0;0.568891231 551076.8105;7817905.02;-8798.259766;0;0.364858705 550264.3105;7817229.301;-8818.870117;0;0.522028107 550139.3105;7820908.219;-8906.259766;0;0.040410207 550264.3105;7817341.918;-8823.910156;0;0.150292267 549976.8105;7820607.898;-8881.719727;0;0.981919039 549826.8105;7817623.469;-8850.769531;0;0.729663268 551051.8105;7817398.227;-8781.919922;0;0.679194253 550151.8105;7819631.859;-8828.480469;0;0.214718512 549764.3105;7820889.449;-8944.320313;0;0.150274334 550051.8105;7816778.816;-8830.610352;0;0.614868666 551101.8105;7817304.379;-8785.240234;0;0.787244831 550239.3105;7816684.969;-8832.349609;0;0.898467132 549351.8105;7817417;-8783.790039;0;0.802359072 550851.8105;7820082.34;-8810.339844;0;0.689786298 551301.8105;7819969.719;-8838.070313;0;0.473089119 550639.3105;7817304.379;-8815.950195;0;0.208300619 551026.8105;7816947.75;-8807.240234;0;0.394341247 551151.8105;7817116.68;-8795.459961;0;0.458468538 549151.8105;7816684.969;-8852.209961;0;0.624532377 549964.3105;7817266.84;-8833.25;0;0.980473128 550626.8105;7819481.699;-8785.509766;0;0.449916677 551176.8105;7817604.699;-8784.959961;0;0.160542062 549226.8105;7820063.57;-8934.790039;0;0.867933354 549776.8105;7817323.148;-8825.179688;0;0.91115784 551414.3105;7820007.258;-8832.820313;0;0.276437591 551514.3105;7820326.348;-8835.389648;0;0.826267451 550701.8105;7817661.008;-8821.049805;0;0.735758733 549201.8105;7816666.199;-8844.509766;0;0.312756264 550701.8105;7817604.699;-8822.519531;0;0.007760298 550639.3105;7817135.449;-8810.959961;0;0.784767945 551251.8105;7817360.688;-8783.849609;0;0.511087161 549114.3105;7817792.398;-8858.389648;0;0.059397085 551539.3105;7820063.57;-8816.070313;0;0.614263163 549651.8105;7817304.379;-8809.610352;0;0.378350912 551064.3105;7817116.68;-8800.129883;0;0.460765616 550826.8105;7817548.387;-8811;0;0.96024232 551176.8105;7817510.848;-8782.620117;0;0.189544715 549139.3105;7821189.77;-8965.990234;0;0.672100554 550451.8105;7820776.828;-8832.629883;0;0.047469912 548989.3105;7816985.289;-8855.80957;0;0.494696792 551189.3105;7820026.027;-8836.55957;0;0.521200466 550801.8105;7819631.859;-8808.55957;0;0.43151598 551314.3105;7817510.848;-8792.030273;0;0.7115151 549876.8105;7820964.531;-8939.730469;0;0.058394875 549839.3105;7817266.84;-8831.480469;0;0.034751581 550201.8105;7819650.629;-8826.629883;0;0.632364941 549914.3105;7816797.59;-8834.69043;0;0.079955366 549901.8105;7817323.148;-8836.009766;0;0.858769543 549339.3105;7820457.738;-8950.099609;0;0.269465046 551301.8105;7820026.027;-8838.349609;0;0.076604796 550089.3105;7819631.859;-8826.400391;0;0.980699365 550564.3105;7819481.699;-8785.349609;0;0.494912366 551151.8105;7817642.238;-8788.459961;0;0.547643054 551414.3105;7819950.949;-8834.730469;0;0.692952378 549189.3105;7820063.57;-8936.089844;0;0.13140832 551576.8105;7820326.348;-8831.950195;0;0.771167651 551014.3105;7817905.02;-8803.459961;0;0.118615435 550276.8105;7817304.379;-8822.099609;0;0.669881113 549714.3105;7819425.391;-8876.040039;0;0.555317278 550614.3105;7820870.68;-8873.740234;0;0.281783057 549926.8105;7820607.898;-8891.879883;0;0.591351441 551351.8105;7819950.949;-8837.549805;0;0.210040413 550439.3105;7819350.309;-8788.179688;0;0.236202934 552001.8105;7817323.148;-8776.209961;0;0.21437484 550764.3105;7817604.699;-8818.05957;0;0.240178907 550564.3105;7821039.609;-8892.269531;0;0.653598664 551264.3105;7817323.148;-8783.160156;0;0.144704242 550114.3105;7820307.578;-8814.009766;0;0.783855448 549126.8105;7820157.418;-8936.80957;0;0.962422956 550326.8105;7819763.25;-8798.589844;0;0.538228008 550864.3105;7819500.469;-8800.910156;0;0.732691576 551326.8105;7817191.758;-8785.959961;0;0.733688955 550864.3105;7817736.09;-8810.830078;0;0.788486878 551276.8105;7819669.398;-8827.240234;0;0.020126703 550176.8105;7820701.75;-8874.209961;0;0.00099131 550901.8105;7817961.328;-8804.25;0;0.856440972 549514.3105;7817248.07;-8796.639648;0;0.891757587 551526.8105;7821471.32;-8892.459961;0;0.80600076 550164.3105;7819838.328;-8818.540039;0;0.475990213 551926.8105;7820007.258;-8786.629883;0;0.338795448 550514.3105;7817041.598;-8820.910156;0;0.670493191 550339.3105;7817266.84;-8818.599609;0;0.085861464 551189.3105;7820101.109;-8837.219727;0;0.690503302 549414.3105;7820044.801;-8929.570313;0;0.649477905 549201.8105;7820664.211;-8963.290039;0;0.622413992 549851.8105;7820570.359;-8904.540039;0;0.662271447 549739.3105;7820682.98;-8929.799805;0;0.239165132 549264.3105;7820851.91;-8969.150391;0;0.251366795 550689.3105;7819706.938;-8807.509766;0;0.643149219 551189.3105;7817323.148;-8783.019531;0;0.132823523 550564.3105;7819688.168;-8799.280273;0;0.595964421 549839.3105;7820682.98;-8913.610352;0;0.999933501 550501.8105;7819613.09;-8789.209961;0;0.835606241 550576.8086;7817004.059;-8825.099609;0;0.60656572 550039.3105;7817285.609;-8831.889648;0;0.183808109 549714.3105;7817341.918;-8819.450195;0;0.583080557 549326.8105;7817679.777;-8839.179688;0;0.354420859 549189.3105;7817266.84;-8811.360352;0;0.875888132 550601.8105;7820776.828;-8853.790039;0;0.593732664 549551.8105;7821002.07;-8953.469727;0;0.524229079 551351.8105;7817454.539;-8792.530273;0;0.509710134 551989.3105;7820288.809;-8781.290039;0;0.785732984 550051.8105;7817754.859;-8858.980469;0;0.247594621 551914.3105;7820251.27;-8779.009766;0;0.870661668 551601.8105;7817980.098;-8789.55957;0;0.97146682 552151.8105;7821752.867;-8840.740234;0;0.418989642 549651.8105;7817492.078;-8824.580078;0;0.753516786 550339.3105;7817604.699;-8834.150391;0;0.524511059 550476.8105;7817285.609;-8823.650391;0;0.144502569 549076.8105;7817360.688;-8834.080078;0;0.400750731 551526.8105;7817867.48;-8797.639648;0;0.960315915 550101.8105;7817886.25;-8860.129883;0;0.734831668 550926.8105;7816872.668;-8810.950195;0;0.290113957 550464.3105;7820889.449;-8856.599609;0;0.605935315 552101.8105;7820964.531;-8856.019531;0;0.731942152 551876.8105;7820795.598;-8849.910156;0;0.108943752 551089.3105;7816872.668;-8800.980469;0;0.083983049 551214.3105;7817717.32;-8789.30957;0;0.922771739 550589.3105;7817248.07;-8814.080078;0;0.262135647 551326.8105;7817248.07;-8783.080078;0;0.91881713 550426.8105;7817341.918;-8826.290039;0;0.400822021 551439.3105;7817642.238;-8802.259766;0;0.970948667 549501.8105;7820326.348;-8922.370117;0;0.058502446 550164.3105;7816778.816;-8830.05957;0;0.424022472 549476.8105;7816703.738;-8835.620117;0;0.691353556 550026.8105;7820908.219;-8912.209961;0;0.591301867 549901.8105;7819575.551;-8850.30957;0;0.305860214 550276.8105;7819688.168;-8814.780273;0;0.342926182 549814.3105;7819218.918;-8847.759766;0;0.046012577 549414.3105;7817529.617;-8811.889648;0;0.723558598 550039.3105;7819519.238;-8824.80957;0;0.472191579 549989.3105;7819782.02;-8836.120117;0;0.830220352 550976.8105;7819857.098;-8814.839844;0;0.663674584 551226.8105;7820476.508;-8848.230469;0;0.832114673 551014.3105;7817961.328;-8799.910156;0;0.090439111 549451.8105;7820401.43;-8939.459961;0;0.908758606 549751.8105;7819725.711;-8883.969727;0;0.919402214 551414.3105;7820063.57;-8830.299805;0;0.779242771 550476.8105;7820607.898;-8810.469727;0;0.524196608 550014.3105;7817154.219;-8823.519531;0;0.832102981 550139.3105;7817210.527;-8824.480469;0;0.129315163 551164.3105;7817210.527;-8788.669922;0;0.126228131 549126.8105;7821133.457;-8964.769531;0;0.676762065 550739.3105;7819631.859;-8807.980469;0;0.605932317 549864.3105;7819650.629;-8859.719727;0;0.010797619 550914.3105;7817886.25;-8807.459961;0;0.802826658 551339.3105;7820420.199;-8852.280273;0;0.103682819 550814.3105;7817811.168;-8816.540039;0;0.783467647 549989.3105;7820964.531;-8922.179688;0;0.624590695 552176.8105;7820213.73;-8779.05957;0;0.829181179 550114.3105;7816835.129;-8830.860352;0;0.581370266 549914.3105;7820889.449;-8927.219727;0;0.256311894 549651.8105;7821152.23;-8963.169922;0;0.52179613 550464.3105;7816722.508;-8838;0;0.332501353 549776.8105;7817210.527;-8826.349609;0;0.512341468 551876.8105;7820345.121;-8794.980469;0;0.692064389 548939.3105;7821283.617;-8963.660156;0;0.962627624 549776.8105;7817266.84;-8825.629883;0;0.427894748 549926.8105;7820833.141;-8915.870117;0;0.18167371 551151.8105;7820026.027;-8834.169922;0;0.259403753 550414.3105;7820870.68;-8862.259766;0;0.539419009 551226.8105;7817529.617;-8782.889648;0;0.018835187 551514.3105;7820438.969;-8854.05957;0;0.888544299 549939.3105;7820758.059;-8903.769531;0;0.582944007 550614.3105;7820251.27;-8773.719727;0;0.148692008 550401.8105;7817172.988;-8817.040039;0;0.979952637 551064.3105;7817210.527;-8790.69043;0;0.233723347 550214.3105;7817210.527;-8819.509766;0;0.909530961 551464.3105;7820457.738;-8859.05957;0;0.725733705 550076.8105;7820739.289;-8888.19043;0;0.834079078 549089.3105;7817154.219;-8832.799805;0;0.191460749 551951.8105;7820457.738;-8808.480469;0;0.28617961 550101.8105;7817829.938;-8858.330078;0;0.499554639 549864.3105;7821058.379;-8945.139648;0;0.688613904 550364.3105;7820851.91;-8870.980469;0;0.126890751 551326.8105;7817060.367;-8791.389648;0;0.006267519 551251.8105;7817529.617;-8785.259766;0;0.533324479 549701.8105;7817529.617;-8836.219727;0;0.744632335 549014.3105;7817022.828;-8851.669922;0;0.261472282 549951.8105;7820945.758;-8927.620117;0;0.135477707 551301.8105;7817548.387;-8791.990234;0;0.164219576 549914.3105;7820964.531;-8935.299805;0;0.444065231 551326.8105;7817097.91;-8789.980469;0;0.723658493 551239.3105;7820026.027;-8838.30957;0;0.28253972 549989.3105;7816741.277;-8829.379883;0;0.187905316 549726.8105;7820926.988;-8950.480469;0;0.816352658 550401.8105;7821077.148;-8891.80957;0;0.952821422 551289.3105;7817604.699;-8792.790039;0;0.014337674 548901.8105;7821077.148;-8972.740234;0;0.516356718 549389.3105;7820270.039;-8930.620117;0;0.859523566 549089.3105;7820720.52;-8966.179688;0;0.145103549 549151.8105;7820607.898;-8967.980469;0;0.050133017 550964.3105;7819369.078;-8808.219727;0;0.385830396 551339.3105;7820476.508;-8858.240234;0;0.80682562 549101.8105;7821208.539;-8968.660156;0;0.2933992 551376.8105;7820138.648;-8832.410156;0;0.651936239 550176.8105;7816647.43;-8831.679688;0;0.915530322 550926.8105;7819782.02;-8812.730469;0;0.413162503 549814.3105;7820870.68;-8935.669922;0;0.952817583 550414.3105;7820232.5;-8787.459961;0;0.153706069 549939.3105;7817135.449;-8823.320313;0;0.636960455 551264.3105;7817266.84;-8782.580078;0;0.769107678 550539.3105;7820908.219;-8872.070313;0;0.241490754 551089.3105;7817773.629;-8794.30957;0;0.337933201 550039.3105;7816722.508;-8827.959961;0;0.173080484 549789.3105;7820645.438;-8919.099609;0;0.450434045 549914.3105;7820664.211;-8898.05957;0;0.010504973 549351.8105;7820119.879;-8930.519531;0;0.540435215 550739.3105;7819838.328;-8809.679688;0;0.004465966 550214.3105;7820495.281;-8830.129883;0;0.205993388 548901.8105;7820926.988;-8970.269531;0;0.800597112 550089.3105;7819425.391;-8817.400391;0;0.716278466 551151.8105;7819706.938;-8824.660156;0;0.769872939 550501.8105;7819481.699;-8777.860352;0;0.040698676 551239.3105;7817604.699;-8786.889648;0;0.312998807 549351.8105;7821809.18;-8975.969727;0;0.814010331 550501.8105;7816741.277;-8840.790039;0;0.270365341 549876.8105;7820758.059;-8915.040039;0;0.100965068 551226.8105;7817191.758;-8787.099609;0;0.556966035 551201.8105;7820382.66;-8837.320313;0;0.812826202 551114.3105;7817341.918;-8784.410156;0;0.230412087 550401.8105;7820964.531;-8878.990234;0;0.672917407 551289.3105;7820514.051;-8857.129883;0;0.609190267 549226.8105;7817811.168;-8853.730469;0;0.33122585 551651.8105;7818543.199;-8790.769531;0;0.608134171 551089.3105;7819538.008;-8813.849609;0;0.528477657 550251.8105;7820063.57;-8805.950195;0;0.682942803 551114.3105;7819932.18;-8826.179688;0;0.493179173 552226.8105;7816760.051;-8754.870117;0;0.213575072 550589.3105;7819294;-8768.459961;0;0.49282471 552351.8105;7817454.539;-8746.610352;0;0.622491433 550814.3105;7817492.078;-8807.94043;0;0.235393587 551751.8105;7821640.25;-8870.519531;0;0.151272427 550064.3105;7817417;-8833.44043;0;0.770051327 551639.3105;7821077.148;-8887.969727;0;0.719431223 550451.8105;7817567.16;-8829.700195;0;0.738110927 549426.8105;7816910.207;-8827.019531;0;0.718067077 549001.8105;7819237.688;-8940.25;0;0.899320652 550639.3105;7819087.527;-8778.870117;0;0.058825181 550539.3105;7819218.918;-8761.910156;0;0.046145123 550464.3105;7819181.379;-8770.129883;0;0.270974671 549164.3105;7818599.508;-8908.150391;0;0.027361158 552389.3105;7819594.32;-8815.950195;0;0.979537909 552451.8105;7816872.668;-8719.379883;0;0.162978557 550526.8105;7819049.988;-8773.139648;0;0.329565453 552039.3105;7818468.117;-8808.330078;0;0.738429745 549001.8105;7817661.008;-8849.19043;0;0.184411393 550051.8105;7821396.238;-8954.160156;0;0.915998196 551739.3105;7817323.148;-8785.530273;0;0.83676979 549226.8105;7818280.418;-8891.700195;0;0.762345066 552014.3105;7817079.141;-8756.650391;0;0.57244451 550114.3105;7817623.469;-8851.389648;0;0.981555943 551676.8105;7816835.129;-8787.650391;0;0.451269309 550526.8105;7817435.77;-8829.080078;0;0.947693654 551464.3105;7821339.93;-8898.969727;0;0.952052724 551239.3105;7820889.449;-8883.400391;0;0.661452403 550789.3105;7821246.078;-8921.230469;0;0.432270763 549651.8105;7818055.18;-8867.589844;0;0.537160454 549276.8105;7816985.289;-8833.049805;0;0.589853583 551539.3105;7820945.758;-8882.379883;0;0.905690506 552276.8105;7816741.277;-8749.910156;0;0.513022834 549364.3105;7817529.617;-8811.370117;0;0.596975476 550089.3105;7820514.051;-8852.719727;0;0.369107698 551076.8105;7817041.598;-8802.19043;0;0.4040842 549489.3105;7817492.078;-8805.05957;0;0.452608428 549814.3105;7821790.41;-8970.450195;0;0.188933712 549851.8105;7820645.438;-8908.19043;0;0.714116779 549464.3105;7818881.059;-8870.780273;0;0.790957281 551839.3105;7816760.051;-8773.009766;0;0.31114657 550539.3105;7817248.07;-8816.629883;0;0.363862414 550839.3105;7816966.52;-8818.570313;0;0.643770612 551126.8105;7817379.461;-8784.280273;0;0.142673349 549539.3105;7817435.77;-8802.519531;0;0.976039108 551701.8105;7821152.23;-8886.200195;0;0.771688943 549276.8105;7817698.547;-8840.389648;0;0.182964839 548889.3105;7817529.617;-8865.320313;0;0.801035151 552101.8105;7820138.648;-8767.719727;0;0.743397081 551289.3105;7817454.539;-8787.820313;0;0.924239044 552176.8105;7816928.98;-8743.370117;0;0.573407189 550476.8105;7820851.91;-8850.599609;0;0.321537332 552051.8105;7819162.609;-8815.160156;0;0.52422028 549901.8105;7820720.52;-8906.669922;0;0.890893199 551226.8105;7816872.668;-8791.839844;0;0.137524689 550626.8105;7820701.75;-8840.169922;0;0.258581145 551151.8105;7820401.43;-8834.969727;0;0.811762857 550726.8105;7820251.27;-8772.299805;0;0.360313842 550539.3105;7818843.52;-8808.360352;0;0.644774349 551214.3105;7817848.711;-8790.450195;0;0.025155133 550439.3105;7816985.289;-8831;0;0.152368094 550989.3105;7817398.227;-8786.280273;0;0.214710713 550514.3105;7817154.219;-8813.570313;0;0.221793356 551139.3105;7817079.141;-8795.870117;0;0.471707549 551476.8105;7820007.258;-8827.889648;0;0.126976748 549614.3105;7816853.898;-8838.799805;0;0.716998017 550576.8086;7817811.168;-8829.219727;0;0.605693182 550239.3105;7816760.051;-8830.69043;0;0.650410444 550451.8105;7817097.91;-8817.799805;0;0.284683439 551201.8105;7818561.969;-8805.049805;0;0.368622337 551951.8105;7816872.668;-8774.410156;0;0.542476754 551926.8105;7821790.41;-8848.169922;0;0.055990164 552276.8105;7817492.078;-8760.759766;0;0.229894623 549114.3105;7816684.969;-8858.139648;0;0.527376364 549551.8105;7816816.359;-8839.820313;0;0.15029726 549489.3105;7817398.227;-8791.009766;0;0.322370002 552114.3105;7820176.188;-8768.070313;0;0.016828902 551864.3105;7821565.168;-8874.889648;0;0.537255526 550051.8105;7817961.328;-8862.820313;0;0.162806634 550501.8105;7821283.617;-8910.280273;0;0.740855862 549339.3105;7818993.68;-8897.780273;0;0.871260802 551026.8105;7820044.801;-8827.230469;0;0.501029759 549064.3105;7818017.637;-8889.740234;0;0.813264134 551214.3105;7820420.199;-8841.700195;0;0.934813762 550289.3105;7818599.508;-8841.839844;0;0.130107898 551389.3105;7817848.711;-8797.089844;0;0.478626425 549489.3105;7816666.199;-8834.549805;0;0.722258992 552114.3105;7817229.301;-8767.099609;0;0.287742379 549414.3105;7816741.277;-8831.049805;0;0.593342749 551489.3105;7817736.09;-8800.889648;0;0.354637967 550226.8105;7817154.219;-8816.450195;0;0.226631519 551739.3105;7817792.398;-8800.110352;0;0.369684466 548876.8105;7819087.527;-8930.360352;0;0.527031704 551951.8105;7817116.68;-8771.320313;0;0.78764672 549751.8105;7817923.789;-8864.980469;0;0.51920543 551526.8105;7817961.328;-8792.040039;0;0.35909192 552376.8105;7816835.129;-8734.450195;0;0.297179555 549976.8105;7821020.84;-8926.730469;0;0.692105764 549601.8105;7817398.227;-8808.139648;0;0.441416073 549001.8105;7817980.098;-8889.870117;0;0.812537544 551539.3105;7819969.719;-8831.30957;0;0.396088057 552176.8105;7817811.168;-8783.959961;0;0.585950477 551726.8105;7816760.051;-8781.320313;0;0.664365173 549976.8105;7820851.91;-8911.120117;0;0.050270442 550301.8105;7820101.109;-8800.830078;0;0.702212637 549414.3105;7817435.77;-8788.55957;0;0.535261455 551139.3105;7817811.168;-8794.169922;0;0.259547793 551389.3105;7817661.008;-8800.25;0;0.438591619 550526.8105;7818411.809;-8826.860352;0;0.382948592 552126.8105;7816703.738;-8763.169922;0;0.409594565 548951.8105;7819049.988;-8924.549805;0;0.080708457 549351.8105;7816703.738;-8824.599609;0;0.093630867 549501.8105;7818749.668;-8860.389648;0;0.174172654 550001.8105;7820270.039;-8836.629883;0;0.330116365 550364.3105;7820082.34;-8786.099609;0;0.34864431 549464.3105;7820682.98;-8954.549805;0;0.984732756 550676.8105;7819913.41;-8798.870117;0;0.993217332 550489.3105;7820776.828;-8836.870117;0;0.256605093 550789.3105;7820119.879;-8801.179688;0;0.392019438 552326.8105;7821246.078;-8855.780273;0;0.648198304 549489.3105;7820363.887;-8929.530273;0;0.073935257 551276.8105;7820382.66;-8842.900391;0;0.684678439 551476.8105;7820908.219;-8881.120117;0;0.002571791 551339.3105;7817323.148;-8782.5;0;0.878000291 549751.8105;7817736.09;-8852.55957;0;0.036848871 549276.8105;7818712.129;-8890.330078;0;0.090553769 551276.8105;7817172.988;-8787.009766;0;0.149655852 552326.8105;7821752.867;-8835.070313;0;0.445189916 550639.3105;7817679.777;-8824.519531;0;0.378968598 551189.3105;7821715.328;-8901.05957;0;0.961286488 551676.8105;7821677.789;-8871.049805;0;0.848023744 551939.3105;7820795.598;-8848.870117;0;0.560622967 551314.3105;7817661.008;-8796.259766;0;0.990447981 550614.3105;7820814.371;-8863;0;0.199867198 550464.3105;7820176.188;-8771.660156;0;0.801289421 552051.8105;7816666.199;-8767.599609;0;0.241908022 550701.8105;7817510.848;-8819.370117;0;0.96839302 551964.3105;7817623.469;-8789.049805;0;0.508458252 552389.3105;7820232.5;-8810.080078;0;0.907045924 551014.3105;7816910.207;-8807.230469;0;0.012403746 551351.8105;7820007.258;-8836.610352;0;0.991584933 551689.3105;7816760.051;-8784.070313;0;0.476337003 549176.8105;7817792.398;-8850.980469;0;0.304196507 551539.3105;7820119.879;-8812.919922;0;0.821297416 551164.3105;7817548.387;-8783.139648;0;0.474037189 550701.8105;7817172.988;-8807.419922;0;0.955119843 549501.8105;7820626.668;-8948.150391;0;0.878593514 549789.3105;7817154.219;-8826.860352;0;0.584303636 549514.3105;7819444.16;-8901.490234;0;0.780013441 552251.8105;7821283.617;-8858.849609;0;0.44503398 551251.8105;7819950.949;-8836.339844;0;0.616644294 551514.3105;7820382.66;-8846.780273;0;0.099117236 550276.8105;7816684.969;-8831.740234;0;0.916472512 549414.3105;7818956.141;-8886.370117;0;0.648169905 550964.3105;7817829.938;-8808.5;0;0.089824905 550639.3105;7817360.688;-8819.349609;0;0.389951089 550051.8105;7816835.129;-8832.580078;0;0.368746622 550889.3105;7821583.941;-8907.740234;0;0.297990314 551089.3105;7817248.07;-8787.540039;0;0.35689934 550576.8086;7817304.379;-8820.299805;0;0.087056938 550614.3105;7820964.531;-8888.110352;0;0.819355651 550551.8105;7816722.508;-8842.490234;0;0.1940876 551339.3105;7819706.938;-8827.790039;0;0.79458251 549376.8105;7819857.098;-8925.160156;0;0.899702137 550001.8105;7820795.598;-8899.370117;0;0.702019379 552001.8105;7816835.129;-8773.5;0;0.903614585 550201.8105;7817248.07;-8823.480469;0;0.813232971 551089.3105;7819575.551;-8814.299805;0;0.946474941 548889.3105;7821302.391;-8965.919922;0;0.337426885 549476.8105;7817341.918;-8785.330078;0;0.030870963 549089.3105;7817210.527;-8832.629883;0;0.967839495 551864.3105;7817097.91;-8778.139648;0;0.861674268 551114.3105;7817210.527;-8790.230469;0;0.242999314 551676.8105;7817060.367;-8787.169922;0;0.448953974 552001.8105;7820457.738;-8805.780273;0;0.912480167 552239.3105;7817492.078;-8767.660156;0;0.087307676 551351.8105;7820514.051;-8861.629883;0;0.29454519 551526.8105;7820007.258;-8826.120117;0;0.049924967 550539.3105;7817191.758;-8812.230469;0;0.281047846 550601.8105;7820701.75;-8837.459961;0;0.339105631 549414.3105;7816778.816;-8831.660156;0;0.130869602 550576.8086;7820157.418;-8763.259766;0;0.288818486 549939.3105;7821039.609;-8932.589844;0;0.363291659 550164.3105;7820551.59;-8850.030273;0;0.582145742 550314.3105;7821039.609;-8900.44043;0;0.441500925 552326.8105;7820044.801;-8809.910156;0;0.216385646 551151.8105;7817285.609;-8784.580078;0;0.304048544 550414.3105;7817304.379;-8824.339844;0;0.265453237 550526.8105;7820213.73;-8769.580078;0;0.107583309 550526.8105;7817604.699;-8828.969727;0;0.05496439 550939.3105;7820420.199;-8806.129883;0;0.165963548 552214.3105;7820926.988;-8850.179688;0;0.193111967 550339.3105;7817848.711;-8842.650391;0;0.851026876 549051.8105;7817623.469;-8837.089844;0;0.551909623 551339.3105;7816910.207;-8791.44043;0;0.542128222 551739.3105;7817191.758;-8786.80957;0;0.894526653 551301.8105;7816853.898;-8786.679688;0;0.156616583 549726.8105;7818092.719;-8868.349609;0;0.924393246 552339.3105;7817398.227;-8748.660156;0;0.503226568 551876.8105;7817154.219;-8781.709961;0;0.362329826 550901.8105;7820007.258;-8814.730469;0;0.773254406 549639.3105;7819312.77;-8885.780273;0;0.106382223 548876.8105;7817623.469;-8866.450195;0;0.947664618 549176.8105;7818017.637;-8878.950195;0;0.87086158 550414.3105;7817229.301;-8819.849609;0;0.503091438 549489.3105;7820870.68;-8959.179688;0;0.344873247 548939.3105;7817980.098;-8894.55957;0;0.82337308 550676.8105;7820213.73;-8768.30957;0;0.971186734 549539.3105;7817623.469;-8825.759766;0;0.453630798 550701.8105;7817041.598;-8818.080078;0;0.462684019 552389.3105;7821152.23;-8852.509766;0;0.703102182 550814.3105;7818599.508;-8834.160156;0;0.242166592 551776.8105;7816966.52;-8785.820313;0;0.138893126 549539.3105;7817492.078;-8809.240234;0;0.173729628 549289.3105;7817323.148;-8790.629883;0;0.48593425 550551.8105;7820720.52;-8840.730469;0;0.241888153 549101.8105;7820345.121;-8941.129883;0;0.133253158 552239.3105;7817848.711;-8789.120117;0;0.315338609 548926.8105;7817435.77;-8858.679688;0;0.314462894 551876.8105;7817998.871;-8783.69043;0;0.86 551726.8105;7816966.52;-8787.570313;0;0.505381324 551089.3105;7820514.051;-8839.049805;0;0.83246795 549639.3105;7816684.969;-8829.80957;0;0.307209315 551076.8105;7818918.598;-8819.259766;0;0.928468811 549526.8105;7820288.809;-8915.639648;0;0.558718438 549364.3105;7816778.816;-8826.709961;0;0.153981399 552164.3105;7817454.539;-8773.030273;0;0.946706036 551964.3105;7817942.559;-8788.780273;0;0.008255303 551251.8105;7816966.52;-8794.320313;0;0.27142354 549651.8105;7817435.77;-8820.200195;0;0.358937155 552389.3105;7816703.738;-8733.650391;0;0.649477988 549589.3105;7817492.078;-8815.219727;0;0.626561533 551801.8105;7817135.449;-8785.009766;0;0.403302513 550526.8105;7819932.18;-8783.280273;0;0.506965577 550614.3105;7820589.129;-8822.019531;0;0.757512024 549489.3105;7817623.469;-8828.339844;0;0.693122817 552376.8105;7821790.41;-8827.169922;0;0.094603216 549176.8105;7817698.547;-8839.160156;0;0.746626692 549889.3105;7820119.879;-8864.55957;0;0.664302437 550476.8105;7819988.488;-8783.889648;0;0.82499652 549939.3105;7817998.871;-8865.669922;0;0.870304007 551739.3105;7817097.91;-8786.419922;0;0.582203584 551826.8105;7820758.059;-8850.469727;0;0.082131321 549726.8105;7817398.227;-8826.509766;0;0.436341419 549589.3105;7820251.27;-8909.030273;0;0.393706306 551951.8105;7817022.828;-8765.959961;0;0.200438561 552001.8105;7817266.84;-8773.389648;0;0.7354709 549001.8105;7818242.879;-8912.230469;0;0.089252788 550876.8105;7818974.91;-8805.660156;0;0.575747644 551001.8105;7821827.949;-8917.110352;0;0.523982077 549326.8105;7817623.469;-8829.160156;0;0.438824616 549489.3105;7820964.531;-8956.660156;0;0.33833981 549176.8105;7818355.5;-8900.469727;0;0.311073022 548889.3105;7817980.098;-8897.509766;0;0.834367662 551064.3105;7816985.289;-8805.129883;0;0.774057196 550589.3105;7819932.18;-8784.929688;0;0.39448195 551639.3105;7819218.918;-8821.900391;0;0.041541232 549539.3105;7817679.777;-8832.980469;0;0.363168236 550514.3105;7818280.418;-8834.900391;0;0.267240842 552226.8105;7816966.52;-8728.679688;0;0.41471587 550801.8105;7820213.73;-8788.19043;0;0.888816401 550589.3105;7817773.629;-8828.919922;0;0.483176918 550564.3105;7820119.879;-8764.540039;0;0.75105639 549451.8105;7820795.598;-8962.330078;0;0.993262762 551864.3105;7818937.367;-8808.019531;0;0.910397558 550901.8105;7820082.34;-8815.870117;0;0.637022145 551476.8105;7820851.91;-8877.009766;0;0.980167357 551039.3105;7818299.188;-8811.589844;0;0.999476145 550289.3105;7818317.957;-8852.389648;0;0.201581388 551164.3105;7819631.859;-8820.540039;0;0.850795486 550726.8105;7820438.969;-8787.099609;0;0.269213109 551339.3105;7817022.828;-8793.509766;0;0.659717734 549514.3105;7818918.598;-8867.139648;0;0.580340774 552014.3105;7817210.527;-8771.849609;0;0.54239146 550364.3105;7817323.148;-8820.94043;0;0.335778395 549301.8105;7816797.59;-8836.769531;0;0.532638532 551451.8105;7817792.398;-8798.589844;0;0.014156063 551989.3105;7821827.949;-8844.110352;0;0.168110381 551239.3105;7817022.828;-8793.179688;0;0.561399675 549701.8105;7817623.469;-8842.700195;0;0.990373343 549401.8105;7816684.969;-8826.580078;0;0.763594887 550489.3105;7820720.52;-8826.900391;0;0.47391672 552301.8105;7818036.41;-8805.950195;0;0.231916546 550039.3105;7817886.25;-8862.80957;0;0.544279603 549439.3105;7820457.738;-8948.419922;0;0.874413755 551576.8105;7819181.379;-8821.169922;0;0.505370993 552164.3105;7817717.32;-8787.910156;0;0.033244865 551326.8105;7818111.488;-8792.629883;0;0.869643624 550876.8105;7818468.117;-8833.540039;0;0.887865835 552401.8105;7817886.25;-8787.360352;0;0.404620694 552401.8105;7817942.559;-8793.929688;0;0.194354122 552164.3105;7819650.629;-8813.620117;0;0.856979552 551139.3105;7816872.668;-8797.790039;0;0.813800283 551464.3105;7817998.871;-8791.049805;0;0.146824844 550101.8105;7821227.309;-8937.230469;0;0.419072023 550301.8105;7817079.141;-8817.129883;0;0.644530116 551401.8105;7816647.43;-8783.879883;0;0.540023979 551314.3105;7818486.891;-8788.719727;0;0.97680205 552451.8105;7820833.141;-8836.429688;0;0.035126004 548876.8105;7817435.77;-8864.349609;0;0.172668585 549539.3105;7820645.438;-8945.379883;0;0.449164956 552064.3105;7817773.629;-8788.94043;0;0.68223078 549214.3105;7818881.059;-8893.990234;0;0.050149165 549864.3105;7820307.578;-8870.570313;0;0.049354381 549114.3105;7817736.09;-8850.75;0;0.906785611 549389.3105;7817905.02;-8865.540039;0;0.76314741 550726.8105;7820026.027;-8799.019531;0;0.194787625 550726.8105;7820795.598;-8872.240234;0;0.401067183 549826.8105;7817417;-8841.05957;0;0.950083808 550514.3105;7817341.918;-8825.25;0;0.883200918 551864.3105;7817717.32;-8795.629883;0;0.985395519 549551.8105;7818336.73;-8863.780273;0;0.944803182 551939.3105;7819763.25;-8812.599609;0;0.847040265 549439.3105;7821002.07;-8957.820313;0;0.107686356 551101.8105;7819350.309;-8815.230469;0;0.951358903 550389.3105;7820814.371;-8858.44043;0;0.261618345 549164.3105;7817848.711;-8858.410156;0;0.796870835 550889.3105;7821133.457;-8904.780273;0;0.829333925 551164.3105;7817848.711;-8793.650391;0;0.162063354 551139.3105;7818599.508;-8812.730469;0;0.990308093 549501.8105;7818261.648;-8871.049805;0;0.914508758 550151.8105;7820514.051;-8844.080078;0;0.319192686 550039.3105;7820851.91;-8903.700195;0;0.376056974 551351.8105;7819218.918;-8818.480469;0;0.609444957 550539.3105;7820026.027;-8777.669922;0;0.011709477 552189.3105;7818036.41;-8802.280273;0;0.975059533 552264.3105;7819387.852;-8819.799805;0;0.38909149 552064.3105;7816760.051;-8770.889648;0;0.940432294 551489.3105;7817698.547;-8802.950195;0;0.39871549 549601.8105;7817304.379;-8801.94043;0;0.269347958 550301.8105;7819932.18;-8798.910156;0;0.576455934 549226.8105;7818637.047;-8900.339844;0;0.389087062 550639.3105;7817642.238;-8825.599609;0;0.782499098 548951.8105;7817529.617;-8857.55957;0;0.50786227 549239.3105;7817942.559;-8866.099609;0;0.5072568 551701.8105;7820945.758;-8874.05957;0;0.611252358 552314.3105;7819331.539;-8820.55957;0;0.999183114 551151.8105;7820438.969;-8837.030273;0;0.356336492 550964.3105;7820176.188;-8814.410156;0;0.768261719 549239.3105;7819087.527;-8911.419922;0;0.695424415 551626.8105;7816872.668;-8791.339844;0;0.031783934 549501.8105;7817961.328;-8869.230469;0;0.84166717 551764.3105;7821189.77;-8881.179688;0;0.847466191 550826.8105;7821621.48;-8914.570313;0;0.945976878 549901.8105;7820157.418;-8854.530273;0;0.775542064 550926.8105;7819594.32;-8805.919922;0;0.672765124 549689.3105;7819068.758;-8859.589844;0;0.287579681 549189.3105;7817417;-8807.459961;0;0.993105503 551939.3105;7820589.129;-8830.740234;0;0.370601565 550051.8105;7817492.078;-8838.030273;0;0.916858955 551614.3105;7817022.828;-8790.160156;0;0.55769197 549176.8105;7817360.688;-8810.459961;0;0.277694532 550739.3105;7820626.668;-8832.299805;0;0.314964899 549364.3105;7816835.129;-8828.280273;0;0.665286964 549114.3105;7818561.969;-8910.709961;0;0.290587416 551639.3105;7816647.43;-8778.240234;0;0.501330999 551589.3105;7820908.219;-8877.129883;0;0.016875021 550114.3105;7818618.281;-8838.599609;0;0.615985823 549876.8105;7819181.379;-8842.589844;0;0.088567005 549201.8105;7817548.387;-8815.290039;0;0.632145159 551514.3105;7821546.398;-8886.389648;0;0.909997633 550401.8105;7821246.078;-8910.400391;0;0.729513799 551401.8105;7820401.43;-8851.150391;0;0.109853163 551689.3105;7820288.809;-8815.5;0;0.868582672 551889.3105;7820701.75;-8842.549805;0;0.305721805 550976.8105;7819125.07;-8794.009766;0;0.083226328 548939.3105;7817661.008;-8859.769531;0;0.33731272 552451.8105;7817942.559;-8790.780273;0;0.176475162 550439.3105;7821602.711;-8939.910156;0;0.979225448 550501.8105;7821095.918;-8887.94043;0;0.528063355 551639.3105;7817229.301;-8787.209961;0;0.795211791 549414.3105;7817304.379;-8786.980469;0;0.786180687 549751.8105;7817548.387;-8844.139648;0;0.825598061 550176.8105;7817998.871;-8858.980469;0;0.43443112 549726.8105;7820157.418;-8892.719727;0;0.362030884 549551.8105;7816910.207;-8835.910156;0;0.425318039 552076.8105;7817717.32;-8792.150391;0;0.51236751 551189.3105;7820889.449;-8883.280273;0;0.734082268 549439.3105;7817773.629;-8853.679688;0;0.294580895 550951.8105;7821621.48;-8902.490234;0;0.883777598 552126.8105;7817567.16;-8779.980469;0;0.373536409 549564.3105;7820870.68;-8954.259766;0;0.792131283 550776.8105;7817097.91;-8808.820313;0;0.293498108 552014.3105;7817811.168;-8788.610352;0;0.069142869 551526.8105;7820851.91;-8873.19043;0;0.547268926 549501.8105;7816947.75;-8829.44043;0;0.827726492 549314.3105;7816891.438;-8836.530273;0;0.593444285 550351.8105;7820926.988;-8884.730469;0;0.472865709 550314.3105;7820157.418;-8797.05957;0;0.119696977 551339.3105;7816966.52;-8794.599609;0;0.161484933 550876.8105;7816947.75;-8817.910156;0;0.213023026 552439.3105;7817886.25;-8784.700195;0;0.248288056 550789.3105;7820589.129;-8825.25;0;0.116167548 549289.3105;7818956.141;-8896.5;0;0.102439012 550639.3105;7817191.758;-8808.820313;0;0.355319535 550589.3105;7817191.758;-8810.429688;0;0.164556884 551701.8105;7818430.578;-8788.919922;0;0.637208451 549489.3105;7820514.051;-8949.240234;0;0.328845004 550014.3105;7820063.57;-8844.370117;0;0.952385845 550451.8105;7820720.52;-8821.259766;0;0.396134828 551239.3105;7817454.539;-8785.009766;0;0.692589097 548951.8105;7817792.398;-8879.589844;0;0.591036835 552301.8105;7817980.098;-8803.200195;0;0.782557339 549739.3105;7816778.816;-8834.5;0;0.99066455 552439.3105;7821471.32;-8858.509766;0;0.62573675 552339.3105;7817886.25;-8791.599609;0;0.39014435 550851.8105;7820551.59;-8818.790039;0;0.938401389 550401.8105;7820682.98;-8822.700195;0;0.189138732 551151.8105;7816966.52;-8797.80957;0;0.335819111 551201.8105;7817022.828;-8793.219727;0;0.305220001 551376.8105;7818374.27;-8791.379883;0;0.763593378 550989.3105;7819913.41;-8816.889648;0;0.969114162 551301.8105;7817022.828;-8793.05957;0;0.472096538 551526.8105;7821415.008;-8898.179688;0;0.345385985 548876.8105;7818730.898;-8931.349609;0;0.367286358 551789.3105;7817285.609;-8783.219727;0;0.540552411 550926.8105;7818430.578;-8828.580078;0;0.231060697 550514.3105;7817510.848;-8828.490234;0;0.238581393 550051.8105;7817548.387;-8844.05957;0;0.900115919 550439.3105;7821246.078;-8907.070313;0;0.399164753 550351.8105;7817398.227;-8820.969727;0;0.025581485 549601.8105;7821659.02;-8966.269531;0;0.266930978 550289.3105;7817923.789;-8853.509766;0;0.683922411 550601.8105;7816666.199;-8841.330078;0;0.723926073 549639.3105;7817811.168;-8855.790039;0;0.187898086 551526.8105;7819125.07;-8816.610352;0;0.000831105 551189.3105;7817248.07;-8784;0;0.687606328 550351.8105;7818599.508;-8836.910156;0;0.51764499 550364.3105;7819087.527;-8792.849609;0;0.478267136 552164.3105;7820438.969;-8792.040039;0;0.432412666 551251.8105;7817717.32;-8790.929688;0;0.230949077 552389.3105;7820870.68;-8836.769531;0;0.557402745 552064.3105;7820363.887;-8787.080078;0;0.391710519 551776.8105;7818393.039;-8782.700195;0;0.399450363 552351.8105;7818036.41;-8802.910156;0;0.120371771 550964.3105;7820119.879;-8820.25;0;0.271912873 550876.8105;7818186.57;-8809.200195;0;0.334071162 550126.8105;7818374.27;-8856.44043;0;0.912462218 549201.8105;7818073.949;-8882.549805;0;0.382151226 551839.3105;7817980.098;-8783.389648;0;0.349503994 551426.8105;7817698.547;-8800.94043;0;0.873504952 550326.8105;7821264.848;-8917.339844;0;0.853092957 551026.8105;7821002.07;-8895.469727;0;0.044273508 552276.8105;7821114.691;-8853.980469;0;0.118514159 549889.3105;7818411.809;-8850.200195;0;0.513529898 549626.8105;7818224.109;-8870.80957;0;0.974870011 549301.8105;7817492.078;-8799.150391;0;0.55546256 549576.8105;7819031.219;-8873.469727;0;0.799950538 551814.3105;7820382.66;-8809.620117;0;0.05981064 548951.8105;7817886.25;-8886.120117;0;0.636778097 550726.8105;7821790.41;-8930.879883;0;0.15033411 551226.8105;7817248.07;-8782.790039;0;0.517126393 549539.3105;7817998.871;-8870.19043;0;0.925292482 549001.8105;7817754.859;-8870.169922;0;0.491716054 552114.3105;7817773.629;-8786.769531;0;0.394433352 549126.8105;7818017.637;-8885.44043;0;0.616887147 552164.3105;7820645.438;-8825.900391;0;0.192499505 551739.3105;7816684.969;-8773.070313;0;0.906081793 548876.8105;7818073.949;-8903.679688;0;0.790312166 552039.3105;7821358.699;-8871.160156;0;0.897001378 552351.8105;7816928.98;-8716.679688;0;0.574214055 549439.3105;7818712.129;-8862.610352;0;0.026098518 551314.3105;7817754.859;-8793.580078;0;0.745542877 551364.3105;7820739.289;-8875.580078;0;0.962059743 552264.3105;7820082.34;-8800.400391;0;0.169544237 550114.3105;7817060.367;-8817.110352;0;0.302294022 549951.8105;7817379.461;-8839.009766;0;0.469103413 549389.3105;7818749.668;-8869.519531;0;0.877887778 550801.8105;7818355.5;-8825.299805;0;0.623462968 549626.8105;7818824.75;-8862.669922;0;0.834345628 552014.3105;7819669.398;-8805.080078;0;0.123145465 551964.3105;7819819.559;-8808.669922;0;0.220442611 550726.8105;7820082.34;-8794.179688;0;0.50015326 551626.8105;7817886.25;-8798.519531;0;0.368211911 549926.8105;7819181.379;-8839.80957;0;0.059437497 549989.3105;7817829.938;-8864.330078;0;0.364155706 552451.8105;7820194.961;-8812.889648;0;0.887724227 552014.3105;7816928.98;-8766.849609;0;0.299900505 550801.8105;7820720.52;-8854.379883;0;0.371071872 551326.8105;7817285.609;-8782.349609;0;0.329624594 549514.3105;7818580.738;-8861;0;0.204002586 549701.8105;7819237.688;-8871.339844;0;0.261871996 549751.8105;7821302.391;-8951.740234;0;0.368268136 551364.3105;7818073.949;-8789.69043;0;0.418424667 549826.8105;7817717.32;-8853.490234;0;0.192291482 550201.8105;7817360.688;-8829.700195;0;0.65622933 549701.8105;7821415.008;-8958.919922;0;0.62394188 550351.8105;7817116.68;-8817.280273;0;0.091352013 550951.8105;7819500.469;-8804.019531;0;0.371710123 552064.3105;7819275.23;-8814.009766;0;0.258898354 550514.3105;7820176.188;-8765.879883;0;0.886167054 551314.3105;7821002.07;-8887.219727;0;0.204683506 549289.3105;7817905.02;-8865.129883;0;0.41434041 550839.3105;7821039.609;-8901.040039;0;0.369979774 551114.3105;7817473.309;-8782.370117;0;0.793910302 549876.8105;7821640.25;-8968.150391;0;0.513412204 552264.3105;7817022.828;-8716.389648;0;0.512524145 551826.8105;7816853.898;-8780.30957;0;0.411659935 549751.8105;7819106.301;-8850.179688;0;0.605476081 551626.8105;7821752.867;-8865.94043;0;0.232361981 552051.8105;7820926.988;-8855.709961;0;0.090475856 549389.3105;7817717.32;-8848.959961;0;0.7768873 549939.3105;7821396.238;-8959.389648;0;0.665716304 550889.3105;7820420.199;-8794.919922;0;0.706581113 552339.3105;7817661.008;-8775.160156;0;0.845267162 550289.3105;7817435.77;-8822.169922;0;0.161775389 550789.3105;7821752.867;-8926.980469;0;0.784807758 550276.8105;7817567.16;-8833.25;0;0.979895849 549926.8105;7820551.59;-8890.389648;0;0.211313059 549214.3105;7817642.238;-8827.780273;0;0.043724262 551339.3105;7821377.469;-8897.040039;0;0.636879861 550314.3105;7819181.379;-8810.139648;0;0.79181074 551114.3105;7821058.379;-8894.429688;0;0.635792602 551301.8105;7819181.379;-8818.860352;0;0.186320757 552076.8105;7817435.77;-8778.879883;0;0.415373257 551889.3105;7820457.738;-8814.379883;0;0.167578294 548976.8105;7817435.77;-8851.240234;0;0.940683867 551289.3105;7821058.379;-8889.280273;0;0.365548775 551039.3105;7816872.668;-8805.089844;0;0.205240213 552451.8105;7819275.23;-8820.330078;0;0.338954007 550539.3105;7820438.969;-8798.94043;0;0.819333004 549464.3105;7820720.52;-8957.330078;0;0.301860856 552014.3105;7820514.051;-8813.849609;0;0.194856642 552064.3105;7819932.18;-8783.860352;0;0.472172065 552339.3105;7819913.41;-8793.629883;0;0.577866622 551751.8105;7820063.57;-8790.639648;0;0.566332072 549264.3105;7817604.699;-8822.719727;0;0.430732526 549839.3105;7818167.797;-8866.879883;0;0.451176999 549989.3105;7819575.551;-8833.849609;0;0.962257083 549839.3105;7818449.348;-8845.94043;0;0.119895766 550464.3105;7818280.418;-8842.089844;0;0.521362935 551089.3105;7818186.57;-8799.740234;0;0.800183745 550664.3105;7821377.469;-8918.200195;0;0.694855638 550364.3105;7819932.18;-8783.769531;0;0.604005005 551189.3105;7817379.461;-8784.280273;0;0.344928612 549151.8105;7817548.387;-8820.660156;0;0.669252167 550014.3105;7818655.82;-8825.889648;0;0.824757749 549601.8105;7817435.77;-8812.040039;0;0.721994355 549739.3105;7818430.578;-8848.929688;0;0.676935626 551851.8105;7817923.789;-8790.280273;0;0.760918686 551001.8105;7821546.398;-8905.25;0;0.907544766 549426.8105;7817585.93;-8825.389648;0;0.188293 551439.3105;7818205.34;-8789.139648;0;0.173872717 550914.3105;7820720.52;-8856.469727;0;0.483830856 549126.8105;7817417;-8821.540039;0;0.596904572 549226.8105;7817698.547;-8838.120117;0;0.619991848 551564.3105;7817773.629;-8799.790039;0;0.128123458 549526.8105;7819049.988;-8883.019531;0;0.986442772 551314.3105;7818730.898;-8808.669922;0;0.139696434 550226.8105;7817567.16;-8838.969727;0;0.690660445 550476.8105;7817248.07;-8820.610352;0;0.388453029 548889.3105;7818674.59;-8929.620117;0;0.342927135 550714.3105;7817097.91;-8811.55957;0;0.145778172 550901.8105;7821095.918;-8903.040039;0;0.06041479 549051.8105;7817529.617;-8839.55957;0;0.687369139 550651.8105;7819256.457;-8766.709961;0;0.264333074 549526.8105;7820795.598;-8954.929688;0;0.275385454 549776.8105;7819969.719;-8888.740234;0;0.809755587 551789.3105;7821602.711;-8872.30957;0;0.778668738 549939.3105;7817623.469;-8853.019531;0;0.307728126 549064.3105;7817717.32;-8854.05957;0;0.460170005 552339.3105;7821077.148;-8850.25;0;0.889446515 551801.8105;7817829.938;-8797.650391;0;0.960021586 549289.3105;7816666.199;-8833.780273;0;0.000938587 550889.3105;7817548.387;-8805.459961;0;0.325261963 552101.8105;7819444.16;-8810.75;0;0.908546516 549426.8105;7821171;-8956.570313;0;0.771904118 550551.8105;7816947.75;-8830.410156;0;0.207833954 551414.3105;7820457.738;-8859.700195;0;0.081371966 552176.8105;7816760.051;-8760.25;0;0.492055605 551539.3105;7816647.43;-8785.19043;0;0.330620111 551026.8105;7818524.43;-8811.780273;0;0.130237577 550226.8105;7817604.699;-8842.009766;0;0.953359856 551926.8105;7817754.859;-8794.299805;0;0.426686819 550551.8105;7820645.438;-8823.389648;0;0.012264146 549514.3105;7820720.52;-8952.349609;0;0.344009375 550551.8105;7820814.371;-8859.269531;0;0.714516204 550764.3105;7817492.078;-8813.160156;0;0.668744725 551039.3105;7818017.637;-8801.05957;0;0.021802343 551476.8105;7820119.879;-8821.849609;0;0.398696469 549714.3105;7821208.539;-8959.540039;0;0.450835827 552451.8105;7821827.949;-8822.790039;0;0.515836104 550339.3105;7817210.527;-8816.75;0;0.329650255 549226.8105;7817754.859;-8847.280273;0;0.06786863 551989.3105;7820758.059;-8844.969727;0;0.615496516 552451.8105;7821152.23;-8851.230469;0;0.938026846 551239.3105;7816910.207;-8793.030273;0;0.045585039 550201.8105;7816778.816;-8830.080078;0;0.976025788 552014.3105;7817905.02;-8788.099609;0;0.234361922 552326.8105;7819125.07;-8816.290039;0;0.683670234 550489.3105;7821565.168;-8937.30957;0;0.350249702 551114.3105;7820926.988;-8883.410156;0;0.624265251 551326.8105;7820382.66;-8843.879883;0;0.415805082 550476.8105;7819012.449;-8773.879883;0;0.788928424 551514.3105;7820514.051;-8857.599609;0;0.703396766 550801.8105;7818862.289;-8811.009766;0;0.223036711 550551.8105;7820251.27;-8775.19043;0;0.915031147 551189.3105;7821171;-8899.269531;0;0.26403062 550401.8105;7817116.68;-8817.519531;0;0.320208946 550089.3105;7821396.238;-8947.44043;0;0.466823381 551326.8105;7817360.688;-8783.849609;0;0.444324944 551426.8105;7818486.891;-8790.94043;0;0.289136377 552089.3105;7821602.711;-8855.370117;0;0.128872617 550614.3105;7820438.969;-8791.75;0;0.917582818 550464.3105;7820232.5;-8778.55957;0;0.643102508 551764.3105;7820363.887;-8811.349609;0;0.9197406 549539.3105;7817341.918;-8792.19043;0;0.788691134 550789.3105;7816910.207;-8823.639648;0;0.329701827 552226.8105;7816797.59;-8753.049805;0;0.157171336 550701.8105;7817548.387;-8821.120117;0;0.38460294 549476.8105;7817304.379;-8787.419922;0;0.880682327 550889.3105;7821546.398;-8906.080078;0;0.559441883 549601.8105;7821790.41;-8973.480469;0;0.228350563 550301.8105;7817022.828;-8819.719727;0;0.065552835 551839.3105;7816797.59;-8775.299805;0;0.917520779 549539.3105;7817398.227;-8797.55957;0;0.361254854 549864.3105;7817923.789;-8864.639648;0;0.589452736 551839.3105;7817323.148;-8781.19043;0;0.81524013 550789.3105;7821208.539;-8917.639648;0;0.779424443 551276.8105;7820420.199;-8848.950195;0;0.450129773 549614.3105;7816816.359;-8837.660156;0;0.693494535 550776.8105;7821583.941;-8916.139648;0;0.845133668 549551.8105;7816853.898;-8839.320313;0;0.068238725 549064.3105;7817980.098;-8886.389648;0;0.434435609 552114.3105;7817191.758;-8762.349609;0;0.850068433 551739.3105;7817829.938;-8800.330078;0;0.62086642 551751.8105;7820908.219;-8865.870117;0;0.44397512 551526.8105;7817998.871;-8789.69043;0;0.829459458 549001.8105;7818017.637;-8892.650391;0;0.047227883 550789.3105;7820026.027;-8805.30957;0;0.044051412 549351.8105;7816666.199;-8824.110352;0;0.721180967 552276.8105;7816966.52;-8719.599609;0;0.503199466 550701.8105;7819913.41;-8802.219727;0;0.277882505 550176.8105;7817661.008;-8849.389648;0;0.971234753 550014.3105;7818092.719;-8867.419922;0;0.899433238 552326.8105;7821715.328;-8839.259766;0;0.018930709 550989.3105;7816872.668;-8807.719727;0;0.544685 552439.3105;7816666.199;-8726.30957;0;0.70477948 552014.3105;7820551.59;-8820.360352;0;0.007285397 550176.8105;7817079.141;-8815.969727;0;0.306504713 550464.3105;7817191.758;-8816.669922;0;0.387097374 549564.3105;7820776.828;-8951.599609;0;0.395364813 551801.8105;7817792.398;-8797.839844;0;0.34123089 551189.3105;7816910.207;-8796;0;0.007780586 549864.3105;7817886.25;-8864.360352;0;0.514927091 549489.3105;7817811.168;-8853.030273;0;0.435185463 549589.3105;7821246.078;-8959.700195;0;0.353928902 552126.8105;7817867.48;-8786.660156;0;0.609449018 549389.3105;7816966.52;-8825.469727;0;0.052617483 549476.8105;7816778.816;-8838.099609;0;0.859940723 549451.8105;7820870.68;-8962.480469;0;0.609039039 550639.3105;7819932.18;-8791.120117;0;0.443251855 549489.3105;7820776.828;-8958.049805;0;0.438553836 549176.8105;7819275.23;-8928.639648;0;0.835680769 551714.3105;7820664.211;-8845.870117;0;0.927287114 551251.8105;7816647.43;-8786.169922;0;0.062298248 550951.8105;7821095.918;-8904.339844;0;0.987138477 550301.8105;7819894.641;-8799.830078;0;0.113543932 549451.8105;7817961.328;-8870.099609;0;0.420190765 550326.8105;7817341.918;-8819.679688;0;0.697876674 549376.8105;7816928.98;-8827.389648;0;0.704213219 551414.3105;7820776.828;-8875.700195;0;0.637089385 552276.8105;7817360.688;-8755.759766;0;0.731572342 551651.8105;7816684.969;-8779.639648;0;0.412590628 551376.8105;7820363.887;-8841.040039;0;0.971473061 551164.3105;7817041.598;-8794.099609;0;0.541972201 551151.8105;7820532.82;-8846.610352;0;0.219215299 549251.8105;7817548.387;-8812.709961;0;0.50627552 552126.8105;7817529.617;-8778.19043;0;0.853535185 552239.3105;7817998.871;-8803.5;0;0.936309932 549526.8105;7820851.91;-8955.959961;0;0.192946888 551289.3105;7816966.52;-8793.879883;0;0.088726791 549289.3105;7818993.68;-8901.139648;0;0.647093815 550639.3105;7817248.07;-8810.990234;0;0.470313827 552039.3105;7818186.57;-8798.299805;0;0.223777327 549939.3105;7820345.121;-8864.400391;0;0.886518759 551226.8105;7817417;-8784.620117;0;0.57370962 549814.3105;7817886.25;-8863.290039;0;0.875083965 550401.8105;7820720.52;-8831.799805;0;0.165945236 551114.3105;7816985.289;-8800.44043;0;0.408553873 550976.8105;7819950.949;-8817.120117;0;0.508370569 549701.8105;7817229.301;-8816.290039;0;0.762224308 550151.8105;7821471.32;-8938.679688;0;0.30590332 549201.8105;7816853.898;-8850.969727;0;0.106429945 549264.3105;7820401.43;-8944.660156;0;0.096626468 548889.3105;7818242.879;-8918.419922;0;0.061915778 550851.8105;7820758.059;-8864.139648;0;0.438094008 549639.3105;7817585.93;-8830.700195;0;0.114889921 551114.3105;7821546.398;-8905.110352;0;0.439976966 551089.3105;7820438.969;-8830.650391;0;0.763054757 549601.8105;7817679.777;-8834.889648;0;0.470729793 550339.3105;7818205.34;-8852.469727;0;0.157510389 549126.8105;7817041.598;-8839.110352;0;0.605552584 551576.8105;7821452.551;-8897.30957;0;0.096412977 550076.8105;7818937.367;-8829.44043;0;0.325238917 550589.3105;7817679.777;-8827.589844;0;0.996302334 549489.3105;7821583.941;-8964.790039;0;0.153522855 549664.3105;7818336.73;-8860.919922;0;0.720545548 548901.8105;7817848.711;-8887.339844;0;0.529485469 550926.8105;7819894.641;-8813.330078;0;0.186942111 549439.3105;7821621.48;-8964.599609;0;0.719694274 551689.3105;7817829.938;-8801.790039;0;0.808331627 549776.8105;7818543.199;-8836.139648;0;0.248893997 549989.3105;7819294;-8826.780273;0;0.398050004 550826.8105;7821696.559;-8919.219727;0;0.908899882 550601.8105;7821752.867;-8940.360352;0;0.780208991 551351.8105;7821114.691;-8891.040039;0;0.661069863 551476.8105;7818205.34;-8788.389648;0;0.111944078 551514.3105;7817829.938;-8798.339844;0;0.013257015 549076.8105;7816666.199;-8864.259766;0;0.015236371 552014.3105;7819894.641;-8796.040039;0;0.25718981 551364.3105;7818317.957;-8791.450195;0;0.437365233 549614.3105;7818580.738;-8855.519531;0;0.326723233 551914.3105;7817454.539;-8784.44043;0;0.1279785 549789.3105;7817829.938;-8861.049805;0;0.440162749 551189.3105;7820758.059;-8874.360352;0;0.51512094 550401.8105;7817642.238;-8833.219727;0;0.067179931 550951.8105;7817022.828;-8808.759766;0;0.444782868 551326.8105;7819857.098;-8835.629883;0;0.492413508 551789.3105;7817191.758;-8785.759766;0;0.895631057 550939.3105;7816910.207;-8811.339844;0;0.399026615 551801.8105;7821283.617;-8885.259766;0;0.248492711 549264.3105;7820345.121;-8938.379883;0;0.11488739 549251.8105;7816853.898;-8846.080078;0;0.192688815 550076.8105;7818543.199;-8843.05957;0;0.313901244 549351.8105;7819087.527;-8903.459961;0;0.386213755 550689.3105;7820851.91;-8881.900391;0;0.257237651 550476.8105;7818411.809;-8831.730469;0;0.18738809 550701.8105;7817998.871;-8813.759766;0;0.985421726 549139.3105;7816966.52;-8848.299805;0;0.970068671 551476.8105;7818637.047;-8789.19043;0;0.814700753 551014.3105;7819350.309;-8812.620117;0;0.079872946 549989.3105;7821790.41;-8962.740234;0;0.888635442 551214.3105;7819706.938;-8828.150391;0;0.549832001 552376.8105;7817304.379;-8737.179688;0;0.016708793 549889.3105;7817454.539;-8844.339844;0;0.968662676 552151.8105;7818505.66;-8815.370117;0;0.65219788 549314.3105;7819950.949;-8928.879883;0;0.895872273 551414.3105;7817886.25;-8797.080078;0;0.397797244 550089.3105;7818974.91;-8828.669922;0;0.680879016 551676.8105;7817792.398;-8800.980469;0;0.052134923 550814.3105;7821715.328;-8922.019531;0;0.79764436 551926.8105;7817492.078;-8785.230469;0;0.066734845 551314.3105;7819894.641;-8836.799805;0;0.555408267 551139.3105;7818317.957;-8799.910156;0;0.44540294 549339.3105;7819049.988;-8902.509766;0;0.546922823 549876.8105;7817492.078;-8846.400391;0;0.571070719 551401.8105;7817923.789;-8794.570313;0;0.852452015 550526.8105;7817886.25;-8830.629883;0;0.691104987 549126.8105;7817886.25;-8867.709961;0;0.708108776 550414.3105;7819049.988;-8778.419922;0;0.896950798 551351.8105;7819125.07;-8817.269531;0;0.860015947 549064.3105;7819275.23;-8938.830078;0;0.158942065 552164.3105;7820082.34;-8780.160156;0;0.069577998 551651.8105;7818974.91;-8802.730469;0;0.761386899 551001.8105;7821339.93;-8915.120117;0;0.684630465 549964.3105;7818655.82;-8824.910156;0;0.439632453 549451.8105;7817679.777;-8840.660156;0;0.400894286 549114.3105;7817923.789;-8874.320313;0;0.077292952 550101.8105;7819143.84;-8832.030273;0;0.726629611 551639.3105;7821358.699;-8900.580078;0;0.352640816 551689.3105;7819256.457;-8820.209961;0;0.881711049 551364.3105;7819087.527;-8816.549805;0;0.01961665 550039.3105;7821208.539;-8940.679688;0;0.702811325 552076.8105;7817829.938;-8785.400391;0;0.423757877 552114.3105;7818073.949;-8797.419922;0;0.679117015 550664.3105;7820476.508;-8797.629883;0;0.06238489 551064.3105;7821621.48;-8902.240234;0;0.311362822 549601.8105;7816684.969;-8829.599609;0;0.221633846 548951.8105;7818561.969;-8920.910156;0;0.428564045 550414.3105;7819894.641;-8783.179688;0;0.15663154 552226.8105;7821827.949;-8833.870117;0;0.786613402 550076.8105;7818374.27;-8858.339844;0;0.738283554 549926.8105;7818374.27;-8853.580078;0;0.28995268 551189.3105;7821659.02;-8903.650391;0;0.696923635 551139.3105;7819087.527;-8815;0;0.34122843 549289.3105;7817848.711;-8860.589844;0;0.891173975 551839.3105;7816666.199;-8770.089844;0;0.295221249 551976.8105;7817867.48;-8790.219727;0;0.622913443 550276.8105;7821396.238;-8929.740234;0;0.638136031 549601.8105;7817623.469;-8828.759766;0;0.333536519 551114.3105;7817041.598;-8798.459961;0;0.124947207 552151.8105;7820044.801;-8782.139648;0;0.946273061 551864.3105;7820251.27;-8782.969727;0;0.118039323 550601.8105;7819143.84;-8766.599609;0;0.386584847 551201.8105;7820194.961;-8829.740234;0;0.516713205 549889.3105;7817661.008;-8854.209961;0;0.484399068 550889.3105;7820626.668;-8832.610352;0;0.500916767 549801.8105;7818505.66;-8837.679688;0;0.777055496 550464.3105;7819932.18;-8786.549805;0;0.2945556 549101.8105;7820288.809;-8941.679688;0;0.59395148 550614.3105;7821283.617;-8919.610352;0;0.349204029 551189.3105;7819218.918;-8818.349609;0;0.375583441 550876.8105;7821640.25;-8914.089844;0;0.696118844 551014.3105;7821302.391;-8911.009766;0;0.885765624 551251.8105;7819256.457;-8819.620117;0;0.191722671 551114.3105;7820194.961;-8824.860352;0;0.770028579 549701.8105;7817773.629;-8855.589844;0;0.92072667 551351.8105;7821039.609;-8889.540039;0;0.860864467 549001.8105;7818167.797;-8905.69043;0;0.890757652 549951.8105;7818618.281;-8829.280273;0;0.38140512 550564.3105;7821321.16;-8913.759766;0;0.349037867 549439.3105;7817717.32;-8847.830078;0;0.159619147 551714.3105;7819669.398;-8826.740234;0;0.126704239 551814.3105;7820589.129;-8832.639648;0;0.243929944 551764.3105;7818130.258;-8775.950195;0;0.33399752 550751.8105;7819894.641;-8807.769531;0;0.351773026 551289.3105;7820889.449;-8883.299805;0;0.970820267 549626.8105;7819106.301;-8874.80957;0;0.19542011 549439.3105;7818017.637;-8873.580078;0;0.933792159 551614.3105;7817754.859;-8800.120117;0;0.280631162 549301.8105;7817398.227;-8784.150391;0;0.870322275 552189.3105;7819181.379;-8814.660156;0;0.060652884 549001.8105;7818111.488;-8900.360352;0;0.318854311 550239.3105;7819950.949;-8807.75;0;0.649016393 550414.3105;7820589.129;-8804.639648;0;0.773188927 550251.8105;7819218.918;-8819.870117;0;0.309523122 549164.3105;7818730.898;-8907.780273;0;0.7769971 550489.3105;7820457.738;-8805.980469;0;0.7260078 551914.3105;7819538.008;-8815.110352;0;0.332951593 549814.3105;7821471.32;-8961.240234;0;0.657918213 550876.8105;7821471.32;-8911.660156;0;0.742568531 549551.8105;7820945.758;-8954.110352;0;0.916619013 549614.3105;7816891.438;-8838.410156;0;0.944305946 551551.8105;7817736.09;-8801.379883;0;0.012878837 551214.3105;7818468.117;-8794.950195;0;0.244271714 550864.3105;7818092.719;-8802.480469;0;0.8791803 551201.8105;7818242.879;-8797.459961;0;0.381809985 550026.8105;7817323.148;-8833.660156;0;0.020549799 551576.8105;7821377.469;-8901.94043;0;0.682959842 550189.3105;7818693.359;-8828.459961;0;0.610801605 552089.3105;7821283.617;-8863.469727;0;0.480121437 551876.8105;7818299.188;-8793.080078;0;0.275067678 551539.3105;7818280.418;-8791.700195;0;0.078153576 550701.8105;7818224.109;-8809.980469;0;0.651136414 549889.3105;7818242.879;-8860.910156;0;0.473705256 549601.8105;7819706.938;-8902.269531;0;0.639669298 550539.3105;7820701.75;-8835.839844;0;0.863184369 552151.8105;7818749.668;-8812.410156;0;0.671544392 552051.8105;7817135.449;-8759.040039;0;0.463839226 549339.3105;7816778.816;-8828.509766;0;0.647829437 552064.3105;7817867.48;-8786.089844;0;0.758199595 551089.3105;7816928.98;-8803.400391;0;0.119581505 550951.8105;7820664.211;-8839.450195;0;0.434558474 550401.8105;7817867.48;-8837.669922;0;0.936853078 549951.8105;7818280.418;-8860.280273;0;0.428211786 551426.8105;7820607.898;-8868.570313;0;0.678709099 551839.3105;7819369.078;-8815.80957;0;0.887249967 552264.3105;7820607.898;-8816.30957;0;0.082270715 551351.8105;7821621.48;-8897.860352;0;0.903313258 549964.3105;7818749.668;-8825.150391;0;0.614765974 551589.3105;7820814.371;-8865.259766;0;0.567009728 552101.8105;7818111.488;-8799.669922;0;0.382224228 549551.8105;7818092.719;-8872.30957;0;0.446416975 549039.3105;7817473.309;-8840.870117;0;0.711222735 551751.8105;7819294;-8816.570313;0;0.306060538 550414.3105;7820119.879;-8779.339844;0;0.999147184 549589.3105;7816760.051;-8834.969727;0;0.149946686 551076.8105;7821659.02;-8901.009766;0;0.559561442 551251.8105;7820682.98;-8871.599609;0;0.100655491 550664.3105;7821621.48;-8927.80957;0;0.20410996 549589.3105;7819275.23;-8892.719727;0;0.91200596 552214.3105;7817454.539;-8768.769531;0;0.944836953 550264.3105;7821640.25;-8935.870117;0;0.156448662 552276.8105;7819125.07;-8815.870117;0;0.9965971 550476.8105;7818918.598;-8792.349609;0;0.22948104 551789.3105;7817961.328;-8787.070313;0;0.457006068 552214.3105;7821790.41;-8836.5;0;0.215123696 550189.3105;7818468.117;-8849.099609;0;0.739558884 552014.3105;7817942.559;-8787.790039;0;0.118286253 551401.8105;7821452.551;-8892.490234;0;0.787137271 549326.8105;7816947.75;-8832.05957;0;0.635266549 550064.3105;7818411.809;-8856.429688;0;0.923114889 550364.3105;7817004.059;-8826.459961;0;0.330786927 548989.3105;7818524.43;-8918.110352;0;0.404166765 550589.3105;7818730.898;-8819.790039;0;0.946107545 550601.8105;7821546.398;-8928.830078;0;0.898905772 549676.8105;7818393.039;-8853.19043;0;0.960979256 550426.8105;7819932.18;-8784.75;0;0.869746853 551176.8105;7821621.48;-8903.660156;0;0.688729427 550751.8105;7818261.648;-8811.089844;0;0.369394165 551126.8105;7819294;-8818.490234;0;0.28707956 550926.8105;7818224.109;-8812.429688;0;0.940028791 550964.3105;7820795.598;-8865.209961;0;0.838693985 551464.3105;7819275.23;-8817.790039;0;0.254088749 551439.3105;7817754.859;-8799.299805;0;0.864039932 551864.3105;7821208.539;-8871.860352;0;0.182739763 549714.3105;7817435.77;-8829.320313;0;0.842110755 549276.8105;7817811.168;-8857.290039;0;0.115565528 551351.8105;7816872.668;-8788.349609;0;0.560707974 551826.8105;7816703.738;-8770.969727;0;0.087609486 551989.3105;7817848.711;-8789.490234;0;0.223914099 550264.3105;7821433.781;-8932.259766;0;0.478749098 549589.3105;7817585.93;-8823.230469;0;0.845889177 550701.8105;7820664.211;-8840.780273;0;0.965853542 551876.8105;7820288.809;-8786.950195;0;0.589062379 549601.8105;7817529.617;-8819.709961;0;0.848826588 550614.3105;7819125.07;-8770.25;0;0.001587221 551189.3105;7820157.418;-8833.179688;0;0.855456858 549876.8105;7817623.469;-8852.900391;0;0.181155043 551376.8105;7820645.438;-8871.650391;0;0.561712584 549814.3105;7818486.891;-8840.129883;0;0.564706364 550476.8105;7819894.641;-8786.540039;0;0.326950331 550801.8105;7819950.949;-8807.200195;0;0.627393324 549564.3105;7818618.281;-8856.099609;0;0.316363872 550014.3105;7820551.59;-8870.330078;0;0.961879167 548939.3105;7818317.957;-8919.980469;0;0.578106901 548939.3105;7818805.98;-8930.94043;0;0.553141397 549564.3105;7818805.98;-8863.599609;0;0.643085844 549489.3105;7816760.051;-8837.870117;0;0.788665251 549839.3105;7820044.801;-8881.599609;0;0.381096101 551301.8105;7820682.98;-8871.860352;0;0.626613501 548989.3105;7817567.16;-8849.860352;0;0.496852239 550401.8105;7820007.258;-8781.269531;0;0.302010486 550539.3105;7819894.641;-8785.860352;0;0.111785103 551951.8105;7816966.52;-8770.219727;0;0.347932884 549451.8105;7819162.609;-8898.870117;0;0.57289471 549226.8105;7817022.828;-8831.360352;0;0.447649457 551801.8105;7820270.039;-8795.160156;0;0.910243962 552114.3105;7820401.43;-8791.089844;0;0.88031827 550164.3105;7817848.711;-8856.389648;0;0.567052247 551526.8105;7818543.199;-8792.80957;0;0.749578063 551114.3105;7821827.949;-8911.629883;0;0.974149432 552326.8105;7818580.738;-8821.339844;0;0.096157648 549351.8105;7819838.328;-8926.879883;0;0.599002193 550739.3105;7820758.059;-8863.879883;0;0.309402263 550864.3105;7817079.141;-8805.620117;0;0.548857157 549864.3105;7821264.848;-8943.849609;0;0.373921864 549314.3105;7818073.949;-8874.459961;0;0.007035046 551476.8105;7820607.898;-8864.379883;0;0.826345203 549101.8105;7818242.879;-8904.679688;0;0.556442493 550389.3105;7821396.238;-8920.089844;0;0.252814271 550976.8105;7819988.488;-8818.80957;0;0.370224476 550689.3105;7818862.289;-8812.740234;0;0.459208678 550914.3105;7820213.73;-8805.120117;0;0.282371456 551251.8105;7819087.527;-8818.389648;0;0.163546146 550314.3105;7821827.949;-8945.099609;0;0.911557247 550489.3105;7817942.559;-8831.759766;0;0.365897494 550239.3105;7817473.309;-8829.240234;0;0.657920286 550226.8105;7818524.43;-8844.839844;0;0.641679706 550414.3105;7817510.848;-8829.139648;0;0.332380843 552251.8105;7817942.559;-8799.540039;0;0.378736121 550576.8086;7818374.27;-8821.94043;0;0.138880512 549864.3105;7818862.289;-8848.849609;0;0.165820438 551239.3105;7821790.41;-8898.700195;0;0.351402146 551089.3105;7820720.52;-8867.009766;0;0.913986321 552101.8105;7818430.578;-8811.980469;0;0.592830758 552439.3105;7817229.301;-8714.55957;0;0.239437814 551801.8105;7821189.77;-8875.280273;0;0.911732247 550351.8105;7818805.98;-8815.30957;0;0.146571844 549701.8105;7817172.988;-8820.330078;0;0.201373355 551989.3105;7821002.07;-8859.519531;0;0.744866396 551076.8105;7821058.379;-8899.19043;0;0.663973073 551864.3105;7821114.691;-8866.120117;0;0.081869973 551289.3105;7816891.438;-8789.719727;0;0.146765685 551351.8105;7818693.359;-8798.700195;0;0.05716347 549751.8105;7821396.238;-8956.429688;0;0.394398869 549764.3105;7819312.77;-8857.959961;0;0.775237171 551314.3105;7818242.879;-8792.759766;0;0.278236118 549189.3105;7816891.438;-8850.349609;0;0.651848479 550751.8105;7818937.367;-8808.650391;0;0.128428066 550689.3105;7821827.949;-8933.25;0;0.353656177 550551.8105;7821790.41;-8942.830078;0;0.059920492 549426.8105;7817623.469;-8832.959961;0;0.88413364 552439.3105;7819387.852;-8824.679688;0;0.614382295 550876.8105;7816666.199;-8821.570313;0;0.985982404 551939.3105;7816703.738;-8772.110352;0;0.851255556 549226.8105;7820401.43;-8946.110352;0;0.474819118 551289.3105;7819031.219;-8817.700195;0;0.43352754 550414.3105;7818730.898;-8813.780273;0;0.082411472 552276.8105;7817811.168;-8787.179688;0;0.92062303 551564.3105;7821715.328;-8874.929688;0;0.207191479 550751.8105;7819106.301;-8779.839844;0;0.928937583 550951.8105;7817079.141;-8803.75;0;0.894712473 549426.8105;7816816.359;-8832.919922;0;0.463340707 551139.3105;7818881.059;-8820.049805;0;0.218903214 550801.8105;7818730.898;-8825.540039;0;0.144876092 550801.8105;7818299.188;-8819.269531;0;0.980202093 549501.8105;7821415.008;-8961.959961;0;0.767287868 550201.8105;7821565.168;-8934.639648;0;0.470006032 548989.3105;7818881.059;-8925.150391;0;0.414701513 551464.3105;7821621.48;-8887.629883;0;0.501314769 551639.3105;7820983.297;-8882.169922;0;0.152922459 550026.8105;7819031.219;-8841.389648;0;0.073999208 549926.8105;7817754.859;-8858.790039;0;0.489183957 551014.3105;7819125.07;-8799.679688;0;0.431456867 550726.8105;7821452.551;-8914.660156;0;0.537882303 551764.3105;7818299.188;-8784.230469;0;0.283407264 551539.3105;7818843.52;-8796.179688;0;0.515105374 552439.3105;7821790.41;-8826.280273;0;0.418731159 552214.3105;7818430.578;-8816.799805;0;0.046944661 550801.8105;7820758.059;-8862.889648;0;0.807664687 550226.8105;7817961.328;-8858.509766;0;0.647193386 550976.8105;7818261.648;-8814.94043;0;0.130113147 551589.3105;7819575.551;-8824.509766;0;0.02906127 549701.8105;7817585.93;-8840.370117;0;0.79249756 551076.8105;7820082.34;-8831.429688;0;0.611310437 550614.3105;7820626.668;-8826.160156;0;0.842558501 551476.8105;7821471.32;-8890.950195;0;0.204777146 549851.8105;7820251.27;-8862.139648;0;0.406426854 551326.8105;7820570.359;-8864.530273;0;0.949606903 551901.8105;7817886.25;-8792.209961;0;0.202786575 550964.3105;7820082.34;-8821.969727;0;0.897415422 551026.8105;7819256.457;-8809.929688;0;0.416609202 551914.3105;7818787.207;-8805.179688;0;0.935967076 550576.8086;7818130.258;-8830.490234;0;0.725118096 550764.3105;7818355.5;-8822.370117;0;0.537249579 549351.8105;7820007.258;-8929.429688;0;0.325411059 550014.3105;7818862.289;-8835.230469;0;0.107426 552026.8105;7818712.129;-8807.679688;0;0.501624779 551989.3105;7818712.129;-8805.860352;0;0.683000887 551464.3105;7820814.371;-8875.049805;0;0.431679137 549776.8105;7817454.539;-8839.919922;0;0.077574319 551801.8105;7817698.547;-8797.929688;0;0.698765632 551751.8105;7817585.93;-8796.990234;0;0.734527201 550976.8105;7818055.18;-8803.540039;0;0.221788206 549976.8105;7821508.859;-8965.870117;0;0.625094291 551739.3105;7817135.449;-8787.450195;0;0.856263535 551589.3105;7818336.73;-8794.040039;0;0.82553692 551189.3105;7819049.988;-8818.179688;0;0.567817221 551089.3105;7819012.449;-8815.870117;0;0.055467408 550901.8105;7820664.211;-8842.009766;0;0.877588341 552089.3105;7817079.141;-8742.669922;0;0.566236423 552114.3105;7820758.059;-8841.570313;0;0.39924538 552339.3105;7818543.199;-8821.349609;0;0.934448259 551076.8105;7818374.27;-8805.070313;0;0.771255411 552389.3105;7817754.859;-8777.799805;0;0.24835284 550689.3105;7819068.758;-8786.120117;0;0.992814847 552239.3105;7820551.59;-8808.429688;0;0.531713505 550814.3105;7818055.18;-8802.959961;0;0.676978009 550401.8105;7818280.418;-8848.230469;0;0.043285494 551701.8105;7817417;-8790.959961;0;0.091075447 551189.3105;7818918.598;-8818.200195;0;0.250564982 549789.3105;7816891.438;-8840.660156;0;0.049411377 551076.8105;7821715.328;-8902.759766;0;0.022808541 550401.8105;7818561.969;-8831.419922;0;0.253648099 552326.8105;7820682.98;-8829.790039;0;0.507314233 551201.8105;7816966.52;-8795.269531;0;0.39450611 550351.8105;7818242.879;-8852.620117;0;0.841886494 549076.8105;7817041.598;-8843.80957;0;0.557934509 552264.3105;7818618.281;-8821.379883;0;0.110312664 551026.8105;7820795.598;-8866.370117;0;0.971085928 551564.3105;7821508.859;-8890.669922;0;0.947118535 550789.3105;7820176.188;-8793.030273;0;0.963323392 551639.3105;7820420.199;-8838.150391;0;0.370891468 549714.3105;7818242.879;-8868.55957;0;0.614530745 552039.3105;7821640.25;-8857.179688;0;0.643089968 550864.3105;7820213.73;-8799.509766;0;0.771506331 550576.8086;7817642.238;-8828.150391;0;0.524717863 549576.8105;7819312.77;-8894.099609;0;0.295859564 549326.8105;7818824.75;-8879.969727;0;0.330669338 550589.3105;7818092.719;-8828.070313;0;0.791368959 550701.8105;7818092.719;-8811.280273;0;0.154615501 549939.3105;7818355.5;-8855.200195;0;0.176902313 549501.8105;7821546.398;-8964.259766;0;0.240520645 551764.3105;7818749.668;-8792.660156;0;0.501984013 551701.8105;7818224.109;-8786.599609;0;0.513943813 551826.8105;7818261.648;-8784.219727;0;0.111139919 549789.3105;7820176.188;-8878.650391;0;0.440970984 551751.8105;7818712.129;-8790.580078;0;0.679637889 551464.3105;7819012.449;-8805.879883;0;0.273503067 549764.3105;7820682.98;-8926.519531;0;0.743002554 550326.8105;7821471.32;-8934.150391;0;0.204320528 551289.3105;7821264.848;-8899.049805;0;0.224529679 551101.8105;7820401.43;-8829.990234;0;0.666565448 548939.3105;7818599.508;-8923.280273;0;0.150085575 549676.8105;7818299.188;-8865.820313;0;0.087861731 548914.3105;7817829.938;-8885.259766;0;0.942111584 551639.3105;7821396.238;-8900.519531;0;0.419406217 550639.3105;7818768.438;-8821.450195;0;0.871266271 551751.8105;7821321.16;-8892;0;0.489085991 549601.8105;7817210.527;-8807.379883;0;0.606459442 550914.3105;7819932.18;-8813.160156;0;0.098921054 549264.3105;7817492.078;-8800.769531;0;0.253042579 549239.3105;7817323.148;-8793.290039;0;0.092932122 550739.3105;7821490.09;-8915.700195;0;0.527228073 550651.8105;7818486.891;-8824.530273;0;0.558283364 550164.3105;7817867.48;-8857.179688;0;0.626026293 549764.3105;7818055.18;-8869.450195;0;0.686965432 549614.3105;7817717.32;-8840.209961;0;0.669775344 549789.3105;7818580.738;-8833.349609;0;0.049577171 550864.3105;7818561.969;-8831.790039;0;0.134769512 549851.8105;7818655.82;-8823.679688;0;0.530597947 549976.8105;7819256.457;-8830.379883;0;0.382872036 550451.8105;7817998.871;-8837.410156;0;0.771103027 549651.8105;7819275.23;-8883.160156;0;0.23585729 551864.3105;7821246.078;-8875.089844;0;0.728757774 550901.8105;7821790.41;-8922.370117;0;0.629122076 550976.8105;7818393.039;-8821.679688;0;0.744934118 550751.8105;7818561.969;-8837.410156;0;0.804983275 552089.3105;7818787.207;-8811.19043;0;0.495040889 551901.8105;7817060.367;-8772.330078;0;0.913609156 551914.3105;7821396.238;-8877.620117;0;0.952506472 550814.3105;7819218.918;-8780.169922;0;0.37379487 550214.3105;7820551.59;-8841.650391;0;0.002211902 550739.3105;7821039.609;-8905.110352;0;0.350334126 549514.3105;7819594.32;-8911.389648;0;0.304017521 549001.8105;7817623.469;-8845.120117;0;0.999309615 550614.3105;7821715.328;-8937.349609;0;0.337964158 549376.8105;7818149.027;-8877.450195;0;0.242621007 549914.3105;7818787.207;-8835.160156;0;0.725173863 549564.3105;7820288.809;-8909.950195;0;0.940340071 550176.8105;7817717.32;-8849.370117;0;0.939313746 551339.3105;7821171;-8892.25;0;0.642496187 552451.8105;7817022.828;-8681.580078;0;0.422142376 550914.3105;7818130.258;-8803.240234;0;0.793219406 551651.8105;7818261.648;-8790.700195;0;0.214941593 551414.3105;7821058.379;-8891.019531;0;0.756876353 549189.3105;7817980.098;-8872.320313;0;0.110885402 550239.3105;7818242.879;-8856.209961;0;0.903089664 550689.3105;7818637.047;-8834.089844;0;0.871915043 550664.3105;7821152.23;-8912.740234;0;0.62263568 549864.3105;7821508.859;-8964.360352;0;0.578611061 551701.8105;7821283.617;-8896.080078;0;0.579969987 551926.8105;7821039.609;-8862.44043;0;0.773965714 550389.3105;7817248.07;-8819.769531;0;0.521349025 551489.3105;7818242.879;-8790.570313;0;0.137550183 552126.8105;7817398.227;-8773.660156;0;0.015414611 550164.3105;7821565.168;-8938.019531;0;0.767076979 549064.3105;7816703.738;-8867.629883;0;0.062793461 551901.8105;7816928.98;-8777.469727;0;0.362112567 551239.3105;7821302.391;-8904.009766;0;0.189742288 552026.8105;7819932.18;-8789.30957;0;0.696803351 552001.8105;7816741.277;-8772.830078;0;0.1721152 551076.8105;7821227.309;-8904.889648;0;0.377180236 551126.8105;7817942.559;-8794.169922;0;0.581429606 551376.8105;7818280.418;-8791.030273;0;0.280821251 551964.3105;7820532.82;-8821.129883;0;0.498950751 549564.3105;7818561.969;-8858.900391;0;0.424915946 550301.8105;7819087.527;-8803.299805;0;0.044736828 552214.3105;7818824.75;-8813.330078;0;0.218476465 548951.8105;7818017.637;-8896.200195;0;0.921831039 551251.8105;7818374.27;-8792.209961;0;0.206259785 550264.3105;7821358.699;-8929.879883;0;0.706081146 551901.8105;7816797.59;-8774;0;0.29567814 549564.3105;7818749.668;-8861.200195;0;0.691474367 549864.3105;7820589.129;-8903.040039;0;0.493946631 549739.3105;7817229.301;-8821.490234;0;0.359255443 552389.3105;7817097.91;-8706.589844;0;0.424012277 549826.8105;7817811.168;-8860.889648;0;0.791602367 551201.8105;7820720.52;-8872.709961;0;0.419621607 549651.8105;7821283.617;-8957.490234;0;0.600517319 551226.8105;7821659.02;-8903.669922;0;0.923699973 550089.3105;7821640.25;-8953.919922;0;0.551731353 550126.8105;7818862.289;-8819.219727;0;0.550959921 551701.8105;7818712.129;-8792.599609;0;0.771224986 549001.8105;7818974.91;-8920.5;0;0.135280062 549101.8105;7818111.488;-8895.900391;0;0.026168761 550689.3105;7820176.188;-8770.480469;0;0.479646094 550151.8105;7819744.48;-8825.830078;0;0.893895176 550414.3105;7817679.777;-8832.780273;0;0.428655448 550201.8105;7821339.93;-8935.75;0;0.99519992 551401.8105;7821752.867;-8895.099609;0;0.170388239 551576.8105;7821077.148;-8890.709961;0;0.30987053 550951.8105;7821752.867;-8916.919922;0;0.393863636 551339.3105;7821715.328;-8900.129883;0;0.137098644 550964.3105;7817004.059;-8809.740234;0;0.915708892 551364.3105;7820682.98;-8873.19043;0;0.363078734 550301.8105;7818881.059;-8810.759766;0;0.441523474 549526.8105;7817585.93;-8820.639648;0;0.944452187 551801.8105;7817229.301;-8784.459961;0;0.718273314 550089.3105;7820570.359;-8862.580078;0;0.961092554 552064.3105;7819688.168;-8807.400391;0;0.034272551 552376.8105;7818468.117;-8822.320313;0;0.823681441 550264.3105;7821264.848;-8922.629883;0;0.081785179 550689.3105;7820682.98;-8844.280273;0;0.214377911 551939.3105;7818186.57;-8786.099609;0;0.70283608 551189.3105;7821377.469;-8905.919922;0;0.233647593 550701.8105;7818430.578;-8825.700195;0;0.600942469 550726.8105;7821752.867;-8930.389648;0;0.462609995 550001.8105;7817623.469;-8852.280273;0;0.273753877 551814.3105;7821246.078;-8880.509766;0;0.509702347 550189.3105;7818937.367;-8811.69043;0;0.10653081 550976.8105;7820833.141;-8869.009766;0;0.294498807 551426.8105;7818768.438;-8795.830078;0;0.694466234 551414.3105;7819049.988;-8811.019531;0;0.4865804 549614.3105;7820363.887;-8911.080078;0;0.911331922 551764.3105;7821358.699;-8891.889648;0;0.588000218 550639.3105;7819875.867;-8796.900391;0;0.474908793 552389.3105;7819200.148;-8816.629883;0;0.737314744 549901.8105;7818580.738;-8831.009766;0;0.763895395 549076.8105;7819312.77;-8938.570313;0;0.288209507 551464.3105;7818956.141;-8803.509766;0;0.737998541 552114.3105;7816891.438;-8758.429688;0;0.820120699 549276.8105;7818317.957;-8885.540039;0;0.97491893 549764.3105;7821208.539;-8956.280273;0;0.852483578 550514.3105;7820119.879;-8765.969727;0;0.59253103 550214.3105;7821471.32;-8933.639648;0;0.7853915 549251.8105;7816910.207;-8843.400391;0;0.264250044 552101.8105;7821246.078;-8860.509766;0;0.690870191 549301.8105;7820176.188;-8930.740234;0;0.653732307 550239.3105;7820251.27;-8801.830078;0;0.595433473 550739.3105;7817041.598;-8815.389648;0;0.713313036 549826.8105;7821508.859;-8961.620117;0;0.212842962 550064.3105;7818580.738;-8838.80957;0;0.849058675 550014.3105;7821039.609;-8926.269531;0;0.868275741 549701.8105;7818937.367;-8859.080078;0;0.489193112 551301.8105;7819275.23;-8820.790039;0;0.785043059 552389.3105;7821508.859;-8854.540039;0;0.369905207 549801.8105;7817942.559;-8865.110352;0;0.670177553 549076.8105;7816966.52;-8854.110352;0;0.775703437 549651.8105;7820251.27;-8901.740234;0;0.065905609 551889.3105;7816666.199;-8770.900391;0;0.54916153 552376.8105;7821189.77;-8855.339844;0;0.67038519 549039.3105;7816760.051;-8874.25;0;0.16156155 551639.3105;7818918.598;-8798.650391;0;0.541076067 550926.8105;7820007.258;-8816.879883;0;0.071477499 551376.8105;7817492.078;-8795.75;0;0.598625325 549864.3105;7817829.938;-8863.269531;0;0.590750405 551089.3105;7820495.281;-8836.610352;0;0.135970865 550701.8105;7820833.141;-8879.179688;0;0.344264804 550964.3105;7820926.988;-8885.44043;0;0.134834429 549976.8105;7820908.219;-8919.269531;0;0.334578054 550526.8105;7817923.789;-8830.230469;0;0.507476055 549364.3105;7820232.5;-8929.55957;0;0.055498157 548939.3105;7818149.027;-8907.269531;0;0.666900517 551214.3105;7820514.051;-8850.129883;0;0.620822504 550476.8105;7820664.211;-8816.370117;0;0.777784402 550464.3105;7818374.27;-8836.339844;0;0.119966924 550064.3105;7818055.18;-8864.070313;0;0.113748688 550801.8105;7818637.047;-8833.419922;0;0.981970687 550051.8105;7821264.848;-8939.700195;0;0.534114382 549701.8105;7821152.23;-8962.160156;0;0.344502352 550976.8105;7818805.98;-8815.799805;0;0.402586562 552126.8105;7819894.641;-8781.469727;0;0.218325505 550739.3105;7821321.16;-8924.139648;0;0.279191483 550251.8105;7819049.988;-8803.709961;0;0.269858712 549964.3105;7820776.828;-8901.629883;0;0.750735904 550414.3105;7817736.09;-8833.549805;0;0.570020962 548901.8105;7817942.559;-8894.200195;0;0.230628612 551789.3105;7816928.98;-8787.160156;0;0.624546185 549364.3105;7817961.328;-8872.320313;0;0.64271252 551314.3105;7817698.547;-8795.740234;0;0.971413451 552201.8105;7820138.648;-8785.019531;0;0.925328634 549301.8105;7817360.688;-8786.610352;0;0.424821193 550339.3105;7821020.84;-8897.129883;0;0.426400565 548926.8105;7816928.98;-8859.959961;0;0.761635284 551151.8105;7818280.418;-8798.80957;0;0.474486857 549276.8105;7820044.801;-8933.540039;0;0.655500957 550389.3105;7821715.328;-8945.370117;0;0.966091683 551026.8105;7817060.367;-8805.639648;0;0.77741134 550689.3105;7818468.117;-8827.950195;0;0.739004498 551251.8105;7818693.359;-8809.980469;0;0.662618775 551414.3105;7821546.398;-8894.700195;0;0.439436406 549176.8105;7818805.98;-8903.379883;0;0.401494157 551589.3105;7821114.691;-8891.889648;0;0.561584043 550251.8105;7816797.59;-8829.419922;0;0.532909798 549051.8105;7817754.859;-8863.200195;0;0.024002599 552064.3105;7816928.98;-8761.330078;0;0.800881981 549139.3105;7816928.98;-8852.200195;0;0.832045572 552226.8105;7819725.711;-8809.169922;0;0.393995556 548914.3105;7817923.789;-8892.150391;0;0.668478869 552114.3105;7819725.711;-8808.549805;0;0.529165032 551226.8105;7821339.93;-8905.459961;0;0.486422385 551451.8105;7817848.711;-8798.269531;0;0.823115489 550864.3105;7819256.457;-8794.969727;0;0.385669216 550239.3105;7817116.68;-8815.769531;0;0.342927553 551664.3105;7818224.109;-8787.769531;0;0.748316995 550014.3105;7818449.348;-8851.160156;0;0.133930232 550914.3105;7818468.117;-8830.099609;0;0.958561947 551489.3105;7818599.508;-8790.610352;0;0.694964473 551926.8105;7821433.781;-8878.75;0;0.153094431 550339.3105;7818637.047;-8835.030273;0;0.355852049 552189.3105;7819275.23;-8814.44043;0;0.652672773 551051.8105;7819350.309;-8814.389648;0;0.239039809 552339.3105;7817980.098;-8801.19043;0;0.709605862 549951.8105;7818411.809;-8851.030273;0;0.623780257 548889.3105;7817886.25;-8890.700195;0;0.17540742 550664.3105;7821790.41;-8934.919922;0;0.686676494 551814.3105;7818224.109;-8780.009766;0;0.861087074 549164.3105;7820326.348;-8937.709961;0;0.943955963 549589.3105;7817998.871;-8870.139648;0;0.988625606 552176.8105;7820607.898;-8818.150391;0;0.140877114 550851.8105;7820176.188;-8803.169922;0;0.866056147 552289.3105;7816928.98;-8725.290039;0;0.676806796 549301.8105;7816853.898;-8838.610352;0;0.279774625 549789.3105;7818974.91;-8857.070313;0;0.581463498 551201.8105;7818956.141;-8817.910156;0;0.455288062 549401.8105;7818712.129;-8866.820313;0;0.621857347 551289.3105;7821752.867;-8900.200195;0;0.974299514 549689.3105;7819200.148;-8871.240234;0;0.880303639 551114.3105;7817435.77;-8782.629883;0;0.064965156 552039.3105;7820983.297;-8858.5;0;0.771932317 550839.3105;7821752.867;-8923.25;0;0.171340506 549976.8105;7821827.949;-8962.860352;0;0.935171078 551901.8105;7820420.199;-8805.160156;0;0.000538161 550726.8105;7821283.617;-8925.519531;0;0.754890726 549789.3105;7818449.348;-8846.480469;0;0.876255706 551289.3105;7817398.227;-8785.44043;0;0.142147662 551576.8105;7817811.168;-8799.160156;0;0.115015708 550389.3105;7816666.199;-8832.25;0;0.863916581 549839.3105;7817379.461;-8838.209961;0;0.872755285 549951.8105;7817661.008;-8854.429688;0;0.12190587 552276.8105;7821077.148;-8853.019531;0;0.711016408 551014.3105;7821133.457;-8906.419922;0;0.950945596 552101.8105;7821565.168;-8858.070313;0;0.903437759 551151.8105;7820495.281;-8842.379883;0;0.673553177 551239.3105;7821133.457;-8895.570313;0;0.219199769 550901.8105;7818693.359;-8820.299805;0;0.435759797 551414.3105;7820739.289;-8874.240234;0;0.690143308 551264.3105;7818280.418;-8794.780273;0;0.566172754 549164.3105;7819312.77;-8930.400391;0;0.775684425 551814.3105;7820814.371;-8855.549805;0;0.454164312 550676.8105;7821246.078;-8922.980469;0;0.623749051 550526.8105;7818317.957;-8830.5;0;0.542988523 551851.8105;7818974.91;-8809.280273;0;0.949852258 551964.3105;7817210.527;-8774.360352;0;0.291700386 552164.3105;7816797.59;-8761.150391;0;0.19107251 552451.8105;7818393.039;-8819.669922;0;0.280299891 549576.8105;7820645.438;-8942.19043;0;0.895334773 551276.8105;7820476.508;-8853.650391;0;0.228777476 549539.3105;7817304.379;-8791.780273;0;0.105490113 549239.3105;7818674.59;-8897.530273;0;0.468942656 551201.8105;7819744.48;-8829.540039;0;0.599388253 549251.8105;7817905.02;-8863.44043;0;0.38070771 550351.8105;7819894.641;-8785.099609;0;0.11244399 550476.8105;7820026.027;-8780.519531;0;0.082464568 549251.8105;7819049.988;-8907.860352;0;0.244311461 551751.8105;7817417;-8790.040039;0;0.23652328 550301.8105;7817398.227;-8820.410156;0;0.963132382 550676.8105;7820626.668;-8831.660156;0;0.487543879 552389.3105;7817266.84;-8731.839844;0;0.909162867 548889.3105;7817661.008;-8867.459961;0;0.836330438 549414.3105;7817341.918;-8782.549805;0;0.435172047 549489.3105;7817773.629;-8848.5;0;0.650434362 550964.3105;7821659.02;-8905.839844;0;0.165727592 549626.8105;7818768.438;-8859.110352;0;0.17977572 551964.3105;7817811.168;-8791.150391;0;0.406299183 549389.3105;7819143.84;-8901.280273;0;0.689123815 549451.8105;7816966.52;-8824.459961;0;0.617420776 550339.3105;7820983.297;-8893.080078;0;0.213362439 551514.3105;7819650.629;-8825.580078;0;0.37073117 551714.3105;7816666.199;-8772.650391;0;0.032189256 550676.8105;7820795.598;-8868.019531;0;0.217127557 550839.3105;7820589.129;-8825.900391;0;0.491359547 550764.3105;7818017.637;-8804.200195;0;0.149532376 550276.8105;7817961.328;-8855.200195;0;0.411945358 551301.8105;7821546.398;-8906.129883;0;0.480521691 549476.8105;7820551.59;-8948.820313;0;0.567378461 550001.8105;7820101.109;-8842.049805;0;0.795555183 552176.8105;7817623.469;-8782.650391;0;0.430346765 551014.3105;7817004.059;-8808.30957;0;0.096986217 548889.3105;7817792.398;-8884.969727;0;0.839278851 550326.8105;7821227.309;-8915.049805;0;0.081487237 549751.8105;7816741.277;-8834.570313;0;0.728219105 550189.3105;7818843.52;-8815.790039;0;0.911390883 550901.8105;7820176.188;-8808.370117;0;0.457292332 551239.3105;7819125.07;-8818.360352;0;0.796101146 550989.3105;7817079.141;-8804.580078;0;0.305404391 550164.3105;7821508.859;-8936.75;0;0.681150286 552239.3105;7817905.02;-8795.259766;0;0.411566185 552164.3105;7818468.117;-8816.080078;0;0.399319042 551226.8105;7821827.949;-8900.580078;0;0.320287646 549064.3105;7818355.5;-8911.330078;0;0.102989157 552114.3105;7818393.039;-8811.169922;0;0.89769911 549739.3105;7817172.988;-8823.589844;0;0.151542528 551976.8105;7821039.609;-8860.429688;0;0.591214733 550701.8105;7817116.68;-8810.530273;0;0.168108196 551326.8105;7818205.34;-8792.179688;0;0.305437625 550676.8105;7821846.719;-8933.849609;0;0.008188225 550689.3105;7820495.281;-8801.799805;0;0.477777395 551914.3105;7817998.871;-8785.650391;0;0.750000066 549314.3105;7819969.719;-8929.589844;0;0.132125553 549001.8105;7818918.598;-8921.570313;0;0.194703721 550914.3105;7819012.449;-8803.070313;0;0.001032372 549964.3105;7820551.59;-8881.44043;0;0.778898664 550214.3105;7817998.871;-8858.620117;0;0.159959733 549276.8105;7819988.488;-8932.709961;0;0.098981794 550989.3105;7818017.637;-8801.669922;0;0.715008871 550351.8105;7817172.988;-8816.620117;0;0.753124122 551201.8105;7819012.449;-8818.370117;0;0.893554514 552089.3105;7817116.68;-8749.240234;0;0.63191895 552101.8105;7820795.598;-8844.240234;0;0.779796645 550789.3105;7820063.57;-8804.570313;0;0.718226594 552276.8105;7821246.078;-8857.75;0;0.125828722 550601.8105;7821602.711;-8931.570313;0;0.59397268 552101.8105;7816647.43;-8763.75;0;0.692130938 550364.3105;7820119.879;-8788.419922;0;0.059868019 551739.3105;7817248.07;-8785.75;0;0.104989451 550589.3105;7819237.688;-8762.849609;0;0.524879311 551651.8105;7821114.691;-8888.709961;0;0.584747674 549164.3105;7818561.969;-8906.040039;0;0.663961946 549064.3105;7817679.777;-8845.200195;0;0.425635728 551676.8105;7817022.828;-8786.919922;0;0.708780955 550114.3105;7817661.008;-8853.379883;0;0.572675522 549676.8105;7818430.578;-8850.339844;0;0.113300239 551239.3105;7820926.988;-8885.299805;0;0.683694414 549264.3105;7816947.75;-8838.379883;0;0.456246829 550501.8105;7820082.34;-8771.219727;0;0.506888393 551139.3105;7816928.98;-8799.530273;0;0.969908691 549514.3105;7818881.059;-8863.580078;0;0.978256718 551476.8105;7818918.598;-8801.419922;0;0.242889636 551701.8105;7821189.77;-8889.769531;0;0.737585741 550164.3105;7817923.789;-8859.070313;0;0.531423938 549576.8105;7820345.121;-8911.05957;0;0.114706867 551676.8105;7816891.438;-8789.519531;0;0.540378871 552389.3105;7821846.719;-8822.169922;0;0.943160041 550764.3105;7818299.188;-8815.669922;0;0.690581399 552176.8105;7816985.289;-8734.389648;0;0.907720413 550576.8086;7817848.711;-8828.769531;0;0.592991616 551139.3105;7819256.457;-8817.910156;0;0.690356966 552001.8105;7816891.438;-8770.639648;0;0.57164223 551976.8105;7821771.641;-8848.929688;0;0.957147223 550864.3105;7818411.809;-8832.360352;0;0.998229224 551801.8105;7821565.168;-8877.240234;0;0.589578377 550051.8105;7817998.871;-8863.320313;0;0.338031937 552176.8105;7817867.48;-8788.169922;0;0.856964921 550514.3105;7819162.609;-8762.219727;0;0.115003482 550239.3105;7819913.41;-8809.530273;0;0.938139978 551089.3105;7820063.57;-8831.980469;0;0.252359887 551364.3105;7820589.129;-8867.889648;0;0.856732809 552439.3105;7821508.859;-8855.509766;0;0.775635489 550789.3105;7820532.82;-8815.280273;0;0.807657064 550501.8105;7821377.469;-8911.110352;0;0.94393421 549551.8105;7819725.711;-8909.610352;0;0.448754327 551814.3105;7820964.531;-8862.19043;0;0.244556387 551651.8105;7818599.508;-8792.610352;0;0.029511129 551739.3105;7817285.609;-8784.980469;0;0.00595972 550051.8105;7817585.93;-8848.290039;0;0.048038801 550451.8105;7821302.391;-8912.129883;0;0.654216689 551526.8105;7817923.789;-8794.75;0;0.631364419 549714.3105;7820138.648;-8895.910156;0;0.804566132 549414.3105;7820101.109;-8930.910156;0;0.451704112 551526.8105;7819068.758;-8811.150391;0;0.952070874 552064.3105;7820401.43;-8793.820313;0;0.944367157 551726.8105;7818393.039;-8785.450195;0;0.080686984 550914.3105;7820138.648;-8813.25;0;0.046080006 551839.3105;7818017.637;-8779.740234;0;0.071539898 551014.3105;7820945.758;-8887.139648;0;0.437059247 552176.8105;7819706.938;-8812.379883;0;0.640703084 552326.8105;7821114.691;-8852.349609;0;0.620600146 551351.8105;7819500.469;-8811;0;0.342745399 549314.3105;7817529.617;-8810.19043;0;0.889319934 552114.3105;7817717.32;-8791.049805;0;0.698059991 550364.3105;7819519.238;-8806.179688;0;0.506628537 549126.8105;7817961.328;-8877.860352;0;0.250229653 551214.3105;7817886.25;-8789.879883;0;0.433522234 551364.3105;7820776.828;-8877.379883;0;0.892373991 552326.8105;7820101.109;-8808.839844;0;0.230845237 550901.8105;7821002.07;-8897.469727;0;0.769924708 549989.3105;7817792.398;-8862.089844;0;0.286638939 552214.3105;7818862.289;-8812.790039;0;0.664284854 549351.8105;7817360.688;-8784.799805;0;0.260507249 551376.8105;7818036.41;-8789.269531;0;0.67555303 550739.3105;7820701.75;-8850.429688;0;0.193879978 549701.8105;7821377.469;-8957.620117;0;0.277078014 550601.8105;7821358.699;-8915.009766;0;0.518002266 551301.8105;7820964.531;-8885.570313;0;0.54049014 549864.3105;7821677.789;-8967.070313;0;0.709437439 551464.3105;7817961.328;-8793.129883;0;0.755587618 551839.3105;7816891.438;-8782.450195;0;0.676657959 551614.3105;7821715.328;-8868.969727;0;0.418039457 549451.8105;7818355.5;-8867.669922;0;0.789820294 551351.8105;7821415.008;-8896.589844;0;0.007143039 550114.3105;7821264.848;-8936.969727;0;0.800394545 551289.3105;7821114.691;-8892.480469;0;0.028298277 550551.8105;7820495.281;-8806.230469;0;0.920450157 552076.8105;7819875.867;-8788.320313;0;0.515873498 550164.3105;7817961.328;-8859.19043;0;0.415048851 549264.3105;7817661.008;-8831.929688;0;0.9814754 549839.3105;7818130.258;-8868.740234;0;0.251955693 550464.3105;7818336.73;-8839.30957;0;0.74591255 551064.3105;7819988.488;-8825.980469;0;0.018501031 549151.8105;7817492.078;-8820.429688;0;0.207183862 549726.8105;7818374.27;-8854.650391;0;0.614316231 551851.8105;7817886.25;-8793.400391;0;0.28414496 548926.8105;7819125.07;-8932.599609;0;0.431235023 551826.8105;7821640.25;-8865.400391;0;0.27905695 550639.3105;7819312.77;-8773.269531;0;0.970103617 549001.8105;7817717.32;-8862.280273;0;0.374708805 550239.3105;7818430.578;-8847.759766;0;0.099574744 550651.8105;7817848.711;-8823.360352;0;0.613537456 551989.3105;7820795.598;-8847.519531;0;0.098467938 551964.3105;7817886.25;-8790.700195;0;0.656010396 550476.8105;7819049.988;-8769.830078;0;0.785277182 549589.3105;7817360.688;-8802.040039;0;0.019772465 551626.8105;7817191.758;-8788.200195;0;0.942624397 550801.8105;7819875.867;-8810.469727;0;0.387125649 551751.8105;7820964.531;-8868.879883;0;0.51212053 552339.3105;7816985.289;-8705.219727;0;0.731782029 550014.3105;7818055.18;-8866.389648;0;0.040487616 552126.8105;7817829.938;-8784.429688;0;0.017543004 551701.8105;7820701.75;-8850.44043;0;0.729149464 552289.3105;7817398.227;-8755.80957;0;0.528923983 552439.3105;7819594.32;-8814.410156;0;0.356568062 548939.3105;7817623.469;-8856.950195;0;0.536906423 549439.3105;7820514.051;-8951.330078;0;0.021455734 549539.3105;7817548.387;-8815.55957;0;0.184993318 551014.3105;7820739.289;-8859.080078;0;0.178114188 552239.3105;7818036.41;-8805.830078;0;0.172797255 551726.8105;7816928.98;-8788.799805;0;0.51660588 549039.3105;7818073.949;-8895.55957;0;0.308730261 549376.8105;7818092.719;-8876.179688;0;0.353904974 549439.3105;7817811.168;-8856.169922;0;0.617878215 549114.3105;7817698.547;-8844.19043;0;0.600281107 549664.3105;7817379.461;-8817.089844;0;0.897444427 551564.3105;7819275.23;-8824.110352;0;0.143881885 548889.3105;7818017.637;-8900.110352;0;0.962560612 550814.3105;7820795.598;-8870.679688;0;0.918618503 552326.8105;7819068.758;-8813.849609;0;0.049898704 552214.3105;7817717.32;-8785.80957;0;0.381516743 549764.3105;7820814.371;-8935.540039;0;0.172757747 551314.3105;7818167.797;-8793.339844;0;0.395087633 551764.3105;7820682.98;-8844.150391;0;0.54660825 549764.3105;7817585.93;-8846.370117;0;0.173093935 549389.3105;7817848.711;-8860.259766;0;0.152788373 551314.3105;7818430.578;-8789.280273;0;0.212780328 551126.8105;7819369.078;-8813.80957;0;0.160651608 549451.8105;7818805.98;-8867.30957;0;0.493817556 551876.8105;7818618.281;-8796.990234;0;0.506914546 552064.3105;7816816.359;-8770.769531;0;0.030122314 551701.8105;7820889.449;-8869.669922;0;0.406962117 550139.3105;7818036.41;-8859.419922;0;0.562094562 552276.8105;7819331.539;-8819.669922;0;0.015686685 552189.3105;7817998.871;-8799.44043;0;0.754955884 551389.3105;7819763.25;-8829.240234;0;0.320984621 551364.3105;7819162.609;-8816.879883;0;0.473466093 550964.3105;7820213.73;-8809.830078;0;0.329176963 551714.3105;7817379.461;-8788.929688;0;0.144262741 552439.3105;7817548.387;-8741.719727;0;0.138279522 551751.8105;7821133.457;-8877.700195;0;0.31307221 550739.3105;7819068.758;-8787.780273;0;0.574556593 549501.8105;7817679.777;-8835.169922;0;0.943501816 549914.3105;7820194.961;-8845.589844;0;0.834469617 551764.3105;7820420.199;-8821.639648;0;0.920481439 549214.3105;7817604.699;-8821.05957;0;0.126760389 551589.3105;7820945.758;-8881.290039;0;0.7627298 550126.8105;7818674.59;-8830.200195;0;0.255377758 551514.3105;7821583.941;-8883.980469;0;0.565752433 551701.8105;7820345.121;-8818.419922;0;0.991867362 552389.3105;7819538.008;-8816.719727;0;0.277175209 549189.3105;7817454.539;-8810.349609;0;0.208231701 552001.8105;7816966.52;-8764.299805;0;0.8394881 549539.3105;7816947.75;-8832.509766;0;0.749440721 550826.8105;7817097.91;-8806.860352;0;0.584603386 552389.3105;7820833.141;-8836.320313;0;0.005078826 551526.8105;7820814.371;-8869.230469;0;0.190904095 551976.8105;7818805.98;-8809.25;0;0.420927391 550851.8105;7819950.949;-8808.969727;0;0.747239761 552101.8105;7819387.852;-8812;0;0.180907617 549551.8105;7818655.82;-8854.110352;0;0.41365289 551451.8105;7821490.09;-8890.5;0;0.901495172 550039.3105;7820532.82;-8863.160156;0;0.875411705 551801.8105;7817754.859;-8798.019531;0;0.191994238 548951.8105;7818843.52;-8930.259766;0;0.926912902 549576.8105;7818824.75;-8863.150391;0;0.213157538 549826.8105;7819988.488;-8883.709961;0;0.249093538 549051.8105;7817585.93;-8836.549805;0;0.305950518 550639.3105;7818130.258;-8823.339844;0;0.714058446 550426.8105;7820007.258;-8782.040039;0;0.871641167 551901.8105;7817923.789;-8790.519531;0;0.539617798 552389.3105;7816872.668;-8727;0;0.011017847 549464.3105;7819106.301;-8895.269531;0;0.697718918 549264.3105;7817022.828;-8829.209961;0;0.852635911 551814.3105;7820307.578;-8798.230469;0;0.164209429 552114.3105;7820363.887;-8782.860352;0;0.34547383 550164.3105;7817811.168;-8854.030273;0;0.882133439 551126.8105;7821790.41;-8908.5;0;0.052870259 552276.8105;7818580.738;-8820.870117;0;0.001306197 549301.8105;7819838.328;-8929.69043;0;0.701839735 550901.8105;7817079.141;-8803.900391;0;0.343537301 549876.8105;7821227.309;-8944.80957;0;0.524361474 549326.8105;7818130.258;-8876.280273;0;0.643763683 550751.8105;7819143.84;-8771.719727;0;0.763290821 551489.3105;7820570.359;-8860.919922;0;0.317244725 549114.3105;7818280.418;-8904.889648;0;0.845159638 550526.8105;7818993.68;-8783.05957;0;0.714947911 550376.8105;7821433.781;-8925.379883;0;0.025018811 551464.3105;7821659.02;-8887.360352;0;0.325761286 550964.3105;7820044.801;-8821.259766;0;0.790214237 551876.8105;7820664.211;-8839.230469;0;0.873334229 550326.8105;7821790.41;-8944.55957;0;0.05435717 550489.3105;7817980.098;-8832.780273;0;0.411672962 550239.3105;7818561.969;-8843.919922;0;0.185033859 550401.8105;7817454.539;-8827.240234;0;0.125459771 550426.8105;7818693.359;-8816.290039;0;0.775880568 550589.3105;7818411.809;-8821.330078;0;0.553088819 549226.8105;7818937.367;-8897.730469;0;0.126126947 549851.8105;7818899.828;-8851.669922;0;0.177951209 549876.8105;7820345.121;-8876.389648;0;0.685114864 551076.8105;7820758.059;-8869.519531;0;0.020853397 552451.8105;7817191.758;-8708.679688;0;0.707666766 551814.3105;7821152.23;-8870.05957;0;0.249509067 550364.3105;7818768.438;-8816.830078;0;0.88166607 551801.8105;7821095.918;-8868.169922;0;0.27659518 549164.3105;7817754.859;-8847.719727;0;0.995297567 551364.3105;7818730.898;-8801.169922;0;0.553079256 549751.8105;7819275.23;-8860.030273;0;0.608389041 550751.8105;7818974.91;-8805.55957;0;0.644006996 550539.3105;7821827.949;-8942.459961;0;0.58534127 552389.3105;7819406.617;-8822.589844;0;0.789581939 551939.3105;7816647.43;-8771.55957;0;0.690929168 551326.8105;7819031.219;-8816.900391;0;0.541342956 552289.3105;7817848.711;-8790.019531;0;0.363419541 551564.3105;7821771.641;-8873.799805;0;0.614218646 551764.3105;7820720.52;-8848.759766;0;0.950611249 549426.8105;7816853.898;-8830.580078;0;0.201064474 550801.8105;7818693.359;-8829.610352;0;0.065359243 550814.3105;7818242.879;-8815.419922;0;0.017428354 550964.3105;7819068.758;-8799.360352;0;0.612651534 550214.3105;7821621.48;-8935.44043;0;0.305278732 551651.8105;7821020.84;-8883.820313;0;0.074791316 550039.3105;7819068.758;-8840.950195;0;0.128590588 549926.8105;7817717.32;-8856.25;0;0.720348553 551776.8105;7818336.73;-8782.990234;0;0.703450653 551526.8105;7818899.828;-8799.700195;0;0.987897487 552214.3105;7818393.039;-8814.650391;0;0.119353388 550739.3105;7819988.488;-8802.089844;0;0.193806531 550989.3105;7818299.188;-8817.160156;0;0.722692464 551564.3105;7819613.09;-8825.099609;0;0.713736401 549876.8105;7820270.039;-8860.80957;0;0.108026988 551314.3105;7820607.898;-8867.150391;0;0.827444335 551014.3105;7819294;-8812.419922;0;0.230972158 550026.8105;7818899.828;-8836.040039;0;0.076632869 552039.3105;7818749.668;-8809.120117;0;0.493639171 551976.8105;7818768.438;-8807.110352;0;0.87091779 551751.8105;7817548.387;-8794.910156;0;0.66586302 549989.3105;7821471.32;-8963.94043;0;0.392671446 551601.8105;7818299.188;-8792.240234;0;0.87425913 551076.8105;7819068.758;-8810.820313;0;0.434967964 552276.8105;7818524.43;-8820.290039;0;0.841469631 551101.8105;7818374.27;-8802.009766;0;0.424216855 552376.8105;7817717.32;-8777.75;0;0.728973313 550801.8105;7818017.637;-8804.129883;0;0.282903641 550414.3105;7818317.957;-8845.639648;0;0.155568415 551064.3105;7821752.867;-8908.990234;0;0.717044781 552339.3105;7820720.52;-8832.660156;0;0.478568436 552326.8105;7818637.047;-8821.55957;0;0.700332108 551014.3105;7820833.141;-8868.490234;0;0.391019839 552039.3105;7821677.789;-8853.459961;0;0.430628641 549339.3105;7818787.207;-8877.769531;0;0.245964441 549764.3105;7819913.41;-8884.950195;0;0.290370074 550639.3105;7818092.719;-8822.040039;0;0.40357685 550689.3105;7818130.258;-8814.969727;0;0.338469498 551714.3105;7818261.648;-8787.740234;0;0.365050543 549789.3105;7820213.73;-8874.790039;0;0.261684907 550326.8105;7821508.859;-8937.599609;0;0.069139992 551301.8105;7821227.309;-8896.25;0;0.746041792 551639.3105;7821433.781;-8899.639648;0;0.1198233 549651.8105;7817191.758;-8814.230469;0;0.287157767 549226.8105;7817492.078;-8805.410156;0;0.126291882 549239.3105;7817360.688;-8790.80957;0;0.564389512 549776.8105;7818092.719;-8870;0;0.522030416 549839.3105;7818618.281;-8826.269531;0;0.493807859 550514.3105;7818017.637;-8831.980469;0;0.785069268 551864.3105;7821302.391;-8878.570313;0;0.568383029 550889.3105;7821827.949;-8924.139648;0;0.329067496 550976.8105;7818355.5;-8820.570313;0;0.110794511 550764.3105;7818524.43;-8837.209961;0;0.654841303 551914.3105;7817022.828;-8770.790039;0;0.778943029 550726.8105;7821077.148;-8907.610352;0;0.109751667 549526.8105;7819631.859;-8910.519531;0;0.721229137 549901.8105;7818824.75;-8841.990234;0;0.704858082 550164.3105;7817773.629;-8851.580078;0;0.461146741 550539.3105;7817304.379;-8821.910156;0;0.850461817 550926.8105;7818092.719;-8802.780273;0;0.987103134 551414.3105;7821095.918;-8892.30957;0;0.264961875 550701.8105;7818599.508;-8835.660156;0;0.398161774 550676.8105;7821114.691;-8909.730469;0;0.236552337 549876.8105;7821471.32;-8963.889648;0;0.455118605 551926.8105;7821002.07;-8860.660156;0;0.313002596 550151.8105;7821621.48;-8942.089844;0;0.123247838 551951.8105;7816741.277;-8773.25;0;0.245061278 551064.3105;7821264.848;-8905.400391;0;0.082746217 551939.3105;7820514.051;-8820.169922;0;0.743803936 551264.3105;7818411.809;-8790.349609;0;0.773644484 551901.8105;7816760.051;-8772.879883;0;0.078604031 549564.3105;7818712.129;-8856.969727;0;0.794195387 551914.3105;7817717.32;-8794.55957;0;0.109364261 551239.3105;7821621.48;-8903.110352;0;0.769055149 550151.8105;7821659.02;-8944.150391;0;0.454423939 550139.3105;7818899.828;-8818.849609;0;0.745825594 549051.8105;7818956.141;-8916.240234;0;0.136252285 549151.8105;7818111.488;-8893.080078;0;0.125084903 550214.3105;7821302.391;-8931.599609;0;0.860687942 551351.8105;7821771.641;-8898.070313;0;0.409311296 550664.3105;7821208.539;-8918.969727;0;0.721035147 550964.3105;7821715.328;-8913.929688;0;0.812618628 551389.3105;7821715.328;-8896.700195;0;0.021359404 550314.3105;7818843.52;-8813.570313;0;0.254539955 552039.3105;7818524.43;-8808.429688;0;0.507458607 552051.8105;7819650.629;-8806.480469;0;0.745925335 552439.3105;7818486.891;-8821.200195;0;0.601434091 550264.3105;7821227.309;-8919.330078;0;0.157037719 551939.3105;7818149.027;-8780.980469;0;0.482628083 552376.8105;7817135.449;-8717.19043;0;0.245312656 551176.8105;7821415.008;-8906.269531;0;0.467692038 550664.3105;7821752.867;-8934.620117;0;0.249663714 549989.3105;7817661.008;-8854.44043;0;0.357018544 552201.8105;7818787.207;-8813.950195;0;0.727223842 550201.8105;7818974.91;-8806.549805;0;0.861590438 551364.3105;7818768.438;-8804.889648;0;0.310482337 551426.8105;7819012.449;-8808.30957;0;0.870219227 551901.8105;7816985.289;-8774.980469;0;0.266339073 549564.3105;7818299.188;-8867.400391;0;0.209907392 550589.3105;7819875.867;-8791.379883;0;0.49362971 552376.8105;7819162.609;-8816.330078;0;0.175318411 549889.3105;7818543.199;-8834.200195;0;0.110070749 552126.8105;7816853.898;-8761.490234;0;0.89539486 549289.3105;7818355.5;-8886.730469;0;0.942430946 549751.8105;7821246.078;-8954.05957;0;0.686640006 552439.3105;7817079.141;-8691.19043;0;0.20531739 550201.8105;7821508.859;-8934.05957;0;0.350838667 549001.8105;7819181.379;-8936.459961;0;0.052985989 549689.3105;7818974.91;-8856.660156;0;0.799609913 549389.3105;7818186.57;-8877.839844;0;0.848728074 552389.3105;7821452.551;-8857.620117;0;0.186747884 551976.8105;7819763.25;-8807.549805;0;0.724200927 549076.8105;7816928.98;-8858.669922;0;0.887285903 552101.8105;7818824.75;-8812.169922;0;0.109957675 551889.3105;7816722.508;-8771.589844;0;0.342162149 549064.3105;7816760.051;-8870.269531;0;0.825805845 549876.8105;7817773.629;-8859.55957;0;0.328966357 550064.3105;7817379.461;-8832.790039;0;0.752073979 550951.8105;7820889.449;-8879.55957;0;0.275100484 548951.8105;7818186.57;-8910.679688;0;0.486058145 550064.3105;7818092.719;-8865.519531;0;0.229479513 550639.3105;7818449.348;-8821.299805;0;0.722282968 550964.3105;7818768.438;-8815.660156;0;0.194480331 552126.8105;7819932.18;-8779.379883;0;0.880042341 550251.8105;7819012.449;-8800.400391;0;0.89089132 551814.3105;7820926.988;-8860.299805;0;0.605398328 550401.8105;7817792.398;-8836.370117;0;0.032467823 552226.8105;7820138.648;-8789.839844;0;0.231638204 548876.8105;7816928.98;-8860.299805;0;0.030992689 551476.8105;7819049.988;-8807.830078;0;0.693926896 549301.8105;7820063.57;-8932.769531;0;0.537988256 550376.8105;7821771.641;-8945.089844;0;0.837182503 551251.8105;7818730.898;-8813.230469;0;0.91983804 551401.8105;7821602.711;-8894.919922;0;0.872544843 549114.3105;7818824.75;-8911.070313;0;0.576707059 552051.8105;7816966.52;-8758.320313;0;0.988312002 552164.3105;7819744.48;-8807.660156;0;0.171889692 551576.8105;7820401.43;-8843.839844;0;0.976874004 552226.8105;7819275.23;-8816.360352;0;0.517916489 552126.8105;7819763.25;-8803.780273;0;0.454762456 550876.8105;7819294;-8800.530273;0;0.926734665 550414.3105;7818524.43;-8831.379883;0;0.201032578 550001.8105;7818486.891;-8845.759766;0;0.229774294 549801.8105;7818937.367;-8856.679688;0;0.807389674 551301.8105;7821715.328;-8901.679688;0;0.046433824 552226.8105;7820514.051;-8803.150391;0;0.336516674 550401.8105;7816684.969;-8833.509766;0;0.187811403 549051.8105;7818317.957;-8911.799805;0;0.100246776 551001.8105;7821171;-8906.839844;0;0.057815508 551226.8105;7821171;-8898.290039;0;0.670260265 550914.3105;7818730.898;-8817.419922;0;0.823315631 551251.8105;7818317.957;-8794.459961;0;0.60923122 549664.3105;7818092.719;-8867.540039;0;0.460032705 549776.8105;7817492.078;-8843.169922;0;0.222294979 551289.3105;7821602.711;-8902.429688;0;0.491815114 552439.3105;7818430.578;-8820.709961;0;0.220005572 551764.3105;7817379.461;-8787.540039;0;0.90485452 550751.8105;7818393.039;-8825.919922;0;0.749269852 549414.3105;7819143.84;-8900.280273;0;0.628593566 551514.3105;7819688.168;-8827.580078;0;0.355064556 550751.8105;7818055.18;-8802.910156;0;0.681322494 551014.3105;7820082.34;-8827.019531;0;0.367435619 550389.3105;7820758.059;-8845.089844;0;0.840061547 550276.8105;7818017.637;-8854.209961;0;0.158253558 552176.8105;7817661.008;-8785.80957;0;0.114697805 551389.3105;7820570.359;-8866.69043;0;0.272033015 550501.8105;7821339.93;-8911.759766;0;0.35155938 549051.8105;7820326.348;-8943.169922;0;0.784261703 549526.8105;7819688.168;-8910.980469;0;0.641261208 551351.8105;7819538.008;-8813.759766;0;0.261860467 549989.3105;7817998.871;-8865.370117;0;0.802229539 549414.3105;7820138.648;-8930.669922;0;0.207073029 552326.8105;7818862.289;-8816.009766;0;0.834095029 549476.8105;7821377.469;-8959.959961;0;0.304951853 550689.3105;7821020.84;-8902.269531;0;0.377089091 549114.3105;7817848.711;-8864.919922;0;0.72524335 549989.3105;7821583.941;-8967.969727;0;0.471011957 551126.8105;7818843.52;-8820.669922;0;0.229587341 550364.3105;7819500.469;-8807.120117;0;0.188753359 551139.3105;7817886.25;-8794.339844;0;0.166704924 550901.8105;7820964.531;-8893.200195;0;0.981430759 549901.8105;7819425.391;-8843.379883;0;0.714286257 552214.3105;7818899.828;-8813.200195;0;0.876823399 549351.8105;7817304.379;-8790.099609;0;0.048009247 550676.8105;7820701.75;-8847.139648;0;0.279081746 551976.8105;7819087.527;-8817.179688;0;0.517959558 550626.8105;7821339.93;-8919.469727;0;0.464703336 549451.8105;7818299.188;-8869.370117;0;0.115420237 549589.3105;7820138.648;-8916.389648;0;0.683112552 549764.3105;7821433.781;-8958.69043;0;0.057549552 549501.8105;7816835.129;-8838.650391;0;0.075588042 549339.3105;7818655.82;-8880.490234;0;0.44944234 551064.3105;7820007.258;-8827.490234;0;0.964204018 551064.3105;7821095.918;-8903.669922;0;0.442070291 548926.8105;7819143.84;-8934.950195;0;0.152614416 551826.8105;7821659.02;-8863.05957;0;0.940115182 550239.3105;7818468.117;-8846.320313;0;0.002190888 550626.8105;7817829.938;-8825.730469;0;0.413862893 549114.3105;7818599.508;-8913.110352;0;0.382356392 550801.8105;7819838.328;-8811.599609;0;0.20179287 552439.3105;7818824.75;-8816.089844;0;0.551340008 549764.3105;7817661.008;-8848.219727;0;0.655897082 549064.3105;7819200.148;-8935.120117;0;0.640298846 549426.8105;7820551.59;-8950.790039;0;0.654824833 551039.3105;7820720.52;-8859.580078;0;0.789168386 550226.8105;7817510.848;-8833.490234;0;0.629434838 549364.3105;7818055.18;-8876.120117;0;0.583010897 549376.8105;7817585.93;-8824.950195;0;0.833925929 551589.3105;7819294;-8824.209961;0;0.863703234 550701.8105;7818899.828;-8810.459961;0;0.36050061 550814.3105;7820814.371;-8874.110352;0;0.101511388 549776.8105;7820776.828;-8930.80957;0;0.859756896 551689.3105;7820851.91;-8866.740234;0;0.337522491 549451.8105;7818824.75;-8868.459961;0;0.644043302 551864.3105;7818655.82;-8795.450195;0;0.700251276 551639.3105;7821246.078;-8898.519531;0;0.43177109 550139.3105;7818055.18;-8860;0;0.626556618 551026.8105;7819087.527;-8803.830078;0;0.007998653 551389.3105;7819725.711;-8825.990234;0;0.757592826 552451.8105;7817585.93;-8749.730469;0;0.972017759 549489.3105;7817717.32;-8841.589844;0;0.323031117 550676.8105;7820739.289;-8855.219727;0;0.85776437 550039.3105;7817454.539;-8836.299805;0;0.350624842 551126.8105;7818637.047;-8816.650391;0;0.876560929 549076.8105;7817323.148;-8837.160156;0;0.796669634 551551.8105;7818543.199;-8792.200195;0;0.712553902 549501.8105;7818224.109;-8873.490234;0;0.482770989 551626.8105;7817079.141;-8789.530273;0;0.583463297 551789.3105;7817323.148;-8783.549805;0;0.426355671 551926.8105;7820626.668;-8835.370117;0;0.603044922 549476.8105;7817567.16;-8819.459961;0;0.581119077 551564.3105;7817980.098;-8789.959961;0;0.66261771 549714.3105;7817473.309;-8833.339844;0;0.448404819 551951.8105;7816928.98;-8772.950195;0;0.318291917 552339.3105;7817360.688;-8746.299805;0;0.54725974 549139.3105;7820288.809;-8938.910156;0;0.14500686 550626.8105;7821246.078;-8919.070313;0;0.934324014 551314.3105;7820645.438;-8869.849609;0;0.357604381 551201.8105;7819181.379;-8817.790039;0;0.357263459 550914.3105;7821659.02;-8913.330078;0;0.631352798 550151.8105;7819800.789;-8822.150391;0;0.959047195 548951.8105;7818355.5;-8919.660156;0;0.649742293 551139.3105;7820157.418;-8830.290039;0;0.734495604 549651.8105;7817773.629;-8851.540039;0;0.42082374 549064.3105;7817867.48;-8874.160156;0;0.687473293 550314.3105;7820044.801;-8795.830078;0;0.24166616 552214.3105;7820964.531;-8852.410156;0;0.715272293 550339.3105;7817567.16;-8831.339844;0;0.199728897 549276.8105;7818261.648;-8883.070313;0;0.861291415 549451.8105;7818768.438;-8864.639648;0;0.726492394 549051.8105;7818149.027;-8901.969727;0;0.622653048 549639.3105;7821321.16;-8957.889648;0;0.555776922 550551.8105;7821358.699;-8911.040039;0;0.195481458 551139.3105;7820889.449;-8882.049805;0;0.70143502 551826.8105;7820626.668;-8836.150391;0;0.307043812 551764.3105;7818167.797;-8778.700195;0;0.978297191 550739.3105;7819932.18;-8804.889648;0;0.669164704 550489.3105;7821602.711;-8938.129883;0;0.947051029 549889.3105;7820082.34;-8869.990234;0;0.320580609 551301.8105;7820926.988;-8884.549805;0;0.829271502 550526.8105;7819969.719;-8781.839844;0;0.043809487 549639.3105;7819143.84;-8875.830078;0;0.03713065 549489.3105;7818017.637;-8871.719727;0;0.343564928 550614.3105;7820476.508;-8800.69043;0;0.901216253 551614.3105;7817698.547;-8802.320313;0;0.636812064 549676.8105;7819031.219;-8858.5;0;0.703032248 550314.3105;7819125.07;-8806.69043;0;0.274262288 552151.8105;7819181.379;-8813.629883;0;0.414339235 549926.8105;7817961.328;-8865.139648;0;0.054350706 551864.3105;7817754.859;-8795.709961;0;0.499686274 551789.3105;7817079.141;-8782.259766;0;0.103732994 548989.3105;7818073.949;-8897.730469;0;0.636366126 551126.8105;7817998.871;-8795.5;0;0.444270861 551626.8105;7816816.359;-8790.459961;0;0.817722211 549089.3105;7817417;-8828.360352;0;0.204027432 550414.3105;7820645.438;-8812.280273;0;0.21388451 550314.3105;7819218.918;-8812.320313;0;0.664020627 549151.8105;7818768.438;-8908.889648;0;0.543772235 550489.3105;7820495.281;-8807.19043;0;0.835665877 549301.8105;7817454.539;-8790.30957;0;0.071537175 552389.3105;7816647.43;-8736.019531;0;0.578944703 551639.3105;7821283.617;-8899.830078;0;0.548631264 549589.3105;7820194.961;-8913.349609;0;0.379884084 549389.3105;7817661.008;-8839.480469;0;0.649884614 551464.3105;7821302.391;-8899.94043;0;0.077897597 550889.3105;7821189.77;-8908.639648;0;0.71232945 552001.8105;7817022.828;-8758.169922;0;0.435998436 551851.8105;7819519.238;-8820.740234;0;0.319257062 551726.8105;7819725.711;-8825.269531;0;0.019111447 551714.3105;7820833.141;-8863.69043;0;0.485748945 550164.3105;7817604.699;-8848.19043;0;0.422743688 551351.8105;7821077.148;-8890.25;0;0.022108531 549001.8105;7818299.188;-8915.709961;0;0.177402142 552126.8105;7817360.688;-8772.200195;0;0.741692853 550639.3105;7817004.059;-8825.179688;0;0.156127706 550901.8105;7821471.32;-8911.790039;0;0.997136492 551701.8105;7818749.668;-8794.230469;0;0.096022368 551976.8105;7819125.07;-8817.950195;0;0.704611432 549539.3105;7820926.988;-8954.769531;0;0.286653158 550864.3105;7818937.367;-8808.05957;0;0.415353888 549614.3105;7816947.75;-8836.099609;0;0.650165765 549364.3105;7817623.469;-8831.620117;0;0.176973333 551939.3105;7816816.359;-8775.099609;0;0.325311871 550801.8105;7819988.488;-8806.530273;0;0.552467394 549751.8105;7819162.609;-8854.19043;0;0.334540192 552439.3105;7816703.738;-8725;0;0.076765475 551701.8105;7821246.078;-8894.669922;0;0.280297883 551014.3105;7821771.641;-8915.179688;0;0.40144313 549314.3105;7817567.16;-8818.730469;0;0.929326722 549476.8105;7820926.988;-8959.089844;0;0.578044262 551551.8105;7817698.547;-8803.330078;0;0.694447398 551189.3105;7818468.117;-8797.240234;0;0.733495211 550876.8105;7818130.258;-8803.339844;0;0.850457382 549064.3105;7819237.688;-8937.389648;0;0.703108314 549164.3105;7818299.188;-8900.599609;0;0.475413375 550239.3105;7818205.34;-8857.379883;0;0.000109599 551201.8105;7818205.34;-8797.650391;0;0.260095663 549764.3105;7817623.469;-8846.990234;0;0.945149362 551139.3105;7819125.07;-8813.089844;0;0.571013714 550851.8105;7820701.75;-8852.169922;0;0.906559457 550739.3105;7820138.648;-8787.889648;0;0.445986829 552439.3105;7818768.438;-8819.070313;0;0.470399384 551576.8105;7821433.781;-8898.830078;0;0.842589183 551701.8105;7819294;-8820.169922;0;0.339061273 550201.8105;7818730.898;-8822.639648;0;0.501107182 551639.3105;7821302.391;-8900.139648;0;0.064399669 551876.8105;7818336.73;-8793.759766;0;0.219156621 550089.3105;7819087.527;-8834.509766;0;0.111528164 551551.8105;7818317.957;-8793.139648;0;0.71585077 551101.8105;7818017.637;-8798.139648;0;0.31858281 550426.8105;7819012.449;-8775.910156;0;0.815521308 551326.8105;7817792.398;-8793.929688;0;0.476295492 550689.3105;7818186.57;-8814.370117;0;0.531319802 551839.3105;7821621.48;-8867.639648;0;0.730825395 550764.3105;7821546.398;-8916.879883;0;0.888376509 550526.8105;7817379.461;-8827.099609;0;0.793337686 549889.3105;7818186.57;-8864.950195;0;0.360202857 551301.8105;7818674.59;-8803.209961;0;0.946311846 551576.8105;7819237.688;-8823.900391;0;0.41226756 549589.3105;7819669.398;-8902.780273;0;0.924120902 549551.8105;7817736.09;-8840.849609;0;0.225835481 552139.3105;7818712.129;-8812.049805;0;0.617712948 551864.3105;7820382.66;-8803.379883;0;0.785859696 549064.3105;7818073.949;-8894.410156;0;0.106844665 552114.3105;7817154.219;-8754.959961;0;0.120850571 549351.8105;7818618.281;-8879.459961;0;0.473439665 550801.8105;7819181.379;-8772.969727;0;0.116254748 551901.8105;7817135.449;-8778.730469;0;0.725059757 551889.3105;7817323.148;-8779.629883;0;0.637885745 549476.8105;7816853.898;-8835.870117;0;0.105687989 552226.8105;7816928.98;-8735.30957;0;0.981411453 550589.3105;7817717.32;-8828.040039;0;0.632614158 550951.8105;7820626.668;-8830.459961;0;0.866941284 549589.3105;7820176.188;-8914.169922;0;0.24709309 550401.8105;7817829.938;-8837.179688;0;0.143500678 549964.3105;7818317.957;-8858.469727;0;0.654044937 550501.8105;7817473.309;-8828.830078;0;0.715924191 551439.3105;7820570.359;-8865.110352;0;0.65204715 550564.3105;7820063.57;-8772.629883;0;0.815822124 551826.8105;7819331.539;-8813.919922;0;0.368278697 552276.8105;7820645.438;-8822.179688;0;0.741552132 552451.8105;7819556.777;-8814.94043;0;0.644869533 552301.8105;7817454.539;-8756.360352;0;0.015280167 551351.8105;7821659.02;-8897.429688;0;0.29641516 549001.8105;7817923.789;-8884.980469;0;0.743654659 549814.3105;7821302.391;-8946.209961;0;0.59189833 550864.3105;7818524.43;-8833.379883;0;0.102979977 549901.8105;7818730.898;-8826.120117;0;0.647163681 551576.8105;7820851.91;-8870.75;0;0.104976401 549901.8105;7819462.93;-8845.669922;0;0.650849974 551501.8105;7817773.629;-8799.299805;0;0.010523252 550414.3105;7819087.527;-8781.910156;0;0.972251163 551039.3105;7818242.879;-8807.820313;0;0.493254685 549426.8105;7821659.02;-8966.839844;0;0.854375211 550289.3105;7818261.648;-8854.009766;0;0.261054308 549551.8105;7818055.18;-8871.570313;0;0.880684322 548989.3105;7817473.309;-8850.530273;0;0.327362815 549989.3105;7821546.398;-8966.469727;0;0.41036473 551701.8105;7821640.25;-8874.94043;0;0.255393505 551164.3105;7819669.398;-8822.740234;0;0.85691141 551751.8105;7819237.688;-8815.599609;0;0.881731022 550676.8105;7821058.379;-8904.959961;0;0.805461171 549539.3105;7816760.051;-8836.860352;0;0.391160576 550501.8105;7817567.16;-8828.860352;0;0.042523139 551251.8105;7820645.438;-8868.280273;0;0.498402407 552326.8105;7818899.828;-8816.299805;0;0.384954107 550651.8105;7818805.98;-8818.089844;0;0.17278025 550726.8105;7821640.25;-8922.900391;0;0.364635697 549351.8105;7818017.637;-8875.769531;0;0.650551428 551426.8105;7818430.578;-8792.400391;0;0.279394122 549464.3105;7818918.598;-8874.839844;0;0.462722935 549489.3105;7816910.207;-8832.219727;0;0.259869515 551176.8105;7821133.457;-8896.339844;0;0.703915747 550289.3105;7817886.25;-8851.540039;0;0.60058419 550201.8105;7821659.02;-8938.740234;0;0.937270622 549289.3105;7816741.277;-8837.290039;0;0.555091939 551389.3105;7817792.398;-8797.160156;0;0.879923643 549989.3105;7817961.328;-8864.450195;0;0.998342011 552264.3105;7819087.527;-8813.269531;0;0.528166288 550639.3105;7817097.91;-8813.900391;0;0.088154101 549389.3105;7817417;-8784.480469;0;0.874093627 549051.8105;7820288.809;-8945.290039;0;0.830012235 550851.8105;7820119.879;-8808.450195;0;0.77640919 550464.3105;7818956.141;-8783.200195;0;0.84152075 551926.8105;7821846.719;-8843.679688;0;0.391889016 550589.3105;7819087.527;-8774.769531;0;0.816216421 549651.8105;7817623.469;-8836.519531;0;0.982841717 550576.8086;7817060.367;-8818.25;0;0.982640502 550739.3105;7820157.418;-8784.25;0;0.027678336 550501.8105;7821246.078;-8906.419922;0;0.547395664 550576.8086;7817154.219;-8811.179688;0;0.619848794 550289.3105;7817229.301;-8818.05957;0;0.070327749 549826.8105;7817661.008;-8851.519531;0;0.706940559 549464.3105;7817454.539;-8796.620117;0;0.065609459 549714.3105;7817285.609;-8817.139648;0;0.379711848 550164.3105;7818468.117;-8850.709961;0;0.699703416 550101.8105;7817792.398;-8856.709961;0;0.689584298 550914.3105;7818186.57;-8808.040039;0;0.949858307 549439.3105;7816666.199;-8831.919922;0;0.562224345 550101.8105;7817923.789;-8860.820313;0;0.794109226 551401.8105;7821490.09;-8894.139648;0;0.592409957 550401.8105;7820908.219;-8871.889648;0;0.339272281 551101.8105;7819988.488;-8827.950195;0;0.989930647 551989.3105;7820232.5;-8775.639648;0;0.611200244 549339.3105;7816985.289;-8827.980469;0;0.181910985 549226.8105;7817867.48;-8859.450195;0;0.699410613 552101.8105;7820908.219;-8852.610352;0;0.415316529 551876.8105;7820758.059;-8847.400391;0;0.520535818 549651.8105;7817341.918;-8812.219727;0;0.914847952 549751.8105;7818242.879;-8865.950195;0;0.944698268 551939.3105;7820307.578;-8782.75;0;0.064187401 550051.8105;7817698.547;-8856.80957;0;0.087425107 549814.3105;7819181.379;-8846.570313;0;0.471629751 549364.3105;7817473.309;-8794.860352;0;0.174834677 549651.8105;7817529.617;-8827.540039;0;0.481231542 550026.8105;7817923.789;-8863.070313;0;0.824385817 551814.3105;7820345.121;-8803.019531;0;0.919466637 552001.8105;7817116.68;-8764.080078;0;0.837794422 550339.3105;7817041.598;-8820.349609;0;0.502197742 549751.8105;7817886.25;-8863.639648;0;0.452803749 549476.8105;7820457.738;-8947.740234;0;0.0352519 552276.8105;7820026.027;-8803.280273;0;0.607609554 549001.8105;7818486.891;-8917.129883;0;0.772613359 550251.8105;7820119.879;-8804.030273;0;0.045247791 551751.8105;7817961.328;-8789.679688;0;0.108907359 549351.8105;7818956.141;-8892.459961;0;0.067941342 550526.8105;7818355.5;-8828.589844;0;0.629461805 552439.3105;7821208.539;-8854.94043;0;0.978511514 548889.3105;7819049.988;-8927.040039;0;0.685663815 551939.3105;7820739.289;-8844.55957;0;0.287709598 550589.3105;7818693.359;-8822.05957;0;0.504869406 549501.8105;7818712.129;-8857.969727;0;0.999223839 550001.8105;7820232.5;-8828.929688;0;0.90143678 551476.8105;7820514.051;-8860.910156;0;0.832809676 552151.8105;7821715.328;-8843.620117;0;0.712214353 551489.3105;7820964.531;-8884.610352;0;0.110531527 552339.3105;7816722.508;-8741.94043;0;0.567920361 549464.3105;7817548.387;-8815.910156;0;0.724272046 551501.8105;7819237.688;-8821.55957;0;0.544275601 550264.3105;7821321.16;-8927.790039;0;0.615549455 551864.3105;7821171;-8868.570313;0;0.816543944 549776.8105;7817736.09;-8852.990234;0;0.478395228 549226.8105;7820345.121;-8938.410156;0;0.170785974 550701.8105;7818036.41;-8811.509766;0;0.967731948 552439.3105;7820251.27;-8815.150391;0;0.690167719 549439.3105;7817473.309;-8797.94043;0;0.299696163 550476.8105;7817623.469;-8830.429688;0;0.932434547 550489.3105;7819237.688;-8767.959961;0;0.371635106 550339.3105;7817811.168;-8840.980469;0;0.376733419 549814.3105;7816891.438;-8841.040039;0;0.842352319 552301.8105;7821302.391;-8856.879883;0;0.45457938 551201.8105;7818524.43;-8802.120117;0;0.926476461 552076.8105;7816722.508;-8768.089844;0;0.365643541 549439.3105;7817379.461;-8783.400391;0;0.630228664 551751.8105;7818449.348;-8785.019531;0;0.216508903 552351.8105;7817942.559;-8797.280273;0;0.779733566 550126.8105;7818411.809;-8855.179688;0;0.866121714 551376.8105;7818411.809;-8790.490234;0;0.590833629 551489.3105;7821396.238;-8897.929688;0;0.594625933 548889.3105;7818768.438;-8932.240234;0;0.347759214 550351.8105;7817435.77;-8822.429688;0;0.927429129 550601.8105;7816722.508;-8841.469727;0;0.013179167 549689.3105;7817829.938;-8860.900391;0;0.672389199 552439.3105;7820889.449;-8835.570313;0;0.559873385 549301.8105;7817285.609;-8796.610352;0;0.443714999 549214.3105;7818111.488;-8884.860352;0;0.487397577 549576.8105;7819068.758;-8878.080078;0;0.662968995 548889.3105;7818111.488;-8905.959961;0;0.678687155 550139.3105;7817079.141;-8817.209961;0;0.414954309 549939.3105;7817417;-8841;0;0.388008959 550814.3105;7818393.039;-8830.129883;0;0.472460634 551964.3105;7819857.098;-8806.490234;0;0.756745247 549926.8105;7819218.918;-8836.870117;0;0.721030271 552401.8105;7820176.188;-8808.519531;0;0.4631548 549451.8105;7818599.508;-8865.860352;0;0.361256031 551239.3105;7816835.129;-8789.009766;0;0.701252628 549814.3105;7817773.629;-8857.360352;0;0.298937868 550914.3105;7819500.469;-8802.089844;0;0.589857749 552276.8105;7817060.367;-8717.75;0;0.274161175 549926.8105;7821433.781;-8962.860352;0;0.378717759 552339.3105;7817604.699;-8764.830078;0;0.767416422 550289.3105;7817623.469;-8837.040039;0;0.115591115 550264.3105;7819181.379;-8816.799805;0;0.055076798 551126.8105;7821095.918;-8896.410156;0;0.726464413 551301.8105;7819218.918;-8819.200195;0;0.115161828 552114.3105;7817435.77;-8776.330078;0;0.434141302 549026.8105;7817435.77;-8841.769531;0;0.732936386 552439.3105;7819237.688;-8819.19043;0;0.497256129 552339.3105;7819857.098;-8791.19043;0;0.313035772 550039.3105;7819575.551;-8825.990234;0;0.622070846 551089.3105;7818224.109;-8800.990234;0;0.085611075 550676.8105;7821415.008;-8914.580078;0;0.673158512 550014.3105;7818618.281;-8831.30957;0;0.495195833 549301.8105;7817961.328;-8870.410156;0;0.178973747 551014.3105;7821583.941;-8900.889648;0;0.994864538 551426.8105;7818242.879;-8790.740234;0;0.882663419 550914.3105;7820758.059;-8863.769531;0;0.313365498 549514.3105;7819087.527;-8887.5;0;0.112303516 548889.3105;7818637.047;-8927.830078;0;0.7673129 549001.8105;7817529.617;-8849.700195;0;0.646005271 551026.8105;7818580.738;-8812.730469;0;0.952013128 551976.8105;7819669.398;-8806.5;0;0.906981206 552101.8105;7819275.23;-8814.259766;0;0.534356201 549701.8105;7821246.078;-8957.360352;0;0.610698723 550439.3105;7821546.398;-8937.719727;0;0.748247049 552039.3105;7821321.16;-8870.030273;0;0.850831682 551164.3105;7820945.758;-8884.969727;0;0.213781174 550814.3105;7818899.828;-8809.349609;0;0.839645948 550101.8105;7821433.781;-8946.870117;0;0.901420726 550864.3105;7818224.109;-8814.269531;0;0.438091861 550764.3105;7816928.98;-8823.589844;0;0.110156982 549551.8105;7821771.641;-8977.719727;0;0.370650243 550201.8105;7817041.598;-8815.450195;0;0.747193155 549589.3105;7821208.539;-8961.980469;0;0.833974479 552051.8105;7818149.027;-8796.879883;0;0.08335383 549926.8105;7820288.809;-8856.839844;0;0.514072151 551126.8105;7821583.941;-8904.30957;0;0.824395906 552176.8105;7820495.281;-8799.980469;0;0.293525075 548889.3105;7818280.418;-8920.5;0;0.658904382 551026.8105;7818899.828;-8816.799805;0;0.49198201 550914.3105;7819049.988;-8798.200195;0;0.570451219 549614.3105;7818261.648;-8870.099609;0;0.120326427 552326.8105;7819369.078;-8821.150391;0;0.088829071 552176.8105;7817510.848;-8774.639648;0;0.449901348 551964.3105;7817079.141;-8765.299805;0;0.618229267 552326.8105;7817510.848;-8750.25;0;0.109386228 551701.8105;7820044.801;-8799.330078;0;0.184827649 550839.3105;7821677.789;-8916.929688;0;0.220159468 551626.8105;7819162.609;-8818.570313;0;0.370170515 552439.3105;7816816.359;-8727.209961;0;0.031455167 550926.8105;7819556.777;-8804.780273;0;0.216847819 550676.8105;7820420.199;-8783.5;0;0.750493027 549601.8105;7821602.711;-8963.740234;0;0.460789827 550189.3105;7818881.059;-8815.429688;0;0.632327375 549189.3105;7817304.379;-8808.650391;0;0.288687831 549376.8105;7816891.438;-8827.820313;0;0.803829372 549339.3105;7817736.09;-8849.929688;0;0.833114008 551726.8105;7821696.559;-8864.910156;0;0.360185944 549589.3105;7821020.84;-8954;0;0.035072736 549864.3105;7819237.688;-8841.629883;0;0.882680273 549714.3105;7818036.41;-8867.55957;0;0.203960185 548939.3105;7819106.301;-8929.75;0;0.988033023 549401.8105;7819012.449;-8894.269531;0;0.783185458 550839.3105;7821095.918;-8904.629883;0;0.590744444 552226.8105;7817792.398;-8785.009766;0;0.836835833 552176.8105;7821339.93;-8862.959961;0;0.576307596 550364.3105;7821264.848;-8914.799805;0;0.793510474 550401.8105;7820288.809;-8796.55957;0;0.828739017 549439.3105;7820251.27;-8927.370117;0;0.512603344 552051.8105;7819200.148;-8814.94043;0;0.886318515 550539.3105;7818899.828;-8802.290039;0;0.241185991 550589.3105;7820194.961;-8766.25;0;0.87998949 549276.8105;7818768.438;-8888.849609;0;0.528850075 549389.3105;7820983.297;-8961.240234;0;0.716767337 550476.8105;7817341.918;-8826.570313;0;0.785559632 551689.3105;7817886.25;-8800.509766;0;0.083538464 550289.3105;7818655.82;-8835.69043;0;0.105408408 550401.8105;7820063.57;-8780.389648;0;0.865447291 551526.8105;7820889.449;-8876.929688;0;0.023365813 551126.8105;7821696.559;-8901.990234;0;0.165700959 549801.8105;7821846.719;-8971.349609;0;0.810081283 549989.3105;7821377.469;-8955.769531;0;0.247991053 551951.8105;7817248.07;-8774.599609;0;0.205663572 552014.3105;7817604.699;-8785.620117;0;0.204421905 551839.3105;7817135.449;-8782.820313;0;0.911319673 549776.8105;7820570.359;-8917.860352;0;0.963440169 549776.8105;7820363.887;-8895.150391;0;0.014830084 550126.8105;7821189.77;-8935.490234;0;0.892561931 ================================================ FILE: examples/data/input_data/Claudius/BPoints.csv ================================================ X;Y;Z;Strati;Cutoff 549151.8105;7819763.25;-9153.959961;60;0.655819609 551451.8105;7818430.578;-9022.740234;60;0.500877432 551739.3105;7819819.559;-9021.700195;60;0.564926498 551864.3105;7817773.629;-9018.339844;60;0.392700189 551451.8105;7817548.387;-9032.980469;60;0.337668417 548914.3105;7817172.988;-9083.599609;60;0.794550037 551501.8105;7820607.898;-9071.219727;60;0.873467937 551776.8105;7821640.25;-9061.339844;60;0.862998165 550201.8105;7816741.277;-9062.790039;60;0.089517552 551176.8105;7816741.277;-9022.870117;60;0.383017508 552201.8105;7821677.789;-9029.129883;60;0.79264631 552301.8105;7818149.027;-9040.700195;60;0.728733717 551251.8105;7820326.348;-9047.110352;60;0.901136198 549001.8105;7817886.25;-9093.769531;60;0.938237572 549764.3105;7820345.121;-9089.379883;60;0.649410791 550951.8105;7820138.648;-9028.570313;60;0.037527967 552014.3105;7817585.93;-9007.389648;60;0.577815118 550214.3105;7820739.289;-9068.610352;60;0.504220758 550614.3105;7820288.809;-8950.320313;60;0.283951684 548901.8105;7817079.141;-9084.419922;60;0.910096483 550776.8105;7821377.469;-9145.570313;60;0.379591861 550614.3105;7821659.02;-9158.379883;60;0.530617075 551714.3105;7820082.34;-8977.509766;60;0.723640074 550276.8105;7820814.371;-9074.700195;60;0.163980047 551826.8105;7819556.777;-9032.759766;60;0.809322624 549451.8105;7819556.777;-9116.339844;60;0.521166193 549089.3105;7816835.129;-9086.799805;60;0.796587769 551289.3105;7818167.797;-9018.799805;60;0.68124337 551889.3105;7818505.66;-9032.94043;60;0.781532476 549164.3105;7820213.73;-9137.610352;60;0.106571914 552326.8105;7821095.918;-9066.25;60;0.750330288 551501.8105;7819575.551;-9040.860352;60;0.100918667 549626.8105;7821771.641;-9191.419922;60;0.113998892 552189.3105;7819688.168;-9030.709961;60;0.692911636 549389.3105;7820589.129;-9156.299805;60;0.560721339 552026.8105;7820251.27;-8958.480469;60;0.897406083 551901.8105;7821527.629;-9076.799805;60;0.631573628 551814.3105;7820983.297;-9081.830078;60;0.771754065 551051.8105;7816928.98;-9034.660156;60;0.867220212 552164.3105;7821490.09;-9057.099609;60;0.839999452 549726.8105;7816684.969;-9057.719727;60;0.630525268 552139.3105;7821659.02;-9028.049805;60;0.604017853 550714.3105;7821039.609;-9123.549805;60;0.242576201 552364.3105;7817529.617;-8958.240234;60;0.826886612 549551.8105;7819049.988;-9089.820313;60;0.416314358 551364.3105;7816797.59;-9015.570313;60;0.666003416 550664.3105;7820964.531;-9108.379883;60;0.55113006 550714.3105;7820964.531;-9114.150391;60;0.670204861 551876.8105;7820645.438;-9049.150391;60;0.91728016 552039.3105;7821002.07;-9081.070313;60;0.482257748 552401.8105;7820044.801;-9022.629883;60;0.977488444 552064.3105;7819894.641;-8991.379883;60;0.238164574 551226.8105;7821377.469;-9129.620117;60;0.868148289 552451.8105;7818149.027;-9027.639648;60;0.833317671 549551.8105;7818317.957;-9088.570313;60;0.121105554 552076.8105;7816966.52;-8982.769531;60;0.456664297 549664.3105;7817998.871;-9093.480469;60;0.266180241 551339.3105;7818355.5;-9016.410156;60;0.918859877 550676.8105;7821659.02;-9156.519531;60;0.78460577 551451.8105;7819500.469;-9034;60;0.573737962 550826.8105;7821039.609;-9110.919922;60;0.418184823 551889.3105;7817905.02;-9016.049805;60;0.062291056 551614.3105;7817079.141;-9017.639648;60;0.719781668 549051.8105;7819049.988;-9137.570313;60;0.111606813 548901.8105;7820101.109;-9157.410156;60;0.973486602 551789.3105;7820420.199;-9016.209961;60;0.726095909 548976.8105;7818956.141;-9142.370117;60;0.160222423 549876.8105;7820251.27;-9043.19043;60;0.760034943 549589.3105;7818524.43;-9072.94043;60;0.707038417 551301.8105;7820082.34;-9055.889648;60;0.030342284 552089.3105;7821133.457;-9080.980469;60;0.36145976 552139.3105;7820438.969;-8992.599609;60;0.538529014 549514.3105;7819932.18;-9119.139648;60;0.959163587 551839.3105;7819444.16;-9034.570313;60;0.962746708 550039.3105;7821339.93;-9161.889648;60;0.944254088 549426.8105;7819800.789;-9131.820313;60;0.756058048 551976.8105;7818599.508;-9035.700195;60;0.009064736 551264.3105;7821546.398;-9123.669922;60;0.047615624 551739.3105;7821339.93;-9108.570313;60;0.373279511 550301.8105;7820101.109;-8950.030273;60;0.352915341 550451.8105;7820138.648;-8935.719727;60;0.80911274 549701.8105;7818092.719;-9093.160156;60;0.790963174 551189.3105;7820682.98;-9083.839844;60;0.76549677 551801.8105;7821133.457;-9094.80957;60;0.54080343 550814.3105;7821152.23;-9122.80957;60;0.210022035 550114.3105;7820157.418;-8974.330078;60;0.138472425 549114.3105;7819725.711;-9155.490234;60;0.209149076 550264.3105;7821152.23;-9128.490234;60;0.077448223 550889.3105;7821208.539;-9122.070313;60;0.267540085 549764.3105;7817360.688;-9053.429688;60;0.736765207 550251.8105;7821508.859;-9149.790039;60;0.023006599 550051.8105;7818505.66;-9078.179688;60;0.588044029 552114.3105;7817116.68;-8974.929688;60;0.117784705 551714.3105;7819444.16;-9043.129883;60;0.079366555 549914.3105;7821189.77;-9154.44043;60;0.814164343 552139.3105;7817473.309;-8992.160156;60;0.440626575 551126.8105;7820814.371;-9092.799805;60;0.448957565 549701.8105;7817679.777;-9069.650391;60;0.317803097 549476.8105;7820176.188;-9129.099609;60;0.754134538 548964.3105;7820570.359;-9184.639648;60;0.151859227 552289.3105;7820532.82;-9029.75;60;0.017607083 549664.3105;7819706.938;-9093.169922;60;0.604119935 552251.8105;7819181.379;-9051.009766;60;0.062030577 551976.8105;7816928.98;-8998.629883;60;0.871284489 548939.3105;7819406.617;-9157.709961;60;0.416758635 549114.3105;7820664.211;-9185.660156;60;0.273916188 549726.8105;7817961.328;-9095.389648;60;0.695934685 550014.3105;7818092.719;-9100.769531;60;0.312794879 551114.3105;7816816.359;-9028.910156;60;0.253277742 549476.8105;7821471.32;-9185.599609;60;0.449991736 549151.8105;7818824.75;-9120.679688;60;0.982582174 549001.8105;7819444.16;-9151.290039;60;0.482707044 551814.3105;7816910.207;-9010.910156;60;0.931471552 549514.3105;7817191.758;-9024.160156;60;0.75479069 551564.3105;7816835.129;-9015.950195;60;0.28653233 552139.3105;7818411.809;-9041.349609;60;0.096580615 552201.8105;7820495.281;-9011.400391;60;0.585551194 552226.8105;7817548.387;-8986.509766;60;0.717273629 551464.3105;7817285.609;-9013.169922;60;0.418205642 551039.3105;7821321.16;-9128.269531;60;0.902608173 549951.8105;7821734.102;-9188.94043;60;0.887629508 552276.8105;7821002.07;-9070.089844;60;0.431579704 549114.3105;7819444.16;-9142.549805;60;0.108657759 552001.8105;7820570.359;-9037.240234;60;0.153526335 552001.8105;7820514.051;-9022.349609;60;0.006707657 552201.8105;7820438.969;-9001.200195;60;0.788351421 551789.3105;7821583.941;-9070.950195;60;0.880446239 550889.3105;7821152.23;-9116.490234;60;0.793069515 551301.8105;7818468.117;-9015.780273;60;0.896350037 551439.3105;7820626.668;-9078.950195;60;0.769764258 549951.8105;7820870.68;-9124.490234;60;0.438373369 549114.3105;7821227.309;-9192.629883;60;0.436069484 552214.3105;7818374.27;-9042.679688;60;0.230707349 550889.3105;7820476.508;-9012.849609;60;0.141108457 549389.3105;7817060.367;-9044.150391;60;0.103250366 552114.3105;7817398.227;-8984.110352;60;0.87929692 551226.8105;7816947.75;-9026.139648;60;0.943604411 549276.8105;7820457.738;-9152.769531;60;0.368222916 551951.8105;7819631.859;-9018.879883;60;0.392296493 551001.8105;7818693.359;-9045.660156;60;0.218342887 549614.3105;7817097.91;-9044.820313;60;0.461161838 551526.8105;7818524.43;-9022.950195;60;0.282912015 551001.8105;7821490.09;-9125.209961;60;0.545337054 548989.3105;7820964.531;-9197.25;60;0.935470412 549451.8105;7819913.41;-9127.44043;60;0.1305215 550114.3105;7820401.43;-9005;60;0.597656054 550714.3105;7820382.66;-8964.639648;60;0.134815092 551264.3105;7817172.988;-9016.990234;60;0.479282507 551539.3105;7821583.941;-9098.820313;60;0.525907403 551176.8105;7820983.297;-9111.330078;60;0.09308761 551526.8105;7817510.848;-9026.5;60;0.61463666 548976.8105;7819594.32;-9148.580078;60;0.256914601 549164.3105;7820270.039;-9142.589844;60;0.477881758 551301.8105;7817323.148;-9014.5;60;0.681710897 551876.8105;7818599.508;-9031.549805;60;0.956137266 552226.8105;7818411.809;-9045;60;0.463883594 549776.8105;7820101.109;-9081.30957;60;0.68058387 551276.8105;7821490.09;-9124.530273;60;0.881976277 551751.8105;7816947.75;-9013;60;0.11111594 551939.3105;7819444.16;-9033.19043;60;0.829458739 551564.3105;7821283.617;-9116.110352;60;0.208737925 551239.3105;7819725.711;-9049.009766;60;0.737554858 551751.8105;7818805.98;-9025.379883;60;0.747648215 551439.3105;7818693.359;-9012.19043;60;0.187443401 550989.3105;7820288.809;-9020.780273;60;0.420359781 549289.3105;7820701.75;-9179.320313;60;0.033516003 551614.3105;7820701.75;-9068.860352;60;0.298404058 551014.3105;7820495.281;-9040.179688;60;0.177857358 552126.8105;7820326.348;-8973.490234;60;0.475371725 549064.3105;7816684.969;-9090.639648;60;0.316187048 549689.3105;7817248.07;-9044.910156;60;0.498209834 549626.8105;7818993.68;-9070.589844;60;0.530296784 551564.3105;7819575.551;-9040.009766;60;0.554026704 551914.3105;7821133.457;-9091.099609;60;0.655209253 551326.8105;7819782.02;-9053.889648;60;0.127243451 549964.3105;7820476.508;-9063.660156;60;0.51027873 549814.3105;7817454.539;-9064.799805;60;0.694213592 549414.3105;7819932.18;-9131.070313;60;0.212523143 551951.8105;7821809.18;-9017.330078;60;0.892159126 551989.3105;7820307.578;-8968.629883;60;0.150571719 552064.3105;7819969.719;-8977.030273;60;0.162553894 549776.8105;7821433.781;-9179.049805;60;0.827225383 550051.8105;7820082.34;-9004.44043;60;0.394723832 551326.8105;7821546.398;-9119.330078;60;0.576531542 551176.8105;7819125.07;-9042.150391;60;0.854179398 551626.8105;7818749.668;-9015.049805;60;0.429235853 552226.8105;7817886.25;-9006.599609;60;0.98754518 551976.8105;7817248.07;-9003.219727;60;0.995172368 552089.3105;7818486.891;-9040.540039;60;0.829416645 549776.8105;7818205.34;-9091.280273;60;0.831814941 549551.8105;7820758.059;-9155.099609;60;0.19446343 550889.3105;7821302.391;-9131.959961;60;0.582519281 551214.3105;7817022.828;-9028.629883;60;0.283232621 551551.8105;7818336.73;-9023.730469;60;0.951292894 552139.3105;7821152.23;-9080.679688;60;0.845938878 551214.3105;7817172.988;-9019.200195;60;0.625423297 552326.8105;7819800.789;-9014.410156;60;0.469231012 549176.8105;7820532.82;-9176.879883;60;0.062796473 549589.3105;7820983.297;-9161.379883;60;0.597973046 551664.3105;7819049.988;-9036.849609;60;0.01256752 551726.8105;7818899.828;-9031.019531;60;0.672459426 551614.3105;7816741.277;-9013.030273;60;0.44878895 551914.3105;7821433.781;-9088.820313;60;0.648398756 550064.3105;7818374.27;-9089.19043;60;0.364195666 552414.3105;7817304.379;-8929.370117;60;0.99881748 551314.3105;7818524.43;-9015.25;60;0.970007303 550689.3105;7817980.098;-9053.019531;60;0.668785382 550026.8105;7820701.75;-9080.349609;60;0.276352381 551551.8105;7821433.781;-9114.620117;60;0.069011075 551439.3105;7819143.84;-9045.070313;60;0.291044241 550064.3105;7820589.129;-9053.740234;60;0.590254261 549001.8105;7820232.5;-9156.129883;60;0.739044412 552376.8105;7821246.078;-9070.25;60;0.151271639 549026.8105;7817097.91;-9062.740234;60;0.101932384 551501.8105;7821396.238;-9116.969727;60;0.218298946 549514.3105;7820270.039;-9126.650391;60;0.161142744 549626.8105;7819875.867;-9098.910156;60;0.51295248 551401.8105;7818843.52;-9021.780273;60;0.841299017 552051.8105;7817379.461;-8985.330078;60;0.820319288 549751.8105;7820645.438;-9124.589844;60;0.200791173 551339.3105;7816966.52;-9027.780273;60;0.090463373 551351.8105;7818449.348;-9016.370117;60;0.84602834 550801.8105;7816722.508;-9055.900391;60;0.929519363 551851.8105;7821208.539;-9095.480469;60;0.365572767 551851.8105;7817698.547;-9015.360352;60;0.701388953 552414.3105;7820420.199;-9035.950195;60;0.175101008 549614.3105;7820044.801;-9111.990234;60;0.443936669 549951.8105;7818580.738;-9058.070313;60;0.306900439 549689.3105;7821321.16;-9173.799805;60;0.603521797 549314.3105;7819913.41;-9140.269531;60;0.064266973 551301.8105;7816722.508;-9014.030273;60;0.727417139 550326.8105;7820326.348;-8952.019531;60;0.442044341 550589.3105;7819594.32;-8998.009766;60;0.160256265 551076.8105;7820720.52;-9081.320313;60;0.390795637 549989.3105;7817510.848;-9062.730469;60;0.017575731 551364.3105;7820776.828;-9091.480469;60;0.800672952 551051.8105;7821377.469;-9129.950195;60;0.496658919 548976.8105;7819613.09;-9149.360352;60;0.022906408 550364.3105;7821715.328;-9161.30957;60;0.109067316 551589.3105;7821734.102;-9070.730469;60;0.404960465 551276.8105;7818393.039;-9017.450195;60;0.728066812 551889.3105;7816703.738;-8992.410156;60;0.763288232 550726.8105;7821827.949;-9150.30957;60;0.831899928 550951.8105;7820007.258;-9026.280273;60;0.931939462 550676.8105;7821490.09;-9144.629883;60;0.899953313 549164.3105;7819556.777;-9143.650391;60;0.991802032 551651.8105;7819538.008;-9037.110352;60;0.633862033 548889.3105;7819838.328;-9150.639648;60;0.389110435 549851.8105;7816722.508;-9060.209961;60;0.606535807 549551.8105;7821471.32;-9178.400391;60;0.194567754 549489.3105;7817285.609;-9009.030273;60;0.236040141 551564.3105;7818430.578;-9027.669922;60;0.922010214 552114.3105;7818674.59;-9044.839844;60;0.087195289 551876.8105;7817548.387;-9008.709961;60;0.173456879 549501.8105;7816966.52;-9054.150391;60;0.704600121 550151.8105;7818393.039;-9088.070313;60;0.043203598 549814.3105;7821246.078;-9164.019531;60;0.60711507 548939.3105;7817341.918;-9074.139648;60;0.896289866 549326.8105;7819819.559;-9140.129883;60;0.34934679 549914.3105;7819068.758;-9050.530273;60;0.957455461 549276.8105;7817961.328;-9096.339844;60;0.007351262 552051.8105;7820833.141;-9064.009766;60;0.267716078 549789.3105;7816722.508;-9060.629883;60;0.596502539 551776.8105;7818224.109;-9011.860352;60;0.196037173 549089.3105;7818468.117;-9122.379883;60;0.921046298 549914.3105;7820194.961;-9035;60;0.973469816 549264.3105;7819988.488;-9146.700195;60;0.611522242 550214.3105;7820363.887;-8960.509766;60;0.34056359 549239.3105;7819294;-9131.780273;60;0.874770298 552126.8105;7818167.797;-9037.639648;60;0.74639582 550151.8105;7821565.168;-9160.580078;60;0.841488449 549989.3105;7816853.898;-9058.580078;60;0.037546797 550051.8105;7818674.59;-9055.55957;60;0.128354866 551389.3105;7821377.469;-9114.69043;60;0.947358011 551714.3105;7817097.91;-9014.339844;60;0.989301029 552239.3105;7816853.898;-8964.290039;60;0.620557486 549689.3105;7820570.359;-9125.280273;60;0.133050236 550201.8105;7820007.258;-8962.330078;60;0.830559755 550139.3105;7821227.309;-9144.25;60;0.701014818 550826.8105;7821546.398;-9137.280273;60;0.813168806 552064.3105;7820739.289;-9060.330078;60;0.788033754 549014.3105;7820476.508;-9178.870117;60;0.372956914 551889.3105;7817285.609;-9002.030273;60;0.028982067 552201.8105;7818618.281;-9048.320313;60;0.782583483 552126.8105;7820607.898;-9040.700195;60;0.793827927 548964.3105;7820138.648;-9152.370117;60;0.589631655 551101.8105;7818524.43;-9033.610352;60;0.931838963 549226.8105;7820626.668;-9177.969727;60;0.447726621 550801.8105;7820438.969;-8988.759766;60;0.506222395 551776.8105;7818881.059;-9032.009766;60;0.685047944 549651.8105;7818299.188;-9089.959961;60;0.488956859 551676.8105;7820626.668;-9055.160156;60;0.392684128 550151.8105;7820570.359;-9034.519531;60;0.078154038 550201.8105;7821565.168;-9153.360352;60;0.915145843 551464.3105;7817492.078;-9029.080078;60;0.372383653 551826.8105;7819275.23;-9036.429688;60;0.287285932 550614.3105;7817548.387;-9054.990234;60;0.283735196 550889.3105;7817191.758;-9030.769531;60;0.520573396 551589.3105;7821659.02;-9082.219727;60;0.423150169 551114.3105;7821640.25;-9114.240234;60;0.015205057 551264.3105;7819275.23;-9044.240234;60;0.702979507 550489.3105;7820532.82;-8977.320313;60;0.172424079 551864.3105;7821114.691;-9090.530273;60;0.68816938 549751.8105;7818468.117;-9072.030273;60;0.394036427 551989.3105;7819275.23;-9042.450195;60;0.305831452 551626.8105;7818974.91;-9030.129883;60;0.403668041 551989.3105;7819556.777;-9018.969727;60;0.372431929 549689.3105;7816835.129;-9047.200195;60;0.785081397 548876.8105;7817285.609;-9088.019531;60;0.126949014 552376.8105;7821358.699;-9073.900391;60;0.035173312 552039.3105;7817248.07;-8994.900391;60;0.670181821 551264.3105;7819012.449;-9035.419922;60;0.265357779 551439.3105;7817060.367;-9027.480469;60;0.794848849 550401.8105;7820345.121;-8950.429688;60;0.189422438 548976.8105;7819650.629;-9151.219727;60;0.2804109 551901.8105;7817004.059;-9001;60;0.39979349 552301.8105;7821227.309;-9070.929688;60;0.367688918 550826.8105;7820870.68;-9089.580078;60;0.120847177 549139.3105;7817529.617;-9031.360352;60;0.577908282 549976.8105;7821264.848;-9154.030273;60;0.451722943 548939.3105;7821508.859;-9209.200195;60;0.188561933 551601.8105;7820420.199;-9041.709961;60;0.418116218 551601.8105;7817154.219;-9015.69043;60;0.453106663 551726.8105;7817022.828;-9013.230469;60;0.542342144 552201.8105;7820157.418;-8988.349609;60;0.281325776 551714.3105;7821602.711;-9080.480469;60;0.398016785 549351.8105;7818317.957;-9102.709961;60;0.40899604 551414.3105;7817097.91;-9024.19043;60;0.918604002 552089.3105;7816872.668;-8989.660156;60;0.380406872 549764.3105;7816966.52;-9051.830078;60;0.084221069 549939.3105;7818336.73;-9085.620117;60;0.780731341 552114.3105;7820363.887;-8976.30957;60;0.629741909 551551.8105;7817079.141;-9020.610352;60;0.351267552 550389.3105;7816760.051;-9056.360352;60;0.683381678 550426.8105;7817060.367;-9054.410156;60;0.025289398 551664.3105;7819894.641;-9027.599609;60;0.35154748 551026.8105;7820063.57;-9038.089844;60;0.656054441 551939.3105;7820138.648;-8956.049805;60;0.715985029 549389.3105;7817360.688;-8991.790039;60;0.628275193 550264.3105;7820664.211;-9043.980469;60;0.656055983 551514.3105;7819519.238;-9038.849609;60;0.166044645 551364.3105;7820833.141;-9097.110352;60;0.699112896 549001.8105;7820288.809;-9160.160156;60;0.724039869 551139.3105;7820570.359;-9070.790039;60;0.866261271 550764.3105;7817905.02;-9050.320313;60;0.807149629 552226.8105;7817736.09;-9020.519531;60;0.364030399 551776.8105;7820889.449;-9077.240234;60;0.014650129 549989.3105;7820758.059;-9097.929688;60;0.112497034 550314.3105;7821827.949;-9162.040039;60;0.614823996 552226.8105;7816760.051;-8973.480469;60;0.221192877 550876.8105;7820026.027;-9016.110352;60;0.199173154 549826.8105;7820026.027;-9075.480469;60;0.576857435 548976.8105;7819631.859;-9150.259766;60;0.661883582 551651.8105;7818824.75;-9019.929688;60;0.2447181 550989.3105;7816816.359;-9027.360352;60;0.106094542 551476.8105;7817961.328;-9015.25;60;0.930987498 552214.3105;7820082.34;-8997.009766;60;0.31066599 549189.3105;7816910.207;-9065.089844;60;0.826372585 551114.3105;7816684.969;-9028.769531;60;0.962592827 549551.8105;7820101.109;-9124.860352;60;0.80453319 549601.8105;7820138.648;-9115.459961;60;0.282686487 548989.3105;7816741.277;-9097.19043;60;0.633911973 552089.3105;7818580.738;-9042.589844;60;0.454005928 552114.3105;7818261.648;-9035.950195;60;0.704964106 549639.3105;7817248.07;-9035.950195;60;0.439652942 548989.3105;7820363.887;-9167.889648;60;0.912559555 550939.3105;7821039.609;-9118.709961;60;0.862359242 549551.8105;7819087.527;-9093.580078;60;0.854464713 552339.3105;7817135.449;-8930.540039;60;0.235008804 551339.3105;7819631.859;-9043.099609;60;0.061063327 549651.8105;7819800.789;-9096.200195;60;0.021445925 550339.3105;7820964.531;-9099.129883;60;0.501593304 552126.8105;7816760.051;-8978.599609;60;0.749266316 549014.3105;7817492.078;-9057.269531;60;0.370110692 551651.8105;7819444.16;-9042.830078;60;0.916917301 548951.8105;7817661.008;-9075.679688;60;0.801967409 549601.8105;7817773.629;-9072.790039;60;0.17818009 549639.3105;7820758.059;-9145.450195;60;0.100547483 551339.3105;7821490.09;-9117.519531;60;0.324872429 549139.3105;7817736.09;-9058.339844;60;0.3551994 549564.3105;7820814.371;-9159.570313;60;0.965695568 551764.3105;7819556.777;-9034.269531;60;0.098552269 551564.3105;7817004.059;-9022.540039;60;0.235224236 551939.3105;7819387.852;-9036.589844;60;0.162145076 548876.8105;7820476.508;-9179.290039;60;0.354965372 551889.3105;7819969.719;-8988.240234;60;0.14069671 550676.8105;7819106.301;-8988.450195;60;0.862964749 549751.8105;7818317.957;-9089.259766;60;0.608358639 549689.3105;7819669.398;-9087.879883;60;0.447480967 551851.8105;7818092.719;-8997.370117;60;0.694358019 549551.8105;7818017.637;-9089.75;60;0.209055322 549539.3105;7819819.559;-9115.759766;60;0.530858596 548914.3105;7817623.469;-9073.839844;60;0.37089738 550926.8105;7816853.898;-9031.549805;60;0.225108511 550676.8105;7821715.328;-9156.700195;60;0.12330341 549764.3105;7820720.52;-9131.629883;60;0.496322863 551901.8105;7821227.309;-9095.099609;60;0.804734257 551364.3105;7816684.969;-9016.990234;60;0.292584962 551439.3105;7818618.281;-9011.610352;60;0.789553951 551939.3105;7820889.449;-9071.80957;60;0.831190802 550889.3105;7820194.961;-9008.889648;60;0.45169688 552189.3105;7816966.52;-8959.780273;60;0.87718678 551901.8105;7818017.637;-9006.129883;60;0.729163475 551426.8105;7817454.539;-9027.610352;60;0.220828569 550889.3105;7820870.68;-9089.730469;60;0.420825129 551751.8105;7819275.23;-9042.389648;60;0.044882229 549014.3105;7819556.777;-9147.820313;60;0.905752756 549914.3105;7820119.879;-9051.169922;60;0.50499162 549589.3105;7819650.629;-9103.700195;60;0.38840453 551226.8105;7821002.07;-9110.959961;60;0.428120475 549601.8105;7821546.398;-9176.759766;60;0.930317927 548889.3105;7819294;-9163.040039;60;0.162821392 549426.8105;7818580.738;-9088.040039;60;0.373157459 550989.3105;7816684.969;-9030.290039;60;0.388384071 549751.8105;7818111.488;-9094.339844;60;0.679192556 550701.8105;7816741.277;-9064.150391;60;0.590593125 549426.8105;7819725.711;-9128.349609;60;0.333225518 550926.8105;7816722.508;-9037.30957;60;0.573750826 552289.3105;7821152.23;-9071.209961;60;0.984987458 550201.8105;7821827.949;-9171.049805;60;0.40570464 551001.8105;7821039.609;-9122.589844;60;0.734365139 549601.8105;7817022.828;-9049.129883;60;0.90364207 549439.3105;7820082.34;-9137.610352;60;0.620752504 551114.3105;7821715.328;-9110.360352;60;0.292095083 550776.8105;7820701.75;-9055.139648;60;0.884976597 550664.3105;7821152.23;-9133.269531;60;0.915490944 549789.3105;7817961.328;-9095.660156;60;0.548927927 550739.3105;7816666.199;-9065.139648;60;0.101063921 549401.8105;7821583.941;-9188.370117;60;0.965399492 549251.8105;7818261.648;-9106.360352;60;0.500199688 549276.8105;7818224.109;-9106.240234;60;0.661059529 550089.3105;7820758.059;-9081.599609;60;0.092469191 552176.8105;7818317.957;-9039.280273;60;0.189399491 552089.3105;7817266.84;-8988.389648;60;0.099437237 549614.3105;7818355.5;-9083.650391;60;0.163286512 548989.3105;7816910.207;-9082.030273;60;0.41050558 552326.8105;7819556.777;-9047.110352;60;0.406368132 551239.3105;7819387.852;-9029.910156;60;0.914157527 551926.8105;7821659.02;-9046.5;60;0.891629747 551726.8105;7817998.871;-9010.549805;60;0.307335973 550614.3105;7816703.738;-9070.469727;60;0.392215906 551489.3105;7821546.398;-9105.269531;60;0.897492074 549726.8105;7820870.68;-9154.139648;60;0.048086331 549839.3105;7821659.02;-9184.719727;60;0.413840167 551476.8105;7817135.449;-9020.049805;60;0.844595676 551726.8105;7821433.781;-9105.589844;60;0.541682089 549201.8105;7821659.02;-9196.160156;60;0.098942149 552326.8105;7821020.84;-9064.620117;60;0.995038978 552264.3105;7821527.629;-9050;60;0.121055069 549626.8105;7821621.48;-9180.269531;60;0.396396176 551076.8105;7817116.68;-9034.480469;60;0.152350179 552389.3105;7820870.68;-9055.169922;60;0.037818154 551601.8105;7820889.449;-9092.25;60;0.798968931 552276.8105;7819725.711;-9028.549805;60;0.589725379 552039.3105;7816853.898;-8997.120117;60;0.975603894 552001.8105;7817097.91;-8990.040039;60;0.510369109 549926.8105;7818393.039;-9083.05957;60;0.384766973 550264.3105;7820307.578;-8951.719727;60;0.896045184 552326.8105;7819706.938;-9030.19043;60;0.922942472 549389.3105;7821508.859;-9188.009766;60;0.360803581 548901.8105;7820401.43;-9175.629883;60;0.287364057 548901.8105;7819913.41;-9149.099609;60;0.095515422 549276.8105;7821752.867;-9197.070313;60;0.978860792 550489.3105;7816666.199;-9063.129883;60;0.433142464 551776.8105;7820795.598;-9070.969727;60;0.094100116 551139.3105;7821377.469;-9129.839844;60;0.627340257 552439.3105;7819875.867;-9024.570313;60;0.685152377 549476.8105;7821283.617;-9171.150391;60;0.178608467 550001.8105;7820851.91;-9115.080078;60;0.459231516 549114.3105;7821752.867;-9205.040039;60;0.818389522 552276.8105;7818224.109;-9044.009766;60;0.21697497 551551.8105;7819406.617;-9039.94043;60;0.984496156 551476.8105;7816910.207;-9023;60;0.202603144 549964.3105;7820626.668;-9077.400391;60;0.908529842 552414.3105;7819294;-9054.110352;60;0.897433577 551539.3105;7821640.25;-9089.419922;60;0.533809213 550364.3105;7821508.859;-9151.860352;60;0.216753954 551851.8105;7818149.027;-9000.80957;60;0.777882154 551439.3105;7819575.551;-9038.660156;60;0.466859328 550589.3105;7818280.418;-9058.129883;60;0.740079584 552439.3105;7818561.969;-9048.650391;60;0.091835402 549739.3105;7818655.82;-9053.389648;60;0.157645663 548914.3105;7821152.23;-9202.790039;60;0.784947128 551101.8105;7820438.969;-9046.419922;60;0.916240053 549676.8105;7817360.688;-9037.160156;60;0.631236599 552276.8105;7820795.598;-9063.290039;60;0.157126599 551576.8105;7819143.84;-9044.549805;60;0.03562631 549276.8105;7816910.207;-9054.700195;60;0.267870775 551239.3105;7820514.051;-9069.339844;60;0.287810128 549814.3105;7820645.438;-9114.269531;60;0.404318157 549501.8105;7821734.102;-9199.429688;60;0.622577064 549889.3105;7820870.68;-9133.169922;60;0.41220887 548976.8105;7821583.941;-9210.280273;60;0.634141685 549564.3105;7821696.559;-9192.950195;60;0.653440888 549076.8105;7816778.816;-9091.719727;60;0.58360061 550989.3105;7816947.75;-9035.120117;60;0.602470584 552214.3105;7819387.852;-9038.69043;60;0.085187624 552264.3105;7820926.988;-9068.160156;60;0.274497535 549989.3105;7820194.961;-9009.580078;60;0.098111591 549889.3105;7821490.09;-9183.570313;60;0.489706022 550951.8105;7820194.961;-9022.599609;60;0.884056177 549389.3105;7821659.02;-9191.69043;60;0.021101621 549139.3105;7821677.789;-9203.349609;60;0.275372091 552301.8105;7817886.25;-9002.530273;60;0.495266803 552051.8105;7819462.93;-9027.639648;60;0.25713528 552151.8105;7817266.84;-8983.879883;60;0.934855373 549451.8105;7821752.867;-9199.459961;60;0.041111733 551989.3105;7820401.43;-8989.769531;60;0.657954157 549776.8105;7819049.988;-9057.389648;60;0.757889637 551964.3105;7821283.617;-9095.650391;60;0.750479571 551951.8105;7821077.148;-9089.910156;60;0.317874834 551951.8105;7821039.609;-9088.019531;60;0.298050525 552351.8105;7818768.438;-9053.799805;60;0.072693551 551401.8105;7821133.457;-9115.030273;60;0.46601602 550314.3105;7820157.418;-8949.330078;60;0.740874417 551676.8105;7821490.09;-9107.820313;60;0.930479447 549851.8105;7821002.07;-9156.269531;60;0.420081958 551389.3105;7817323.148;-9016.339844;60;0.948152126 549026.8105;7821415.008;-9193.5;60;0.69982997 549226.8105;7821433.781;-9182.759766;60;0.181041647 551601.8105;7818843.52;-9018.509766;60;0.401120105 550201.8105;7816684.969;-9064.870117;60;0.952749978 551664.3105;7817642.238;-9026.030273;60;0.863258068 551101.8105;7817004.059;-9034.290039;60;0.651689857 551489.3105;7820157.418;-9026.540039;60;0.643075711 549726.8105;7817492.078;-9058.620117;60;0.451355484 551164.3105;7817097.91;-9029.769531;60;0.924143319 550026.8105;7820307.578;-9005.040039;60;0.478366814 552051.8105;7816722.508;-8970.30957;60;0.911507121 548914.3105;7819556.777;-9148.089844;60;0.94158553 551976.8105;7819800.789;-9006.94043;60;0.980607981 551176.8105;7820382.66;-9049.070313;60;0.755083155 549301.8105;7820851.91;-9186.30957;60;0.445814237 551351.8105;7821058.379;-9111.240234;60;0.277372423 549826.8105;7821415.008;-9178.830078;60;0.019864009 549164.3105;7821152.23;-9189.610352;60;0.987595479 549139.3105;7821790.41;-9204.25;60;0.976581909 549164.3105;7821321.16;-9187.519531;60;0.961907338 549389.3105;7821752.867;-9195.5;60;0.338045414 549451.8105;7820026.027;-9132.209961;60;0.84013002 552276.8105;7818843.52;-9048.410156;60;0.616174828 549114.3105;7821171;-9192.900391;60;0.460087588 548901.8105;7816835.129;-9091.919922;60;0.975465139 551726.8105;7820232.5;-8990.589844;60;0.924158313 551639.3105;7818881.059;-9022.519531;60;0.613204266 549201.8105;7819969.719;-9149.290039;60;0.975029195 549439.3105;7818881.059;-9085.679688;60;0.778118965 551539.3105;7820138.648;-9013.360352;60;0.531635074 549051.8105;7819988.488;-9149.860352;60;0.568170174 551114.3105;7816928.98;-9030.700195;60;0.322920696 549701.8105;7820176.188;-9090.639648;60;0.036613308 549826.8105;7820345.121;-9075.110352;60;0.539362997 549414.3105;7820908.219;-9173.480469;60;0.533114157 549764.3105;7821358.699;-9173.540039;60;0.530086645 550814.3105;7817079.141;-9039.480469;60;0.324703092 552051.8105;7819294;-9040.360352;60;0.359352049 551614.3105;7819556.777;-9038.160156;60;0.311073601 551876.8105;7818317.957;-9024.379883;60;0.214197004 549026.8105;7821659.02;-9210.709961;60;0.704687751 552389.3105;7821809.18;-9019.459961;60;0.684865061 549051.8105;7821471.32;-9193.379883;60;0.990324175 549639.3105;7818186.57;-9094.320313;60;0.670845849 549976.8105;7821095.918;-9144.669922;60;0.782073085 549051.8105;7821827.949;-9209.040039;60;0.814304484 549214.3105;7816684.969;-9064.799805;60;0.528000595 549226.8105;7821827.949;-9204.429688;60;0.783845458 551264.3105;7821827.949;-9118.769531;60;0.609553575 550089.3105;7817417;-9058.589844;60;0.08030886 552001.8105;7819631.859;-9011.469727;60;0.339563419 549689.3105;7821771.641;-9186.660156;60;0.288319449 551026.8105;7821621.48;-9114.519531;60;0.963057851 549301.8105;7817811.168;-9076.370117;60;0.314993409 549539.3105;7818355.5;-9085.139648;60;0.327316543 550439.3105;7816684.969;-9057.540039;60;0.596544153 551801.8105;7816985.289;-9009.530273;60;0.327407831 550439.3105;7816741.277;-9057.610352;60;0.237404745 550714.3105;7820720.52;-9061.780273;60;0.516619104 549389.3105;7821827.949;-9194.879883;60;0.458036468 548901.8105;7818730.898;-9145.94043;60;0.633804467 548901.8105;7816872.668;-9087.570313;60;0.981463684 552014.3105;7818149.027;-9019.509766;60;0.942361375 549851.8105;7821734.102;-9188.040039;60;0.337546428 549251.8105;7821696.559;-9194.150391;60;0.934742878 552439.3105;7820851.91;-9053.660156;60;0.045093912 552189.3105;7820964.531;-9077.160156;60;0.180525856 550351.8105;7821321.16;-9135.009766;60;0.533970574 550764.3105;7817848.711;-9053.549805;60;0.063584812 549201.8105;7821602.711;-9190.790039;60;0.251454745 551426.8105;7820082.34;-9045.379883;60;0.427490574 551789.3105;7821377.469;-9097.94043;60;0.37390054 549101.8105;7817004.059;-9063.450195;60;0.68159992 549664.3105;7817604.699;-9060.759766;60;0.339147237 549339.3105;7821734.102;-9193.139648;60;0.803582748 551826.8105;7820063.57;-8971.349609;60;0.205452193 552289.3105;7816684.969;-8963.179688;60;0.421389594 549339.3105;7821433.781;-9182.719727;60;0.006634079 549964.3105;7820420.199;-9055.5;60;0.656383756 551251.8105;7820382.66;-9054.450195;60;0.571051911 551426.8105;7816816.359;-9017.070313;60;0.473860205 549789.3105;7820270.039;-9068.120117;60;0.11854193 549539.3105;7821227.309;-9171.669922;60;0.51205322 552401.8105;7819106.301;-9046.44043;60;0.657021716 548914.3105;7819725.711;-9152.650391;60;0.577294381 550464.3105;7816853.898;-9058.160156;60;0.761026569 550714.3105;7819575.551;-9012.860352;60;0.249804733 551676.8105;7820176.188;-8988.179688;60;0.446607788 551776.8105;7820720.52;-9063.860352;60;0.488905097 551639.3105;7818092.719;-9005.30957;60;0.181411066 551414.3105;7817266.84;-9014.349609;60;0.87489483 549839.3105;7819800.789;-9062.160156;60;0.391913828 549914.3105;7819294;-9039.219727;60;0.05186923 549839.3105;7821583.941;-9182.620117;60;0.171220485 552189.3105;7818167.797;-9041.589844;60;0.92803407 549414.3105;7818637.047;-9086.419922;60;0.927013427 549276.8105;7821452.551;-9180.730469;60;0.799720844 549601.8105;7818430.578;-9074.959961;60;0.413329044 549664.3105;7818805.98;-9083.620117;60;0.751905231 552226.8105;7820682.98;-9055.990234;60;0.663695739 550239.3105;7817041.598;-9048.030273;60;0.636885967 548914.3105;7819462.93;-9154.870117;60;0.337599914 551751.8105;7821039.609;-9091.849609;60;0.641087251 551339.3105;7821302.391;-9118.620117;60;0.1627866 550826.8105;7821302.391;-9141.269531;60;0.139225966 548976.8105;7821621.48;-9213.150391;60;0.672697267 551526.8105;7820983.297;-9104.349609;60;0.993307648 552189.3105;7819875.867;-8995;60;0.961129265 550114.3105;7821114.691;-9134.209961;60;0.54371578 550001.8105;7816666.199;-9041.910156;60;0.417847404 551414.3105;7818881.059;-9022.530273;60;0.636820507 551539.3105;7818843.52;-9018.160156;60;0.140952168 549114.3105;7821471.32;-9190.910156;60;0.532001626 549276.8105;7819556.777;-9134.589844;60;0.081128593 551064.3105;7820307.578;-9033.30957;60;0.425085023 549939.3105;7816666.199;-9055.169922;60;0.515426408 551826.8105;7820833.141;-9068.169922;60;0.720769129 549364.3105;7821339.93;-9180.230469;60;0.738588932 552089.3105;7817886.25;-9009.75;60;0.232669752 549389.3105;7817417;-8998.05957;60;0.899682136 551026.8105;7821715.328;-9119.360352;60;0.394201711 549201.8105;7821621.48;-9192.400391;60;0.919611057 552426.8105;7820457.738;-9040.799805;60;0.492801892 551964.3105;7818167.797;-9015.219727;60;0.463405904 552326.8105;7817304.379;-8967.280273;60;0.450178001 549326.8105;7821058.379;-9179.070313;60;0.120323759 550589.3105;7819350.309;-8975.549805;60;0.62144997 549576.8105;7818655.82;-9068.610352;60;0.220087814 551701.8105;7821058.379;-9100.799805;60;0.294345895 552214.3105;7820851.91;-9068.5;60;0.984781073 549001.8105;7821095.918;-9199.05957;60;0.875114697 552189.3105;7819106.301;-9046.040039;60;0.185716322 550164.3105;7820457.738;-9003.129883;60;0.673824913 550064.3105;7816797.59;-9056.120117;60;0.571454889 549739.3105;7818899.828;-9082.280273;60;0.559643344 549939.3105;7818824.75;-9058.620117;60;0.094476933 552051.8105;7817548.387;-9003.94043;60;0.869573235 549689.3105;7819932.18;-9090.5;60;0.829955706 549776.8105;7819087.527;-9052.990234;60;0.324033139 552426.8105;7818674.59;-9053.679688;60;0.895364257 550626.8105;7819031.219;-9005.009766;60;0.888112906 552439.3105;7820945.758;-9051.230469;60;0.593990875 550626.8105;7819444.16;-8989.94043;60;0.916623195 551876.8105;7820964.531;-9080.589844;60;0.539012937 549901.8105;7821020.84;-9149.450195;60;0.788044754 549476.8105;7821002.07;-9167.280273;60;0.440913541 552214.3105;7817060.367;-8947.349609;60;0.109111553 551389.3105;7821321.16;-9116.929688;60;0.801332264 552151.8105;7821377.469;-9072.05957;60;0.500686453 550189.3105;7821077.148;-9128.790039;60;0.069831271 552051.8105;7817811.168;-9011.019531;60;0.947276597 550126.8105;7816910.207;-9057.599609;60;0.93143598 549376.8105;7819706.938;-9131.370117;60;0.49023614 551689.3105;7820307.578;-9016.019531;60;0.381929699 551714.3105;7821659.02;-9067.730469;60;0.695548249 551614.3105;7818411.809;-9022.219727;60;0.378590519 549526.8105;7818618.281;-9074.519531;60;0.590335448 549139.3105;7820063.57;-9143.660156;60;0.214259365 549051.8105;7821114.691;-9194.94043;60;0.518069437 551601.8105;7821189.77;-9112.80957;60;0.176590259 549501.8105;7821809.18;-9201.320313;60;0.519195216 549589.3105;7821152.23;-9172.799805;60;0.411263655 552389.3105;7821602.711;-9043.629883;60;0.782426947 550689.3105;7817792.398;-9059.620117;60;0.259798567 551864.3105;7817210.527;-9010.450195;60;0.80018515 549514.3105;7820908.219;-9166.099609;60;0.550111065 551476.8105;7821002.07;-9108.540039;60;0.43955218 549689.3105;7821358.699;-9175.070313;60;0.47536187 552414.3105;7818261.648;-9040.019531;60;0.076710446 550376.8105;7816684.969;-9059.389648;60;0.715549715 552151.8105;7821077.148;-9082.5;60;0.086671756 549139.3105;7821415.008;-9187.75;60;0.169017548 548939.3105;7821734.102;-9222.929688;60;0.442437137 552414.3105;7819594.32;-9039.280273;60;0.149136255 551501.8105;7820701.75;-9078.700195;60;0.880543308 552389.3105;7821433.781;-9070.030273;60;0.410774484 549876.8105;7820795.598;-9122.259766;60;0.359542484 551726.8105;7817210.527;-9009.490234;60;0.750954886 549814.3105;7818543.199;-9055.25;60;0.847503703 550339.3105;7821677.789;-9157.959961;60;0.44172386 551076.8105;7816722.508;-9029.879883;60;0.714034836 550251.8105;7818618.281;-9073.669922;60;0.169780599 552301.8105;7817792.398;-9005.639648;60;0.016190036 549751.8105;7818393.039;-9083.620117;60;0.48387479 549714.3105;7820739.289;-9138.30957;60;0.820682127 551439.3105;7819012.449;-9032.780273;60;0.312551683 550739.3105;7816816.359;-9053.049805;60;0.25172812 549664.3105;7818655.82;-9064.740234;60;0.878938245 549289.3105;7818430.578;-9108.490234;60;0.82314258 549226.8105;7821508.859;-9183.69043;60;0.698245983 549614.3105;7820720.52;-9142.879883;60;0.944208102 550101.8105;7821002.07;-9122.009766;60;0.315368775 549901.8105;7820532.82;-9086.19043;60;0.122229344 549564.3105;7817942.559;-9090.360352;60;0.917540595 552101.8105;7821058.379;-9082.629883;60;0.855755841 551564.3105;7821339.93;-9117.219727;60;0.019495989 552026.8105;7821283.617;-9090.5;60;0.002200434 552039.3105;7818505.66;-9038.919922;60;0.014760487 549001.8105;7821039.609;-9197.769531;60;0.375216569 551839.3105;7816684.969;-8991.339844;60;0.541485207 549126.8105;7817679.777;-9049.669922;60;0.051737305 551026.8105;7821752.867;-9125.509766;60;0.09469369 549464.3105;7820926.988;-9169.290039;60;0.783887891 549089.3105;7818261.648;-9118.219727;60;0.115611467 551389.3105;7817529.617;-9031.910156;60;0.88593811 551564.3105;7819650.629;-9040.519531;60;0.095774129 551376.8105;7821659.02;-9110.900391;60;0.365113886 549251.8105;7818167.797;-9105.5;60;0.722939916 549139.3105;7821077.148;-9186.919922;60;0.203505291 550351.8105;7817135.449;-9052.280273;60;0.977207809 552439.3105;7821827.949;-9018.160156;60;0.182133079 549226.8105;7820232.5;-9137.169922;60;0.117432287 552389.3105;7818317.957;-9043.519531;60;0.406650932 549301.8105;7817473.309;-9009.509766;60;0.600324982 549489.3105;7817341.918;-9005.339844;60;0.355503683 552414.3105;7819425.391;-9051.620117;60;0.494414439 549226.8105;7821734.102;-9201.129883;60;0.204295695 552439.3105;7818299.188;-9041.959961;60;0.591816831 550776.8105;7821734.102;-9151.120117;60;0.087743405 552076.8105;7821208.539;-9081.330078;60;0.149107951 552414.3105;7819631.859;-9036.980469;60;0.416884801 549364.3105;7821377.469;-9182.040039;60;0.692130029 552226.8105;7818242.879;-9043.150391;60;0.937326879 550039.3105;7821546.398;-9181.049805;60;0.766078551 552414.3105;7818224.109;-9037.480469;60;0.711733145 551264.3105;7819106.301;-9042.450195;60;0.769876884 550689.3105;7817679.777;-9057.730469;60;0.200376496 549089.3105;7817905.02;-9089.709961;60;0.59685839 550164.3105;7820833.141;-9084.019531;60;0.730115608 552076.8105;7819594.32;-9008.540039;60;0.318838314 549489.3105;7821546.398;-9183.540039;60;0.797946838 548926.8105;7818242.879;-9129.419922;60;0.385174669 552314.3105;7819106.301;-9049.230469;60;0.766092984 552089.3105;7821659.02;-9028.849609;60;0.354428552 552039.3105;7818242.879;-9031.889648;60;0.874232761 551651.8105;7821039.609;-9103.80957;60;0.667433345 551739.3105;7818449.348;-9021.509766;60;0.313168132 549339.3105;7821677.789;-9189.209961;60;0.192765031 551951.8105;7818374.27;-9029.55957;60;0.657411406 551889.3105;7820739.289;-9055.410156;60;0.195386442 550201.8105;7821152.23;-9136;60;0.258142904 551339.3105;7819500.469;-9032.299805;60;0.877873619 552314.3105;7817604.699;-8982.330078;60;0.475259158 550101.8105;7820514.051;-9033.549805;60;0.333681987 552414.3105;7821077.148;-9060.209961;60;0.413552404 552189.3105;7819894.641;-8995.969727;60;0.001930856 551839.3105;7818524.43;-9031.19043;60;0.456553422 550201.8105;7818618.281;-9072.139648;60;0.588138887 549414.3105;7816835.129;-9064.879883;60;0.41532728 552439.3105;7818618.281;-9051.80957;60;0.455532147 552189.3105;7819538.008;-9029;60;0.498748736 551126.8105;7820758.059;-9088.290039;60;0.192916078 552314.3105;7821734.102;-9026.679688;60;0.765949479 549026.8105;7819406.617;-9151.549805;60;0.246016834 550689.3105;7816797.59;-9058.419922;60;0.605025594 550914.3105;7821583.941;-9129.69043;60;0.999719797 551876.8105;7820908.219;-9073.990234;60;0.228328533 550489.3105;7816760.051;-9062.740234;60;0.651872349 549001.8105;7816947.75;-9076;60;0.490355077 550251.8105;7821734.102;-9162.780273;60;0.306046613 549576.8105;7821602.711;-9181.480469;60;0.03842944 551914.3105;7817698.547;-9013.44043;60;0.559098537 549176.8105;7818167.797;-9107.759766;60;0.348202842 550776.8105;7817266.84;-9030.669922;60;0.80427792 549139.3105;7821114.691;-9189.19043;60;0.183145613 549451.8105;7818355.5;-9090.740234;60;0.656730462 552026.8105;7821433.781;-9082.589844;60;0.427653916 549889.3105;7819800.789;-9051.730469;60;0.919586284 549201.8105;7821640.25;-9194.240234;60;0.697762855 549526.8105;7816891.438;-9056.269531;60;0.936768247 549551.8105;7820326.348;-9127.650391;60;0.741867269 549301.8105;7817379.461;-8991.349609;60;0.097747353 550201.8105;7821227.309;-9143.089844;60;0.693314642 550501.8105;7820926.988;-9071.179688;60;0.343443869 551264.3105;7819650.629;-9045.769531;60;0.441346744 549251.8105;7817454.539;-9010.469727;60;0.965054671 549139.3105;7817172.988;-9032.480469;60;0.380731862 549589.3105;7821208.539;-9175.120117;60;0.179663947 549201.8105;7820420.199;-9157.379883;60;0.207108599 552314.3105;7820363.887;-9018.69043;60;0.622681303 551914.3105;7821377.469;-9092.089844;60;0.043740809 549189.3105;7817079.141;-9036.330078;60;0.741854132 550789.3105;7821809.18;-9150.969727;60;0.607391385 549689.3105;7821283.617;-9173.950195;60;0.113441543 549689.3105;7821415.008;-9177.240234;60;0.607505935 551776.8105;7821527.629;-9084.259766;60;0.622577899 551351.8105;7821152.23;-9115.089844;60;0.286864627 549876.8105;7820288.809;-9048.719727;60;0.206350246 551551.8105;7818561.969;-9017.330078;60;0.822395253 551889.3105;7816928.98;-9005.459961;60;0.838525749 551651.8105;7820870.68;-9088.400391;60;0.687416917 549739.3105;7820251.27;-9079.19043;60;0.717557281 548889.3105;7819763.25;-9152.530273;60;0.541682119 549851.8105;7818167.797;-9094.179688;60;0.343099165 552076.8105;7819631.859;-9006.360352;60;0.124478593 551551.8105;7818599.508;-9013.25;60;0.713530662 551214.3105;7821809.18;-9117.179688;60;0.919245617 549489.3105;7817679.777;-9054.929688;60;0.276229722 549501.8105;7820007.258;-9124.320313;60;0.144194589 551489.3105;7820851.91;-9089.790039;60;0.348041906 549901.8105;7820926.988;-9139.839844;60;0.328899271 550039.3105;7817172.988;-9055.570313;60;0.633576454 549251.8105;7817529.617;-9023.330078;60;0.912578833 549214.3105;7818881.059;-9109.339844;60;0.562958485 551301.8105;7821077.148;-9112.610352;60;0.713946857 552264.3105;7821659.02;-9033.580078;60;0.962016946 548939.3105;7821321.16;-9198.879883;60;0.48117128 551451.8105;7821377.469;-9116.120117;60;0.457129457 552239.3105;7818149.027;-9041.799805;60;0.796057307 550014.3105;7819950.949;-9016.040039;60;0.263365981 552114.3105;7818637.047;-9044.790039;60;0.749059863 549989.3105;7821415.008;-9173.450195;60;0.789740219 551189.3105;7820326.348;-9044.169922;60;0.061287202 549739.3105;7818824.75;-9076.080078;60;0.145988232 552189.3105;7819744.48;-9025.290039;60;0.612996738 549476.8105;7817398.227;-9006.639648;60;0.583994464 552364.3105;7818618.281;-9051.05957;60;0.423740176 550939.3105;7816928.98;-9035.540039;60;0.840660981 552076.8105;7821302.391;-9081.69043;60;0.183878663 551964.3105;7821358.699;-9092.740234;60;0.056539426 549214.3105;7817135.449;-9027.320313;60;0.320799052 549251.8105;7817829.938;-9075.30957;60;0.494387424 552026.8105;7816928.98;-8993.549805;60;0.703509071 549589.3105;7821809.18;-9193.759766;60;0.43715359 549076.8105;7816928.98;-9076.990234;60;0.141793108 551164.3105;7820514.051;-9065.509766;60;0.683384091 552414.3105;7821039.609;-9057.509766;60;0.686464518 552251.8105;7819087.527;-9048.280273;60;0.495636638 549189.3105;7817454.539;-9020.570313;60;0.764675676 550314.3105;7821583.941;-9152.320313;60;0.045891415 551551.8105;7820682.98;-9071.889648;60;0.837195945 551051.8105;7817022.828;-9038.330078;60;0.935734725 550139.3105;7817435.77;-9059.599609;60;0.99575545 549001.8105;7816778.816;-9098.860352;60;0.233769591 549126.8105;7817792.398;-9068.910156;60;0.227123851 551664.3105;7817097.91;-9015.799805;60;0.755743546 549176.8105;7817942.559;-9090.919922;60;0.706973512 550314.3105;7821490.09;-9149.679688;60;0.791608412 548976.8105;7821565.168;-9208.769531;60;0.763908956 550039.3105;7821396.238;-9171.030273;60;0.275699216 548889.3105;7821752.867;-9226.639648;60;0.195398027 549564.3105;7821283.617;-9174.620117;60;0.262151626 549001.8105;7818336.73;-9131.129883;60;0.003877028 551789.3105;7817060.367;-9008.870117;60;0.201953772 549364.3105;7817567.16;-9041.580078;60;0.324262445 551901.8105;7816891.438;-9004.780273;60;0.857492222 550776.8105;7821321.16;-9146.650391;60;0.154078485 549589.3105;7818899.828;-9072.049805;60;0.071632319 548989.3105;7818599.508;-9134.820313;60;0.214237609 552276.8105;7817210.527;-8960.919922;60;0.654484396 549814.3105;7818299.188;-9089.719727;60;0.166833248 552001.8105;7816666.199;-8974.919922;60;0.495023126 552389.3105;7819857.098;-9017.19043;60;0.769819567 552314.3105;7821677.789;-9032.580078;60;0.602592917 552301.8105;7819406.617;-9050.200195;60;0.631298566 549901.8105;7818993.68;-9061.259766;60;0.534057385 551964.3105;7817004.059;-8994.320313;60;0.866751472 552414.3105;7819275.23;-9053.650391;60;0.709361626 549114.3105;7820438.969;-9172.360352;60;0.786640791 549501.8105;7820101.109;-9131.320313;60;0.30830236 551714.3105;7821208.539;-9113.669922;60;0.613035514 551439.3105;7818486.891;-9020.419922;60;0.866051537 551576.8105;7818655.82;-9011.139648;60;0.845725027 548889.3105;7820270.039;-9169.55957;60;0.878792246 549314.3105;7820082.34;-9145.370117;60;0.718398173 550826.8105;7820814.371;-9079.44043;60;0.367187106 549339.3105;7818580.738;-9098.129883;60;0.548077877 549026.8105;7821377.469;-9193.150391;60;0.41457908 549014.3105;7818130.258;-9113.530273;60;0.132183203 552001.8105;7821602.711;-9050.610352;60;0.970570141 548939.3105;7819782.02;-9153.950195;60;0.788198626 549476.8105;7821415.008;-9184.709961;60;0.625517918 549964.3105;7818430.578;-9081.589844;60;0.895262316 550151.8105;7821171;-9138.820313;60;0.076786797 549451.8105;7819650.629;-9122.219727;60;0.64739687 548914.3105;7821790.41;-9226.139648;60;0.793051572 549876.8105;7820701.75;-9106.169922;60;0.20013724 549251.8105;7817736.09;-9061.110352;60;0.543976353 550951.8105;7820063.57;-9030.089844;60;0.256641347 549901.8105;7817060.367;-9055.650391;60;0.721885987 550176.8105;7818449.348;-9086.269531;60;0.742599693 549139.3105;7821827.949;-9203.450195;60;0.150979403 550926.8105;7821321.16;-9129.69043;60;0.935071848 550301.8105;7820570.359;-9008.849609;60;0.635753606 552326.8105;7819875.867;-9014.110352;60;0.997942575 549639.3105;7819838.328;-9097.589844;60;0.646739351 551989.3105;7818655.82;-9036.94043;60;0.334371619 548939.3105;7821227.309;-9198.530273;60;0.399547826 549201.8105;7821565.168;-9188.509766;60;0.921279285 551689.3105;7817248.07;-9007.719727;60;0.592249459 551614.3105;7821358.699;-9116.389648;60;0.933050458 552351.8105;7820232.5;-9023.070313;60;0.994051482 551614.3105;7818017.637;-9009.820313;60;0.275117661 549864.3105;7820119.879;-9062.019531;60;0.906994298 551001.8105;7817323.148;-9016.709961;60;0.65333206 550301.8105;7821339.93;-9143.110352;60;0.131229844 550276.8105;7820363.887;-8959.330078;60;0.244164698 550051.8105;7817079.141;-9048.889648;60;0.558647607 550464.3105;7816797.59;-9058.30957;60;0.745676519 549026.8105;7819294;-9156.160156;60;0.522475826 551489.3105;7818674.59;-9009.200195;60;0.391131281 549001.8105;7821809.18;-9216.200195;60;0.608804984 550201.8105;7821752.867;-9168.370117;60;0.291943466 551401.8105;7819500.469;-9032.530273;60;0.168955603 549239.3105;7821039.609;-9180.490234;60;0.881390861 552414.3105;7820795.598;-9057.219727;60;0.520956702 551214.3105;7821133.457;-9123.519531;60;0.380013077 549676.8105;7818843.52;-9082.620117;60;0.76275978 549376.8105;7816722.508;-9064.44043;60;0.791684344 551401.8105;7821077.148;-9112.589844;60;0.329364156 549176.8105;7818336.73;-9107.44043;60;0.705906751 550189.3105;7817097.91;-9046.349609;60;0.740146312 552176.8105;7820701.75;-9061.419922;60;0.574310899 549839.3105;7817867.48;-9092.040039;60;0.57779735 549001.8105;7818299.188;-9129.580078;60;0.754716771 552001.8105;7820157.418;-8954.870117;60;0.650315374 551114.3105;7820889.449;-9101.099609;60;0.146934513 551314.3105;7820739.289;-9087.200195;60;0.376162419 549939.3105;7821508.859;-9185.370117;60;0.219389995 551764.3105;7819988.488;-8996.259766;60;0.608704184 552014.3105;7821809.18;-9015.240234;60;0.942780917 550714.3105;7820438.969;-8979.629883;60;0.371202442 550176.8105;7820232.5;-8948.719727;60;0.419620892 551189.3105;7819706.938;-9046.419922;60;0.198718281 550376.8105;7820101.109;-8944.389648;60;0.055417958 549389.3105;7818899.828;-9094.660156;60;0.91561492 549539.3105;7821133.457;-9169.669922;60;0.155785044 550339.3105;7821640.25;-9156.169922;60;0.292354566 549514.3105;7821621.48;-9187.089844;60;0.507665853 549251.8105;7817398.227;-9002.469727;60;0.684410725 551714.3105;7820007.258;-8996.330078;60;0.340588351 549851.8105;7819068.758;-9047.679688;60;0.833646518 550076.8105;7820664.211;-9065.330078;60;0.045396766 551964.3105;7818073.949;-9003.629883;60;0.890077754 552126.8105;7818749.668;-9043.230469;60;0.086116042 552176.8105;7820926.988;-9074.429688;60;0.651188938 550014.3105;7817304.379;-9059.570313;60;0.864530057 551739.3105;7820326.348;-9008.599609;60;0.233941383 549139.3105;7821377.469;-9187.570313;60;0.29948769 549126.8105;7816760.051;-9083.55957;60;0.137155219 551489.3105;7818918.598;-9024.360352;60;0.989422803 552264.3105;7821095.918;-9073.839844;60;0.966056843 552039.3105;7818674.59;-9041.30957;60;0.599609688 549539.3105;7819744.48;-9114.900391;60;0.671013225 552314.3105;7821377.469;-9070.410156;60;0.239743686 551176.8105;7816928.98;-9025.610352;60;0.394465171 549551.8105;7817360.688;-9015.839844;60;0.575305731 549176.8105;7820701.75;-9186.669922;60;0.565070178 548914.3105;7821659.02;-9221.879883;60;0.866237377 549026.8105;7819369.078;-9153.290039;60;0.858863204 549714.3105;7820101.109;-9094.639648;60;0.330874821 549189.3105;7817623.469;-9036.719727;60;0.044709991 551939.3105;7821752.867;-9024.830078;60;0.77874172 552051.8105;7817172.988;-8991.849609;60;0.943766808 549001.8105;7821321.16;-9194.75;60;0.241764206 551789.3105;7820251.27;-8981.769531;60;0.158150445 548939.3105;7821039.609;-9205.919922;60;0.860901103 549151.8105;7820119.879;-9138.839844;60;0.066219288 552439.3105;7821583.941;-9048.660156;60;0.799614113 552301.8105;7819369.078;-9050.870117;60;0.364696103 548989.3105;7818768.438;-9140.129883;60;0.727369145 550089.3105;7821640.25;-9173.269531;60;0.243610838 551251.8105;7820814.371;-9093.910156;60;0.769301013 552164.3105;7819369.078;-9036.049805;60;0.040852002 551739.3105;7817172.988;-9012.330078;60;0.521491365 549301.8105;7817754.859;-9068.969727;60;0.981505583 549764.3105;7820570.359;-9117.009766;60;0.204222031 551214.3105;7817079.141;-9027.269531;60;0.877782892 550039.3105;7820476.508;-9044.790039;60;0.726671903 550914.3105;7821377.469;-9133.280273;60;0.656077336 550664.3105;7820701.75;-9052.429688;60;0.109258898 551251.8105;7819444.16;-9029.389648;60;0.964293645 549014.3105;7817004.059;-9069.860352;60;0.717506055 552101.8105;7817529.617;-9000.040039;60;0.289678482 551839.3105;7820758.059;-9061.820313;60;0.877598983 549501.8105;7821358.699;-9178.360352;60;0.419752744 549714.3105;7821677.789;-9183.110352;60;0.894204081 552414.3105;7821002.07;-9054.870117;60;0.319468804 550614.3105;7817679.777;-9062.650391;60;0.131352008 551826.8105;7820889.449;-9072.740234;60;0.133754314 552376.8105;7819782.02;-9021.360352;60;0.460808657 551676.8105;7821415.008;-9114.200195;60;0.045236647 551389.3105;7817417;-9024.549805;60;0.069492096 551501.8105;7819218.918;-9048.730469;60;0.186753847 549751.8105;7819706.938;-9078.209961;60;0.393465643 552026.8105;7821227.309;-9088.879883;60;0.501652203 548976.8105;7821602.711;-9211.75;60;0.09903999 550814.3105;7816947.75;-9047.799805;60;0.13614874 551839.3105;7820232.5;-8968.700195;60;0.386557636 550039.3105;7821734.102;-9181.709961;60;0.239298194 549739.3105;7818543.199;-9060.160156;60;0.963009637 551814.3105;7821058.379;-9088.990234;60;0.381847337 552414.3105;7821114.691;-9063.009766;60;0.846837629 551901.8105;7818167.797;-9008.179688;60;0.994675384 548901.8105;7818637.047;-9142.330078;60;0.317070122 551726.8105;7820739.289;-9067.950195;60;0.739782633 551401.8105;7819838.328;-9056.089844;60;0.481969933 552064.3105;7817041.598;-8978.889648;60;0.296637394 548914.3105;7819500.469;-9151.459961;60;0.129764255 552201.8105;7821358.699;-9074.049805;60;0.034889416 551451.8105;7817604.699;-9034.549805;60;0.592534677 551676.8105;7820251.27;-9007.19043;60;0.255504216 551601.8105;7821227.309;-9114.379883;60;0.66470505 549089.3105;7818130.258;-9112.480469;60;0.392205531 551739.3105;7821283.617;-9110.660156;60;0.126715931 552414.3105;7820776.828;-9058.030273;60;0.929524359 549789.3105;7821565.168;-9178.679688;60;0.027341072 548914.3105;7819538.008;-9148.959961;60;0.757503724 551801.8105;7817266.84;-9000.009766;60;0.051496234 549076.8105;7818730.898;-9132.290039;60;0.9080621 552414.3105;7821171;-9066.509766;60;0.101465863 549776.8105;7817454.539;-9061.200195;60;0.866421131 548914.3105;7821452.551;-9207.950195;60;0.162458573 550926.8105;7821790.41;-9147.419922;60;0.190112932 551439.3105;7818956.141;-9027.290039;60;0.262423465 549864.3105;7816666.199;-9062.209961;60;0.929412403 550101.8105;7821321.16;-9158.280273;60;0.348100458 551514.3105;7819669.398;-9044.089844;60;0.136590909 549701.8105;7820645.438;-9128.990234;60;0.623712646 550126.8105;7821771.641;-9174.69043;60;0.457931001 551664.3105;7819932.18;-9021.219727;60;0.431646971 552276.8105;7819538.008;-9047.700195;60;0.737366456 549339.3105;7817135.449;-9034.150391;60;0.933233674 549389.3105;7818505.66;-9096.269531;60;0.620454153 549451.8105;7821377.469;-9182.450195;60;0.444723038 551814.3105;7817191.758;-9007.139648;60;0.493801169 549351.8105;7820833.141;-9182.099609;60;0.226771849 551976.8105;7819819.559;-9006.759766;60;0.991946905 551251.8105;7817248.07;-9012.290039;60;0.881911378 552189.3105;7821002.07;-9079.330078;60;0.253058197 549426.8105;7820157.418;-9135.360352;60;0.605805635 549164.3105;7821734.102;-9204.799805;60;0.995886263 552389.3105;7820926.988;-9054.30957;60;0.387869264 552314.3105;7821508.859;-9054.19043;60;0.065682275 552101.8105;7818224.109;-9036.150391;60;0.903553157 549364.3105;7818224.109;-9101.549805;60;0.902037298 551026.8105;7821677.789;-9115.410156;60;0.225500223 549189.3105;7820776.828;-9189.44043;60;0.397987285 549001.8105;7817998.871;-9104.379883;60;0.752965939 550026.8105;7821077.148;-9137.570313;60;0.450106217 551364.3105;7819218.918;-9046.570313;60;0.034455412 548901.8105;7820345.121;-9171.790039;60;0.829285995 552264.3105;7821358.699;-9071.929688;60;0.803119711 552401.8105;7819200.148;-9050.839844;60;0.738631624 549476.8105;7818824.75;-9077.389648;60;0.892449323 552226.8105;7817191.758;-8968.80957;60;0.807122432 551389.3105;7817135.449;-9020.490234;60;0.001684867 549389.3105;7821283.617;-9177.719727;60;0.803410609 552164.3105;7820833.141;-9068.469727;60;0.611328775 549364.3105;7820626.668;-9162.129883;60;0.974971451 549351.8105;7817905.02;-9088.759766;60;0.28221797 549301.8105;7817548.387;-9028.730469;60;0.377908869 548976.8105;7817191.758;-9069.330078;60;0.112520609 549064.3105;7817323.148;-9050.110352;60;0.907866372 552189.3105;7817679.777;-9012.30957;60;0.083784262 551514.3105;7819331.539;-9043.330078;60;0.566516033 549076.8105;7817661.008;-9054.049805;60;0.200514694 551789.3105;7820645.438;-9053.379883;60;0.417508793 551039.3105;7820382.66;-9028.839844;60;0.706221268 552189.3105;7819575.551;-9029.30957;60;0.398066319 551439.3105;7819218.918;-9048.230469;60;0.69107051 551876.8105;7819894.641;-9009.450195;60;0.234009942 551139.3105;7821396.238;-9129.150391;60;0.406771587 552001.8105;7820758.059;-9057.009766;60;0.68069678 552414.3105;7821152.23;-9065.400391;60;0.243414605 549376.8105;7820082.34;-9142.469727;60;0.235160681 552151.8105;7818993.68;-9044.980469;60;0.211189754 552101.8105;7819444.16;-9031.040039;60;0.003405498 549989.3105;7818055.18;-9099.019531;60;0.66283297 550239.3105;7820232.5;-8949.69043;60;0.802550734 549401.8105;7819556.777;-9121.719727;60;0.335857838 550139.3105;7821659.02;-9166.799805;60;0.362426927 548989.3105;7817285.609;-9065.269531;60;0.925875215 549101.8105;7817041.598;-9058.269531;60;0.029281909 552076.8105;7821452.551;-9063.769531;60;0.310923381 549476.8105;7817548.387;-9039.5;60;0.320788941 552126.8105;7820044.801;-8977.599609;60;0.091950882 552414.3105;7819462.93;-9049.099609;60;0.869015406 551751.8105;7820476.508;-9029.830078;60;0.906395805 549789.3105;7819857.098;-9073.379883;60;0.084815628 549026.8105;7821715.328;-9213.150391;60;0.098044606 551301.8105;7820833.141;-9095.959961;60;0.737155732 552089.3105;7817923.789;-9010.44043;60;0.22134975 551701.8105;7818824.75;-9023.75;60;0.136547545 551689.3105;7818749.668;-9019.75;60;0.842435656 549189.3105;7817323.148;-9022.080078;60;0.923956941 549901.8105;7821339.93;-9167.69043;60;0.848882258 549339.3105;7821809.18;-9194.669922;60;0.364780877 549276.8105;7816666.199;-9059.44043;60;0.72585066 551776.8105;7820082.34;-8969.769531;60;0.903289119 549051.8105;7821302.391;-9192.759766;60;0.120005164 549176.8105;7818430.578;-9110.860352;60;0.487978566 552339.3105;7819181.379;-9052.349609;60;0.54251326 551476.8105;7820288.809;-9034.080078;60;0.148447136 550064.3105;7820251.27;-8981.700195;60;0.233915703 548901.8105;7816666.199;-9088.009766;60;0.784928896 550901.8105;7820626.668;-9044.030273;60;0.783929616 549714.3105;7820795.598;-9145.049805;60;0.011116944 552439.3105;7821452.551;-9069.639648;60;0.214603001 551789.3105;7816666.199;-8992.070313;60;0.309827528 552014.3105;7818092.719;-9011.05957;60;0.676995792 550101.8105;7821039.609;-9126.910156;60;0.043889514 549051.8105;7821189.77;-9195.429688;60;0.286003258 550951.8105;7820645.438;-9053.19043;60;0.971340912 551714.3105;7817435.77;-9014.30957;60;0.128819952 549226.8105;7819538.008;-9138.849609;60;0.182168076 549664.3105;7817848.711;-9085.599609;60;0.521000618 551914.3105;7821302.391;-9095.660156;60;0.662017164 550614.3105;7817961.328;-9061.219727;60;0.804998927 551689.3105;7821264.848;-9118.55957;60;0.646870251 550714.3105;7818130.258;-9050.570313;60;0.186517253 549026.8105;7821771.641;-9213.219727;60;0.688896007 550864.3105;7816684.969;-9049.129883;60;0.869671854 550926.8105;7821827.949;-9149.719727;60;0.436143714 551626.8105;7818674.59;-9015.230469;60;0.243763354 551714.3105;7821171;-9110.540039;60;0.101360424 551714.3105;7816872.668;-9013.469727;60;0.896447565 549739.3105;7821002.07;-9165.719727;60;0.706884726 552301.8105;7817848.711;-8999.700195;60;0.722823396 550664.3105;7819425.391;-8999.849609;60;0.686075214 550914.3105;7821546.398;-9130.700195;60;0.364415566 549564.3105;7820026.027;-9117.44043;60;0.713923654 549139.3105;7817473.309;-9029.669922;60;0.647908576 549976.8105;7820682.98;-9084;60;0.965057664 549201.8105;7821583.941;-9189.469727;60;0.540874121 551676.8105;7817998.871;-9012.280273;60;0.969953732 549026.8105;7821677.789;-9211.929688;60;0.944536009 549989.3105;7821490.09;-9182.080078;60;0.487428158 549976.8105;7820101.109;-9032.330078;60;0.546367492 548914.3105;7821189.77;-9200.679688;60;0.196977221 551951.8105;7820739.289;-9052.5;60;0.66214821 548914.3105;7821415.008;-9205.80957;60;0.127126216 549389.3105;7821452.551;-9187.110352;60;0.200491856 549526.8105;7817529.617;-9035.889648;60;0.727634705 549476.8105;7818430.578;-9085.959961;60;0.097776085 549051.8105;7821020.84;-9190.589844;60;0.393517197 549276.8105;7821809.18;-9199.330078;60;0.774531785 548901.8105;7818899.828;-9149.070313;60;0.088588443 549176.8105;7821527.629;-9190.139648;60;0.152599168 549939.3105;7820795.598;-9112.849609;60;0.156798528 550364.3105;7821565.168;-9155.419922;60;0.088352433 549726.8105;7818205.34;-9092.469727;60;0.586650212 549289.3105;7817154.219;-9030.480469;60;0.066214951 550789.3105;7817229.301;-9030.549805;60;0.214703282 551476.8105;7820063.57;-9037.469727;60;0.011322712 550214.3105;7820814.371;-9078.849609;60;0.632939307 552439.3105;7821321.16;-9075.459961;60;0.343179125 551226.8105;7818393.039;-9019.049805;60;0.728613179 549889.3105;7818486.891;-9069.580078;60;0.102589754 551476.8105;7816835.129;-9017.490234;60;0.841709406 550014.3105;7820607.898;-9065.820313;60;0.765997053 549426.8105;7820983.297;-9170.759766;60;0.438151704 550326.8105;7816666.199;-9065.030273;60;0.68586335 552339.3105;7816666.199;-8954.129883;60;0.401307801 550039.3105;7819894.641;-9006.69043;60;0.389948661 552101.8105;7819275.23;-9039.110352;60;0.913479444 551539.3105;7820833.141;-9085.330078;60;0.641142717 548914.3105;7821846.719;-9226.480469;60;0.759203269 549714.3105;7821715.328;-9185.469727;60;0.08552683 549776.8105;7820889.449;-9150.910156;60;0.896813919 552339.3105;7818993.68;-9045.549805;60;0.452993447 549564.3105;7817172.988;-9031.339844;60;0.325597496 551151.8105;7817004.059;-9030.080078;60;0.99471926 549326.8105;7818430.578;-9106.910156;60;0.690544132 551414.3105;7817998.871;-9015.339844;60;0.432361091 548914.3105;7819688.168;-9151.610352;60;0.184980291 548964.3105;7819932.18;-9152.860352;60;0.441907943 549026.8105;7819331.539;-9154.889648;60;0.379123354 548926.8105;7820476.508;-9179.669922;60;0.421328682 549064.3105;7819688.168;-9155.230469;60;0.330528072 552214.3105;7817022.828;-8947.150391;60;0.916016596 551239.3105;7816816.359;-9017.759766;60;0.081670981 551076.8105;7817079.141;-9036.919922;60;0.241587108 552264.3105;7821752.867;-9023.200195;60;0.327821892 548901.8105;7818956.141;-9145.580078;60;0.718393349 549789.3105;7819782.02;-9072.25;60;0.347626061 549901.8105;7821715.328;-9189.620117;60;0.454164463 550964.3105;7820420.199;-9016.5;60;0.492807369 549814.3105;7816872.668;-9053.889648;60;0.388401796 551614.3105;7820645.438;-9062.030273;60;0.537786125 549401.8105;7816760.051;-9064.780273;60;0.983045295 549176.8105;7818486.891;-9114.700195;60;0.009126926 552051.8105;7817323.148;-8986.05957;60;0.6795875 549151.8105;7817886.25;-9082.349609;60;0.380419283 549001.8105;7818073.949;-9108.959961;60;0.528228361 550989.3105;7817022.828;-9039.160156;60;0.346741287 549451.8105;7820589.129;-9153.040039;60;0.638851641 549489.3105;7820682.98;-9155.549805;60;0.719716522 549489.3105;7817923.789;-9084.129883;60;0.046409262 549251.8105;7820870.68;-9188.009766;60;0.306249806 552326.8105;7820776.828;-9060.040039;60;0.277397361 549739.3105;7821621.48;-9177.780273;60;0.90159833 549589.3105;7821846.719;-9191.400391;60;0.563673547 550039.3105;7818956.141;-9059.55957;60;0.991284348 549326.8105;7818956.141;-9107.589844;60;0.285350869 549626.8105;7817191.758;-9038.330078;60;0.613561652 549264.3105;7816778.816;-9063.110352;60;0.612397523 549439.3105;7817285.609;-9004;60;0.064362705 550614.3105;7816741.277;-9068.540039;60;0.329008407 549326.8105;7821227.309;-9180.320313;60;0.694021215 551801.8105;7818787.207;-9026.700195;60;0.378912219 550064.3105;7818899.828;-9054.450195;60;0.318361302 550289.3105;7817341.918;-9059.070313;60;0.220880192 550101.8105;7821546.398;-9169.900391;60;0.282391194 551214.3105;7819125.07;-9044.240234;60;0.152120091 552226.8105;7818299.188;-9042.049805;60;0.154257216 552089.3105;7818393.039;-9036.929688;60;0.926114438 551814.3105;7820514.051;-9031.459961;60;0.340745729 551239.3105;7816741.277;-9017.360352;60;0.158271771 551901.8105;7818073.949;-9000.099609;60;0.574160613 552189.3105;7818843.52;-9044.639648;60;0.615766947 548989.3105;7818430.578;-9133.990234;60;0.970088255 549164.3105;7816853.898;-9074.209961;60;0.151036554 549326.8105;7821133.457;-9180.389648;60;0.030996248 548889.3105;7820157.418;-9165.30957;60;0.040784026 549439.3105;7820682.98;-9162.209961;60;0.733739838 551814.3105;7818618.281;-9030.860352;60;0.675535207 549576.8105;7816872.668;-9051.519531;60;0.987654699 551776.8105;7818055.18;-9000.570313;60;0.824618998 551639.3105;7817510.848;-9021.5;60;0.412687182 550926.8105;7817135.449;-9033.620117;60;0.299231953 550976.8105;7818787.207;-9043.410156;60;0.491030766 549289.3105;7817923.789;-9091.320313;60;0.136609129 552451.8105;7819200.148;-9050.530273;60;0.211123279 549251.8105;7817229.301;-9019.230469;60;0.018940043 549289.3105;7820758.059;-9184.429688;60;0.061611755 551639.3105;7820945.758;-9096.879883;60;0.574054782 549576.8105;7818712.129;-9065.769531;60;0.868939308 549689.3105;7820232.5;-9091.099609;60;0.591665913 549339.3105;7818618.281;-9097.759766;60;0.392288449 549426.8105;7821058.379;-9171.080078;60;0.281090757 549851.8105;7819875.867;-9061.919922;60;0.112140833 551076.8105;7816760.051;-9029.580078;60;0.654720097 552301.8105;7816835.129;-8954.099609;60;0.176512847 549901.8105;7821321.16;-9164.639648;60;0.605876783 549789.3105;7817079.141;-9058.089844;60;0.470026677 551851.8105;7818224.109;-9014.450195;60;0.95838404 548914.3105;7821696.559;-9223.570313;60;0.635259543 552251.8105;7818486.891;-9046.629883;60;0.113228065 549364.3105;7819913.41;-9136.030273;60;0.053955129 550426.8105;7819631.859;-8972.160156;60;0.85934723 549176.8105;7818393.039;-9108.980469;60;0.838204137 549076.8105;7818505.66;-9124.900391;60;0.758962168 552364.3105;7817792.398;-8989.769531;60;0.158772638 549226.8105;7820514.051;-9167.919922;60;0.957386956 548876.8105;7818242.879;-9131.30957;60;0.89154453 549789.3105;7820964.531;-9159.219727;60;0.871231493 549289.3105;7816853.898;-9059.830078;60;0.277653052 551539.3105;7820082.34;-9019.509766;60;0.294941908 551776.8105;7817135.449;-9011.889648;60;0.894102725 549539.3105;7817135.449;-9034.5;60;0.370084428 550501.8105;7820626.668;-8992.360352;60;0.331231979 549651.8105;7817022.828;-9051.280273;60;0.207211861 549239.3105;7818430.578;-9109.799805;60;0.073015236 552451.8105;7819106.301;-9046.219727;60;0.898140358 548989.3105;7821246.078;-9196.200195;60;0.339877182 549089.3105;7818167.797;-9115.240234;60;0.397778385 550614.3105;7818336.73;-9056.849609;60;0.650467516 551226.8105;7818543.199;-9022.139648;60;0.245541015 551639.3105;7819143.84;-9043.389648;60;0.416818691 550076.8105;7816666.199;-9046.120117;60;0.877775363 551951.8105;7816684.969;-8987.110352;60;0.95054055 548926.8105;7817266.84;-9081.169922;60;0.584034019 549976.8105;7821321.16;-9160.790039;60;0.052305487 549389.3105;7817304.379;-8997.929688;60;0.343844005 549514.3105;7820833.141;-9166.099609;60;0.594103575 552014.3105;7817022.828;-8986.870117;60;0.830292125 549014.3105;7820532.82;-9183.589844;60;0.998690251 549639.3105;7818543.199;-9069.30957;60;0.942517978 549539.3105;7820964.531;-9162.860352;60;0.064360375 549126.8105;7819143.84;-9142.820313;60;0.710231501 549301.8105;7817661.008;-9051.839844;60;0.205737441 549164.3105;7816684.969;-9072.339844;60;0.222472259 552364.3105;7819106.301;-9047.410156;60;0.612964783 552226.8105;7820758.059;-9064.75;60;0.58131603 549789.3105;7818899.828;-9081.080078;60;0.757398723 549201.8105;7817248.07;-9021.540039;60;0.622976822 552201.8105;7818918.598;-9046.360352;60;0.040272003 548939.3105;7820889.449;-9199.030273;60;0.143120327 549226.8105;7819143.84;-9127.110352;60;0.789721392 549089.3105;7817867.48;-9084.009766;60;0.744952177 551926.8105;7821696.559;-9037.410156;60;0.724822726 551989.3105;7816853.898;-9000.790039;60;0.653841275 552064.3105;7820664.211;-9056.730469;60;0.045454082 549289.3105;7820495.281;-9156.070313;60;0.341451491 549376.8105;7818411.809;-9102.410156;60;0.685840155 550101.8105;7817154.219;-9054.450195;60;0.056163468 550714.3105;7817191.758;-9034.099609;60;0.441504782 548989.3105;7818167.797;-9117.570313;60;0.087634452 551164.3105;7818393.039;-9023.25;60;0.40402334 551639.3105;7821752.867;-9060.040039;60;0.576375184 549651.8105;7820157.418;-9103.549805;60;0.044939411 551626.8105;7818918.598;-9024.94043;60;0.752693648 549851.8105;7820213.73;-9049.389648;60;0.691127442 552201.8105;7819950.949;-9001.040039;60;0.599480562 551389.3105;7817041.598;-9029;60;0.10782168 552176.8105;7817905.02;-9008.929688;60;0.088782887 551376.8105;7817604.699;-9033.269531;60;0.102648118 550251.8105;7821246.078;-9140.019531;60;0.122477204 548989.3105;7818730.898;-9139.660156;60;0.683248638 549651.8105;7818355.5;-9083.919922;60;0.562737443 551789.3105;7816760.051;-9000.530273;60;0.034397849 549239.3105;7818787.207;-9110.169922;60;0.543425837 549414.3105;7817454.539;-9010.709961;60;0.969108034 549176.8105;7818299.188;-9107.860352;60;0.497512214 550176.8105;7817041.598;-9045.639648;60;0.388234484 549426.8105;7818430.578;-9094.230469;60;0.985951937 551389.3105;7818674.59;-9013.950195;60;0.678901403 549851.8105;7817079.141;-9057.169922;60;0.952049639 549351.8105;7817679.777;-9061.519531;60;0.092684995 550689.3105;7817116.68;-9040.070313;60;0.248895494 551501.8105;7819406.617;-9038.480469;60;0.791303293 551239.3105;7818505.66;-9019.070313;60;0.806102239 548901.8105;7818768.438;-9147.160156;60;0.82241065 550126.8105;7818918.598;-9048.700195;60;0.331048542 550101.8105;7818524.43;-9079.459961;60;0.250750549 549826.8105;7820776.828;-9128.269531;60;0.557684791 551501.8105;7817060.367;-9024.709961;60;0.218883429 550664.3105;7821208.539;-9138.709961;60;0.432703424 552114.3105;7817323.148;-8981.889648;60;0.893062048 552176.8105;7820776.828;-9067.410156;60;0.141674222 550601.8105;7817097.91;-9043.509766;60;0.118073602 549489.3105;7817905.02;-9082.75;60;0.512880469 549289.3105;7817060.367;-9035.30957;60;0.617010802 549589.3105;7820645.438;-9138.370117;60;0.09454389 552314.3105;7820138.648;-9019.179688;60;0.08467081 549076.8105;7818674.59;-9132.639648;60;0.064756648 549089.3105;7820270.039;-9151.519531;60;0.717699218 549814.3105;7820701.75;-9120.860352;60;0.562078901 549976.8105;7820007.258;-9034.910156;60;0.782698421 552214.3105;7816666.199;-8972.469727;60;0.262673918 549814.3105;7818486.891;-9067.129883;60;0.770939407 550864.3105;7816853.898;-9040.700195;60;0.684434971 549551.8105;7817679.777;-9054.719727;60;0.646568161 551501.8105;7818336.73;-9021.400391;60;0.170689696 549076.8105;7820551.59;-9181.929688;60;0.191223375 549589.3105;7816966.52;-9049;60;0.807410195 549001.8105;7819857.098;-9157.530273;60;0.440823732 549239.3105;7818336.73;-9107.110352;60;0.107935394 552126.8105;7820082.34;-8977.929688;60;0.863386906 552301.8105;7818730.898;-9054.019531;60;0.687262826 549151.8105;7818730.898;-9125.139648;60;0.032531365 548951.8105;7817398.227;-9068.969727;60;0.777856188 550251.8105;7821809.18;-9165.410156;60;0.50771306 549926.8105;7817961.328;-9095.950195;60;0.087072611 551826.8105;7817135.449;-9008.570313;60;0.617634574 550014.3105;7817060.367;-9049.980469;60;0.153810753 551351.8105;7817360.688;-9018.830078;60;0.063331549 549426.8105;7820795.598;-9174.070313;60;0.410341494 551226.8105;7821640.25;-9120.519531;60;0.933556611 550876.8105;7817229.301;-9028.30957;60;0.230982704 549551.8105;7821527.629;-9178.980469;60;0.810532086 552289.3105;7818374.27;-9045.469727;60;0.242579126 551451.8105;7818524.43;-9019.480469;60;0.526186147 550301.8105;7821058.379;-9114.889648;60;0.673010923 550664.3105;7817604.699;-9055.980469;60;0.858512261 549576.8105;7820194.961;-9115.509766;60;0.590865365 551776.8105;7818693.359;-9025.429688;60;0.917437604 550664.3105;7819594.32;-9011.769531;60;0.0638358 549076.8105;7817417;-9045.200195;60;0.692157499 550689.3105;7821583.941;-9152.230469;60;0.212029053 551864.3105;7817079.141;-9003.719727;60;0.881536232 549701.8105;7818468.117;-9071.910156;60;0.037502327 549101.8105;7820701.75;-9186.839844;60;0.381952436 549039.3105;7820814.371;-9188.769531;60;0.237230855 549326.8105;7820401.43;-9147.55957;60;0.59246549 550001.8105;7817004.059;-9053.700195;60;0.820041624 549326.8105;7820251.27;-9137.5;60;0.804908886 549151.8105;7820157.418;-9136.870117;60;0.335071751 552339.3105;7819218.918;-9053.169922;60;0.527639542 552189.3105;7819012.449;-9045.719727;60;0.076395962 552014.3105;7820664.211;-9053.490234;60;0.413341312 551789.3105;7821809.18;-9026.839844;60;0.067186265 552076.8105;7820589.129;-9038.639648;60;0.5096403 552301.8105;7817492.078;-8965.780273;60;0.825619147 550689.3105;7819162.609;-8984.589844;60;0.956616076 552251.8105;7819125.07;-9049.660156;60;0.178951371 549739.3105;7821527.629;-9176.540039;60;0.031947354 552001.8105;7820814.371;-9060.94043;60;0.381222326 550114.3105;7821077.148;-9130.620117;60;0.251710977 549689.3105;7816891.438;-9047.490234;60;0.578694783 548889.3105;7817417;-9074.820313;60;0.548411525 549139.3105;7820026.027;-9147.139648;60;0.855744386 551351.8105;7817473.309;-9027.730469;60;0.023346005 551814.3105;7821734.102;-9037.410156;60;0.607104669 549826.8105;7821508.859;-9181.30957;60;0.741985629 551676.8105;7816722.508;-9006.240234;60;0.043315674 548989.3105;7818824.75;-9142.120117;60;0.14611473 549164.3105;7821246.078;-9189.790039;60;0.917348327 552326.8105;7821302.391;-9071.639648;60;0.277469647 549126.8105;7818918.598;-9123.94043;60;0.205034853 552264.3105;7820870.68;-9066.019531;60;0.229917493 549301.8105;7818881.059;-9101.679688;60;0.570413195 552426.8105;7817548.387;-8951.200195;60;0.23083397 551951.8105;7818824.75;-9039.55957;60;0.216833747 549176.8105;7819369.078;-9141.679688;60;0.402409452 549289.3105;7821246.078;-9181.540039;60;0.598608396 550039.3105;7820758.059;-9090.339844;60;0.096437883 549514.3105;7818712.129;-9067.719727;60;0.439924114 550014.3105;7816928.98;-9058.740234;60;0.864709766 551751.8105;7821114.691;-9098.570313;60;0.199638964 551664.3105;7817942.559;-9019.570313;60;0.192807468 552039.3105;7820401.43;-8985.660156;60;0.293890988 551389.3105;7819594.32;-9038.799805;60;0.34889761 552339.3105;7819031.219;-9045.780273;60;0.744598654 549676.8105;7817097.91;-9051.370117;60;0.340083655 550489.3105;7816985.289;-9060.879883;60;0.245832794 552301.8105;7817022.828;-8925.110352;60;0.273891227 549376.8105;7816910.207;-9058.299805;60;0.340018848 550789.3105;7821640.25;-9145.19043;60;0.867515903 551301.8105;7817004.059;-9028.969727;60;0.00704854 549476.8105;7821302.391;-9172.320313;60;0.948885761 549826.8105;7816985.289;-9055.860352;60;0.317401519 551164.3105;7819049.988;-9035.849609;60;0.996397591 549276.8105;7819162.609;-9119.219727;60;0.387256858 549476.8105;7818055.18;-9093.129883;60;0.902181513 552101.8105;7820908.219;-9073.080078;60;0.020951864 549526.8105;7818993.68;-9086.200195;60;0.303776462 552439.3105;7820720.52;-9059.650391;60;0.430931349 552014.3105;7821527.629;-9059.679688;60;0.954624153 548976.8105;7820082.34;-9145.540039;60;0.639350359 549976.8105;7820044.801;-9036.5;60;0.771747555 548914.3105;7818505.66;-9139.950195;60;0.691299063 551551.8105;7820007.258;-9028.469727;60;0.995334663 551726.8105;7816797.59;-9009.679688;60;0.007114185 551776.8105;7816816.359;-9007.80957;60;0.664447555 551614.3105;7817022.828;-9019.400391;60;0.091098317 549989.3105;7819106.301;-9047.75;60;0.877805162 548989.3105;7821527.629;-9203.769531;60;0.82942577 549401.8105;7817135.449;-9034.509766;60;0.099601004 550689.3105;7819650.629;-9013.669922;60;0.847070893 551039.3105;7817154.219;-9032.330078;60;0.759869771 550039.3105;7820532.82;-9051.929688;60;0.642601866 552414.3105;7816741.277;-8931.849609;60;0.668374489 549801.8105;7817585.93;-9073.419922;60;0.789257185 550989.3105;7817079.141;-9037.639648;60;0.380315567 550414.3105;7820270.039;-8935.009766;60;0.367801122 549176.8105;7818524.43;-9117.299805;60;0.060412869 549576.8105;7818974.91;-9075.639648;60;0.352508401 549751.8105;7816816.359;-9051.280273;60;0.481991151 549651.8105;7821208.539;-9179.879883;60;0.398427653 549076.8105;7818637.047;-9131.299805;60;0.222486118 552051.8105;7820138.648;-8960.299805;60;0.362768733 549489.3105;7818618.281;-9078.419922;60;0.711421953 549689.3105;7821077.148;-9174.580078;60;0.908443052 552214.3105;7819988.488;-9010.480469;60;0.252409824 550376.8105;7816835.129;-9057.639648;60;0.255045783 552089.3105;7818749.668;-9042.049805;60;0.305029401 549314.3105;7817229.301;-9017.099609;60;0.110316267 551914.3105;7818242.879;-9020.900391;60;0.778807699 551226.8105;7817398.227;-9020.30957;60;0.397242741 552126.8105;7816703.738;-8973.070313;60;0.205271052 549751.8105;7820176.188;-9078.990234;60;0.697133794 551601.8105;7820138.648;-8999.089844;60;0.390648671 549089.3105;7818224.109;-9117.530273;60;0.58829351 549289.3105;7817886.25;-9085.610352;60;0.205047226 552439.3105;7818505.66;-9046.950195;60;0.202102064 549214.3105;7819462.93;-9137.990234;60;0.028762112 551276.8105;7817079.141;-9024.55957;60;0.447343209 550664.3105;7817285.609;-9040.730469;60;0.918754871 549126.8105;7816947.75;-9068.070313;60;0.41994704 549776.8105;7820007.258;-9082.830078;60;0.850211284 549126.8105;7819106.301;-9137.830078;60;0.076959546 549339.3105;7817079.141;-9038.19043;60;0.443940225 549076.8105;7820232.5;-9148.709961;60;0.718752069 549114.3105;7816666.199;-9082.299805;60;0.880813977 551514.3105;7817229.301;-9012.259766;60;0.084634352 549339.3105;7820776.828;-9182.070313;60;0.919009246 548901.8105;7816703.738;-9090.19043;60;0.795303337 551864.3105;7821039.609;-9086.679688;60;0.264116523 548989.3105;7817848.711;-9090.200195;60;0.448652165 550614.3105;7817060.367;-9048.530273;60;0.115306773 551964.3105;7817172.988;-9011.349609;60;0.939622231 551839.3105;7816741.277;-8995.110352;60;0.457056002 549664.3105;7820945.758;-9160.709961;60;0.053244364 549651.8105;7820664.211;-9134.299805;60;0.986763557 549051.8105;7819875.867;-9157.400391;60;0.908219842 552014.3105;7817905.02;-9012.280273;60;0.021182596 551014.3105;7819988.488;-9030.75;60;0.994303896 549826.8105;7818449.348;-9074.820313;60;0.065399257 550976.8105;7817154.219;-9032.480469;60;0.342648904 551764.3105;7818599.508;-9027.330078;60;0.320714626 552189.3105;7817341.918;-8978.519531;60;0.477933669 551714.3105;7820814.371;-9077.870117;60;0.857374779 549539.3105;7820664.211;-9146.5;60;0.147108967 549476.8105;7818092.719;-9095.5;60;0.601121362 549801.8105;7817529.617;-9069.129883;60;0.523820604 550001.8105;7816722.508;-9046.070313;60;0.453377824 549676.8105;7817510.848;-9053.299805;60;0.755692996 549226.8105;7819819.559;-9147.759766;60;0.05247734 549464.3105;7820270.039;-9132;60;0.962871438 550876.8105;7817135.449;-9034.129883;60;0.248676707 549676.8105;7817323.148;-9037.419922;60;0.243132786 552414.3105;7816910.207;-8904.919922;60;0.039325655 551876.8105;7820814.371;-9062.389648;60;0.859334389 551439.3105;7819369.078;-9040.049805;60;0.348250997 551951.8105;7817079.141;-8995.389648;60;0.359315234 552251.8105;7818730.898;-9050.879883;60;0.156169752 549376.8105;7821077.148;-9175.419922;60;0.239695124 551476.8105;7818843.52;-9019;60;0.856738651 552264.3105;7819031.219;-9046.950195;60;0.736580263 549101.8105;7820945.758;-9188.150391;60;0.625475148 549364.3105;7817210.527;-9019.530273;60;0.987809412 552326.8105;7820326.348;-9018.94043;60;0.17188359 549239.3105;7817097.91;-9031.429688;60;0.087779098 549776.8105;7821490.09;-9179.25;60;0.535063351 550614.3105;7819181.379;-8972.549805;60;0.938394717 549276.8105;7816703.738;-9060.639648;60;0.775037372 552139.3105;7816666.199;-8972.160156;60;0.719888263 550114.3105;7818674.59;-9059.959961;60;0.866549125 549114.3105;7820795.598;-9187.240234;60;0.903276069 551039.3105;7821133.457;-9128.25;60;0.309649335 551401.8105;7818449.348;-9018.44043;60;0.220344187 550714.3105;7817285.609;-9036.209961;60;0.19883316 551026.8105;7818787.207;-9040.80957;60;0.316862547 551639.3105;7818317.957;-9018.839844;60;0.119950137 549801.8105;7820194.961;-9064.150391;60;0.698572667 551514.3105;7817172.988;-9015.929688;60;0.623047683 551589.3105;7820964.531;-9100.290039;60;0.700425989 549276.8105;7820232.5;-9137.490234;60;0.392346596 549539.3105;7818918.598;-9074.740234;60;0.819786289 549701.8105;7821227.309;-9176.780273;60;0.534578305 552139.3105;7819106.301;-9044.19043;60;0.115341803 549739.3105;7818261.648;-9091.009766;60;0.319175704 551464.3105;7818167.797;-9009.019531;60;0.027547107 549651.8105;7818712.129;-9067.570313;60;0.282898741 552351.8105;7816947.75;-8917.419922;60;0.895665063 550351.8105;7820495.281;-8978.280273;60;0.020612329 551389.3105;7819087.527;-9039.839844;60;0.807282758 552176.8105;7820908.219;-9072.75;60;0.837014219 552376.8105;7818843.52;-9051.099609;60;0.996453848 548901.8105;7818674.59;-9143.55957;60;0.184214607 549601.8105;7817341.918;-9023.410156;60;0.793717187 549364.3105;7816816.359;-9065.139648;60;0.364097492 551689.3105;7816947.75;-9015.860352;60;0.010392623 548976.8105;7818899.828;-9144.179688;60;0.705230556 551339.3105;7819444.16;-9032.429688;60;0.365988278 551739.3105;7817266.84;-9005.179688;60;0.145159319 551801.8105;7818543.199;-9029.820313;60;0.085044248 551114.3105;7820401.43;-9043.860352;60;0.800861189 552214.3105;7816703.738;-8974.669922;60;0.90658923 552114.3105;7817754.859;-9009.820313;60;0.085242333 549239.3105;7820345.121;-9144.099609;60;0.108789411 549326.8105;7816985.289;-9044.379883;60;0.587198285 549364.3105;7817754.859;-9073.709961;60;0.884934434 551751.8105;7818167.797;-9003.639648;60;0.870269053 550276.8105;7820889.449;-9091.709961;60;0.591709207 551914.3105;7817417;-8995.169922;60;0.47985368 551364.3105;7817829.938;-9025.049805;60;0.550419141 550889.3105;7820082.34;-9019.519531;60;0.399755936 549226.8105;7821095.918;-9183.799805;60;0.671702945 551926.8105;7820401.43;-8995.099609;60;0.135211773 551901.8105;7818393.039;-9029.370117;60;0.32543262 549989.3105;7816778.816;-9054.740234;60;0.957118883 549489.3105;7821077.148;-9169.25;60;0.494741948 549464.3105;7816760.051;-9063.650391;60;0.055213161 552039.3105;7820908.219;-9073.179688;60;0.874857256 551326.8105;7820382.66;-9058;60;0.232701378 551314.3105;7819087.527;-9040.019531;60;0.74863915 552364.3105;7817379.461;-8962.080078;60;0.700319656 551439.3105;7818787.207;-9017.860352;60;0.466818254 550676.8105;7818092.719;-9051.709961;60;0.675551081 550864.3105;7816797.59;-9041.900391;60;0.85612025 549526.8105;7819969.719;-9118.580078;60;0.47417062 549176.8105;7816778.816;-9073.719727;60;0.154723798 549064.3105;7818918.598;-9133.379883;60;0.688399787 549176.8105;7819725.711;-9150.879883;60;0.54686221 551364.3105;7816741.277;-9016.719727;60;0.824504484 552201.8105;7820551.59;-9023.839844;60;0.268432699 548889.3105;7820044.801;-9151.419922;60;0.245123997 552314.3105;7820739.289;-9058.580078;60;0.072898702 549226.8105;7821152.23;-9186.709961;60;0.001950601 549626.8105;7816891.438;-9047.530273;60;0.649082144 549464.3105;7817191.758;-9021.980469;60;0.709908653 551026.8105;7821208.539;-9124.780273;60;0.915159977 552176.8105;7818805.98;-9044.230469;60;0.198718217 550376.8105;7820213.73;-8939.5;60;0.535488665 549126.8105;7819049.988;-9130.740234;60;0.442277081 549364.3105;7820438.969;-9149.200195;60;0.83526646 551564.3105;7818073.949;-9005.330078;60;0.804168179 551889.3105;7816835.129;-9002.570313;60;0.26491166 549189.3105;7817004.059;-9049.929688;60;0.556660965 549689.3105;7817454.539;-9047.849609;60;0.604312304 549326.8105;7819218.918;-9111.19043;60;0.022012955 551964.3105;7821133.457;-9091.849609;60;0.844969863 549451.8105;7817060.367;-9047.879883;60;0.605737254 549101.8105;7817266.84;-9043.389648;60;0.543291421 551364.3105;7818618.281;-9011.990234;60;0.336252182 549551.8105;7821095.918;-9167.580078;60;0.267170497 552251.8105;7819218.918;-9050.679688;60;0.011916806 551601.8105;7818317.957;-9021.490234;60;0.969404456 549614.3105;7821471.32;-9176.400391;60;0.269059118 552251.8105;7817811.168;-9011.75;60;0.661630116 551339.3105;7818092.719;-9016.900391;60;0.255176438 549289.3105;7816985.289;-9043.30957;60;0.648444737 549201.8105;7820870.68;-9186.959961;60;0.339921428 551689.3105;7820476.508;-9035.240234;60;0.028002334 549726.8105;7818618.281;-9054.980469;60;0.819296677 549201.8105;7817980.098;-9096.980469;60;0.829774707 549851.8105;7820945.758;-9149.179688;60;0.405381077 549289.3105;7819237.688;-9119.240234;60;0.642996905 552201.8105;7818712.129;-9048.099609;60;0.310851299 548876.8105;7821508.859;-9214.129883;60;0.070042013 549389.3105;7821208.539;-9177.299805;60;0.13623487 549239.3105;7818730.898;-9112.269531;60;0.835582784 549614.3105;7818017.637;-9091.759766;60;0.670124043 551951.8105;7817923.789;-9013.669922;60;0.495086023 549651.8105;7821471.32;-9176.099609;60;0.695668416 549289.3105;7821508.859;-9180.230469;60;0.566522451 550701.8105;7819519.238;-9009.469727;60;0.838379749 551114.3105;7820326.348;-9039.05957;60;0.23105806 548876.8105;7821246.078;-9200.55957;60;0.712270978 549476.8105;7816816.359;-9064.120117;60;0.116001733 548914.3105;7818055.18;-9112.070313;60;0.947189401 552139.3105;7816947.75;-8973.860352;60;0.343541577 549714.3105;7820007.258;-9093.030273;60;0.418447108 550851.8105;7820307.578;-8980.019531;60;0.346834103 550926.8105;7816797.59;-9032.509766;60;0.265582383 551176.8105;7821659.02;-9119.160156;60;0.920591993 549314.3105;7818749.668;-9101.099609;60;0.268781472 549926.8105;7821264.848;-9156.570313;60;0.999324925 549514.3105;7816741.277;-9062.280273;60;0.590048038 552414.3105;7818956.141;-9046.610352;60;0.477884481 549564.3105;7816760.051;-9056.389648;60;0.376500788 551226.8105;7819631.859;-9044.339844;60;0.052043291 549214.3105;7820138.648;-9139.660156;60;0.287590837 549176.8105;7818599.508;-9121.75;60;0.86314232 551051.8105;7816797.59;-9029.280273;60;0.301159373 552051.8105;7820326.348;-8968.290039;60;0.941162742 551701.8105;7818167.797;-9006.330078;60;0.739963154 549189.3105;7819237.688;-9138.080078;60;0.116192366 551264.3105;7819481.699;-9030.769531;60;0.326753483 551776.8105;7820570.359;-9041.730469;60;0.672964603 551439.3105;7817717.32;-9032.419922;60;0.579041943 551064.3105;7819932.18;-9032.580078;60;0.598686353 550489.3105;7819650.629;-8976.259766;60;0.986493072 549939.3105;7818486.891;-9073.480469;60;0.87007312 552026.8105;7818937.367;-9044.80957;60;0.901692141 549664.3105;7821152.23;-9180.480469;60;0.20442958 549276.8105;7818486.891;-9108.049805;60;0.83699357 552414.3105;7818393.039;-9047.099609;60;0.180695898 550889.3105;7820138.648;-9016.080078;60;0.482315646 549226.8105;7820945.758;-9182.269531;60;0.684621417 549326.8105;7818712.129;-9099.490234;60;0.648349125 549626.8105;7816816.359;-9047.370117;60;0.427237591 551439.3105;7821809.18;-9093.200195;60;0.278280912 549001.8105;7816853.898;-9092.780273;60;0.693630601 552451.8105;7819012.449;-9045.049805;60;0.014501292 552389.3105;7820701.75;-9058.129883;60;0.577227725 549951.8105;7820363.887;-9045.030273;60;0.843788156 549401.8105;7816666.199;-9061.179688;60;0.461680012 549339.3105;7820682.98;-9172.860352;60;0.89705438 549514.3105;7818543.199;-9080.75;60;0.522346539 549401.8105;7818768.438;-9088.150391;60;0.697458857 549551.8105;7818092.719;-9091.139648;60;0.537688899 549989.3105;7817829.938;-9092.700195;60;0.928749192 551151.8105;7821809.18;-9113.070313;60;0.320656133 549676.8105;7818899.828;-9079.820313;60;0.428850756 552314.3105;7820701.75;-9055.599609;60;0.594261487 548914.3105;7821358.699;-9202.589844;60;0.372161663 551926.8105;7820438.969;-9005.490234;60;0.946431633 549439.3105;7821152.23;-9173.450195;60;0.42596735 552414.3105;7818355.5;-9045.070313;60;0.577024319 550051.8105;7821827.949;-9180.94043;60;0.7677645 549576.8105;7818862.289;-9071.719727;60;0.356977304 550326.8105;7820889.449;-9087.400391;60;0.711104647 549514.3105;7816666.199;-9059.620117;60;0.937356549 548914.3105;7821077.148;-9207.209961;60;0.468553659 549376.8105;7817961.328;-9092.150391;60;0.879120394 550089.3105;7821734.102;-9176.280273;60;0.603438457 552439.3105;7818918.598;-9049.030273;60;0.145287892 549626.8105;7820908.219;-9159.889648;60;0.580362208 549489.3105;7821152.23;-9171.110352;60;0.050256951 549239.3105;7817004.059;-9043.629883;60;0.557454639 549451.8105;7816684.969;-9061.040039;60;0.77467225 549314.3105;7818805.98;-9100.009766;60;0.816154362 551801.8105;7821208.539;-9099.360352;60;0.287058907 552314.3105;7818317.957;-9043.780273;60;0.29845914 549951.8105;7821640.25;-9190.070313;60;0.699482563 549276.8105;7821095.918;-9182.080078;60;0.71313806 549539.3105;7818411.809;-9080.030273;60;0.612008123 548989.3105;7816684.969;-9094.240234;60;0.353737237 550089.3105;7821396.238;-9169.55957;60;0.752465443 550864.3105;7816741.277;-9046.219727;60;0.683256274 549114.3105;7820739.289;-9187.360352;60;0.077924174 549114.3105;7817961.328;-9095.780273;60;0.397568945 552001.8105;7818824.75;-9042.05957;60;0.94864398 549201.8105;7820345.121;-9146.990234;60;0.799283198 551926.8105;7818299.188;-9025.269531;60;0.902255131 548901.8105;7818299.188;-9135.480469;60;0.155280719 549889.3105;7821640.25;-9188.490234;60;0.053650694 551401.8105;7816966.52;-9029.089844;60;0.369260951 549639.3105;7816947.75;-9049.160156;60;0.334253053 551601.8105;7820026.027;-9012.650391;60;0.126767672 549226.8105;7816835.129;-9066.669922;60;0.941186107 549414.3105;7820833.141;-9175.820313;60;0.435694136 549389.3105;7820682.98;-9167.860352;60;0.781413347 552351.8105;7818374.27;-9046.69043;60;0.560081914 549226.8105;7817172.988;-9024.740234;60;0.337264416 549589.3105;7818599.508;-9071.860352;60;0.328255708 549414.3105;7820739.289;-9171.990234;60;0.44552431 551164.3105;7817154.219;-9024.780273;60;0.596481676 548914.3105;7820964.531;-9205.669922;60;0.606788636 550839.3105;7821377.469;-9142.790039;60;0.668473281 549576.8105;7821415.008;-9175.950195;60;0.031238335 549839.3105;7819500.469;-9055.049805;60;0.106171756 549276.8105;7818317.957;-9106.599609;60;0.929108738 550039.3105;7821471.32;-9178.490234;60;0.170478632 552364.3105;7818674.59;-9054.05957;60;0.919753749 549826.8105;7817792.398;-9087.94043;60;0.076810833 551526.8105;7818674.59;-9008.330078;60;0.639814391 551401.8105;7817905.02;-9022.25;60;0.755133099 551851.8105;7818768.438;-9030.150391;60;0.303027199 550001.8105;7821827.949;-9184.790039;60;0.63199969 550101.8105;7821471.32;-9171.219727;60;0.109709881 549376.8105;7818055.18;-9096.530273;60;0.552477449 551964.3105;7816760.051;-8992.230469;60;0.029000756 548914.3105;7817585.93;-9070.320313;60;0.531664392 549339.3105;7821302.391;-9179.419922;60;0.32207253 550989.3105;7816741.277;-9027.94043;60;0.425826705 549664.3105;7820082.34;-9105.589844;60;0.403280911 550289.3105;7818655.82;-9067.799805;60;0.105911752 550714.3105;7821377.469;-9144.679688;60;0.040911042 550139.3105;7821715.328;-9170.719727;60;0.985220828 549426.8105;7821227.309;-9173.150391;60;0.224861454 552114.3105;7819875.867;-8988.540039;60;0.375942263 549339.3105;7821508.859;-9182.950195;60;0.814694964 549001.8105;7818224.109;-9123.599609;60;0.684592087 551039.3105;7817210.527;-9026.820313;60;0.785856415 552439.3105;7817754.859;-8984.80957;60;0.110671841 549901.8105;7817154.219;-9056.349609;60;0.08005378 549139.3105;7820870.68;-9187.179688;60;0.957916956 551226.8105;7818693.359;-9026.320313;60;0.210077115 551826.8105;7816816.359;-9004.080078;60;0.10277478 549239.3105;7818655.82;-9114.299805;60;0.828108934 549089.3105;7818393.039;-9119.719727;60;0.417064951 551514.3105;7816985.289;-9025.959961;60;0.94740628 551739.3105;7816684.969;-8997.530273;60;0.054639778 552176.8105;7817398.227;-8979.599609;60;0.702932047 552114.3105;7818299.188;-9035.30957;60;0.131458252 549001.8105;7817792.398;-9086.089844;60;0.537982611 549464.3105;7820833.141;-9170.769531;60;0.667543017 549201.8105;7817548.387;-9027.370117;60;0.277118626 552289.3105;7817736.09;-9010.599609;60;0.705450658 549489.3105;7817060.367;-9047.530273;60;0.372927656 552251.8105;7821189.77;-9075.209961;60;0.060751255 549089.3105;7820870.68;-9188.919922;60;0.914435402 549939.3105;7821565.168;-9189.269531;60;0.831655967 551226.8105;7819181.379;-9049.879883;60;0.080582541 549051.8105;7818956.141;-9135.360352;60;0.992414725 549589.3105;7818092.719;-9090.950195;60;0.521027827 551901.8105;7818749.668;-9034.459961;60;0.210635296 549089.3105;7818430.578;-9121.320313;60;0.510771164 549064.3105;7817961.328;-9098.629883;60;0.570339059 549376.8105;7817998.871;-9094.870117;60;0.58100588 551339.3105;7821752.867;-9112.120117;60;0.507178907 549389.3105;7820326.348;-9140.860352;60;0.488209689 548914.3105;7816947.75;-9079.589844;60;0.702259729 551826.8105;7820570.359;-9040.700195;60;0.236542461 549264.3105;7820326.348;-9142.200195;60;0.272185646 548914.3105;7818355.5;-9136.980469;60;0.820052133 548914.3105;7818092.719;-9113.919922;60;0.471720519 552001.8105;7818730.898;-9039.94043;60;0.220194827 549301.8105;7817604.699;-9040.480469;60;0.777883383 549676.8105;7818937.367;-9077.040039;60;0.511028914 552339.3105;7818468.117;-9047.599609;60;0.641285797 548914.3105;7816778.816;-9095.169922;60;0.09311449 549239.3105;7819237.688;-9128.530273;60;0.083820749 549664.3105;7818749.668;-9070.040039;60;0.419417692 549801.8105;7818580.738;-9049.240234;60;0.675523374 550151.8105;7821415.008;-9163.110352;60;0.743340506 551351.8105;7819406.617;-9035.230469;60;0.889002645 550026.8105;7821677.789;-9182.929688;60;0.694080758 550451.8105;7820814.371;-9053.669922;60;0.549969016 551801.8105;7818167.797;-9001.969727;60;0.740753692 552201.8105;7816797.59;-8976.429688;60;0.42738906 549864.3105;7821246.078;-9159.540039;60;0.73203795 549714.3105;7819838.328;-9085.959961;60;0.217915946 549564.3105;7817435.77;-9025.490234;60;0.844752196 549876.8105;7817623.469;-9074.730469;60;0.439279314 551464.3105;7818261.648;-9013.740234;60;0.22123578 549151.8105;7817248.07;-9031.150391;60;0.751544442 549764.3105;7817022.828;-9055.200195;60;0.801990992 549264.3105;7818524.43;-9108.919922;60;0.564641669 548901.8105;7818543.199;-9140.709961;60;0.242524236 549389.3105;7819125.07;-9107.19043;60;0.767992731 549814.3105;7820101.109;-9073.820313;60;0.088924919 549476.8105;7821208.539;-9169.370117;60;0.39696887 551526.8105;7821152.23;-9113.259766;60;0.114037177 549414.3105;7819031.219;-9106.05957;60;0.981469584 550976.8105;7817210.527;-9027.839844;60;0.500660413 551939.3105;7818730.898;-9036.580078;60;0.230757231 549626.8105;7817417;-9032.299805;60;0.565313195 552126.8105;7819988.488;-8978.740234;60;0.735540189 549076.8105;7817473.309;-9043.650391;60;0.758049296 548901.8105;7817998.871;-9109.799805;60;0.059767345 551339.3105;7821715.328;-9112.30957;60;0.694250496 552101.8105;7818355.5;-9035.379883;60;0.695272213 551226.8105;7818449.348;-9017.879883;60;0.739568458 549576.8105;7818824.75;-9071.139648;60;0.574358213 548964.3105;7818655.82;-9139.160156;60;0.837788633 549526.8105;7816985.289;-9051.429688;60;0.312446408 549814.3105;7819706.938;-9065.320313;60;0.299113491 549526.8105;7816816.359;-9061.419922;60;0.980028103 552364.3105;7818730.898;-9054.700195;60;0.280664537 549251.8105;7818693.359;-9111.570313;60;0.999252128 551051.8105;7816666.199;-9031.040039;60;0.159400958 549226.8105;7820701.75;-9184.169922;60;0.56374848 549464.3105;7819031.219;-9099.830078;60;0.991466942 552326.8105;7818843.52;-9050.450195;60;0.604359485 549564.3105;7820908.219;-9162.240234;60;0.136258054 551764.3105;7818486.891;-9025.240234;60;0.069608148 551926.8105;7820589.129;-9040.700195;60;0.472109751 549676.8105;7821114.691;-9178.650391;60;0.556862581 549989.3105;7817154.219;-9054.169922;60;0.597579594 549214.3105;7821377.469;-9183.540039;60;0.725009604 550989.3105;7816872.668;-9029.139648;60;0.651269015 550139.3105;7821490.09;-9163.5;60;0.897543423 549739.3105;7819857.098;-9081.820313;60;0.005297839 552439.3105;7816684.969;-8931.080078;60;0.196088678 549401.8105;7820401.43;-9146.429688;60;0.996879985 549939.3105;7817004.059;-9057.429688;60;0.949840101 550926.8105;7816666.199;-9039.980469;60;0.681299052 550814.3105;7816872.668;-9046.05957;60;0.202459586 552139.3105;7819950.949;-8981.910156;60;0.98040624 551751.8105;7821809.18;-9031.139648;60;0.800434714 549364.3105;7821002.07;-9176.099609;60;0.476552567 549951.8105;7817154.219;-9054.540039;60;0.636730929 549114.3105;7821302.391;-9190.889648;60;0.604919815 550001.8105;7818599.508;-9060.009766;60;0.122999395 549901.8105;7820607.898;-9089.660156;60;0.426738274 550226.8105;7820457.738;-8987.549805;60;0.837685342 549139.3105;7818580.738;-9123.709961;60;0.809030655 550401.8105;7820401.43;-8958.55957;60;0.536059578 549189.3105;7817754.859;-9059.820313;60;0.173721616 549001.8105;7818393.039;-9132.450195;60;0.790081741 548889.3105;7818468.117;-9141;60;0.645052189 549489.3105;7820326.348;-9136.150391;60;0.794192294 548889.3105;7817679.777;-9085.740234;60;0.437989423 549514.3105;7820194.961;-9124.30957;60;0.458162394 551689.3105;7818092.719;-9004.709961;60;0.038223722 548914.3105;7817116.68;-9082.700195;60;0.681886502 549414.3105;7817923.789;-9084.900391;60;0.558553199 551826.8105;7817304.379;-8995.400391;60;0.046729248 548989.3105;7820814.371;-9190.719727;60;0.389930795 549651.8105;7820851.91;-9155.44043;60;0.474109152 549889.3105;7819631.859;-9048.660156;60;0.909974289 549439.3105;7820326.348;-9139.410156;60;0.312864263 551601.8105;7818186.57;-9008.740234;60;0.451037216 552289.3105;7818524.43;-9047.080078;60;0.470770783 552326.8105;7818224.109;-9042;60;0.579888923 549239.3105;7820983.297;-9180.450195;60;0.089564241 549689.3105;7821621.48;-9177.839844;60;0.761598407 549439.3105;7816985.289;-9054.509766;60;0.883787005 550226.8105;7820983.297;-9111.580078;60;0.22258006 549226.8105;7820908.219;-9185.200195;60;0.865108614 551976.8105;7817773.629;-9014.25;60;0.968010902 549464.3105;7816910.207;-9059.69043;60;0.201522267 550201.8105;7820307.578;-8950.290039;60;0.06587125 549464.3105;7817135.449;-9033.910156;60;0.544100463 551464.3105;7821490.09;-9109.459961;60;0.21890508 551926.8105;7820270.039;-8965.25;60;0.280677212 549889.3105;7821583.941;-9187.379883;60;0.495601845 549314.3105;7818167.797;-9103.679688;60;0.416389082 549814.3105;7820495.281;-9105.599609;60;0.741096695 550876.8105;7817304.379;-9023.05957;60;0.020280153 549001.8105;7820870.68;-9193.320313;60;0.307442783 550076.8105;7820851.91;-9102.209961;60;0.676353076 550014.3105;7820363.887;-9026.910156;60;0.415352348 552176.8105;7817829.938;-9015.450195;60;0.874411275 548901.8105;7820213.73;-9168.320313;60;0.152069637 549264.3105;7820138.648;-9141.769531;60;0.892787129 551826.8105;7818693.359;-9029.75;60;0.91882766 549276.8105;7817998.871;-9100.110352;60;0.444958732 551639.3105;7818149.027;-9005.889648;60;0.450346408 549914.3105;7818017.637;-9096.900391;60;0.83999455 549339.3105;7820889.449;-9181.769531;60;0.654303928 549301.8105;7819125.07;-9116.200195;60;0.655035576 549389.3105;7821152.23;-9176.570313;60;0.264124294 552439.3105;7821377.469;-9075.870117;60;0.193113651 549801.8105;7818730.898;-9054.730469;60;0.495043434 549139.3105;7817079.141;-9044.919922;60;0.60103304 550114.3105;7817097.91;-9048.530273;60;0.288879486 552239.3105;7817661.008;-9005.700195;60;0.724939722 552101.8105;7817623.469;-9005.599609;60;0.660447378 551301.8105;7816666.199;-9013.919922;60;0.294308649 550026.8105;7820926.988;-9122.030273;60;0.002268321 551439.3105;7817661.008;-9034.240234;60;0.564210683 551851.8105;7820420.199;-9007.139648;60;0.012114666 549064.3105;7820119.879;-9141.160156;60;0.517140912 549164.3105;7818768.438;-9121.669922;60;0.407977824 549451.8105;7821827.949;-9200.150391;60;0.709420692 551626.8105;7816928.98;-9018.299805;60;0.736418708 550789.3105;7817191.758;-9032.55957;60;0.374328823 550089.3105;7818993.68;-9055.139648;60;0.066121196 550026.8105;7820420.199;-9038.860352;60;0.159484481 552314.3105;7818299.188;-9043.450195;60;0.724837237 549926.8105;7821846.719;-9188.099609;60;0.601605672 550026.8105;7821640.25;-9182.839844;60;0.430272257 549526.8105;7818449.348;-9079.450195;60;0.443854396 551364.3105;7817191.758;-9015.009766;60;0.717423611 549401.8105;7818805.98;-9088.839844;60;0.665282129 550214.3105;7821339.93;-9153.339844;60;0.204909493 549126.8105;7819988.488;-9149.700195;60;0.719756908 551426.8105;7821565.168;-9107.740234;60;0.434042942 550864.3105;7817266.84;-9025.950195;60;0.432622273 549014.3105;7817736.09;-9078.299805;60;0.109625549 548876.8105;7820795.598;-9195.240234;60;0.037358689 551551.8105;7820213.73;-9014.110352;60;0.531799973 551301.8105;7817041.598;-9027.620117;60;0.718586271 549001.8105;7818261.648;-9126.900391;60;0.203896266 549364.3105;7818167.797;-9100.709961;60;0.654033178 551826.8105;7820476.508;-9023.870117;60;0.973835336 549989.3105;7818524.43;-9071.139648;60;0.139919066 550639.3105;7819631.859;-9010.549805;60;0.381632686 549864.3105;7820626.668;-9100.240234;60;0.173552893 548989.3105;7818862.289;-9142.950195;60;0.518092153 548926.8105;7817004.059;-9077.450195;60;0.680914949 549901.8105;7820044.801;-9061.75;60;0.266146524 551914.3105;7817379.461;-8990.80957;60;0.708113264 548876.8105;7818393.039;-9139.549805;60;0.883766566 552039.3105;7821058.379;-9083.269531;60;0.94919949 549376.8105;7819031.219;-9111.009766;60;0.721003147 549526.8105;7818505.66;-9079.410156;60;0.844103165 548989.3105;7816647.43;-9092.240234;60;0.354041208 549489.3105;7820739.289;-9161.160156;60;0.137163709 552389.3105;7816684.969;-8941.820313;60;0.597571659 549464.3105;7817998.871;-9089.099609;60;0.783173313 550514.3105;7820176.188;-8931.110352;60;0.467853871 549139.3105;7819012.449;-9126.339844;60;0.84003595 549239.3105;7817623.469;-9038.05957;60;0.900204763 549426.8105;7818956.141;-9095.669922;60;0.768026114 549426.8105;7816910.207;-9060.019531;60;0.489896237 550089.3105;7817473.309;-9059.44043;60;0.600621881 549076.8105;7817754.859;-9070.05957;60;0.061032687 551926.8105;7820363.887;-8986.089844;60;0.786401647 550914.3105;7820345.121;-8997.450195;60;0.171980996 549451.8105;7819143.84;-9103.540039;60;0.450167914 548889.3105;7819049.988;-9144.150391;60;0.007386148 549301.8105;7818843.52;-9101.089844;60;0.520872227 552239.3105;7818993.68;-9046.929688;60;0.454832017 552301.8105;7818449.348;-9047.230469;60;0.946842217 550401.8105;7820908.219;-9078.780273;60;0.433418149 549951.8105;7817848.711;-9094.290039;60;0.108716431 549064.3105;7817811.168;-9079.620117;60;0.271724703 551726.8105;7816741.277;-9003.910156;60;0.204636626 550401.8105;7820814.371;-9059.679688;60;0.004991208 549839.3105;7819387.852;-9047.370117;60;0.939610949 548889.3105;7817736.09;-9094.769531;60;0.350923358 550414.3105;7821246.078;-9126.480469;60;0.609966771 551464.3105;7819275.23;-9047.339844;60;0.735794198 549439.3105;7819106.301;-9104.879883;60;0.605696785 549076.8105;7818543.199;-9126.620117;60;0.78255456 551339.3105;7818730.898;-9020.849609;60;0.353072279 550614.3105;7821039.609;-9109.410156;60;0.147188212 548901.8105;7821396.238;-9205.69043;60;0.820447163 549901.8105;7818580.738;-9052.089844;60;0.717470128 549014.3105;7818674.59;-9136.30957;60;0.074115648 549451.8105;7818543.199;-9087.75;60;0.746759449 549214.3105;7819031.219;-9119.669922;60;0.741864892 552276.8105;7818618.281;-9050.950195;60;0.171736625 548889.3105;7817473.309;-9072.660156;60;0.590115109 550964.3105;7818730.898;-9046.799805;60;0.326343182 552151.8105;7818486.891;-9044.209961;60;0.234762052 550801.8105;7820176.188;-8992.650391;60;0.345954165 550089.3105;7818805.98;-9050.780273;60;0.785087707 549439.3105;7817642.238;-9056.389648;60;0.65529944 549739.3105;7820945.758;-9160.219727;60;0.867188691 551639.3105;7819087.527;-9038.780273;60;0.694739628 551251.8105;7819312.77;-9039.330078;60;0.315957572 551651.8105;7817172.988;-9013.790039;60;0.901844677 551289.3105;7816947.75;-9026.410156;60;0.480675438 549376.8105;7818843.52;-9092.709961;60;0.614235099 552376.8105;7817604.699;-8970.549805;60;0.593890063 549339.3105;7818524.43;-9100.389648;60;0.602273345 551239.3105;7816872.668;-9019.679688;60;0.254283878 550864.3105;7817060.367;-9039.990234;60;0.606150758 549164.3105;7820945.758;-9184.19043;60;0.301191223 549126.8105;7819237.688;-9148.05957;60;0.040913551 551676.8105;7818655.82;-9019.400391;60;0.841320709 549826.8105;7819932.18;-9070.009766;60;0.926589127 549164.3105;7821002.07;-9182.969727;60;0.168718127 549739.3105;7819763.25;-9082.139648;60;0.78044432 551576.8105;7820363.887;-9039.669922;60;0.31597174 549739.3105;7821752.867;-9185.379883;60;0.505929601 550426.8105;7821827.949;-9163.80957;60;0.705160485 551114.3105;7817248.07;-9019.490234;60;0.750218157 549876.8105;7819444.16;-9045.730469;60;0.074260198 552014.3105;7818899.828;-9044.549805;60;0.088550947 549851.8105;7818768.438;-9056.69043;60;0.724848922 551189.3105;7818805.98;-9029.030273;60;0.777947647 548964.3105;7818486.891;-9135.830078;60;0.302605759 550114.3105;7816853.898;-9060.240234;60;0.05053603 551164.3105;7817341.918;-9018.459961;60;0.230168057 548976.8105;7819049.988;-9141.44043;60;0.447689366 552301.8105;7817360.688;-8975.660156;60;0.244541784 549376.8105;7818956.141;-9103.25;60;0.708337404 549351.8105;7816666.199;-9061.490234;60;0.143228852 551364.3105;7819369.078;-9038.849609;60;0.921950803 551876.8105;7820570.359;-9040.330078;60;0.525650152 552189.3105;7818749.668;-9045.889648;60;0.208602896 552039.3105;7818730.898;-9041.44043;60;0.706878881 549951.8105;7816928.98;-9061.230469;60;0.855108486 551939.3105;7819012.449;-9044.209961;60;0.915373726 548939.3105;7820758.059;-9189.410156;60;0.856338082 549789.3105;7819575.551;-9067.740234;60;0.799655265 549539.3105;7818167.797;-9094.660156;60;0.102619564 548901.8105;7816760.051;-9093.969727;60;0.240803769 549501.8105;7817998.871;-9088.900391;60;0.032938102 549339.3105;7820345.121;-9143.450195;60;0.528800455 549276.8105;7818599.508;-9108.589844;60;0.743866706 549776.8105;7819331.539;-9056.099609;60;0.389261316 551264.3105;7818580.738;-9020.669922;60;0.52361822 552401.8105;7819031.219;-9044.69043;60;0.152605013 549189.3105;7819143.84;-9133.230469;60;0.534239635 551439.3105;7821827.949;-9093.110352;60;0.576608853 549351.8105;7817304.379;-8996.339844;60;0.921795736 548901.8105;7816928.98;-9081.959961;60;0.492365921 550689.3105;7817060.367;-9047.040039;60;0.031519355 550814.3105;7817135.449;-9035.589844;60;0.69971225 550751.8105;7816947.75;-9051.370117;60;0.081195003 551176.8105;7816872.668;-9023.69043;60;0.449717106 550414.3105;7821339.93;-9133.990234;60;0.655392381 551451.8105;7819331.539;-9043.75;60;0.527644061 549989.3105;7818956.141;-9064.129883;60;0.841996852 549439.3105;7818712.129;-9080.150391;60;0.530397454 549601.8105;7816684.969;-9047.540039;60;0.104715171 549051.8105;7819237.688;-9155.330078;60;0.326592112 549051.8105;7821527.629;-9196.980469;60;0.151446784 549126.8105;7817323.148;-9038.410156;60;0.899311839 550376.8105;7820044.801;-8946.30957;60;0.586803554 550676.8105;7816684.969;-9068.980469;60;0.291361545 549701.8105;7817022.828;-9052.980469;60;0.334214462 552051.8105;7816666.199;-8957.719727;60;0.620291433 551651.8105;7816872.668;-9014.929688;60;0.413510797 548976.8105;7817097.91;-9069.959961;60;0.163050805 552301.8105;7817548.387;-8973.480469;60;0.001665413 551964.3105;7821602.711;-9061.540039;60;0.56619975 549389.3105;7820514.051;-9152.25;60;0.910116862 549889.3105;7820007.258;-9062.759766;60;0.515996824 549114.3105;7819200.148;-9148.389648;60;0.555796326 549551.8105;7816666.199;-9054.19043;60;0.793598031 550876.8105;7817004.059;-9043.110352;60;0.543968875 548876.8105;7819125.07;-9153.320313;60;0.144882453 549464.3105;7821602.711;-9188;60;0.118270242 548914.3105;7819125.07;-9152.349609;60;0.629694332 549076.8105;7818862.289;-9130.650391;60;0.240975165 549051.8105;7821246.078;-9194.040039;60;0.341137003 550001.8105;7817998.871;-9096.929688;60;0.421310683 549876.8105;7819950.949;-9060.669922;60;0.153656486 552076.8105;7818993.68;-9043.089844;60;0.3162271 549264.3105;7819049.988;-9118.769531;60;0.546588068 549514.3105;7820476.508;-9145.620117;60;0.199879574 549751.8105;7817642.238;-9072.549805;60;0.314128535 549551.8105;7820607.898;-9141.900391;60;0.892207416 549439.3105;7820514.051;-9151.419922;60;0.660942566 552176.8105;7818224.109;-9041.540039;60;0.178815175 550064.3105;7818580.738;-9068.150391;60;0.511573866 549239.3105;7820795.598;-9189.419922;60;0.789503888 551301.8105;7817398.227;-9021.19043;60;0.927461738 549276.8105;7821377.469;-9180.419922;60;0.842294215 550776.8105;7817323.148;-9032.620117;60;0.723415427 552301.8105;7816966.52;-8928.490234;60;0.269653241 549851.8105;7821809.18;-9188;60;0.483841862 549276.8105;7818974.91;-9111.070313;60;0.894185328 549789.3105;7817135.449;-9058.320313;60;0.81152625 551064.3105;7818693.359;-9041.160156;60;0.987300034 549026.8105;7820739.289;-9186.330078;60;0.024127959 549539.3105;7820401.43;-9138.110352;60;0.200916936 550826.8105;7820082.34;-9008.320313;60;0.733162038 551889.3105;7818918.598;-9037.05957;60;0.474839731 548901.8105;7817792.398;-9091.879883;60;0.283406523 551739.3105;7818730.898;-9022;60;0.443647364 551326.8105;7819538.008;-9034.280273;60;0.276099446 550614.3105;7818167.797;-9058.740234;60;0.265190836 551076.8105;7818768.438;-9037.889648;60;0.174272135 549039.3105;7819200.148;-9155.099609;60;0.844843199 549039.3105;7819106.301;-9144.740234;60;0.288741355 548964.3105;7819200.148;-9158.69043;60;0.044982154 551876.8105;7818674.59;-9032.349609;60;0.142933237 550201.8105;7817285.609;-9055.980469;60;0.026189505 550689.3105;7816947.75;-9055.490234;60;0.092351572 549351.8105;7820514.051;-9153.240234;60;0.210443767 552426.8105;7818862.289;-9051.349609;60;0.284547698 552439.3105;7818730.898;-9053.040039;60;0.912560402 550814.3105;7820138.648;-9001.160156;60;0.591627088 550614.3105;7817792.398;-9065.469727;60;0.342661659 551601.8105;7820082.34;-9001.480469;60;0.822136599 548889.3105;7819200.148;-9162.519531;60;0.348919454 552364.3105;7818524.43;-9046.889648;60;0.522911592 552289.3105;7818655.82;-9052.839844;60;0.944624259 548976.8105;7819143.84;-9152.209961;60;0.135681213 551726.8105;7818674.59;-9022.179688;60;0.863736579 550614.3105;7820795.598;-9066.969727;60;0.933836824 549389.3105;7818693.359;-9089.080078;60;0.829569085 549951.8105;7818956.141;-9066.129883;60;0.567492406 548901.8105;7819012.449;-9142.75;60;0.53373591 549201.8105;7819068.758;-9124.419922;60;0.65309829 551176.8105;7816816.359;-9023.679688;60;0.793968075 550751.8105;7817060.367;-9043.469727;60;0.437627784 551426.8105;7816891.438;-9021.150391;60;0.562788247 548901.8105;7821114.691;-9205.570313;60;0.258073541 549664.3105;7820889.449;-9158.549805;60;0.372305419 549476.8105;7818956.141;-9087.870117;60;0.124036008 548989.3105;7816816.359;-9097.19043;60;0.410165583 549701.8105;7820026.027;-9096.389648;60;0.589737616 552039.3105;7818824.75;-9042.379883;60;0.7740661 549351.8105;7819125.07;-9110.44043;60;0.921893152 549301.8105;7816816.359;-9062.410156;60;0.426751066 550064.3105;7817510.848;-9060.94043;60;0.35132838 549551.8105;7817041.598;-9047.55957;60;0.584448195 549964.3105;7820926.988;-9130.599609;60;0.404205515 551889.3105;7819087.527;-9044.879883;60;0.821587163 551751.8105;7818543.199;-9025.580078;60;0.102418169 549114.3105;7820814.371;-9187.450195;60;0.448811126 552439.3105;7816778.816;-8925.75;60;0.671271068 550614.3105;7818224.109;-9056.919922;60;0.287311601 549476.8105;7818712.129;-9073.450195;60;0.485910973 549564.3105;7820251.27;-9117.55957;60;0.460001776 549851.8105;7818712.129;-9046.719727;60;0.060159224 552439.3105;7818824.75;-9052.160156;60;0.133216379 549989.3105;7819162.609;-9041.339844;60;0.992174896 551876.8105;7819031.219;-9043.25;60;0.056705924 552339.3105;7821171;-9066.980469;60;0.968240992 548951.8105;7817773.629;-9088.19043;60;0.96561113 549214.3105;7817886.25;-9082.200195;60;0.66858178 550351.8105;7820270.039;-8943.400391;60;0.416202569 552426.8105;7818768.438;-9052.650391;60;0.950648639 552239.3105;7817492.078;-8976.700195;60;0.361113728 552239.3105;7817360.688;-8975.280273;60;0.192145778 551914.3105;7818843.52;-9036.320313;60;0.099870582 550751.8105;7817004.059;-9049.139648;60;0.573485168 550614.3105;7819237.688;-8971.740234;60;0.894047018 550489.3105;7820701.75;-9013.599609;60;0.103815194 548951.8105;7817548.387;-9064.820313;60;0.626794884 551289.3105;7818224.109;-9019.480469;60;0.522351298 548964.3105;7819969.719;-9150.839844;60;0.838487374 549689.3105;7821827.949;-9184.820313;60;0.213334593 551114.3105;7816872.668;-9029.480469;60;0.533246824 552264.3105;7818956.141;-9047.30957;60;0.146957996 549764.3105;7817698.547;-9076.009766;60;0.377608618 552064.3105;7817097.91;-8980.919922;60;0.151428027 551926.8105;7817229.301;-9013.410156;60;0.05251343 551026.8105;7820438.969;-9031.650391;60;0.206068227 550076.8105;7820363.887;-9006.070313;60;0.023244727 551764.3105;7816891.438;-9012.969727;60;0.437416752 552389.3105;7821302.391;-9073.650391;60;0.873379051 550814.3105;7817004.059;-9045.450195;60;0.037413355 549039.3105;7817266.84;-9055.450195;60;0.369753186 551339.3105;7817548.387;-9029.780273;60;0.7766797 549001.8105;7821171;-9198.44043;60;0.150597786 551914.3105;7821621.48;-9055.889648;60;0.660716899 551539.3105;7817135.449;-9017.929688;60;0.828593297 551789.3105;7817998.871;-9007.540039;60;0.053365939 551526.8105;7819275.23;-9047.290039;60;0.086887436 550614.3105;7817848.711;-9064.360352;60;0.142628859 549326.8105;7816928.98;-9052.30957;60;0.315349271 549114.3105;7821527.629;-9194.389648;60;0.865201748 550051.8105;7816853.898;-9058.419922;60;0.348728865 549889.3105;7820345.121;-9058.370117;60;0.339103122 550164.3105;7820363.887;-8972.519531;60;0.124154374 549051.8105;7819143.84;-9149.290039;60;0.07440722 550089.3105;7819932.18;-8989.730469;60;0.595911237 550039.3105;7817567.16;-9066.05957;60;0.668404163 550126.8105;7818486.891;-9084.389648;60;0.902339806 548976.8105;7819237.688;-9159.200195;60;0.181734093 549189.3105;7817679.777;-9046.379883;60;0.584339642 549064.3105;7818055.18;-9107.400391;60;0.9383346 552376.8105;7817473.309;-8951.009766;60;0.040622415 551276.8105;7818693.359;-9022.379883;60;0.458213462 551251.8105;7818242.879;-9023.530273;60;0.816715033 551376.8105;7817773.629;-9028.150391;60;0.361129676 549014.3105;7817604.699;-9058.019531;60;0.661905178 549564.3105;7821752.867;-9196.019531;60;0.208684868 552439.3105;7817679.777;-8978.950195;60;0.963074912 551851.8105;7816985.289;-9005.780273;60;0.579543432 552439.3105;7820270.039;-9029.910156;60;0.839380538 549414.3105;7817848.711;-9078.959961;60;0.31983254 549839.3105;7818993.68;-9062.110352;60;0.344528486 548951.8105;7820382.66;-9172.429688;60;0.331095075 549051.8105;7820964.531;-9190.349609;60;0.942601326 552201.8105;7821152.23;-9078.950195;60;0.801241084 550101.8105;7820457.738;-9023.55957;60;0.145202066 549076.8105;7817604.699;-9046.360352;60;0.666068933 549614.3105;7817923.789;-9091.650391;60;0.752389634 549789.3105;7816666.199;-9063.790039;60;0.966698728 549226.8105;7818824.75;-9109.490234;60;0.345493154 549801.8105;7821734.102;-9185.55957;60;0.930022571 549014.3105;7817548.387;-9055.740234;60;0.942904354 551951.8105;7818937.367;-9042.299805;60;0.698884468 549039.3105;7819932.18;-9154.700195;60;0.74784962 550614.3105;7817905.02;-9062.879883;60;0.522915121 551364.3105;7818299.188;-9014.379883;60;0.846075231 549014.3105;7818505.66;-9131.450195;60;0.559291028 550614.3105;7817736.09;-9064.740234;60;0.625697698 550489.3105;7821790.41;-9165.509766;60;0.9704261 549064.3105;7818824.75;-9132.009766;60;0.247283251 548901.8105;7819237.688;-9163.290039;60;0.414019678 552351.8105;7818561.969;-9047.769531;60;0.543483316 548964.3105;7819106.301;-9147.580078;60;0.765183122 550414.3105;7819481.699;-8987.780273;60;0.014226347 551976.8105;7819218.918;-9042.870117;60;0.039459949 550689.3105;7817004.059;-9053.879883;60;0.985609839 550839.3105;7821827.949;-9152.780273;60;0.419169145 551926.8105;7818674.59;-9033.719727;60;0.620796464 548964.3105;7819012.449;-9140.759766;60;0.335728709 550614.3105;7820701.75;-9041.400391;60;0.487849587 550814.3105;7820044.801;-9006.540039;60;0.363521446 550614.3105;7817022.828;-9054.129883;60;0.071217351 552201.8105;7818468.117;-9045.570313;60;0.062050255 549589.3105;7818149.027;-9092.839844;60;0.730022754 551226.8105;7818824.75;-9027.389648;60;0.224778473 550614.3105;7816853.898;-9058.450195;60;0.456384202 551126.8105;7820270.039;-9040.75;60;0.261044499 549089.3105;7818355.5;-9118.44043;60;0.038916219 548914.3105;7820570.359;-9183.980469;60;0.510999997 551539.3105;7818242.879;-9014.879883;60;0.044249376 550176.8105;7818524.43;-9082.280273;60;0.560129438 551114.3105;7817304.379;-9017.009766;60;0.691091214 549076.8105;7818580.738;-9128.419922;60;0.954234327 551276.8105;7818805.98;-9026.030273;60;0.199153001 550051.8105;7819031.219;-9057.280273;60;0.260013237 549714.3105;7817886.25;-9089.950195;60;0.241087191 552089.3105;7819125.07;-9042.370117;60;0.549136279 549164.3105;7818637.047;-9124.030273;60;0.69231638 549501.8105;7818149.027;-9096.410156;60;0.326560259 550726.8105;7820157.418;-8972.629883;60;0.697625675 552339.3105;7818937.367;-9046.860352;60;0.873546683 549889.3105;7818655.82;-9042.849609;60;0.005509057 551151.8105;7818430.578;-9024.269531;60;0.80159294 552439.3105;7817417;-8925.129883;60;0.302124345 551876.8105;7818993.68;-9041.019531;60;0.741403518 550401.8105;7821208.539;-9123.110352;60;0.442856124 549901.8105;7819406.617;-9040.549805;60;0.998131171 551964.3105;7819031.219;-9044.650391;60;0.07050762 550964.3105;7817266.84;-9022.530273;60;0.321738847 549251.8105;7817679.777;-9050.230469;60;0.60597422 548889.3105;7820870.68;-9200.759766;60;0.007382835 552426.8105;7817792.398;-8988.179688;60;0.753048742 550939.3105;7817004.059;-9039.700195;60;0.77079674 549351.8105;7818261.648;-9102.549805;60;0.935264495 549614.3105;7817585.93;-9050.620117;60;0.729375436 548889.3105;7821302.391;-9201.709961;60;0.375625124 551189.3105;7817285.609;-9015.040039;60;0.114224671 549139.3105;7817604.699;-9036.780273;60;0.724681529 551289.3105;7818111.488;-9017.120117;60;0.700685949 549051.8105;7820026.027;-9146.19043;60;0.905629354 550501.8105;7817829.938;-9069.219727;60;0.908286511 549214.3105;7821302.391;-9184.639648;60;0.134258503 550001.8105;7818468.117;-9080.209961;60;0.676187023 549876.8105;7819688.168;-9051.980469;60;0.157222135 552339.3105;7816778.816;-8950.429688;60;0.924965216 552064.3105;7819218.918;-9040.969727;60;0.985222858 549339.3105;7818674.59;-9097.490234;60;0.470052848 549389.3105;7816985.289;-9051.150391;60;0.820775533 550289.3105;7818712.129;-9058.700195;60;0.600551233 549164.3105;7821452.551;-9187.509766;60;0.416728344 551014.3105;7820626.668;-9060.55957;60;0.675004947 552389.3105;7818468.117;-9047.5;60;0.92153801 550464.3105;7820420.199;-8969.480469;60;0.391417969 551176.8105;7819894.641;-9046.830078;60;0.784013531 549939.3105;7816722.508;-9055.719727;60;0.493617567 551439.3105;7818186.57;-9009.719727;60;0.675768976 549489.3105;7818787.207;-9073.700195;60;0.70466449 552339.3105;7818899.828;-9048.110352;60;0.922979665 549939.3105;7818655.82;-9045.959961;60;0.216882111 552426.8105;7817379.461;-8930.150391;60;0.486777327 551226.8105;7817341.918;-9017.349609;60;0.344707948 551626.8105;7819744.48;-9032.570313;60;0.191207492 550014.3105;7817604.699;-9070.660156;60;0.54915379 551314.3105;7818937.367;-9030.519531;60;0.147200536 549051.8105;7818993.68;-9135.269531;60;0.495720328 550614.3105;7818111.488;-9058.509766;60;0.428537752 550114.3105;7818618.281;-9067.599609;60;0.511376099 551326.8105;7818599.508;-9014.570313;60;0.556805148 551539.3105;7818036.41;-9007.589844;60;0.059118687 549076.8105;7818768.438;-9131.120117;60;0.192474821 548889.3105;7821020.84;-9208.969727;60;0.813069168 549451.8105;7820401.43;-9145;60;0.741531431 550614.3105;7816647.43;-9071.429688;60;0.747404999 552289.3105;7820026.027;-9034.459961;60;0.745565259 551314.3105;7819575.551;-9037.490234;60;0.05583242 549151.8105;7818224.109;-9111.030273;60;0.032809726 549989.3105;7817961.328;-9096.30957;60;0.295263858 551176.8105;7818693.359;-9030.900391;60;0.811913983 551839.3105;7818918.598;-9035.339844;60;0.562504213 549876.8105;7818561.969;-9053.339844;60;0.362122748 551339.3105;7819312.77;-9042.200195;60;0.130239289 549289.3105;7820551.59;-9162.5;60;0.767919842 549914.3105;7819350.309;-9038.129883;60;0.379386584 551989.3105;7818299.188;-9029.110352;60;0.674713375 552164.3105;7818899.828;-9045.209961;60;0.162551113 551139.3105;7820026.027;-9047.400391;60;0.318702866 549676.8105;7817172.988;-9047.69043;60;0.286112593 550664.3105;7820082.34;-8969.019531;60;0.127793923 548926.8105;7818393.039;-9137.620117;60;0.889400673 550589.3105;7816928.98;-9059.530273;60;0.507769523 551776.8105;7819106.301;-9039.700195;60;0.262523741 552076.8105;7818824.75;-9042.44043;60;0.94654033 551339.3105;7818036.41;-9016.089844;60;0.597314812 552114.3105;7818993.68;-9043.959961;60;0.720226538 549364.3105;7820232.5;-9136.299805;60;0.075306836 549714.3105;7820363.887;-9104.169922;60;0.895240015 549489.3105;7820420.199;-9143.879883;60;0.188316689 550601.8105;7818393.039;-9060.849609;60;0.665688899 549201.8105;7818242.879;-9107.230469;60;0.260010355 551789.3105;7817717.32;-9019.280273;60;0.726284508 550664.3105;7818186.57;-9054.400391;60;0.812559361 551151.8105;7818468.117;-9025.230469;60;0.185171072 549651.8105;7818599.508;-9067.209961;60;0.522062256 550614.3105;7816835.129;-9059.150391;60;0.644511488 550614.3105;7816985.289;-9058.25;60;0.170390154 549314.3105;7816760.051;-9062.419922;60;0.922894813 550751.8105;7820119.879;-8987.950195;60;0.73390372 549451.8105;7818167.797;-9097.990234;60;0.614763899 549089.3105;7818299.188;-9118.139648;60;0.60778375 551301.8105;7820889.449;-9102.94043;60;0.244836417 550201.8105;7817360.688;-9056.730469;60;0.701982947 549739.3105;7818712.129;-9058.980469;60;0.781125275 549839.3105;7819331.539;-9045.709961;60;0.114633335 551126.8105;7818749.668;-9034.540039;60;0.147533069 549889.3105;7817567.16;-9071.110352;60;0.421158726 551039.3105;7818881.059;-9036.080078;60;0.931331561 549489.3105;7818881.059;-9078.290039;60;0.536700833 549001.8105;7821452.551;-9197.040039;60;0.815561157 551251.8105;7817304.379;-9013.730469;60;0.989327281 551639.3105;7820532.82;-9044.509766;60;0.436199693 552014.3105;7819031.219;-9042.900391;60;0.834614781 549126.8105;7819932.18;-9151.900391;60;0.549455534 549576.8105;7816816.359;-9053.990234;60;0.918510708 550351.8105;7817341.918;-9060.769531;60;0.100758961 549314.3105;7821002.07;-9179.870117;60;0.822745688 549301.8105;7819049.988;-9117.610352;60;0.796707913 549414.3105;7817754.859;-9071.400391;60;0.981184918 550101.8105;7818843.52;-9050.700195;60;0.732494585 548901.8105;7818862.289;-9150.400391;60;0.929714215 549876.8105;7819556.777;-9050.330078;60;0.691251287 550301.8105;7820476.508;-8983.519531;60;0.824044382 552201.8105;7818655.82;-9048.740234;60;0.075366143 551826.8105;7818843.52;-9030.450195;60;0.841745857 549939.3105;7817567.16;-9069.230469;60;0.92003994 551239.3105;7819519.238;-9034.719727;60;0.219870093 550776.8105;7820607.898;-9029.150391;60;0.313133412 549914.3105;7819744.48;-9045.339844;60;0.810230041 549151.8105;7818881.059;-9118.969727;60;0.054408742 549514.3105;7821677.789;-9193.629883;60;0.482992146 551376.8105;7817961.328;-9017.959961;60;0.220897483 548989.3105;7818561.969;-9133.830078;60;0.658477416 548976.8105;7817041.598;-9070.570313;60;0.757643807 549214.3105;7816778.816;-9067.669922;60;0.805898161 549789.3105;7821020.84;-9166.370117;60;0.918567883 548901.8105;7818580.738;-9141.120117;60;0.919510176 551126.8105;7819988.488;-9043.379883;60;0.16109945 549901.8105;7818712.129;-9044.589844;60;0.824633107 549014.3105;7817341.918;-9058.330078;60;0.38484596 550151.8105;7818561.969;-9077.679688;60;0.532017853 549951.8105;7819800.789;-9037.480469;60;0.395612583 549876.8105;7819125.07;-9045.549805;60;0.718865852 552114.3105;7820682.98;-9058.629883;60;0.969887078 550639.3105;7816910.207;-9057.299805;60;0.879722047 549876.8105;7817004.059;-9057.740234;60;0.924363848 550614.3105;7816797.59;-9062.5;60;0.334431204 551564.3105;7820307.578;-9031.969727;60;0.25450072 550726.8105;7820551.59;-9009.730469;60;0.769343543 549014.3105;7818036.41;-9106.540039;60;0.782245132 550814.3105;7816666.199;-9056.820313;60;0.556152628 548901.8105;7818805.98;-9148.80957;60;0.001731465 550251.8105;7817379.461;-9057.709961;60;0.051837402 549339.3105;7819031.219;-9114.599609;60;0.370798509 551314.3105;7817473.309;-9025.910156;60;0.694682779 550364.3105;7820589.129;-8998.030273;60;0.941560848 550226.8105;7818787.207;-9050.75;60;0.99789608 551101.8105;7819894.641;-9037.450195;60;0.07338772 549364.3105;7817829.938;-9081.259766;60;0.095171075 551939.3105;7818899.828;-9040.280273;60;0.481312103 551076.8105;7818618.281;-9039.169922;60;0.876167577 549226.8105;7818580.738;-9115.69043;60;0.372009423 550026.8105;7818768.438;-9050.259766;60;0.264785241 548939.3105;7817736.09;-9087.009766;60;0.874075621 548989.3105;7820739.289;-9186.589844;60;0.001888724 552126.8105;7818843.52;-9043.349609;60;0.239210043 550701.8105;7818186.57;-9052.69043;60;0.89906471 550439.3105;7820720.52;-9024.75;60;0.606605445 551239.3105;7819237.688;-9048.269531;60;0.686209189 552264.3105;7818787.207;-9049.169922;60;0.665915302 551189.3105;7818899.828;-9032.299805;60;0.164155774 549451.8105;7819218.918;-9101.889648;60;0.121550708 552364.3105;7817435.77;-8959.089844;60;0.823893588 549926.8105;7817736.09;-9084.099609;60;0.36472765 550951.8105;7820739.289;-9071.259766;60;0.662509045 549939.3105;7818862.289;-9063.339844;60;0.111798293 551139.3105;7818805.98;-9032.679688;60;0.392428382 550676.8105;7818261.648;-9051.360352;60;0.763923171 548901.8105;7820682.98;-9186.799805;60;0.409754589 548889.3105;7817360.688;-9080.19043;60;0.971028679 549851.8105;7820476.508;-9095.240234;60;0.774392851 551689.3105;7816666.199;-9000.990234;60;0.108096649 551314.3105;7820007.258;-9054.44043;60;0.813014072 551226.8105;7820926.988;-9106.240234;60;0.371874223 552339.3105;7819312.77;-9053.5;60;0.470341229 550276.8105;7818543.199;-9079.75;60;0.853536226 551651.8105;7821602.711;-9088.69043;60;0.101304641 549951.8105;7817248.07;-9059.769531;60;0.100986073 550489.3105;7817191.758;-9048.240234;60;0.144076777 550489.3105;7821377.469;-9137.400391;60;0.668865782 550164.3105;7820889.449;-9093.870117;60;0.770836814 551876.8105;7821809.18;-9021.709961;60;0.265219188 550226.8105;7820926.988;-9099.379883;60;0.549544436 552051.8105;7820044.801;-8967.290039;60;0.1048329 551076.8105;7820138.648;-9044.209961;60;0.233088038 549976.8105;7818149.027;-9099.830078;60;0.981841789 551951.8105;7819744.48;-9008.269531;60;0.121072851 552389.3105;7819556.777;-9042.650391;60;0.119995528 550326.8105;7820758.059;-9053.169922;60;0.430752436 549576.8105;7820457.738;-9138;60;0.766273531 550164.3105;7818730.898;-9054.969727;60;0.884234032 549839.3105;7818655.82;-9042.94043;60;0.781519927 549814.3105;7817642.238;-9075.69043;60;0.886123578 552039.3105;7819068.758;-9041.879883;60;0.921269772 551014.3105;7818637.047;-9044.44043;60;0.420592765 550001.8105;7819857.098;-9021.120117;60;0.341962731 551489.3105;7817435.77;-9020.830078;60;0.780807736 551239.3105;7818881.059;-9029.519531;60;0.508251336 551739.3105;7820551.59;-9040.330078;60;0.500427089 550476.8105;7821152.23;-9107.759766;60;0.651318222 550126.8105;7817379.461;-9057.889648;60;0.266572706 551864.3105;7819218.918;-9037.089844;60;0.185923135 549939.3105;7817623.469;-9073.349609;60;0.326211398 551339.3105;7817248.07;-9011.730469;60;0.760592292 551639.3105;7820589.129;-9051.950195;60;0.537957927 551114.3105;7818693.359;-9036.719727;60;0.867220408 549864.3105;7817529.617;-9069.709961;60;0.149867353 550664.3105;7820044.801;-8975.610352;60;0.752639976 550201.8105;7817398.227;-9057.450195;60;0.664929758 549726.8105;7818749.668;-9065.879883;60;0.739269245 551414.3105;7818205.34;-9010.570313;60;0.736040612 549301.8105;7820307.578;-9140.830078;60;0.819829424 550751.8105;7816722.508;-9061.320313;60;0.688806829 549764.3105;7819631.859;-9073.94043;60;0.835688104 550614.3105;7821133.457;-9122.700195;60;0.900582978 549814.3105;7819425.391;-9053.5;60;0.735935926 551351.8105;7817886.25;-9021.94043;60;0.319218283 549726.8105;7817079.141;-9055.450195;60;0.203787488 551351.8105;7818186.57;-9015.030273;60;0.82796519 551264.3105;7819800.789;-9052.349609;60;0.1507214 551976.8105;7818224.109;-9025.080078;60;0.179085401 549876.8105;7817736.09;-9084.019531;60;0.404928217 551851.8105;7818393.039;-9026.879883;60;0.488735002 551301.8105;7819218.918;-9046.259766;60;0.746961306 549826.8105;7816928.98;-9055;60;0.219703768 549289.3105;7820645.438;-9172.950195;60;0.747929593 551464.3105;7817867.48;-9023.150391;60;0.558632689 551164.3105;7817398.227;-9019.150391;60;0.62046411 550789.3105;7817736.09;-9053.959961;60;0.647909283 550714.3105;7817623.469;-9052.549805;60;0.929761229 550651.8105;7820551.59;-9002.070313;60;0.865798979 551526.8105;7817773.629;-9025.870117;60;0.607764987 550676.8105;7819049.988;-9004.44043;60;0.433601081 549876.8105;7817304.379;-9062.379883;60;0.242171717 549714.3105;7819331.539;-9071.75;60;0.51159721 550426.8105;7821621.48;-9159.980469;60;0.219162335 550489.3105;7820758.059;-9033.120117;60;0.30523301 551589.3105;7817773.629;-9025.650391;60;0.979936919 551539.3105;7817980.098;-9012.139648;60;0.314366154 550414.3105;7821152.23;-9113.320313;60;0.42747309 549589.3105;7819331.539;-9097.75;60;0.183485448 551651.8105;7819387.852;-9044.759766;60;0.319838056 550626.8105;7821302.391;-9140.900391;60;0.701277923 549651.8105;7819294;-9086.349609;60;0.73098344 549739.3105;7817172.988;-9055.280273;60;0.136969566 549876.8105;7817679.777;-9078.30957;60;0.148833937 551276.8105;7821208.539;-9120.959961;60;0.188701466 551189.3105;7820232.5;-9045.950195;60;0.699917928 552114.3105;7819387.852;-9035.129883;60;0.739673651 549414.3105;7819294;-9106.009766;60;0.652328285 551739.3105;7819932.18;-9012.80957;60;0.602461223 549201.8105;7818937.367;-9112.610352;60;0.8535826 551589.3105;7819913.41;-9038.120117;60;0.890073729 550476.8105;7821208.539;-9118.360352;60;0.193062779 548876.8105;7820645.438;-9186.709961;60;0.839410251 551501.8105;7817379.461;-9014.160156;60;0.683003369 551701.8105;7820551.59;-9042.419922;60;0.492040798 550389.3105;7817266.84;-9057.910156;60;0.898406324 552226.8105;7819444.16;-9038.139648;60;0.157031345 551626.8105;7817266.84;-9007.839844;60;0.554789089 549939.3105;7817679.777;-9077.799805;60;0.70472456 550151.8105;7817341.918;-9056.610352;60;0.563148375 551014.3105;7820157.418;-9037.379883;60;0.773184363 551414.3105;7817848.711;-9025.480469;60;0.267149271 549839.3105;7817942.559;-9093.730469;60;0.127804946 551339.3105;7817285.609;-9012.259766;60;0.219183058 550726.8105;7820795.598;-9083.919922;60;0.411342216 551851.8105;7819181.379;-9038.910156;60;0.928625891 552089.3105;7819068.758;-9041.990234;60;0.781845934 551626.8105;7821133.457;-9111.209961;60;0.013304728 549301.8105;7817323.148;-8994.910156;60;0.541015274 551376.8105;7817661.008;-9033.719727;60;0.287677517 550226.8105;7818730.898;-9056.580078;60;0.350813952 551376.8105;7818918.598;-9026.240234;60;0.017047293 550376.8105;7820739.289;-9040;60;0.904342565 550226.8105;7818543.199;-9081.139648;60;0.760928753 551501.8105;7820326.348;-9039.75;60;0.648884606 550714.3105;7820514.051;-8998.110352;60;0.834329245 551964.3105;7819125.07;-9045.379883;60;0.606839879 549976.8105;7819012.449;-9061.030273;60;0.701400466 550614.3105;7821546.398;-9152.509766;60;0.227557845 552026.8105;7816778.816;-8982.269531;60;0.266988444 550339.3105;7817266.84;-9057.429688;60;0.195581258 550089.3105;7818749.668;-9052.179688;60;0.504223237 552339.3105;7820607.898;-9044.910156;60;0.620897852 549839.3105;7820570.359;-9103.160156;60;0.87920871 549801.8105;7821827.949;-9186.009766;60;0.543154823 552039.3105;7819350.309;-9040.160156;60;0.687383427 551289.3105;7818749.668;-9023.969727;60;0.01897371 549339.3105;7819331.539;-9120.179688;60;0.1824718 552114.3105;7818899.828;-9044.620117;60;0.793671458 549814.3105;7817266.84;-9057.839844;60;0.720533429 551464.3105;7819782.02;-9050.55957;60;0.472267111 552151.8105;7819481.699;-9026.820313;60;0.081842619 549614.3105;7816741.277;-9047.519531;60;0.71992023 551376.8105;7817717.32;-9031.69043;60;0.928068156 551789.3105;7819744.48;-9020;60;0.686007692 551626.8105;7820270.039;-9020.200195;60;0.140250365 548889.3105;7820739.289;-9190.280273;60;0.009788748 551401.8105;7819744.48;-9050.709961;60;0.962635382 551301.8105;7818862.289;-9027.780273;60;0.56543848 548914.3105;7817905.02;-9098.870117;60;0.838263674 550651.8105;7820176.188;-8946.269531;60;0.249467834 550364.3105;7821396.238;-9139.950195;60;0.797102107 549876.8105;7817792.398;-9089.419922;60;0.390232994 551051.8105;7817341.918;-9015.120117;60;0.090034341 551039.3105;7818843.52;-9037.290039;60;0.282589249 550226.8105;7818468.117;-9084.620117;60;0.215641156 552439.3105;7817942.559;-9006.429688;60;0.035020672 549939.3105;7817360.688;-9063.69043;60;0.958475829 552439.3105;7818449.348;-9047.040039;60;0.505647368 551476.8105;7818017.637;-9011.5;60;0.754090712 552376.8105;7819350.309;-9053.44043;60;0.715042169 550489.3105;7817041.598;-9053.860352;60;0.1377302 551451.8105;7820326.348;-9042.330078;60;0.975473444 549864.3105;7817961.328;-9094.389648;60;0.228584848 552151.8105;7817585.93;-8999.790039;60;0.056166457 551689.3105;7818261.648;-9015.759766;60;0.071457846 549851.8105;7817135.449;-9057.849609;60;0.90397785 551614.3105;7817604.699;-9027.089844;60;0.417229477 550489.3105;7821114.691;-9101.009766;60;0.393777099 549626.8105;7820476.508;-9132.419922;60;0.720393868 549789.3105;7817848.711;-9089.69043;60;0.509203508 552214.3105;7821095.918;-9078.780273;60;0.385495968 552389.3105;7820551.59;-9045.889648;60;0.153723079 552051.8105;7819556.777;-9012.910156;60;0.743026761 551176.8105;7819782.02;-9048.469727;60;0.092723727 551089.3105;7820082.34;-9044.530273;60;0.107678346 549539.3105;7817867.48;-9084.429688;60;0.240513779 549501.8105;7820514.051;-9148.049805;60;0.384121753 549501.8105;7819162.609;-9102.719727;60;0.220774115 549001.8105;7820607.898;-9186.169922;60;0.471349205 550489.3105;7820401.43;-8971.669922;60;0.308581797 550126.8105;7816816.359;-9060.269531;60;0.257163798 549114.3105;7821020.84;-9186.469727;60;0.34459063 551864.3105;7821565.168;-9069.650391;60;0.457445181 549264.3105;7818937.367;-9107.5;60;0.65581874 551651.8105;7817417;-9014.25;60;0.078801335 550664.3105;7820101.109;-8964.719727;60;0.9542508 550489.3105;7820101.109;-8940.339844;60;0.3791062 549164.3105;7818674.59;-9124.629883;60;0.554337462 552164.3105;7817998.871;-9019.459961;60;0.169807848 551576.8105;7819049.988;-9035.610352;60;0.779797036 551739.3105;7817323.148;-9004.990234;60;0.295339913 550364.3105;7817079.141;-9053.740234;60;0.191591184 552276.8105;7820251.27;-9007.240234;60;0.926160242 552264.3105;7819275.23;-9049.969727;60;0.523451154 549464.3105;7819369.078;-9105;60;0.98686662 551901.8105;7816760.051;-8997.429688;60;0.305391953 550489.3105;7819706.938;-8977.080078;60;0.540543716 549914.3105;7818186.57;-9095.019531;60;0.338434795 549901.8105;7819894.641;-9050.679688;60;0.494073045 551514.3105;7820363.887;-9046.259766;60;0.167952312 549726.8105;7817135.449;-9054.969727;60;0.718718139 550364.3105;7821152.23;-9117.889648;60;0.898082813 552214.3105;7819275.23;-9044.969727;60;0.090668403 551326.8105;7818674.59;-9017.879883;60;0.314202131 550439.3105;7821415.008;-9141.570313;60;0.24770526 552251.8105;7820326.348;-9001.80957;60;0.22991076 552239.3105;7817961.328;-9018.75;60;0.01523914 549851.8105;7819294;-9044.629883;60;0.681331623 550414.3105;7817116.68;-9052.139648;60;0.401983686 550614.3105;7821752.867;-9162.530273;60;0.116825373 548889.3105;7817848.711;-9092.360352;60;0.730754079 551526.8105;7819950.949;-9042.660156;60;0.454420875 551814.3105;7817492.078;-9008.919922;60;0.886056476 551839.3105;7819838.328;-9018.169922;60;0.497582425 549614.3105;7821321.16;-9175.620117;60;0.849234061 549639.3105;7819932.18;-9098.209961;60;0.946435626 552101.8105;7819688.168;-9010.519531;60;0.691431156 550839.3105;7821490.09;-9139.450195;60;0.017728453 549764.3105;7820457.738;-9113.400391;60;0.490113453 550714.3105;7821546.398;-9146.549805;60;0.698280701 550489.3105;7819294;-8972.799805;60;0.77200714 549314.3105;7818092.719;-9101.639648;60;0.78438232 551839.3105;7820138.648;-8960.490234;60;0.457663201 551401.8105;7820307.578;-9042.719727;60;0.381943896 549476.8105;7818261.648;-9094.330078;60;0.135551264 551314.3105;7817154.219;-9017.410156;60;0.437269273 551326.8105;7821621.48;-9116.419922;60;0.027367422 551214.3105;7821583.941;-9122.099609;60;0.041842043 552089.3105;7816797.59;-8982.629883;60;0.315290284 549364.3105;7820176.188;-9138.19043;60;0.195733787 549264.3105;7818055.18;-9102.769531;60;0.66929561 551364.3105;7818543.199;-9012.80957;60;0.177499014 549739.3105;7819913.41;-9082.759766;60;0.740833384 550451.8105;7817323.148;-9060.620117;60;0.225061789 549176.8105;7819819.559;-9151.610352;60;0.986550788 552451.8105;7820063.57;-9023.5;60;0.287246193 549826.8105;7818242.879;-9090.379883;60;0.89861394 550376.8105;7816947.75;-9064.040039;60;0.477465999 549289.3105;7819613.09;-9136.169922;60;0.546613133 551214.3105;7819012.449;-9035.120117;60;0.56898165 552026.8105;7820476.508;-9008.080078;60;0.729077823 551839.3105;7819744.48;-9019.389648;60;0.325564322 551201.8105;7819838.328;-9050.160156;60;0.513697033 551476.8105;7818580.738;-9015.480469;60;0.350718958 551189.3105;7820044.801;-9052.820313;60;0.284861276 551901.8105;7819800.789;-9013.450195;60;0.876975681 552439.3105;7817060.367;-8875.459961;60;0.437832521 549151.8105;7819857.098;-9152.400391;60;0.568369419 550939.3105;7821246.078;-9124.129883;60;0.622787474 550014.3105;7820138.648;-9011.759766;60;0.620432005 549351.8105;7818092.719;-9098.959961;60;0.589324194 552301.8105;7820082.34;-9020.259766;60;0.62663756 550026.8105;7821227.309;-9146.80957;60;0.848557869 551714.3105;7818411.809;-9017.19043;60;0.608626018 552126.8105;7819181.379;-9043.870117;60;0.067255964 552439.3105;7820514.051;-9047.019531;60;0.044308385 549689.3105;7820476.508;-9125.990234;60;0.391447006 549439.3105;7819857.098;-9130.129883;60;0.023925573 550726.8105;7821621.48;-9152.330078;60;0.329793079 549426.8105;7818224.109;-9097.639648;60;0.703509276 550451.8105;7820476.508;-8973.919922;60;0.926315259 551776.8105;7820176.188;-8967.379883;60;0.90177502 551964.3105;7819913.41;-8997.209961;60;0.090491462 549726.8105;7819575.551;-9079.200195;60;0.912694077 549776.8105;7817754.859;-9081.55957;60;0.620864605 552101.8105;7819782.02;-9010.129883;60;0.556545433 548926.8105;7818130.258;-9115.870117;60;0.651035202 551551.8105;7819481.699;-9039.240234;60;0.653350078 550176.8105;7820514.051;-9015.629883;60;0.987312689 549739.3105;7817567.16;-9068.759766;60;0.251532027 551989.3105;7820213.73;-8955.089844;60;0.93931645 551964.3105;7821508.859;-9080.969727;60;0.609967002 552176.8105;7820589.129;-9034;60;0.019224809 549926.8105;7817492.078;-9065.990234;60;0.791444886 549864.3105;7818317.957;-9087.830078;60;0.421577221 550964.3105;7820363.887;-9011.620117;60;0.39597175 552389.3105;7820645.438;-9054.469727;60;0.264882331 550439.3105;7820589.129;-8985.360352;60;0.453834529 551601.8105;7819387.852;-9042.419922;60;0.014732073 551764.3105;7819350.309;-9041.05957;60;0.459392598 551114.3105;7821077.148;-9126.259766;60;0.255463573 551076.8105;7818561.969;-9037.259766;60;0.969675478 550426.8105;7816966.52;-9062.219727;60;0.078201076 550614.3105;7820607.898;-9014.69043;60;0.375960323 550351.8105;7820420.199;-8965.469727;60;0.961017551 551214.3105;7821208.539;-9127.570313;60;0.591370808 552339.3105;7819444.16;-9050.139648;60;0.978895224 551939.3105;7818468.117;-9035.400391;60;0.429670742 551814.3105;7817529.617;-9010.610352;60;0.942236009 551839.3105;7820682.98;-9055.450195;60;0.403336012 549989.3105;7817717.32;-9081.69043;60;0.035939797 552389.3105;7819688.168;-9032.900391;60;0.69267597 551739.3105;7819650.629;-9027.919922;60;0.105304436 550751.8105;7817961.328;-9048.040039;60;0.421145601 549514.3105;7819500.469;-9102.740234;60;0.308535332 549051.8105;7820664.211;-9186.049805;60;0.141173766 551389.3105;7821546.398;-9112.459961;60;0.08542167 550164.3105;7818805.98;-9049.620117;60;0.679306393 549614.3105;7817848.711;-9084.900391;60;0.922326122 552026.8105;7819162.609;-9042.240234;60;0.309255832 550151.8105;7817285.609;-9056.969727;60;0.625778732 550889.3105;7821452.551;-9137.129883;60;0.068158731 550289.3105;7817285.609;-9057.679688;60;0.999026025 549226.8105;7819650.629;-9143.660156;60;0.998983075 551239.3105;7820138.648;-9054.370117;60;0.872688354 552276.8105;7819613.09;-9044.620117;60;0.927646849 551514.3105;7817323.148;-9010.480469;60;0.065871677 551851.8105;7821264.848;-9096.929688;60;0.948537944 550276.8105;7817191.758;-9051.769531;60;0.630989517 551176.8105;7818637.047;-9031.070313;60;0.387719166 551651.8105;7819988.488;-9010.759766;60;0.524423075 550001.8105;7821715.328;-9185.719727;60;0.548066445 550064.3105;7820157.418;-8991.009766;60;0.819116073 549401.8105;7819613.09;-9124.820313;60;0.895378542 550151.8105;7821827.949;-9174.950195;60;0.66472878 549276.8105;7819838.328;-9143.570313;60;0.023338229 550501.8105;7819369.078;-8975.169922;60;0.131848767 550489.3105;7821583.941;-9156.980469;60;0.325526294 552214.3105;7818561.969;-9047.410156;60;0.269494281 550414.3105;7819538.008;-8984.55957;60;0.772423987 550451.8105;7820664.211;-9005.160156;60;0.79372019 549989.3105;7818280.418;-9091.339844;60;0.153397008 551726.8105;7819237.688;-9044.200195;60;0.247835007 551526.8105;7817848.711;-9022.089844;60;0.206325994 550301.8105;7821715.328;-9159.400391;60;0.402030891 551451.8105;7819950.949;-9051.480469;60;0.921309625 551676.8105;7819650.629;-9030.150391;60;0.808330287 550689.3105;7819237.688;-8988.120117;60;0.888648174 550764.3105;7819162.609;-8993.44043;60;0.280790079 550714.3105;7820307.578;-8950.759766;60;0.678668845 550464.3105;7820251.27;-8934.040039;60;0.204352445 551376.8105;7821790.41;-9105.570313;60;0.55838375 550614.3105;7820964.531;-9097.299805;60;0.955662732 550501.8105;7821039.609;-9088.950195;60;0.340256358 551576.8105;7821827.949;-9067.110352;60;0.376742723 551364.3105;7820213.73;-9044.459961;60;0.944117271 550089.3105;7817304.379;-9057.839844;60;0.922968545 550739.3105;7819218.918;-8992.179688;60;0.815478881 550651.8105;7820307.578;-8952.589844;60;0.464914892 550464.3105;7820945.758;-9075.019531;60;0.255519502 550001.8105;7817905.02;-9095.509766;60;0.210002019 551239.3105;7820438.969;-9061.509766;60;0.611942643 552401.8105;7819932.18;-9019.509766;60;0.616672175 551376.8105;7820626.668;-9079.139648;60;0.178703925 549976.8105;7817679.777;-9077.929688;60;0.218601734 551964.3105;7819068.758;-9045.080078;60;0.669758069 550664.3105;7818993.68;-9017.230469;60;0.203423266 549751.8105;7817304.379;-9051.540039;60;0.468986254 549526.8105;7821039.609;-9165.379883;60;0.589556416 551539.3105;7818749.668;-9011.25;60;0.452470329 549714.3105;7819294;-9071.679688;60;0.338560542 550426.8105;7821659.02;-9161.799805;60;0.872994004 551589.3105;7817811.168;-9024.580078;60;0.739586421 550414.3105;7821095.918;-9103.830078;60;0.004281528 551651.8105;7819350.309;-9045.790039;60;0.853826928 551014.3105;7820101.109;-9038.490234;60;0.196447679 549939.3105;7817792.398;-9090.049805;60;0.344354023 551276.8105;7821246.078;-9122.540039;60;0.377893292 550489.3105;7821546.398;-9155.169922;60;0.580497628 551589.3105;7819950.949;-9031.519531;60;0.761231494 550476.8105;7821246.078;-9124.030273;60;0.804102773 549814.3105;7817304.379;-9058.790039;60;0.003015651 552214.3105;7818524.43;-9046.580078;60;0.291320078 552339.3105;7820645.438;-9050.110352;60;0.990426117 552014.3105;7818993.68;-9043.55957;60;0.329596581 549201.8105;7818130.258;-9105.759766;60;0.92953092 549614.3105;7820589.129;-9132.540039;60;0.249788024 550439.3105;7820626.668;-8995.290039;60;0.979071471 549789.3105;7819932.18;-9076.540039;60;0.816695953 551276.8105;7818637.047;-9021.120117;60;0.114507041 551639.3105;7820363.887;-9032.44043;60;0.048232422 548951.8105;7820645.438;-9185.209961;60;0.570691187 549976.8105;7818242.879;-9093.849609;60;0.177486434 551726.8105;7819200.148;-9043.129883;60;0.349698185 551514.3105;7818280.418;-9017.629883;60;0.735645018 548939.3105;7820814.371;-9193.830078;60;0.502490654 551326.8105;7820570.359;-9074.820313;60;0.161713459 551501.8105;7820438.969;-9058.94043;60;0.115024585 552289.3105;7816891.438;-8946.610352;60;0.381374044 550764.3105;7821546.398;-9142.280273;60;0.007381731 549701.8105;7819387.852;-9075.219727;60;0.117476625 551676.8105;7819613.09;-9031.980469;60;0.410173512 549664.3105;7820345.121;-9109.860352;60;0.901522668 550839.3105;7820570.359;-9024.009766;60;0.510338171 551889.3105;7819275.23;-9036.120117;60;0.07943969 550689.3105;7819200.148;-8984.679688;60;0.860038884 551589.3105;7820532.82;-9050.19043;60;0.816243374 551426.8105;7821752.867;-9098.25;60;0.677552509 552289.3105;7817135.449;-8946.030273;60;0.995889852 550714.3105;7820270.039;-8949.009766;60;0.297954008 550614.3105;7821846.719;-9164.320313;60;0.932935231 550026.8105;7818411.809;-9086.240234;60;0.442380428 551101.8105;7818937.367;-9034.75;60;0.351915726 551989.3105;7821002.07;-9084.009766;60;0.150159232 550614.3105;7820870.68;-9082.320313;60;0.034548449 550114.3105;7817248.07;-9057.839844;60;0.48912526 552014.3105;7819875.867;-9001.620117;60;0.085956405 551626.8105;7817360.688;-9009.719727;60;0.443212075 551576.8105;7821790.41;-9067.44043;60;0.412801675 552226.8105;7817097.91;-8947.830078;60;0.6828443 551364.3105;7820251.27;-9042.269531;60;0.393674026 550064.3105;7817341.918;-9057.820313;60;0.587656515 549664.3105;7819613.09;-9090.799805;60;0.893215628 551226.8105;7818749.668;-9025.660156;60;0.36266524 549376.8105;7819200.148;-9103.910156;60;0.189279558 550514.3105;7818036.41;-9069.320313;60;0.713444342 550501.8105;7817923.789;-9068.360352;60;0.416223448 550501.8105;7819237.688;-8969.009766;60;0.165794965 550464.3105;7820983.297;-9079.709961;60;0.089228583 549951.8105;7817905.02;-9095.490234;60;0.466067844 551239.3105;7820476.508;-9066.139648;60;0.843433986 552389.3105;7816966.52;-8898.990234;60;0.213327251 549601.8105;7817661.008;-9057.150391;60;0.427993779 551389.3105;7819894.641;-9055.730469;60;0.361280305 550701.8105;7820795.598;-9084;60;0.776504025 550851.8105;7820363.887;-8980.429688;60;0.908550077 551664.3105;7817792.398;-9027.55957;60;0.208141066 550014.3105;7817661.008;-9076.610352;60;0.174030957 549801.8105;7818655.82;-9045.459961;60;0.693092362 551314.3105;7820532.82;-9072.900391;60;0.91010978 551164.3105;7821246.078;-9132.419922;60;0.106672343 551526.8105;7819763.25;-9044.980469;60;0.250203809 552239.3105;7818092.719;-9037.860352;60;0.50686593 549826.8105;7817679.777;-9077.75;60;0.289219807 550414.3105;7820739.289;-9034.44043;60;0.242660005 550726.8105;7820607.898;-9028.200195;60;0.37038385 550639.3105;7819556.777;-9005.240234;60;0.61842888 550651.8105;7820514.051;-8992.519531;60;0.894751234 551751.8105;7818393.039;-9018.009766;60;0.645855319 551164.3105;7821077.148;-9122.980469;60;0.601312611 552026.8105;7819106.301;-9042.280273;60;0.880024077 550751.8105;7817717.32;-9054.509766;60;0.836891021 552339.3105;7819650.629;-9037.69043;60;0.806163874 551776.8105;7818317.957;-9018.009766;60;0.12774642 550839.3105;7820645.438;-9044.009766;60;0.588728878 549389.3105;7817698.547;-9066.75;60;0.690625156 549639.3105;7817661.008;-9061.839844;60;0.819288288 551514.3105;7821283.617;-9119.950195;60;0.413725859 550414.3105;7821039.609;-9094.370117;60;0.415897644 551076.8105;7820044.801;-9041.370117;60;0.761774381 551176.8105;7820176.188;-9049.349609;60;0.184287744 551726.8105;7820138.648;-8972.110352;60;0.912006698 551039.3105;7818599.508;-9041.179688;60;0.642053997 552164.3105;7819312.77;-9039.299805;60;0.148841677 549326.8105;7819650.629;-9133.730469;60;0.519461469 549651.8105;7819331.539;-9086.259766;60;0.879982325 551464.3105;7817811.168;-9025.929688;60;0.25098683 549964.3105;7819875.867;-9032.629883;60;0.038892248 549576.8105;7819462.93;-9096.44043;60;0.571540699 550651.8105;7820270.039;-8947.080078;60;0.403171998 552451.8105;7817886.25;-8995.320313;60;0.869054973 552076.8105;7821583.941;-9034.870117;60;0.905027886 552139.3105;7817698.547;-9012.730469;60;0.315274705 551451.8105;7821452.551;-9111.44043;60;0.224405702 552076.8105;7818899.828;-9044.589844;60;0.626563492 551964.3105;7818017.637;-9006.889648;60;0.05839437 552439.3105;7819725.711;-9031.660156;60;0.511487838 550464.3105;7821058.379;-9091.419922;60;0.059203259 551201.8105;7817229.301;-9015.549805;60;0.266512894 550739.3105;7819275.23;-9000.19043;60;0.226824946 550276.8105;7820720.52;-9053.549805;60;0.695137337 550826.8105;7821246.078;-9134.730469;60;0.332460102 552439.3105;7817341.918;-8926.360352;60;0.665641036 551326.8105;7820420.199;-9064.379883;60;0.168630634 549514.3105;7819556.777;-9108.349609;60;0.130078015 550189.3105;7821020.84;-9120.589844;60;0.4846953 551801.8105;7817867.48;-9022.660156;60;0.132828436 551726.8105;7819706.938;-9024.129883;60;0.167699652 552289.3105;7818073.949;-9036;60;0.144989021 551101.8105;7820476.508;-9052.150391;60;0.967449506 551076.8105;7818899.828;-9034.990234;60;0.589624262 552264.3105;7819481.699;-9045.599609;60;0.887326155 551339.3105;7818805.98;-9024.679688;60;0.686992515 551939.3105;7816853.898;-9002.349609;60;0.298477204 550026.8105;7818749.668;-9050.139648;60;0.236424866 550026.8105;7819068.758;-9053.910156;60;0.800288022 552351.8105;7820026.027;-9028.160156;60;0.312716155 548889.3105;7817961.328;-9106.879883;60;0.243358678 552014.3105;7821677.789;-9038.110352;60;0.704385915 549726.8105;7817848.711;-9087.05957;60;0.882047313 552214.3105;7819782.02;-9017.469727;60;0.60920651 552376.8105;7817736.09;-8986.360352;60;0.862448536 549551.8105;7817585.93;-9043.570313;60;0.965806117 551151.8105;7817229.301;-9018.759766;60;0.608916751 550614.3105;7821809.18;-9164.099609;60;0.077184285 551276.8105;7817435.77;-9023.129883;60;0.803322832 550626.8105;7817172.988;-9037.900391;60;0.184108454 550051.8105;7818618.281;-9062.05957;60;0.170012866 551464.3105;7819857.098;-9054.700195;60;0.43756934 549439.3105;7818505.66;-9090.259766;60;0.702174322 551289.3105;7819725.711;-9050.620117;60;0.805649877 549664.3105;7816647.43;-9048.719727;60;0.303620128 550776.8105;7821039.609;-9117.150391;60;0.493566948 550389.3105;7820870.68;-9073.950195;60;0.655122155 551239.3105;7820082.34;-9055.75;60;0.03589102 552001.8105;7819706.938;-9005.580078;60;0.789755266 549551.8105;7820551.59;-9142.320313;60;0.888113389 551426.8105;7818055.18;-9012.490234;60;0.951537599 552126.8105;7817961.328;-9012.05957;60;0.307269551 552026.8105;7821152.23;-9086.639648;60;0.710998079 552014.3105;7817980.098;-9010.25;60;0.479681003 552001.8105;7820082.34;-8960.990234;60;0.778632611 552451.8105;7817248.07;-8912.349609;60;0.216004249 551776.8105;7817360.688;-9003.599609;60;0.318888257 549226.8105;7819369.078;-9136.69043;60;0.306229211 549426.8105;7819218.918;-9101.5;60;0.885987209 551514.3105;7817661.008;-9032.839844;60;0.408932653 551926.8105;7817454.539;-8998.69043;60;0.796025906 551726.8105;7817604.699;-9020.419922;60;0.277065246 550739.3105;7820026.027;-8995.320313;60;0.944372536 550239.3105;7817266.84;-9055.650391;60;0.963654796 552201.8105;7820232.5;-8987.44043;60;0.415802134 550739.3105;7820063.57;-8992.450195;60;0.886455777 552451.8105;7820363.887;-9032.580078;60;0.816239466 549051.8105;7819800.789;-9158.849609;60;0.37137078 549764.3105;7819406.617;-9061.450195;60;0.981554913 549576.8105;7818261.648;-9093.019531;60;0.119917398 549201.8105;7819875.867;-9148.450195;60;0.064310558 549639.3105;7819500.469;-9091.019531;60;0.489824984 551439.3105;7821321.16;-9118.219727;60;0.004397293 551564.3105;7817623.469;-9030.660156;60;0.55396509 551476.8105;7817754.859;-9028.700195;60;0.392191733 551251.8105;7820607.898;-9076.780273;60;0.797444154 551251.8105;7819875.867;-9052.660156;60;0.825329051 552101.8105;7820194.961;-8967.650391;60;0.88908942 550839.3105;7820401.43;-8984.730469;60;0.857071858 550501.8105;7820270.039;-8939.120117;60;0.303902534 551389.3105;7818242.879;-9011.80957;60;0.512661548 549264.3105;7820401.43;-9147.790039;60;0.763955527 549564.3105;7819125.07;-9095.55957;60;0.253286469 551426.8105;7817773.629;-9029.040039;60;0.00428714 551614.3105;7819650.629;-9035.849609;60;0.993823861 550426.8105;7819406.617;-8987.459961;60;0.295622962 551076.8105;7819988.488;-9036.919922;60;0.682663855 549026.8105;7817942.559;-9098.75;60;0.175127706 550464.3105;7817154.219;-9048.709961;60;0.890904347 551389.3105;7821208.539;-9117.650391;60;0.93558033 550076.8105;7817229.301;-9058.019531;60;0.863751042 550039.3105;7818824.75;-9052.419922;60;0.630026105 550989.3105;7821583.941;-9119.730469;60;0.4347874 551451.8105;7820382.66;-9054.700195;60;0.33355537 551576.8105;7819200.148;-9048.730469;60;0.100756021 551926.8105;7817661.008;-9011.860352;60;0.170212419 549714.3105;7821471.32;-9177.099609;60;0.606872846 550651.8105;7820645.438;-9034.019531;60;0.315336286 549514.3105;7819875.867;-9120.230469;60;0.235937822 550414.3105;7817191.758;-9053.610352;60;0.069367711 550776.8105;7821452.551;-9142.990234;60;0.87893271 549076.8105;7817116.68;-9052.480469;60;0.08483537 550076.8105;7821227.309;-9143.629883;60;0.697558349 551526.8105;7819857.098;-9049.400391;60;0.9469801 549601.8105;7817717.32;-9063.959961;60;0.630604246 550726.8105;7820232.5;-8956.05957;60;0.637083395 551451.8105;7820532.82;-9071.269531;60;0.425913001 549876.8105;7818411.809;-9081.200195;60;0.984085361 551164.3105;7821452.551;-9128.469727;60;0.272500496 552451.8105;7819387.852;-9055.110352;60;0.593278726 551389.3105;7820589.129;-9076.700195;60;0.486003204 549876.8105;7817398.227;-9066.049805;60;0.771726396 551801.8105;7818937.367;-9036.55957;60;0.918147466 549326.8105;7820138.648;-9142.240234;60;0.449835657 549951.8105;7819913.41;-9036.509766;60;0.83822196 549589.3105;7817529.617;-9040.830078;60;0.931887621 552276.8105;7818561.969;-9048.19043;60;0.682390042 550039.3105;7818261.648;-9094.679688;60;0.842650416 551539.3105;7817398.227;-9013.080078;60;0.020505538 552164.3105;7819782.02;-9014.75;60;0.792179656 552226.8105;7820626.668;-9043.910156;60;0.395030332 551726.8105;7817886.25;-9025.660156;60;0.39834692 550201.8105;7820645.438;-9051.05957;60;0.98163204 551139.3105;7818862.289;-9033.530273;60;0.589190286 549814.3105;7817191.758;-9058.709961;60;0.01614137 550939.3105;7821621.48;-9127.330078;60;0.517027377 549526.8105;7819406.617;-9099.299805;60;0.384954175 552289.3105;7820457.738;-9022.879883;60;0.893614623 549564.3105;7819594.32;-9104.69043;60;0.471312932 550951.8105;7821152.23;-9119.429688;60;0.623199226 551176.8105;7818580.738;-9029.200195;60;0.940966983 552101.8105;7820814.371;-9064.719727;60;0.999480406 551589.3105;7817529.617;-9024.719727;60;0.609323425 550126.8105;7816778.816;-9059.339844;60;0.112727753 552351.8105;7820420.199;-9029.900391;60;0.51889009 551001.8105;7821790.41;-9135.540039;60;0.0114571 549564.3105;7821358.699;-9176.650391;60;0.994958976 549939.3105;7821396.238;-9173.509766;60;0.134499403 549689.3105;7819519.238;-9083.330078;60;0.529299113 549051.8105;7820382.66;-9168.280273;60;0.447248277 550014.3105;7817229.301;-9058.150391;60;0.235119403 552439.3105;7819969.719;-9025.160156;60;0.38167184 549451.8105;7819462.93;-9108.509766;60;0.705280802 550601.8105;7817285.609;-9046.30957;60;0.68203585 550439.3105;7820044.801;-8946.099609;60;0.759927158 550201.8105;7821302.391;-9151.25;60;0.750426491 550189.3105;7821508.859;-9155.419922;60;0.12901676 552114.3105;7820739.289;-9063.480469;60;0.090835248 551151.8105;7821546.398;-9124.080078;60;0.574717392 550664.3105;7817923.789;-9058.049805;60;0.594763132 550051.8105;7817398.227;-9058.219727;60;0.304988601 551701.8105;7819838.328;-9025.370117;60;0.02691444 552139.3105;7818055.18;-9023.980469;60;0.864350475 550339.3105;7821227.309;-9127.969727;60;0.427807605 551001.8105;7821377.469;-9130.459961;60;0.702895801 550464.3105;7820870.68;-9064.490234;60;0.042554102 549764.3105;7820532.82;-9116.490234;60;0.864252419 551351.8105;7820889.449;-9103.419922;60;0.027789683 551064.3105;7820908.219;-9101.900391;60;0.424857353 550139.3105;7816647.43;-9060.769531;60;0.723527616 551714.3105;7819125.07;-9040.299805;60;0.391865589 550676.8105;7817529.617;-9049.05957;60;0.58346801 552164.3105;7817172.988;-8976.540039;60;0.138502535 552439.3105;7820119.879;-9024.040039;60;0.074213258 549439.3105;7820476.508;-9149.469727;60;0.48210966 549176.8105;7820457.738;-9168.19043;60;0.045029047 551451.8105;7818092.719;-9009.839844;60;0.521624246 549314.3105;7820945.758;-9181.660156;60;0.700447392 551114.3105;7819857.098;-9040.69043;60;0.822459132 549901.8105;7821790.41;-9188.769531;60;0.037768473 551701.8105;7818561.969;-9021.469727;60;0.123633366 552351.8105;7818036.41;-9027.19043;60;0.085697842 552439.3105;7819519.238;-9044.259766;60;0.110765812 551114.3105;7818637.047;-9036.570313;60;0.012115291 552176.8105;7818055.18;-9028.540039;60;0.291209306 549951.8105;7818712.129;-9045.910156;60;0.793782866 550489.3105;7816891.438;-9060.530273;60;0.674571989 551176.8105;7818749.668;-9029.570313;60;0.031899888 549989.3105;7818899.828;-9061.679688;60;0.194434232 549814.3105;7817736.09;-9082.200195;60;0.710971627 551801.8105;7819650.629;-9027.370117;60;0.92153973 551301.8105;7820251.27;-9045.410156;60;0.54717231 551376.8105;7818055.18;-9015.540039;60;0.302306567 552389.3105;7817848.711;-8992.429688;60;0.435698458 549526.8105;7818224.109;-9095.419922;60;0.918939542 551539.3105;7817942.559;-9015.259766;60;0.19726218 549839.3105;7820889.449;-9142.679688;60;0.228499205 550789.3105;7820532.82;-9010.419922;60;0.67702821 551526.8105;7817811.168;-9023.839844;60;0.787357686 550614.3105;7820101.109;-8950.259766;60;0.080089074 549689.3105;7821002.07;-9164.370117;60;0.513297128 550776.8105;7819237.688;-8998.950195;60;0.280134583 551664.3105;7817886.25;-9025.650391;60;0.329042327 549201.8105;7818974.91;-9115.480469;60;0.857183467 551326.8105;7821827.949;-9113.5;60;0.659908849 552339.3105;7817229.301;-8944.849609;60;0.339110188 549226.8105;7816947.75;-9054.44043;60;0.721578033 551451.8105;7819913.41;-9054.179688;60;0.27316574 550601.8105;7817248.07;-9043.089844;60;0.828026519 549551.8105;7819875.867;-9113.240234;60;0.085917455 550589.3105;7817154.219;-9039.740234;60;0.62291271 551539.3105;7817886.25;-9019.519531;60;0.526297334 549789.3105;7818974.91;-9070.990234;60;0.962741267 549776.8105;7819294;-9055.980469;60;0.39151906 549476.8105;7819763.25;-9125.19043;60;0.110926729 550389.3105;7817323.148;-9060.94043;60;0.804886409 551551.8105;7817717.32;-9028.709961;60;0.12658247 550614.3105;7821715.328;-9161.169922;60;0.546088398 552451.8105;7816966.52;-8878.169922;60;0.78027695 549589.3105;7819294;-9098.740234;60;0.791195669 551851.8105;7817980.098;-9010.179688;60;0.741791666 551089.3105;7818824.75;-9035.299805;60;0.268447677 550951.8105;7820701.75;-9064.790039;60;0.774061108 551651.8105;7817829.938;-9027.320313;60;0.013083123 548889.3105;7820926.988;-9204.570313;60;0.538336818 549376.8105;7819237.688;-9104.709961;60;0.547032759 550851.8105;7820532.82;-9017.780273;60;0.819424295 552339.3105;7817191.758;-8941.400391;60;0.808610373 550314.3105;7820626.668;-9021.769531;60;0.194055142 550614.3105;7817229.301;-9040.820313;60;0.865001112 551364.3105;7819688.168;-9047.44043;60;0.569073651 549751.8105;7817266.84;-9052.419922;60;0.051199046 552239.3105;7820044.801;-9016.179688;60;0.792192658 549614.3105;7820570.359;-9132.830078;60;0.414351498 551601.8105;7817717.32;-9027.580078;60;0.838142824 552039.3105;7818336.73;-9032.049805;60;0.344268879 551739.3105;7818092.719;-9000.94043;60;0.053015639 552126.8105;7820532.82;-9018.070313;60;0.114113326 550614.3105;7818017.637;-9058.919922;60;0.402878386 550726.8105;7821152.23;-9135.099609;60;0.407699809 549751.8105;7821152.23;-9177.25;60;0.996060758 549139.3105;7818974.91;-9124.379883;60;0.183147591 552389.3105;7817022.828;-8891.759766;60;0.23258611 550764.3105;7820307.578;-8958.160156;60;0.424483413 550639.3105;7819706.938;-9009.910156;60;0.211572483 551064.3105;7821039.609;-9123.259766;60;0.32042136 549889.3105;7817848.711;-9093.269531;60;0.578082681 550076.8105;7820945.758;-9117.269531;60;0.698804527 552389.3105;7818073.949;-9025.280273;60;0.042282577 549414.3105;7818317.957;-9095.629883;60;0.968466903 551889.3105;7817510.848;-9005.629883;60;0.658877864 550776.8105;7820495.281;-9001.150391;60;0.7443912 550501.8105;7819481.699;-8974.870117;60;0.79784808 549464.3105;7817435.77;-9012.080078;60;0.642977286 551264.3105;7821058.379;-9113.040039;60;0.20572669 551789.3105;7817642.238;-9016.599609;60;0.257079803 552239.3105;7820157.418;-8998.540039;60;0.714263652 549176.8105;7819444.16;-9140.169922;60;0.16707888 549626.8105;7820251.27;-9105.469727;60;0.275546596 549714.3105;7818374.27;-9083.860352;60;0.121701723 549089.3105;7817154.219;-9046.509766;60;0.542846129 551689.3105;7818524.43;-9020.69043;60;0.069264043 549001.8105;7820176.188;-9151.370117;60;0.844655275 550739.3105;7819462.93;-9013.080078;60;0.044233414 549989.3105;7821565.168;-9187.110352;60;0.31492598 549826.8105;7819650.629;-9061.610352;60;0.659118665 552451.8105;7817154.219;-8889.360352;60;0.408799635 552376.8105;7816872.668;-8929.009766;60;0.836209182 549739.3105;7819012.449;-9068.599609;60;0.078110851 552076.8105;7820495.281;-9009.459961;60;0.336379295 551676.8105;7820795.598;-9077.110352;60;0.3772917 552189.3105;7819200.148;-9046.55957;60;0.828857747 550251.8105;7821696.559;-9159.900391;60;0.436754927 552289.3105;7817679.777;-9005.389648;60;0.058863688 550439.3105;7820194.961;-8931.25;60;0.327783973 552176.8105;7817792.398;-9017.429688;60;0.782655077 552276.8105;7817942.559;-9014.139648;60;0.499819996 551901.8105;7819725.711;-9015.070313;60;0.612524843 549351.8105;7819763.25;-9137.389648;60;0.023417162 549926.8105;7819125.07;-9045.629883;60;0.146301662 549776.8105;7818768.438;-9064.209961;60;0.030931783 552389.3105;7820326.348;-9026.799805;60;0.109872564 551726.8105;7817773.629;-9025.790039;60;0.848318842 549376.8105;7819838.328;-9135.799805;60;0.863471409 551064.3105;7821827.949;-9126.400391;60;0.855073964 551576.8105;7818730.898;-9011.230469;60;0.100800253 551026.8105;7820532.82;-9049.25;60;0.599683261 550001.8105;7817341.918;-9060.099609;60;0.128755838 549876.8105;7816835.129;-9057.870117;60;0.852272962 551101.8105;7821452.551;-9127.679688;60;0.826746286 551726.8105;7817811.168;-9027.040039;60;0.728906402 549801.8105;7821677.789;-9183.129883;60;0.577516271 549964.3105;7821020.84;-9139.870117;60;0.692139466 552151.8105;7820138.648;-8978.889648;60;0.649749232 549714.3105;7817398.227;-9046.740234;60;0.548931296 551926.8105;7820964.531;-9081.610352;60;0.941520452 551664.3105;7818224.109;-9014.459961;60;0.923572599 552276.8105;7820645.438;-9047.69043;60;0.223331394 551801.8105;7818261.648;-9017.450195;60;0.67523758 548889.3105;7819369.078;-9160.879883;60;0.51707384 548876.8105;7817022.828;-9085.69043;60;0.53650245 549301.8105;7819294;-9122.919922;60;0.431604168 551689.3105;7820983.297;-9096.19043;60;0.074889207 551514.3105;7819012.449;-9032.980469;60;0.192378668 550889.3105;7821077.148;-9114.330078;60;0.978861223 549414.3105;7817567.16;-9045.240234;60;0.913804628 549701.8105;7819087.527;-9067.25;60;0.546557187 551514.3105;7817266.84;-9010.719727;60;0.179182492 549414.3105;7817604.699;-9052.790039;60;0.149494466 551189.3105;7820138.648;-9051.950195;60;0.255857194 551926.8105;7819218.918;-9040.830078;60;0.667127022 549076.8105;7820476.508;-9177.400391;60;0.707459652 550989.3105;7821283.617;-9126.240234;60;0.722009267 551314.3105;7818993.68;-9033.929688;60;0.621873427 551501.8105;7819181.379;-9047.879883;60;0.768147464 550126.8105;7816985.289;-9048.419922;60;0.682240185 551726.8105;7819613.09;-9030.820313;60;0.314765731 551451.8105;7819049.988;-9036.820313;60;0.931938296 551951.8105;7818524.43;-9036.099609;60;0.70277275 552451.8105;7820664.211;-9059.030273;60;0.951875886 549326.8105;7818355.5;-9106.490234;60;0.194600542 550476.8105;7819613.09;-8974.990234;60;0.005336155 551889.3105;7820682.98;-9051.389648;60;0.461620544 549514.3105;7817435.77;-9018.990234;60;0.148217002 551801.8105;7819894.641;-9016.019531;60;0.783222464 550326.8105;7820026.027;-8951.009766;60;0.855470399 549589.3105;7820420.199;-9133.589844;60;0.152869519 549126.8105;7816853.898;-9079.660156;60;0.0353239 552376.8105;7820101.109;-9023.700195;60;0.404891082 551851.8105;7817041.598;-9004.320313;60;0.532880209 551739.3105;7820626.668;-9052.320313;60;0.477551547 550114.3105;7818336.73;-9089.299805;60;0.144258191 551589.3105;7816647.43;-9011.709961;60;0.688546145 552189.3105;7816891.438;-8968.919922;60;0.809711879 549676.8105;7821527.629;-9174.759766;60;0.485974681 551714.3105;7819294;-9045.120117;60;0.516358851 552389.3105;7817116.68;-8902.490234;60;0.290581281 549989.3105;7818655.82;-9051.089844;60;0.318716981 549001.8105;7819763.25;-9157.360352;60;0.030155962 551139.3105;7819950.949;-9042.959961;60;0.863084796 549951.8105;7820983.297;-9137.860352;60;0.799167824 551389.3105;7819312.77;-9044.299805;60;0.554272453 550389.3105;7820664.211;-9015.160156;60;0.930179698 551364.3105;7821246.078;-9117.620117;60;0.149759061 551789.3105;7819200.148;-9038.980469;60;0.302211215 551839.3105;7819650.629;-9026.480469;60;0.226189205 550626.8105;7821227.309;-9135.929688;60;0.562506801 551701.8105;7820945.758;-9091.570313;60;0.067784161 549751.8105;7817210.527;-9054.910156;60;0.907022368 549676.8105;7818205.34;-9094.389648;60;0.674782764 551651.8105;7819181.379;-9045.650391;60;0.649783947 549939.3105;7816797.59;-9056.599609;60;0.208768077 549989.3105;7818712.129;-9048.080078;60;0.348842505 551401.8105;7821490.09;-9111.230469;60;0.533107295 549576.8105;7819688.168;-9106.990234;60;0.737461689 551889.3105;7819556.777;-9030.44043;60;0.325996057 550201.8105;7821640.25;-9157.799805;60;0.770449032 551926.8105;7819275.23;-9038.80957;60;0.502778996 549689.3105;7819763.25;-9090.769531;60;0.885929105 550414.3105;7821565.168;-9157.450195;60;0.244081544 551664.3105;7820026.027;-8998.900391;60;0.647703509 550101.8105;7820326.348;-8983.200195;60;0.820045968 549276.8105;7819744.48;-9143.30957;60;0.118520828 549264.3105;7819932.18;-9144.490234;60;0.178008449 550201.8105;7816891.438;-9060.959961;60;0.481957257 551914.3105;7818580.738;-9032.490234;60;0.176868262 551064.3105;7820251.27;-9036.209961;60;0.498752552 551776.8105;7819444.16;-9038.990234;60;0.698713329 551064.3105;7821490.09;-9125.719727;60;0.052857995 551601.8105;7820814.371;-9082.509766;60;0.124971664 549826.8105;7818824.75;-9069.200195;60;0.677832849 551701.8105;7817923.789;-9022.19043;60;0.735828064 550939.3105;7817060.367;-9038.610352;60;0.70975291 549001.8105;7819519.238;-9148;60;0.388548879 551101.8105;7821264.848;-9130.089844;60;0.513612065 551901.8105;7819650.629;-9022.580078;60;0.883734699 551376.8105;7820495.281;-9072.110352;60;0.19016882 551026.8105;7821546.398;-9120.110352;60;0.213982615 551526.8105;7816891.438;-9019.530273;60;0.703915743 550414.3105;7820983.297;-9086.219727;60;0.245272291 551789.3105;7819932.18;-9009.69043;60;0.866561425 551489.3105;7817698.547;-9031.900391;60;0.1701891 549151.8105;7820420.199;-9166.400391;60;0.455366011 551726.8105;7817642.238;-9022.070313;60;0.952679319 550264.3105;7821565.168;-9149.509766;60;0.360935924 551864.3105;7817867.48;-9018.889648;60;0.287231769 549064.3105;7819763.25;-9158.19043;60;0.665793401 549201.8105;7819913.41;-9148.490234;60;0.224968657 552239.3105;7816928.98;-8952.530273;60;0.113006916 549626.8105;7819444.16;-9091.009766;60;0.785233092 551501.8105;7821321.16;-9119.919922;60;0.517728462 551201.8105;7820570.359;-9073.570313;60;0.50052145 551614.3105;7816684.969;-9010.339844;60;0.078162997 551576.8105;7817585.93;-9028.94043;60;0.748349534 551264.3105;7819913.41;-9052.879883;60;0.830737616 551701.8105;7818618.281;-9021.339844;60;0.145180857 552151.8105;7820194.961;-8977.019531;60;0.348318919 550626.8105;7819294;-8980.219727;60;0.705760744 551314.3105;7820607.898;-9077;60;0.394155805 551614.3105;7819594.32;-9037.339844;60;0.699763373 551339.3105;7821208.539;-9117.580078;60;0.803495747 550776.8105;7821133.457;-9126.669922;60;0.762910685 551051.8105;7821583.941;-9116.540039;60;0.044905919 551126.8105;7819012.449;-9033.780273;60;0.666186244 550426.8105;7817229.301;-9055.320313;60;0.101318157 551639.3105;7819838.328;-9034.719727;60;0.465710285 551514.3105;7819819.559;-9049.219727;60;0.817644098 550051.8105;7818224.109;-9097.629883;60;0.376641548 548914.3105;7820626.668;-9185.410156;60;0.890843538 551264.3105;7818956.141;-9032.44043;60;0.408730207 549951.8105;7819950.949;-9038.549805;60;0.199981788 549664.3105;7821565.168;-9174.820313;60;0.523514031 549039.3105;7820326.348;-9161.450195;60;0.934282958 551314.3105;7821659.02;-9116.419922;60;0.472397329 552439.3105;7820157.418;-9025.570313;60;0.227215356 551589.3105;7819218.918;-9049.169922;60;0.091718645 551001.8105;7820345.121;-9020.450195;60;0.453650266 551851.8105;7817942.559;-9014.580078;60;0.241884407 552276.8105;7819444.16;-9047.759766;60;0.702811044 551814.3105;7817567.16;-9012.019531;60;0.663332874 549576.8105;7819782.02;-9108.860352;60;0.875311302 549589.3105;7817848.711;-9084.419922;60;0.74450814 550164.3105;7817248.07;-9056;60;0.113380101 550701.8105;7819406.617;-9008.230469;60;0.369631165 549389.3105;7819650.629;-9127.030273;60;0.73320029 550676.8105;7819350.309;-8998.849609;60;0.95718815 551189.3105;7820288.809;-9043.129883;60;0.974530916 552276.8105;7817266.84;-8967.019531;60;0.137897144 551689.3105;7818299.188;-9015.799805;60;0.36146974 551876.8105;7819462.93;-9033.740234;60;0.857932998 551464.3105;7819425.391;-9035.700195;60;0.373651553 551826.8105;7818449.348;-9028.339844;60;0.230609503 551876.8105;7817454.539;-9001.719727;60;0.146966953 549901.8105;7820476.508;-9081.049805;60;0.826137274 552064.3105;7818167.797;-9030.240234;60;0.841058273 551851.8105;7821602.711;-9061.839844;60;0.396000891 551951.8105;7818261.648;-9025.320313;60;0.297181987 550326.8105;7818618.281;-9069.849609;60;0.161792285 551464.3105;7817923.789;-9018.69043;60;0.298581207 549964.3105;7817548.387;-9066.679688;60;0.83300468 552051.8105;7818449.348;-9037.400391;60;0.742714975 550139.3105;7818768.438;-9051.730469;60;0.166510486 551214.3105;7821490.09;-9127.759766;60;0.610383935 549851.8105;7819725.711;-9057.580078;60;0.5128755 549626.8105;7820363.887;-9119.599609;60;0.107513579 550151.8105;7818862.289;-9047.480469;60;0.171946471 551576.8105;7818130.258;-9004.860352;60;0.288793834 551151.8105;7819800.789;-9046.769531;60;0.308772607 549839.3105;7820551.59;-9102.75;60;0.787278946 550126.8105;7820232.5;-8960.009766;60;0.960164255 549314.3105;7820007.258;-9144.219727;60;0.578866978 549926.8105;7819838.328;-9043.419922;60;0.437495256 550114.3105;7820814.371;-9089.089844;60;0.068266409 550239.3105;7820514.051;-9004.589844;60;0.225267388 551951.8105;7820213.73;-8955.69043;60;0.566699698 550264.3105;7821396.238;-9150.94043;60;0.055473483 552164.3105;7819650.629;-9024.129883;60;0.878826741 549664.3105;7817792.398;-9078.080078;60;0.451266422 549064.3105;7819444.16;-9146.320313;60;0.765456285 548989.3105;7820026.027;-9147.089844;60;0.276159863 550664.3105;7821827.949;-9158.519531;60;0.26709711 550826.8105;7820739.289;-9065.240234;60;0.706252834 551139.3105;7820645.438;-9079.330078;60;0.097779868 551939.3105;7820307.578;-8972.480469;60;0.718332851 551251.8105;7819950.949;-9052.719727;60;0.944365506 551876.8105;7820138.648;-8958.419922;60;0.402201799 552164.3105;7820232.5;-8979.700195;60;0.802709698 549201.8105;7817829.938;-9072.44043;60;0.382936319 551826.8105;7819969.719;-8996.30957;60;0.294904127 551589.3105;7817398.227;-9012.150391;60;0.823565054 549101.8105;7819556.777;-9146.219727;60;0.232426479 550751.8105;7818073.949;-9044.679688;60;0.319848898 549926.8105;7821077.148;-9149.519531;60;0.029667112 551176.8105;7821715.328;-9115.169922;60;0.639344544 548926.8105;7820251.27;-9166.150391;60;0.849538206 549489.3105;7817829.938;-9075.469727;60;0.672925613 549964.3105;7818768.438;-9049.599609;60;0.640384235 549689.3105;7818524.43;-9066.870117;60;0.901069982 551051.8105;7820945.758;-9108.290039;60;0.515598849 550189.3105;7820607.898;-9041.490234;60;0.408872496 552226.8105;7819613.09;-9039.410156;60;0.422069996 549614.3105;7820288.809;-9110.849609;60;0.62270377 549389.3105;7819988.488;-9136.209961;60;0.633029789 550301.8105;7821152.23;-9123.69043;60;0.757681857 551689.3105;7817323.148;-9007.290039;60;0.81285646 551814.3105;7819387.852;-9036.469727;60;0.873780126 551739.3105;7821490.09;-9097.219727;60;0.092080216 550176.8105;7818693.359;-9059.769531;60;0.296995963 549089.3105;7820176.188;-9141.900391;60;0.306110529 550664.3105;7820908.219;-9100.339844;60;0.422814187 552039.3105;7818599.508;-9040.480469;60;0.338799883 550064.3105;7818449.348;-9085.339844;60;0.757934238 550289.3105;7821002.07;-9110.910156;60;0.044277604 550876.8105;7820983.297;-9109.240234;60;0.797147853 550214.3105;7817154.219;-9049;60;0.386701617 552439.3105;7817510.848;-8940.419922;60;0.220080329 551839.3105;7818355.5;-9024.05957;60;0.463545749 550664.3105;7817848.711;-9060.209961;60;0.197358846 551751.8105;7817529.617;-9014.959961;60;0.293334207 552276.8105;7816778.816;-8964.5;60;0.93286059 550689.3105;7821396.238;-9143.44043;60;0.139693502 551839.3105;7819143.84;-9040.429688;60;0.906079649 550739.3105;7817661.008;-9052.349609;60;0.219872805 551589.3105;7817867.48;-9022.589844;60;0.520639148 550151.8105;7818637.047;-9067.259766;60;0.816582981 548889.3105;7820551.59;-9183.44043;60;0.991719022 550714.3105;7819350.309;-9007.679688;60;0.058469574 550989.3105;7820983.297;-9115.19043;60;0.886859201 549514.3105;7819650.629;-9115.599609;60;0.556840183 549289.3105;7819331.539;-9127.549805;60;0.775686654 550601.8105;7817604.699;-9059.120117;60;0.817482805 550726.8105;7821752.867;-9152.230469;60;0.314950462 549414.3105;7820232.5;-9133.290039;60;0.020141822 552389.3105;7820157.418;-9025.25;60;0.933171967 551901.8105;7817492.078;-9003.459961;60;0.774119792 552314.3105;7820270.039;-9015.900391;60;0.903379279 548951.8105;7819294;-9160.219727;60;0.893822347 550026.8105;7821020.84;-9132.330078;60;0.060419591 551676.8105;7817698.547;-9026.139648;60;0.176415551 551564.3105;7819725.711;-9040.009766;60;0.426549942 551264.3105;7819857.098;-9053.230469;60;0.303502649 552276.8105;7820607.898;-9040.099609;60;0.911685426 549201.8105;7820044.801;-9147.129883;60;0.292162916 549889.3105;7819519.238;-9046.740234;60;0.322586588 550351.8105;7821809.18;-9162.120117;60;0.461682722 551351.8105;7821264.848;-9117.94043;60;0.637099685 551701.8105;7817360.688;-9009.69043;60;0.483201886 551014.3105;7820194.961;-9034.169922;60;0.270708389 549676.8105;7817398.227;-9039.389648;60;0.364292411 550901.8105;7820401.43;-8998.820313;60;0.542986107 551114.3105;7821490.09;-9126.75;60;0.162976776 551389.3105;7820438.969;-9066.860352;60;0.448024331 549564.3105;7820514.051;-9140.959961;60;0.451927566 552414.3105;7817980.098;-9013.290039;60;0.996167047 552089.3105;7819500.469;-9023;60;0.745035871 550914.3105;7821659.02;-9132.740234;60;0.427203456 549476.8105;7819406.617;-9103.570313;60;0.723407935 551589.3105;7819857.098;-9042.150391;60;0.26408649 549976.8105;7819068.758;-9053.44043;60;0.402269721 551664.3105;7819800.789;-9029.849609;60;0.180668609 550751.8105;7817980.098;-9047.030273;60;0.322969634 551101.8105;7817341.918;-9016.349609;60;0.510671044 552189.3105;7820363.887;-8988.610352;60;0.020260847 549964.3105;7821152.23;-9149.370117;60;0.027224546 549839.3105;7818881.059;-9072.879883;60;0.01513582 550001.8105;7818355.5;-9087.870117;60;0.633376081 550276.8105;7820514.051;-8998.230469;60;0.195149233 551901.8105;7819143.84;-9043.5;60;0.836423387 550001.8105;7817417;-9059.870117;60;0.427923813 549926.8105;7816760.051;-9056.669922;60;0.406445993 551389.3105;7821452.551;-9112.75;60;0.719274386 549539.3105;7819669.398;-9112.570313;60;0.161630422 550776.8105;7821208.539;-9137.19043;60;0.09052259 548939.3105;7819331.539;-9159.730469;60;0.225614446 551939.3105;7819312.77;-9038.980469;60;0.48122702 549739.3105;7819519.238;-9073.969727;60;0.38018479 551176.8105;7821490.09;-9127.129883;60;0.000484721 549164.3105;7819481.699;-9140.740234;60;0.444545603 551214.3105;7821058.379;-9116.709961;60;0.884705529 550151.8105;7820307.578;-8959.929688;60;0.138165507 549226.8105;7819744.48;-9147.360352;60;0.503175271 550789.3105;7820476.508;-8997.290039;60;0.647495206 551926.8105;7818618.281;-9032.459961;60;0.481177139 551764.3105;7819481.699;-9038.740234;60;0.148489811 552239.3105;7818899.828;-9046.669922;60;0.092969249 551051.8105;7821452.551;-9127.990234;60;0.955425153 551939.3105;7819519.238;-9028.919922;60;0.929509784 551614.3105;7820776.828;-9077.459961;60;0.197045316 551926.8105;7819556.777;-9028.120117;60;0.502202035 551739.3105;7817942.559;-9018.290039;60;0.582949898 551051.8105;7817248.07;-9022.480469;60;0.735453177 550876.8105;7820814.371;-9079.339844;60;0.046275455 551239.3105;7820570.359;-9073.719727;60;0.915394962 549051.8105;7819538.008;-9146.919922;60;0.321947568 551251.8105;7821152.23;-9120.709961;60;0.471558138 551089.3105;7821321.16;-9128.610352;60;0.833785482 549789.3105;7818017.637;-9097.549805;60;0.692673889 551914.3105;7819613.09;-9025.219727;60;0.946048235 551039.3105;7821527.629;-9122.089844;60;0.994339528 550389.3105;7820964.531;-9088.870117;60;0.148248336 552026.8105;7821114.691;-9085.820313;60;0.098478205 551926.8105;7818430.578;-9033.410156;60;0.311050473 551726.8105;7818336.73;-9015.089844;60;0.504075268 550801.8105;7820307.578;-8966.379883;60;0.839941409 552251.8105;7820213.73;-9000.25;60;0.689884229 551664.3105;7820739.289;-9070.179688;60;0.467437758 549989.3105;7817773.629;-9087.730469;60;0.497082228 550701.8105;7817905.02;-9054.929688;60;0.790255525 551776.8105;7817398.227;-9007.25;60;0.610165825 552439.3105;7819688.168;-9033.540039;60;0.683816363 549676.8105;7819481.699;-9083.769531;60;0.172035453 549514.3105;7819444.16;-9100.139648;60;0.409456374 550501.8105;7820476.508;-8978.700195;60;0.402365516 552026.8105;7819200.148;-9041.980469;60;0.178767651 549539.3105;7817097.91;-9040.44043;60;0.773873595 549489.3105;7817585.93;-9044.320313;60;0.836748063 551301.8105;7821152.23;-9116.509766;60;0.160042393 549901.8105;7818224.109;-9091.540039;60;0.028902801 551514.3105;7819106.301;-9041.780273;60;0.404828737 550739.3105;7819106.301;-8994.780273;60;0.027556344 551676.8105;7817041.598;-9015.820313;60;0.155148921 550239.3105;7818693.359;-9062;60;0.776783975 549126.8105;7820514.051;-9178.870117;60;0.244885985 551264.3105;7820251.27;-9046.129883;60;0.695479651 551589.3105;7816666.199;-9012.299805;60;0.263700924 550776.8105;7820345.121;-8961.919922;60;0.718149763 549676.8105;7816778.816;-9047;60;0.64023022 552151.8105;7819819.559;-9003.150391;60;0.765791579 550826.8105;7820945.758;-9101.929688;60;0.309058522 549764.3105;7821283.617;-9168.700195;60;0.683539691 551889.3105;7820044.801;-8970.799805;60;0.455045324 551164.3105;7818524.43;-9027.330078;60;0.296778005 552176.8105;7816853.898;-8976.150391;60;0.067980473 549014.3105;7820664.211;-9185.639648;60;0.564029557 551714.3105;7819519.238;-9037.370117;60;0.057096704 549464.3105;7819500.469;-9109.280273;60;0.853255101 549739.3105;7819462.93;-9070.179688;60;0.928377287 552089.3105;7819181.379;-9042.549805;60;0.456918726 552301.8105;7820194.961;-9014.589844;60;0.185247999 549801.8105;7818149.027;-9093.69043;60;0.317947647 549651.8105;7818468.117;-9071.480469;60;0.593587394 550776.8105;7820908.219;-9101.570313;60;0.733832796 550876.8105;7821415.008;-9138.900391;60;0.343206852 551989.3105;7819481.699;-9026.299805;60;0.623210015 550276.8105;7817248.07;-9055.379883;60;0.45704592 551326.8105;7817079.141;-9024.200195;60;0.153067551 551501.8105;7818130.258;-9006.950195;60;0.977812276 551989.3105;7817848.711;-9013.099609;60;0.081709107 549639.3105;7817492.078;-9044.299805;60;0.958680872 549276.8105;7819650.629;-9139.160156;60;0.912233887 551876.8105;7821771.641;-9025.75;60;0.702120899 551339.3105;7821415.008;-9117.099609;60;0.77339793 551701.8105;7818224.109;-9013.410156;60;0.906393559 551939.3105;7820007.258;-8973.839844;60;0.87414976 549651.8105;7819425.391;-9086.480469;60;0.567923545 550939.3105;7820908.219;-9098.389648;60;0.765577175 549151.8105;7820363.887;-9157.5;60;0.261340601 550926.8105;7820307.578;-9002.780273;60;0.043434954 550839.3105;7820251.27;-8986.490234;60;0.940621523 549051.8105;7820870.68;-9190.719727;60;0.188603575 552401.8105;7819387.852;-9053;60;0.787918454 549801.8105;7819481.699;-9060.139648;60;0.562274077 550301.8105;7817022.828;-9054.25;60;0.355487978 549076.8105;7817567.16;-9043.900391;60;0.637166651 549664.3105;7818430.578;-9074.959961;60;0.754840138 550301.8105;7820251.27;-8949.80957;60;0.793706801 550664.3105;7821077.148;-9124.549805;60;0.081450593 550339.3105;7820795.598;-9061.849609;60;0.113019421 551939.3105;7817304.379;-8995.709961;60;0.955954382 551314.3105;7820326.348;-9048.209961;60;0.32790003 552326.8105;7819613.09;-9042.240234;60;0.935237168 550089.3105;7818280.418;-9091.599609;60;0.904320287 551114.3105;7818974.91;-9034.389648;60;0.266829339 552339.3105;7817980.098;-9019.80957;60;0.145842571 549739.3105;7821114.691;-9178.410156;60;0.217570464 549639.3105;7817717.32;-9066.929688;60;0.836650896 551426.8105;7817379.461;-9020.519531;60;0.476734691 551701.8105;7817510.848;-9018.450195;60;0.94676638 549864.3105;7817492.078;-9068.049805;60;0.205397656 551689.3105;7818956.141;-9032.650391;60;0.513793355 549814.3105;7821321.16;-9168.160156;60;0.734121721 550614.3105;7818073.949;-9057.969727;60;0.589626646 549289.3105;7819706.938;-9140.669922;60;0.234213185 550664.3105;7817736.09;-9061.490234;60;0.994354765 550026.8105;7818149.027;-9101.660156;60;0.836527649 550739.3105;7817792.398;-9056.519531;60;0.39449479 550064.3105;7817022.828;-9048.639648;60;0.628726728 550201.8105;7820701.75;-9063.69043;60;0.77321329 551989.3105;7819350.309;-9040.730469;60;0.802471711 550939.3105;7820776.828;-9075.259766;60;0.725697492 551726.8105;7817736.09;-9024.349609;60;0.202296393 551326.8105;7819875.867;-9054.919922;60;0.09364379 550464.3105;7819425.391;-8980.849609;60;0.027099579 552389.3105;7817210.527;-8920.650391;60;0.583234292 549601.8105;7818768.438;-9069.679688;60;0.144348949 551051.8105;7821246.078;-9126.490234;60;0.464063362 551076.8105;7820607.898;-9068.620117;60;0.176744467 551751.8105;7820945.758;-9084.299805;60;0.687946756 551851.8105;7821302.391;-9096.370117;60;0.300292275 549626.8105;7819556.777;-9095.129883;60;0.178063567 551176.8105;7820476.508;-9062.070313;60;0.616219669 551001.8105;7820945.758;-9107.719727;60;0.861965098 550614.3105;7817642.238;-9060.860352;60;0.744606211 551851.8105;7819613.09;-9029.30957;60;0.538034852 549939.3105;7817304.379;-9062.200195;60;0.745988632 550739.3105;7821715.328;-9152.669922;60;0.329628245 549401.8105;7820270.039;-9135.700195;60;0.452429659 551801.8105;7819237.688;-9038.05957;60;0.87419546 549264.3105;7820082.34;-9145.870117;60;0.811381721 552376.8105;7820288.809;-9025.540039;60;0.400461343 550014.3105;7820983.297;-9130.030273;60;0.096100324 551851.8105;7821659.02;-9049.769531;60;0.407585362 550289.3105;7817210.527;-9052.969727;60;0.852482072 551614.3105;7817679.777;-9028.089844;60;0.844879156 551576.8105;7819763.25;-9039.839844;60;0.025012445 550051.8105;7819988.488;-9003.870117;60;0.179224133 551376.8105;7819181.379;-9046.150391;60;0.041522869 549689.3105;7819049.988;-9067.740234;60;0.602714066 550901.8105;7820532.82;-9026.299805;60;0.876694292 550376.8105;7820645.438;-9011.860352;60;0.995442101 549489.3105;7820607.898;-9150.839844;60;0.452206127 551689.3105;7817379.461;-9011.459961;60;0.625893996 551289.3105;7821377.469;-9122.730469;60;0.253214404 550251.8105;7820607.898;-9032.549805;60;0.014817044 551001.8105;7820232.5;-9028.230469;60;0.138203789 550889.3105;7820438.969;-9005.599609;60;0.418503636 552001.8105;7818336.73;-9030.30957;60;0.128633105 549139.3105;7820326.348;-9153.080078;60;0.060689568 551226.8105;7819575.551;-9040.379883;60;0.119739281 551376.8105;7820476.508;-9070.879883;60;0.259689814 552401.8105;7817998.871;-9017.160156;60;0.866200928 548989.3105;7819800.789;-9157.259766;60;0.623075916 549964.3105;7820232.5;-9015.040039;60;0.54900175 550764.3105;7820814.371;-9085.469727;60;0.146700394 552076.8105;7819519.238;-9019.30957;60;0.910685972 550901.8105;7821677.789;-9136.5;60;0.48755848 551764.3105;7821696.559;-9052.450195;60;0.576047178 551576.8105;7819819.559;-9042.75;60;0.346175346 551651.8105;7819782.02;-9030.759766;60;0.337074143 552201.8105;7820326.348;-8988.919922;60;0.834411517 549976.8105;7821208.539;-9149.450195;60;0.523983574 549826.8105;7818918.598;-9074.669922;60;0.241791716 550001.8105;7818317.957;-9089.700195;60;0.967049876 551726.8105;7820664.211;-9058.19043;60;0.320441143 550026.8105;7821133.457;-9141.879883;60;0.103230717 548964.3105;7820476.508;-9179.69043;60;0.075635118 551451.8105;7820551.59;-9072.05957;60;0.386061232 549039.3105;7820589.129;-9185.780273;60;0.472892839 551864.3105;7818824.75;-9031.629883;60;0.127067158 550426.8105;7819556.777;-8981.379883;60;0.118378946 552051.8105;7819819.559;-9005.259766;60;0.956436396 550201.8105;7818824.75;-9047.639648;60;0.466145728 551614.3105;7818242.879;-9015.980469;60;0.792467703 551126.8105;7818580.738;-9033.769531;60;0.584128205 549489.3105;7819725.711;-9121.990234;60;0.491923145 549814.3105;7817210.527;-9058.419922;60;0.396673723 550889.3105;7821621.48;-9132.549805;60;0.174449958 549701.8105;7817585.93;-9065.269531;60;0.99741144 548976.8105;7817942.559;-9101.589844;60;0.105790376 551426.8105;7818280.418;-9013.5;60;0.910619115 551201.8105;7818336.73;-9023.839844;60;0.367146575 551814.3105;7817829.938;-9022.589844;60;0.997462785 552076.8105;7820438.969;-8992.730469;60;0.645408204 551514.3105;7817567.16;-9031.799805;60;0.743218702 550151.8105;7821339.93;-9158.650391;60;0.497834712 549226.8105;7819406.617;-9136.980469;60;0.416981575 550714.3105;7817548.387;-9048.280273;60;0.485900964 549851.8105;7821189.77;-9161.129883;60;0.428188186 552051.8105;7817754.859;-9011.730469;60;0.711851607 549776.8105;7818055.18;-9097.349609;60;0.085990849 550889.3105;7820776.828;-9073.259766;60;0.327222576 550339.3105;7820833.141;-9072.040039;60;0.727522031 551701.8105;7821827.949;-9036.610352;60;0.379914329 551989.3105;7817661.008;-9011.009766;60;0.703272202 549076.8105;7817529.617;-9043.200195;60;0.160055703 551789.3105;7817905.02;-9020.400391;60;0.874003395 550114.3105;7820007.258;-8982.389648;60;0.397421679 549039.3105;7820908.219;-9191.910156;60;0.955073981 552364.3105;7817661.008;-8979.169922;60;0.727477653 549626.8105;7821677.789;-9187.80957;60;0.714391689 549876.8105;7821077.148;-9157.120117;60;0.214329896 550926.8105;7820270.039;-9007.019531;60;0.905376271 551439.3105;7818336.73;-9017.5;60;0.689979272 551701.8105;7820870.68;-9085.05957;60;0.967515751 551939.3105;7819969.719;-8982.870117;60;0.959132906 551551.8105;7818899.828;-9022.370117;60;0.154354154 551589.3105;7818524.43;-9018.990234;60;0.371949829 550239.3105;7820551.59;-9017.169922;60;0.591622922 550251.8105;7816891.438;-9062.240234;60;0.607312515 550314.3105;7816816.359;-9059.769531;60;0.384355239 550764.3105;7820664.211;-9044.299805;60;0.633292865 550289.3105;7817116.68;-9049.650391;60;0.504455621 549401.8105;7818130.258;-9098.620117;60;0.707509649 550139.3105;7820664.211;-9059.5;60;0.628749255 549876.8105;7819162.609;-9044.929688;60;0.112785848 551964.3105;7821227.309;-9094.719727;60;0.937762205 551989.3105;7819969.719;-8980.169922;60;0.050551187 551539.3105;7818186.57;-9009.240234;60;0.461331065 549664.3105;7820795.598;-9148.290039;60;0.446221185 551001.8105;7820776.828;-9080.150391;60;0.480146621 551951.8105;7819688.168;-9012.110352;60;0.360364445 551639.3105;7821659.02;-9077.459961;60;0.200030877 551576.8105;7817229.301;-9010.69043;60;0.98485317 551501.8105;7819125.07;-9043.759766;60;0.777611298 551514.3105;7821189.77;-9116.980469;60;0.598885994 549339.3105;7821583.941;-9182.910156;60;0.972468601 550251.8105;7816853.898;-9061.980469;60;0.91859335 551839.3105;7821827.949;-9021.19043;60;0.992324001 551314.3105;7818280.418;-9017.05957;60;0.682420166 550764.3105;7816891.438;-9050.139648;60;0.192807438 551326.8105;7817116.68;-9020.889648;60;0.485120242 552339.3105;7817060.367;-8916.740234;60;0.67642219 551314.3105;7816797.59;-9014.330078;60;0.287354121 551826.8105;7820026.027;-8981.070313;60;0.761270856 550289.3105;7821264.848;-9137.530273;60;0.30845861 549276.8105;7819462.93;-9131.549805;60;0.748777549 552164.3105;7819256.457;-9042.580078;60;0.169650271 552126.8105;7816891.438;-8981.759766;60;0.570537771 550614.3105;7821396.238;-9141.05957;60;0.36096599 551189.3105;7820758.059;-9090.019531;60;0.536024797 551401.8105;7819782.02;-9053.410156;60;0.514757679 549464.3105;7819331.539;-9104.719727;60;0.050880234 551689.3105;7820363.887;-9024.669922;60;0.064591393 551789.3105;7819706.938;-9022.269531;60;0.35162143 549589.3105;7819969.719;-9109.509766;60;0.01560889 552339.3105;7819932.18;-9023.549805;60;0.368086008 549389.3105;7819331.539;-9112.080078;60;0.417072318 548876.8105;7818130.258;-9118.589844;60;0.873070865 551126.8105;7820176.188;-9046.790039;60;0.684853276 552001.8105;7820026.027;-8967.860352;60;0.297591214 550739.3105;7821490.09;-9142.519531;60;0.838785355 551601.8105;7821602.711;-9092.009766;60;0.840870466 549414.3105;7819406.617;-9111.75;60;0.928062939 552001.8105;7819763.25;-9006.080078;60;0.508885904 550926.8105;7817341.918;-9017.179688;60;0.461314237 552226.8105;7817435.77;-8975.679688;60;0.835677717 549764.3105;7821246.078;-9169.299805;60;0.272006983 551251.8105;7820701.75;-9083.700195;60;0.072930963 551551.8105;7821490.09;-9109.919922;60;0.63422337 551976.8105;7818505.66;-9037.30957;60;0.627126931 550964.3105;7820570.359;-9044.269531;60;0.268258089 549814.3105;7819218.918;-9048.769531;60;0.653396385 550839.3105;7820983.297;-9106.040039;60;0.477168331 549676.8105;7817923.789;-9092.469727;60;0.800423632 550189.3105;7816816.359;-9061.980469;60;0.521758263 551476.8105;7820908.219;-9098.870117;60;0.270440148 551101.8105;7820514.051;-9058.19043;60;0.960805497 551064.3105;7820833.141;-9090.110352;60;0.088259939 551239.3105;7816647.43;-9016.589844;60;0.291729969 552376.8105;7817323.148;-8954.360352;60;0.132006598 551314.3105;7819838.328;-9054.910156;60;0.870191902 552176.8105;7821546.398;-9047.660156;60;0.77133002 549751.8105;7821846.719;-9183.790039;60;0.009568043 551676.8105;7821339.93;-9117.070313;60;0.498539835 552014.3105;7821734.102;-9026.269531;60;0.686313036 551114.3105;7820983.297;-9113.929688;60;0.571966375 551464.3105;7816741.277;-9019.799805;60;0.660795895 551576.8105;7821095.918;-9107.419922;60;0.126493654 552101.8105;7820288.809;-8968.339844;60;0.774668697 552064.3105;7817961.328;-9010.709961;60;0.550550984 551514.3105;7821827.949;-9081.080078;60;0.653862982 550176.8105;7820176.188;-8955.530273;60;0.552127641 551764.3105;7817454.539;-9011.519531;60;0.457993426 550376.8105;7816891.438;-9061.929688;60;0.084652948 549964.3105;7820307.578;-9025.950195;60;0.494306878 549514.3105;7817736.09;-9061.480469;60;0.383060962 551689.3105;7821095.918;-9106.450195;60;0.902923514 549339.3105;7819575.551;-9129.070313;60;0.827072882 551514.3105;7818449.348;-9028.700195;60;0.808774473 551176.8105;7820870.68;-9101.349609;60;0.765994469 550426.8105;7821696.559;-9163.790039;60;0.195251877 549001.8105;7819706.938;-9155.070313;60;0.186654675 552289.3105;7819969.719;-9032.900391;60;0.612760396 552264.3105;7821621.48;-9037.230469;60;0.30297364 551939.3105;7817754.859;-9014.990234;60;0.7243299 549664.3105;7819256.457;-9083.599609;60;0.525820187 549276.8105;7821133.457;-9183.459961;60;0.009545537 549089.3105;7820607.898;-9184.650391;60;0.213365063 552189.3105;7821602.711;-9037.929688;60;0.865794474 549126.8105;7819650.629;-9150.980469;60;0.970043596 549164.3105;7818036.41;-9102.730469;60;0.681112229 552439.3105;7819763.25;-9029.30957;60;0.591060345 551901.8105;7819913.41;-9002.330078;60;0.732932639 551451.8105;7821133.457;-9115.580078;60;0.482416878 551389.3105;7820345.121;-9049.110352;60;0.106156784 551564.3105;7816797.59;-9015.969727;60;0.873380971 549414.3105;7817172.988;-9026.259766;60;0.990413559 551551.8105;7820776.828;-9079.05957;60;0.173041319 551364.3105;7820176.188;-9048.230469;60;0.59261288 551939.3105;7820063.57;-8963.240234;60;0.034917404 550914.3105;7821752.867;-9145.599609;60;0.996789345 549776.8105;7820776.828;-9136.740234;60;0.176637576 552439.3105;7821546.398;-9055.290039;60;0.677148327 551989.3105;7817473.309;-8999.639648;60;0.110259015 550326.8105;7816741.277;-9061.740234;60;0.234759372 550951.8105;7820964.531;-9110.950195;60;0.961281394 551476.8105;7821152.23;-9116.280273;60;0.517186199 551301.8105;7819387.852;-9034.219727;60;0.038907497 551114.3105;7821583.941;-9120.799805;60;0.822312604 552426.8105;7818017.637;-9016.040039;60;0.72456228 551189.3105;7819969.719;-9049.30957;60;0.919113968 551676.8105;7819706.938;-9027.490234;60;0.674708545 549926.8105;7818055.18;-9098.129883;60;0.166680419 551876.8105;7819369.078;-9035.30957;60;0.186218959 550864.3105;7816947.75;-9044.469727;60;0.914128033 549276.8105;7821339.93;-9180.25;60;0.419841317 550076.8105;7816741.277;-9052.049805;60;0.38845598 549189.3105;7820626.668;-9180.219727;60;0.275488955 551164.3105;7821302.391;-9132.389648;60;0.061438613 550776.8105;7817604.699;-9047.019531;60;0.003223834 551464.3105;7819688.168;-9045.269531;60;0.607022455 550801.8105;7820232.5;-8980.44043;60;0.339957634 551426.8105;7819669.398;-9044.639648;60;0.126608652 551139.3105;7820138.648;-9048.889648;60;0.907689016 551464.3105;7816947.75;-9027.160156;60;0.127211343 549764.3105;7819143.84;-9054.860352;60;0.357325007 549301.8105;7819387.852;-9127.75;60;0.982620643 549239.3105;7817304.379;-9009.820313;60;0.920346257 549889.3105;7821433.781;-9180.099609;60;0.803737825 550264.3105;7816647.43;-9067.200195;60;0.076825977 551439.3105;7820664.211;-9082.110352;60;0.598289951 551376.8105;7821002.07;-9110.019531;60;0.072270283 551264.3105;7821621.48;-9118.259766;60;0.606034816 550151.8105;7820758.059;-9075.719727;60;0.976654974 552314.3105;7821452.551;-9063.110352;60;0.228469344 552376.8105;7821546.398;-9051.799805;60;0.31029253 552264.3105;7821302.391;-9073.599609;60;0.95306101 551651.8105;7816797.59;-9012.740234;60;0.611974782 551776.8105;7821452.551;-9094.910156;60;0.368391565 551489.3105;7820476.508;-9063.620117;60;0.970842629 550714.3105;7821283.617;-9145.870117;60;0.723798113 550114.3105;7820101.109;-8980.259766;60;0.031052114 551851.8105;7821415.008;-9090.80957;60;0.118276261 552139.3105;7821621.48;-9034.139648;60;0.714853896 551989.3105;7817548.387;-9006.05957;60;0.938604172 549089.3105;7820382.66;-9167.009766;60;0.509309425 552439.3105;7821208.539;-9068.919922;60;0.086838721 550301.8105;7816966.52;-9061.30957;60;0.88396583 551526.8105;7821077.148;-9109.650391;60;0.52545104 552126.8105;7821302.391;-9076.610352;60;0.467154638 549201.8105;7818055.18;-9103.540039;60;0.856576828 552001.8105;7818393.039;-9032.910156;60;0.549333678 551414.3105;7820007.258;-9050.589844;60;0.681667652 550701.8105;7818036.41;-9049.599609;60;0.092003849 551614.3105;7821452.551;-9113.660156;60;0.273564188 549951.8105;7820551.59;-9074.040039;60;0.245544498 552276.8105;7819800.789;-9012.450195;60;0.630134254 551564.3105;7817323.148;-9008.610352;60;0.438659457 551414.3105;7820926.988;-9105.200195;60;0.826825467 548951.8105;7817492.078;-9066.450195;60;0.14423988 550939.3105;7820476.508;-9022.919922;60;0.912320199 550151.8105;7817191.758;-9054.990234;60;0.255232319 551651.8105;7819294;-9047.360352;60;0.078166122 551701.8105;7821734.102;-9054.120117;60;0.39449731 549826.8105;7817341.918;-9061.19043;60;0.476017731 550201.8105;7821415.008;-9157.080078;60;0.770908167 550801.8105;7816797.59;-9049.009766;60;0.342858018 551589.3105;7819275.23;-9048.179688;60;0.219584454 552276.8105;7821433.781;-9064.69043;60;0.184756715 551639.3105;7818524.43;-9018.280273;60;0.782562656 551464.3105;7820232.5;-9030.509766;60;0.082991603 549126.8105;7819369.078;-9144.980469;60;0.767314489 549589.3105;7819387.852;-9096.05957;60;0.907158618 549139.3105;7817398.227;-9031.629883;60;0.870075361 552139.3105;7821452.551;-9063.129883;60;0.0964495 549126.8105;7819312.77;-9146.759766;60;0.145011613 552101.8105;7817191.758;-8988.549805;60;0.259584493 550476.8105;7817266.84;-9055.110352;60;0.094386419 549176.8105;7819294;-9141.240234;60;0.628007194 549639.3105;7818073.949;-9092.009766;60;0.505890789 549176.8105;7817379.461;-9023.089844;60;0.667653458 551926.8105;7820514.051;-9028.580078;60;0.226479635 550651.8105;7820345.121;-8958.490234;60;0.36445751 549814.3105;7818411.809;-9081.639648;60;0.03028121 549814.3105;7821152.23;-9168.290039;60;0.987015852 551101.8105;7817154.219;-9030.040039;60;0.918069568 551851.8105;7821339.93;-9094.549805;60;0.60543841 552326.8105;7820964.531;-9062.080078;60;0.008425842 552051.8105;7821339.93;-9085;60;0.636313913 551101.8105;7821171;-9131.040039;60;0.341506936 549764.3105;7816891.438;-9050.009766;60;0.276062093 551426.8105;7820138.648;-9041.820313;60;0.368185988 552001.8105;7817379.461;-8986.599609;60;0.401809863 551576.8105;7820607.898;-9060.599609;60;0.519061137 552039.3105;7817679.777;-9011.080078;60;0.389155577 551164.3105;7821189.77;-9130.959961;60;0.865968337 551439.3105;7820758.059;-9086.450195;60;0.258725705 549101.8105;7819857.098;-9155.820313;60;0.072298707 549814.3105;7819125.07;-9047.919922;60;0.005338101 549726.8105;7817754.859;-9077.230469;60;0.118653431 551326.8105;7816891.438;-9019.599609;60;0.069656135 551301.8105;7820138.648;-9054.480469;60;0.706218968 551926.8105;7817829.938;-9015.370117;60;0.019009659 551801.8105;7821264.848;-9100.860352;60;0.474511741 550189.3105;7817116.68;-9047.290039;60;0.092359331 552401.8105;7821715.328;-9029.25;60;0.845457981 552076.8105;7821527.629;-9044.200195;60;0.717932859 551251.8105;7820739.289;-9086.650391;60;0.379520192 551551.8105;7816722.508;-9016.490234;60;0.921650286 551701.8105;7821790.41;-9041.919922;60;0.467031078 549114.3105;7818036.41;-9104.259766;60;0.001594076 551989.3105;7817698.547;-9012.530273;60;0.656266759 550651.8105;7817191.758;-9036.950195;60;0.978308268 549876.8105;7819200.148;-9044.69043;60;0.727702647 551701.8105;7819350.309;-9045.349609;60;0.382377523 550626.8105;7819125.07;-8980.769531;60;0.551737474 550926.8105;7821696.559;-9136.110352;60;0.089490547 551789.3105;7817942.559;-9015.910156;60;0.09806407 551614.3105;7821490.09;-9109.549805;60;0.171796513 549664.3105;7819237.688;-9083.320313;60;0.753043198 550239.3105;7820138.648;-8953.429688;60;0.240159132 550114.3105;7820044.801;-8982.639648;60;0.333773221 549351.8105;7817454.539;-9005.150391;60;0.919828135 550489.3105;7819556.777;-8975.349609;60;0.010220371 550314.3105;7821396.238;-9145.080078;60;0.363534766 552389.3105;7817679.777;-8979.080078;60;0.06697545 549864.3105;7820420.199;-9083.910156;60;0.179547283 549626.8105;7821696.559;-9189.660156;60;0.856776936 550951.8105;7821490.09;-9128.30957;60;0.896690477 549626.8105;7821077.148;-9169.049805;60;0.13278152 550176.8105;7820101.109;-8962.419922;60;0.410203187 552326.8105;7820833.141;-9060.320313;60;0.723706096 551389.3105;7820964.531;-9108.419922;60;0.497312898 551839.3105;7821490.09;-9084;60;0.810971599 551939.3105;7817548.387;-9006.709961;60;0.644107822 549851.8105;7821095.918;-9162.179688;60;0.423502235 550101.8105;7820889.449;-9104.80957;60;0.386774281 551464.3105;7818355.5;-9020.459961;60;0.212585646 551726.8105;7820889.449;-9083.910156;60;0.93614176 551489.3105;7818749.668;-9012.30957;60;0.770947721 552114.3105;7817829.938;-9008.580078;60;0.53063027 552076.8105;7821715.328;-9022.759766;60;0.858912778 551589.3105;7821020.84;-9103.870117;60;0.608447206 552051.8105;7817435.77;-8993.820313;60;0.083830283 551989.3105;7820926.988;-9076.280273;60;0.619407474 551426.8105;7816647.43;-9020.150391;60;0.945597404 550451.8105;7816910.207;-9060.5;60;0.689290882 552151.8105;7821227.309;-9079.179688;60;0.410359131 551076.8105;7820664.211;-9075.389648;60;0.19493832 549701.8105;7816722.508;-9052.299805;60;0.829413246 551389.3105;7820701.75;-9085.580078;60;0.100546162 550251.8105;7816910.207;-9061.55957;60;0.229531662 550314.3105;7816835.129;-9060.669922;60;0.384113286 549451.8105;7821640.25;-9191.679688;60;0.244655501 550289.3105;7817154.219;-9050.459961;60;0.11112365 551464.3105;7821039.609;-9110.799805;60;0.086196612 550014.3105;7817454.539;-9059.049805;60;0.984022597 550826.8105;7821621.48;-9138.360352;60;0.065944055 549839.3105;7818036.41;-9096.849609;60;0.066358147 549714.3105;7820420.199;-9116.740234;60;0.539700437 549414.3105;7818167.797;-9098.959961;60;0.297789308 551964.3105;7821189.77;-9093.730469;60;0.034727049 552201.8105;7821433.781;-9065.660156;60;0.680819495 552076.8105;7819725.711;-9008.719727;60;0.714364763 549351.8105;7819425.391;-9120.820313;60;0.489774523 549351.8105;7819462.93;-9121.919922;60;0.875435377 552451.8105;7820213.73;-9028.459961;60;0.08110738 552014.3105;7819988.488;-8975.080078;60;0.032529177 552289.3105;7817417;-8972.259766;60;0.776466092 548889.3105;7819969.719;-9148.129883;60;0.507794331 551289.3105;7819162.609;-9046.349609;60;0.653832427 551001.8105;7820814.371;-9083.990234;60;0.669868891 552326.8105;7821565.168;-9045.299805;60;0.172779236 549751.8105;7819218.918;-9060.370117;60;0.146755476 551751.8105;7819031.219;-9039.549805;60;0.850272817 548876.8105;7817548.387;-9070.490234;60;0.101727022 549614.3105;7818242.879;-9093.969727;60;0.109098214 551514.3105;7821227.309;-9119.110352;60;0.551962782 549014.3105;7817379.461;-9058.099609;60;0.437719693 551576.8105;7820495.281;-9049.009766;60;0.883194489 549339.3105;7821621.48;-9184.709961;60;0.960386284 551626.8105;7821283.617;-9117;60;0.100472914 551551.8105;7818993.68;-9030.509766;60;0.04312207 551151.8105;7821133.457;-9129.009766;60;0.840454453 550726.8105;7821189.77;-9139.299805;60;0.813490625 550251.8105;7816816.359;-9061.129883;60;0.036854655 551339.3105;7818242.879;-9014.730469;60;0.877896801 551451.8105;7821189.77;-9118.759766;60;0.125294544 551114.3105;7821790.41;-9115.450195;60;0.288484971 550739.3105;7816872.668;-9051.929688;60;0.011827823 551976.8105;7821433.781;-9088.019531;60;0.059461093 551839.3105;7820345.121;-8991.959961;60;0.889036672 550201.8105;7820026.027;-8961.349609;60;0.565188846 551451.8105;7821659.02;-9099.230469;60;0.458978482 549664.3105;7819125.07;-9078.519531;60;0.194175463 552351.8105;7817022.828;-8907.900391;60;0.62950029 552339.3105;7818167.797;-9039.200195;60;0.80830772 552289.3105;7821827.949;-9016.650391;60;0.528903227 552164.3105;7817548.387;-8995.900391;60;0.947855462 551289.3105;7816816.359;-9014.889648;60;0.037236006 550826.8105;7821734.102;-9150.120117;60;0.314671798 551364.3105;7819969.719;-9053.240234;60;0.836354333 550401.8105;7820457.738;-8966.75;60;0.424889833 552026.8105;7817623.469;-9009.009766;60;0.821439616 551789.3105;7819838.328;-9020.230469;60;0.968822467 550301.8105;7821227.309;-9132;60;0.434924102 552214.3105;7821227.309;-9078.070313;60;0.895883734 552076.8105;7821790.41;-9010.879883;60;0.429135876 552239.3105;7820457.738;-9011.820313;60;0.388736398 549276.8105;7819500.469;-9132.230469;60;0.27871604 551389.3105;7818336.73;-9015.799805;60;0.125509975 550714.3105;7820851.91;-9097.55957;60;0.434657126 550464.3105;7821734.102;-9165.5;60;0.827590177 552139.3105;7816853.898;-8983.080078;60;0.707858942 551489.3105;7819988.488;-9043.769531;60;0.536663687 550626.8105;7821358.699;-9141.080078;60;0.748872436 551739.3105;7818974.91;-9037.69043;60;0.029216852 551276.8105;7821339.93;-9124.099609;60;0.042126045 551189.3105;7820720.52;-9087.05957;60;0.496727069 549064.3105;7820082.34;-9141.44043;60;0.973628176 549464.3105;7819294;-9104.05957;60;0.909440524 552201.8105;7821321.16;-9076.200195;60;0.820985091 549889.3105;7818881.059;-9069.980469;60;0.202695464 551876.8105;7817154.219;-9013.889648;60;0.411949964 551689.3105;7820420.199;-9030.389648;60;0.727964224 551651.8105;7820101.109;-8988.639648;60;0.729207132 549439.3105;7821546.398;-9187.950195;60;0.607547512 549889.3105;7817229.301;-9059.570313;60;0.179363988 549601.8105;7819932.18;-9104.929688;60;0.265950696 552289.3105;7819932.18;-9027.290039;60;0.699740594 550476.8105;7821640.25;-9160.370117;60;0.646227591 550489.3105;7820345.121;-8960.459961;60;0.475114089 549526.8105;7817266.84;-9015.879883;60;0.549935914 549664.3105;7819200.148;-9081.959961;60;0.600770237 548889.3105;7818167.797;-9122.070313;60;0.603370299 549026.8105;7817661.008;-9063.30957;60;0.363742428 552326.8105;7820870.68;-9060.240234;60;0.243745111 549864.3105;7816778.816;-9057.549805;60;0.655992669 551589.3105;7816891.438;-9017.589844;60;0.417253677 552051.8105;7821377.469;-9082.839844;60;0.256114803 551176.8105;7816647.43;-9022.339844;60;0.008637592 550726.8105;7821452.551;-9142.959961;60;0.356822784 549526.8105;7819294;-9104.259766;60;0.762251633 551601.8105;7821546.398;-9101.669922;60;0.777097411 552414.3105;7821752.867;-9024.549805;60;0.967728391 549401.8105;7819500.469;-9117.69043;60;0.655408552 549664.3105;7819162.609;-9080.349609;60;0.142689596 549414.3105;7819387.852;-9111.410156;60;0.917762475 549539.3105;7817792.398;-9072.55957;60;0.184851166 550689.3105;7816853.898;-9055.259766;60;0.656683069 550939.3105;7817304.379;-9019;60;0.360154565 552251.8105;7817417;-8971.620117;60;0.3606798 552339.3105;7821433.781;-9066.660156;60;0.871372969 551251.8105;7820664.211;-9080.839844;60;0.017197664 552064.3105;7818073.949;-9016.959961;60;0.176309501 550176.8105;7816947.75;-9053.839844;60;0.470796 551889.3105;7820476.508;-9019.759766;60;0.933069487 550789.3105;7820983.297;-9109.370117;60;0.255846183 551051.8105;7816835.129;-9030.589844;60;0.567903891 551551.8105;7821527.629;-9105.719727;60;0.882296807 551789.3105;7820345.121;-9001.629883;60;0.002035442 550239.3105;7820063.57;-8953.650391;60;0.438555612 551951.8105;7820701.75;-9048.519531;60;0.037908774 549939.3105;7816853.898;-9059.129883;60;0.609848118 552126.8105;7817060.367;-8967.709961;60;0.854728891 548901.8105;7817210.527;-9086.080078;60;0.928038776 549701.8105;7816985.289;-9051.400391;60;0.110766852 551364.3105;7820101.109;-9052.200195;60;0.292126165 551639.3105;7821790.41;-9054.400391;60;0.13078718 549889.3105;7818055.18;-9097.320313;60;0.904648801 551464.3105;7821621.48;-9100.049805;60;0.500123091 549664.3105;7817961.328;-9093.610352;60;0.663779409 550189.3105;7816853.898;-9061.820313;60;0.029087704 550089.3105;7821152.23;-9137.269531;60;0.298004858 551376.8105;7819012.449;-9033.009766;60;0.37860054 551426.8105;7817229.301;-9015.139648;60;0.581848819 550751.8105;7819312.77;-9008.179688;60;0.734402831 550276.8105;7820758.059;-9061.889648;60;0.378975667 551526.8105;7821752.867;-9080.240234;60;0.501782767 551876.8105;7821734.102;-9032.240234;60;0.174959775 551989.3105;7820607.898;-9044.910156;60;0.251774815 551451.8105;7816760.051;-9019.269531;60;0.765329145 551476.8105;7820926.988;-9101.410156;60;0.558179494 549726.8105;7816760.051;-9053.049805;60;0.351120383 549526.8105;7819594.32;-9110.089844;60;0.279320995 552289.3105;7818017.637;-9028.490234;60;0.764223841 550464.3105;7821321.16;-9132.790039;60;0.782051214 552326.8105;7819500.469;-9049.139648;60;0.930660553 551176.8105;7820420.199;-9053.830078;60;0.273313358 552439.3105;7819556.777;-9041.160156;60;0.038793774 551726.8105;7820420.199;-9025.5;60;0.069279311 551064.3105;7820776.828;-9084.75;60;0.485716892 552051.8105;7821677.789;-9030.860352;60;0.563069657 552214.3105;7819819.559;-9006.400391;60;0.480906669 550251.8105;7820438.969;-8978.410156;60;0.465691971 552339.3105;7818073.949;-9031.769531;60;0.739795564 551476.8105;7819819.559;-9052.19043;60;0.791453902 551339.3105;7819725.711;-9051.160156;60;0.395155963 549664.3105;7816684.969;-9047.910156;60;0.654285016 551664.3105;7821677.789;-9071.230469;60;0.450087543 550776.8105;7821077.148;-9120.599609;60;0.412117129 551251.8105;7820026.027;-9054.969727;60;0.605901498 551364.3105;7820063.57;-9052.669922;60;0.536927879 551876.8105;7820082.34;-8964.480469;60;0.63151931 552114.3105;7818017.637;-9016.030273;60;0.412766088 551914.3105;7819181.379;-9042.219727;60;0.204320536 548901.8105;7817229.301;-9086.209961;60;0.554416154 552014.3105;7818017.637;-9008.280273;60;0.024119233 551239.3105;7816684.969;-9016.919922;60;0.39650559 552389.3105;7817248.07;-8931.25;60;0.042326766 551426.8105;7817191.758;-9016.709961;60;0.129748963 552001.8105;7816760.051;-8986.280273;60;0.429313131 551714.3105;7819556.777;-9034.5;60;0.139268884 551451.8105;7819725.711;-9047.040039;60;0.862263081 551989.3105;7819387.852;-9038.009766;60;0.404043668 552201.8105;7819481.699;-9031.929688;60;0.847351396 551601.8105;7819481.699;-9040.5;60;0.456988514 549889.3105;7816910.207;-9060.070313;60;0.569405911 549876.8105;7816816.359;-9057.509766;60;0.478744013 550301.8105;7820420.199;-8969.639648;60;0.112804402 549814.3105;7818111.488;-9096.30957;60;0.766816861 551564.3105;7820270.039;-9023.80957;60;0.044447207 549539.3105;7819200.148;-9102.730469;60;0.075823664 550776.8105;7820870.68;-9095.299805;60;0.659412961 550414.3105;7817154.219;-9051.980469;60;0.652577112 552101.8105;7819350.309;-9036.990234;60;0.720319916 551676.8105;7820101.109;-8981.959961;60;0.347267274 550939.3105;7821415.008;-9131.299805;60;0.711002417 551351.8105;7819838.328;-9055.759766;60;0.958721245 550114.3105;7817022.828;-9046.410156;60;0.222029056 551989.3105;7819444.16;-9031.120117;60;0.943287952 550401.8105;7821396.238;-9138.740234;60;0.097329248 551651.8105;7817454.539;-9017.160156;60;0.134610155 550614.3105;7821602.711;-9155.790039;60;0.778455645 550714.3105;7820889.449;-9104.009766;60;0.333067604 551489.3105;7818073.949;-9008.049805;60;0.653966469 552201.8105;7817135.449;-8961.129883;60;0.046921361 550389.3105;7820176.188;-8935.540039;60;0.042541352 551364.3105;7820007.258;-9052.950195;60;0.577520913 549564.3105;7819162.609;-9098.459961;60;0.348602365 551314.3105;7819969.719;-9053.75;60;0.898469294 549976.8105;7818186.57;-9098.410156;60;0.663806867 551451.8105;7821677.789;-9097.769531;60;0.947834705 550301.8105;7818580.738;-9075.75;60;0.553299111 551664.3105;7821565.168;-9095.669922;60;0.078416178 552289.3105;7819331.539;-9050.889648;60;0.603843528 551664.3105;7818430.578;-9018.049805;60;0.862650007 551526.8105;7818167.797;-9007.889648;60;0.317168059 551651.8105;7817585.93;-9024.780273;60;0.518235171 552176.8105;7817961.328;-9015.730469;60;0.897557199 552289.3105;7821790.41;-9019.669922;60;0.787364404 552389.3105;7819500.469;-9046.160156;60;0.74097075 550326.8105;7820720.52;-9043.110352;60;0.448494453 551014.3105;7820682.98;-9069.25;60;0.244382192 549751.8105;7819237.688;-9061.30957;60;0.812865804 551939.3105;7820814.371;-9060.349609;60;0.331212864 552176.8105;7821527.629;-9050.959961;60;0.143485961 551676.8105;7816985.289;-9016.410156;60;0.477674187 552314.3105;7817435.77;-8969.870117;60;0.536517234 550364.3105;7820551.59;-8987.830078;60;0.010779867 551626.8105;7820307.578;-9026.299805;60;0.83196667 551339.3105;7819256.457;-9045.320313;60;0.739116194 552014.3105;7817829.938;-9012.379883;60;0.313503207 549789.3105;7821640.25;-9180.679688;60;0.442384993 551751.8105;7820382.66;-9016;60;0.498758865 550426.8105;7821771.641;-9164.660156;60;0.745250406 552339.3105;7820514.051;-9035.709961;60;0.87757517 551976.8105;7819162.609;-9044.160156;60;0.699111419 550839.3105;7821771.641;-9151.719727;60;0.439996653 550414.3105;7821283.617;-9129.990234;60;0.048447098 552001.8105;7820889.449;-9071.429688;60;0.136543455 549051.8105;7820438.969;-9174.540039;60;0.296010528 551326.8105;7821377.469;-9118.19043;60;0.201676234 550364.3105;7821077.148;-9107.990234;60;0.940315407 552076.8105;7821752.867;-9014.799805;60;0.76275011 551226.8105;7821752.867;-9119.879883;60;0.280714596 551326.8105;7819031.219;-9035.959961;60;0.188007664 549651.8105;7819387.852;-9085.990234;60;0.519114212 550951.8105;7820870.68;-9089.910156;60;0.296115109 550989.3105;7821321.16;-9128.490234;60;0.099655061 550876.8105;7820251.27;-8996.599609;60;0.067195115 551626.8105;7819706.938;-9033.009766;60;0.093753626 549364.3105;7817492.078;-9018.669922;60;0.483652287 550239.3105;7816985.289;-9053.240234;60;0.184045326 550876.8105;7821039.609;-9112.490234;60;0.199680359 549789.3105;7819538.008;-9065.950195;60;0.536121782 551714.3105;7819387.852;-9044.540039;60;0.964862868 550301.8105;7817079.141;-9050.679688;60;0.075879855 551139.3105;7820082.34;-9049.379883;60;0.226760703 550651.8105;7821039.609;-9117.610352;60;0.800722497 551551.8105;7816760.051;-9017;60;0.882280442 552289.3105;7817980.098;-9021.80957;60;0.794618654 551689.3105;7819744.48;-9025.070313;60;0.542195885 551301.8105;7816872.668;-9017.669922;60;0.478227446 551614.3105;7820194.961;-9002.820313;60;0.852087692 551526.8105;7820532.82;-9060.150391;60;0.470726612 549751.8105;7821809.18;-9185.009766;60;0.033880493 551089.3105;7820551.59;-9062.410156;60;0.953562494 550064.3105;7818317.957;-9090.769531;60;0.408537699 551126.8105;7820232.5;-9043.019531;60;0.886412288 549739.3105;7821058.379;-9173.400391;60;0.912165009 551451.8105;7817341.918;-9016.040039;60;0.383430652 550301.8105;7820213.73;-8949.669922;60;0.061798056 551676.8105;7821377.469;-9115.700195;60;0.328374608 549414.3105;7817510.848;-9029.089844;60;0.069316711 550514.3105;7818149.027;-9069.839844;60;0.019074844 550614.3105;7820438.969;-8975.75;60;0.829824054 551689.3105;7818993.68;-9035.419922;60;0.184257234 549226.8105;7819706.938;-9146.070313;60;0.643578606 550064.3105;7816985.289;-9050.980469;60;0.165811022 550939.3105;7820833.141;-9083.009766;60;0.313178655 552014.3105;7821771.641;-9018.679688;60;0.935693138 549926.8105;7817285.609;-9061.769531;60;0.329597047 551726.8105;7817698.547;-9023.580078;60;0.99892592 551501.8105;7818993.68;-9031.269531;60;0.528173703 551339.3105;7817980.098;-9016.290039;60;0.363885439 551001.8105;7821246.078;-9123.919922;60;0.925714144 551751.8105;7821002.07;-9088.549805;60;0.997115599 549226.8105;7821246.078;-9185.839844;60;0.722329776 549864.3105;7818224.109;-9091.209961;60;0.430214526 550489.3105;7821302.391;-9130.950195;60;0.613975427 549776.8105;7817792.398;-9085.089844;60;0.81995818 550939.3105;7821095.918;-9118.830078;60;0.938030634 549726.8105;7819444.16;-9071.5;60;0.428047678 552101.8105;7820870.68;-9068.980469;60;0.122959186 551589.3105;7817492.078;-9021.150391;60;0.418521558 550139.3105;7816722.508;-9059.919922;60;0.047409523 552139.3105;7821827.949;-9006.049805;60;0.072611484 551826.8105;7817360.688;-8997.099609;60;0.90739489 551114.3105;7820945.758;-9108.669922;60;0.619242384 552339.3105;7820082.34;-9022.290039;60;0.740764444 549689.3105;7820532.82;-9125.80957;60;0.680557173 549551.8105;7817642.238;-9050.280273;60;0.900492153 551314.3105;7820457.738;-9068.44043;60;0.321644768 551939.3105;7820833.141;-9063.129883;60;0.353191447 551739.3105;7819763.25;-9021.219727;60;0.066540305 552389.3105;7820495.281;-9041.089844;60;0.742185323 551451.8105;7816778.816;-9018.580078;60;0.760831031 551464.3105;7816722.508;-9020.009766;60;0.9865365 550601.8105;7817323.148;-9049.44043;60;0.041721645 552126.8105;7817022.828;-8968.360352;60;0.019230173 550364.3105;7817004.059;-9060.660156;60;0.319071283 550489.3105;7821846.719;-9164.540039;60;0.596682539 549226.8105;7819594.32;-9140.950195;60;0.968639333 550689.3105;7816891.438;-9054.860352;60;0.25372833 551514.3105;7819706.938;-9043.889648;60;0.028102836 550464.3105;7820908.219;-9070.400391;60;0.554449047 549551.8105;7817266.84;-9019.69043;60;0.72762549 549801.8105;7821095.918;-9170.530273;60;0.789730252 551389.3105;7818787.207;-9021.589844;60;0.756207107 551276.8105;7821302.391;-9124;60;0.191939992 550139.3105;7816703.738;-9060.330078;60;0.432807458 551701.8105;7819068.758;-9038.719727;60;0.818736638 549114.3105;7819800.789;-9156.610352;60;0.817850917 548926.8105;7817961.328;-9105.780273;60;0.889640578 551439.3105;7820438.969;-9064.969727;60;0.886705987 551951.8105;7821565.168;-9070.129883;60;0.479801344 552164.3105;7820270.039;-8979.980469;60;0.491997069 552326.8105;7816891.438;-8937.730469;60;0.701905483 552226.8105;7820589.129;-9034.400391;60;0.821812237 549514.3105;7819125.07;-9100.370117;60;0.105866634 550101.8105;7821827.949;-9177.450195;60;0.792219918 549901.8105;7818299.188;-9087.009766;60;0.968780464 549976.8105;7817454.539;-9061.44043;60;0.610069479 549989.3105;7821771.641;-9185.719727;60;0.077630081 549589.3105;7817248.07;-9027.040039;60;0.433482949 552114.3105;7817792.398;-9009.879883;60;0.983680249 551814.3105;7819031.219;-9041.139648;60;0.852502599 552064.3105;7817998.871;-9010.870117;60;0.31241296 552164.3105;7817210.527;-8982.660156;60;0.272847483 551214.3105;7818618.281;-9026.969727;60;0.154101733 552401.8105;7820589.129;-9050.639648;60;0.44439979 550314.3105;7821771.641;-9160.929688;60;0.228908186 549901.8105;7817905.02;-9094.089844;60;0.192513951 550889.3105;7821508.859;-9135.25;60;0.016158587 549751.8105;7821208.539;-9173.240234;60;0.594459177 551301.8105;7820176.188;-9052.259766;60;0.511097257 550426.8105;7817022.828;-9058.259766;60;0.068731044 551764.3105;7819406.617;-9040.530273;60;0.761762751 551064.3105;7820870.68;-9095.580078;60;0.634567744 550426.8105;7820551.59;-8978;60;0.018079601 551589.3105;7819331.539;-9044.389648;60;0.001611799 550626.8105;7819744.48;-9006.480469;60;0.145747932 550614.3105;7820532.82;-8994.389648;60;0.958335902 551201.8105;7818956.141;-9033.480469;60;0.44288891 550489.3105;7821452.551;-9145.900391;60;0.262045357 551214.3105;7821246.078;-9129.25;60;0.419834881 552214.3105;7821039.609;-9078.169922;60;0.560294739 550501.8105;7820063.57;-8946.419922;60;0.371763193 552389.3105;7817923.789;-9005.530273;60;0.985355224 549626.8105;7820532.82;-9132.389648;60;0.351831659 550489.3105;7817229.301;-9051.030273;60;0.978320707 551439.3105;7819988.488;-9049.629883;60;0.517840235 550489.3105;7821415.008;-9141.459961;60;0.53863612 550251.8105;7818505.66;-9082.650391;60;0.485365581 550664.3105;7820138.648;-8955.290039;60;0.386017632 552226.8105;7820270.039;-8994.259766;60;0.186991153 552439.3105;7820551.59;-9050.370117;60;0.226268061 550226.8105;7820870.68;-9087.639648;60;0.012584153 552189.3105;7821208.539;-9079.19043;60;0.2930613 551051.8105;7817285.609;-9019.110352;60;0.785303149 552139.3105;7821790.41;-9009.719727;60;0.726939688 551451.8105;7819650.629;-9044.070313;60;0.586762537 551676.8105;7817548.387;-9021.980469;60;0.041285126 549864.3105;7817454.539;-9066.94043;60;0.226789982 549551.8105;7818768.438;-9067.570313;60;0.173445346 549789.3105;7817886.25;-9091.55957;60;0.642909659 549576.8105;7819538.008;-9100.099609;60;0.924472326 548876.8105;7819406.617;-9160.330078;60;0.46086787 549264.3105;7820044.801;-9147.290039;60;0.436649931 550051.8105;7820044.801;-9005.519531;60;0.655393148 550901.8105;7820589.129;-9035.160156;60;0.625008568 551276.8105;7821415.008;-9124.709961;60;0.904335516 551789.3105;7817792.398;-9022.870117;60;0.925448645 551651.8105;7819237.688;-9047.679688;60;0.169146256 551876.8105;7819500.469;-9032.969727;60;0.504192955 550964.3105;7820551.59;-9041.599609;60;0.43374643 550439.3105;7821546.398;-9156.360352;60;0.259470762 551764.3105;7817492.078;-9012.629883;60;0.245455913 551064.3105;7820232.5;-9037.69043;60;0.736629372 551514.3105;7817604.699;-9033.110352;60;0.887480913 550926.8105;7817079.141;-9037.25;60;0.426290569 551376.8105;7820532.82;-9074.080078;60;0.932770177 551539.3105;7816928.98;-9021.660156;60;0.589183464 549864.3105;7821152.23;-9160.709961;60;0.816818779 550251.8105;7821602.711;-9151.219727;60;0.416557981 551864.3105;7817829.938;-9019.509766;60;0.842760753 549876.8105;7818824.75;-9064.450195;60;0.628085228 552251.8105;7816966.52;-8942.870117;60;0.758135295 552089.3105;7820401.43;-8982.860352;60;0.150456869 552289.3105;7818899.828;-9047.860352;60;0.359090648 550826.8105;7821114.691;-9116.759766;60;0.939115713 551314.3105;7820701.75;-9084.089844;60;0.026858828 551539.3105;7820945.758;-9099.910156;60;0.590250622 549964.3105;7820270.039;-9018.400391;60;0.692651085 551901.8105;7817942.559;-9013.919922;60;0.614723479 549589.3105;7819744.48;-9106.290039;60;0.840036603 550751.8105;7819406.617;-9016.259766;60;0.752021392 550626.8105;7819350.309;-8984.19043;60;0.450493018 551826.8105;7819481.699;-9034.5;60;0.30434887 551414.3105;7819425.391;-9034.459961;60;0.963014205 550176.8105;7820945.758;-9104.610352;60;0.503701372 550764.3105;7820964.531;-9110.589844;60;0.034852665 551864.3105;7818449.348;-9031.089844;60;0.906818129 550376.8105;7821809.18;-9162.830078;60;0.642796449 550776.8105;7820776.828;-9074.929688;60;0.661805086 550351.8105;7818637.047;-9064.549805;60;0.971560175 550714.3105;7817736.09;-9057.570313;60;0.567378153 552001.8105;7818449.348;-9036.150391;60;0.631669796 550789.3105;7817792.398;-9055.259766;60;0.985424036 549701.8105;7818993.68;-9069.320313;60;0.275622657 551226.8105;7821452.551;-9128.709961;60;0.504976879 549351.8105;7819369.078;-9120.099609;60;0.106586467 549489.3105;7819650.629;-9118.700195;60;0.383702844 551539.3105;7818111.488;-9005.30957;60;0.770200138 549339.3105;7819988.488;-9141.080078;60;0.830149231 551676.8105;7820701.75;-9065.139648;60;0.3617114 551901.8105;7820213.73;-8957.379883;60;0.392145656 550251.8105;7821433.781;-9152.75;60;0.878145681 552214.3105;7819650.629;-9037.709961;60;0.755205057 552101.8105;7819556.777;-9014.519531;60;0.995633337 549676.8105;7817754.859;-9073.929688;60;0.764767821 549051.8105;7819481.699;-9146.299805;60;0.978869159 548939.3105;7820026.027;-9148.30957;60;0.838119515 550276.8105;7820964.531;-9106.349609;60;0.136399702 551589.3105;7819294;-9046.969727;60;0.202809456 549864.3105;7820382.66;-9075.700195;60;0.781318445 549039.3105;7817172.988;-9056.830078;60;0.200253338 550839.3105;7820701.75;-9057.629883;60;0.314046865 551126.8105;7820682.98;-9082.200195;60;0.748762349 549214.3105;7820082.34;-9144.620117;60;0.616882444 551451.8105;7816985.289;-9029.94043;60;0.976584563 551889.3105;7820307.578;-8976.549805;60;0.517408218 552101.8105;7820232.5;-8967.740234;60;0.885131637 549164.3105;7817811.168;-9069.290039;60;0.241120989 550889.3105;7820926.988;-9101.900391;60;0.209453986 551689.3105;7821133.457;-9110.709961;60;0.298380081 551601.8105;7817435.77;-9015.419922;60;0.473051466 551889.3105;7820176.188;-8956.490234;60;0.450819107 550364.3105;7821452.551;-9146.490234;60;0.446493635 550751.8105;7818017.637;-9045.139648;60;0.867430509 551164.3105;7821752.867;-9113.219727;60;0.965066716 550176.8105;7816910.207;-9058.799805;60;0.876572133 552151.8105;7818580.738;-9045.339844;60;0.791510579 548939.3105;7820307.578;-9166.530273;60;0.890805801 549464.3105;7817848.711;-9076.450195;60;0.083627809 549914.3105;7818768.438;-9051.5;60;0.38463753 549676.8105;7818561.969;-9065.209961;60;0.89351826 551051.8105;7820983.297;-9115.070313;60;0.198125974 550139.3105;7820626.668;-9050.44043;60;0.083406769 552164.3105;7819594.32;-9022.080078;60;0.029932368 551639.3105;7821827.949;-9050.780273;60;0.484467205 551464.3105;7821602.711;-9101.570313;60;0.989572654 549401.8105;7820026.027;-9137.740234;60;0.177248777 551826.8105;7819331.539;-9036.269531;60;0.096600377 551714.3105;7821527.629;-9095.30957;60;0.356456017 550676.8105;7819294;-8993.820313;60;0.676334086 552126.8105;7821208.539;-9079.179688;60;0.116239335 552026.8105;7818561.969;-9039.200195;60;0.294933761 550101.8105;7818430.578;-9087.660156;60;0.470313523 551489.3105;7820795.598;-9083.629883;60;0.166404193 552176.8105;7817435.77;-8983.839844;60;0.779254597 551589.3105;7817923.789;-9018.280273;60;0.266328233 551551.8105;7816684.969;-9016.129883;60;0.559365532 552401.8105;7820213.73;-9027.339844;60;0.302923071 550214.3105;7817210.527;-9052.799805;60;0.27418209 552439.3105;7817473.309;-8931.969727;60;0.386344951 552451.8105;7820607.898;-9055.219727;60;0.993886606 549826.8105;7821358.699;-9172.549805;60;0.427495111 550714.3105;7817848.711;-9055.919922;60;0.713920377 550139.3105;7820701.75;-9067.089844;60;0.136088862 549914.3105;7818261.648;-9088.950195;60;0.500027721 552051.8105;7820082.34;-8964.599609;60;0.363105912 551739.3105;7817567.16;-9017.629883;60;0.941730417 551826.8105;7821677.789;-9047.820313;60;0.800634631 550664.3105;7821396.238;-9142.660156;60;0.75164633 551514.3105;7819068.758;-9038.169922;60;0.168207598 550789.3105;7817661.008;-9049.030273;60;0.296905721 550351.8105;7817191.758;-9053.669922;60;0.479041516 550726.8105;7819068.758;-9002.459961;60;0.649671018 550489.3105;7819519.238;-8976;60;0.581168177 550764.3105;7819350.309;-9015.240234;60;0.450137331 551251.8105;7819988.488;-9053.639648;60;0.27184843 551676.8105;7816816.359;-9012.44043;60;0.998172689 551314.3105;7820495.281;-9071.150391;60;0.002531714 551451.8105;7819087.527;-9040.519531;60;0.155396729 549576.8105;7818224.109;-9094.44043;60;0.325168882 550489.3105;7821715.328;-9164.519531;60;0.20594725 551101.8105;7821246.078;-9130.429688;60;0.703892976 550651.8105;7820232.5;-8944.660156;60;0.452157488 552026.8105;7817642.238;-9010.120117;60;0.69462254 549139.3105;7820551.59;-9179.80957;60;0.494211111 550639.3105;7819500.469;-8998.450195;60;0.316974258 549776.8105;7820814.371;-9141.230469;60;0.963612912 551401.8105;7818111.488;-9013.379883;60;0.383830394 551176.8105;7821039.609;-9117.570313;60;0.651616561 552114.3105;7817172.988;-8984.19043;60;0.047735581 551464.3105;7820194.961;-9030.530273;60;0.43300945 552439.3105;7817829.938;-8989.900391;60;0.814459613 552276.8105;7819669.398;-9038.280273;60;0.641018231 551301.8105;7820213.73;-9048.620117;60;0.742615144 550839.3105;7820607.898;-9033.290039;60;0.584617216 549439.3105;7817698.547;-9062.339844;60;0.984070683 550051.8105;7820814.371;-9099.860352;60;0.888257826 550414.3105;7821077.148;-9100.599609;60;0.896634281 551239.3105;7820194.961;-9050.900391;60;0.104857925 552214.3105;7819312.77;-9043.040039;60;0.299772664 549339.3105;7819594.32;-9130.019531;60;0.9875169 551226.8105;7820232.5;-9047.299805;60;0.448204737 552389.3105;7817905.02;-9001.129883;60;0.15036221 550776.8105;7820401.43;-8974.089844;60;0.06431944 552101.8105;7817698.547;-9009.769531;60;0.341747244 551489.3105;7821452.551;-9112.910156;60;0.916231034 551964.3105;7817961.328;-9011.629883;60;0.839318319 549914.3105;7818130.258;-9098.049805;60;0.122563983 552389.3105;7819725.711;-9029.169922;60;0.472384371 550039.3105;7818186.57;-9100.44043;60;0.418301585 552351.8105;7819969.719;-9024.889648;60;0.747478321 550239.3105;7820101.109;-8953.769531;60;0.638990131 552289.3105;7821846.719;-9015.269531;60;0.383996197 551276.8105;7820983.297;-9109.120117;60;0.640084639 552264.3105;7821565.168;-9043.889648;60;0.005191911 552226.8105;7817604.699;-8993.950195;60;0.529133789 552201.8105;7821809.18;-9012.990234;60;0.225458164 551914.3105;7817773.629;-9016.049805;60;0.691818168 551101.8105;7821827.949;-9120.589844;60;0.818826471 548889.3105;7820007.258;-9149.219727;60;0.099440602 549914.3105;7820682.98;-9094.990234;60;0.164084822 550839.3105;7821659.02;-9140.849609;60;0.049409591 551001.8105;7820870.68;-9092.099609;60;0.254530726 549226.8105;7821208.539;-9186.599609;60;0.422545047 552051.8105;7817473.309;-8998.459961;60;0.701276464 551489.3105;7820739.289;-9081.179688;60;0.102907968 550676.8105;7821283.617;-9144.200195;60;0.549656853 549876.8105;7819237.688;-9044.099609;60;0.199394913 551101.8105;7821114.691;-9129.650391;60;0.226315608 551639.3105;7818618.281;-9017.150391;60;0.356456907 550651.8105;7820382.66;-8964.950195;60;0.102920527 551451.8105;7821696.559;-9096.379883;60;0.265893835 551464.3105;7820213.73;-9030.219727;60;0.6160803 552001.8105;7817304.379;-8991.580078;60;0.668696963 550264.3105;7816722.508;-9064.139648;60;0.512900696 551464.3105;7820251.27;-9031.379883;60;0.033719715 550414.3105;7821490.09;-9151.049805;60;0.410603879 550314.3105;7816928.98;-9064.230469;60;0.586757817 552401.8105;7818130.258;-9028.929688;60;0.554404478 551551.8105;7820758.059;-9077.5;60;0.847280569 551176.8105;7821152.23;-9128.410156;60;0.122164686 551451.8105;7821715.328;-9095.110352;60;0.804123424 550264.3105;7821077.148;-9121.070313;60;0.364011519 551989.3105;7817529.617;-9004.870117;60;0.720008485 549764.3105;7816872.668;-9050.240234;60;0.177682351 550601.8105;7819087.527;-8987.709961;60;0.78599195 551639.3105;7820457.738;-9038.639648;60;0.462831108 550314.3105;7816872.668;-9063.179688;60;0.294114896 550176.8105;7816985.289;-9049.110352;60;0.133998822 551364.3105;7816872.668;-9017.259766;60;0.909668868 549539.3105;7819218.918;-9103.620117;60;0.065062359 551539.3105;7818937.367;-9025.660156;60;0.244128457 551876.8105;7819406.617;-9034.769531;60;0.543687841 552289.3105;7819763.25;-9020.400391;60;0.258054456 551939.3105;7820476.508;-9016.700195;60;0.455499949 549276.8105;7821171;-9183.870117;60;0.429677644 549101.8105;7818073.949;-9107.589844;60;0.53469668 551426.8105;7816684.969;-9020.030273;60;0.258958738 548901.8105;7817529.617;-9069.450195;60;0.631751029 550939.3105;7821452.551;-9130.740234;60;0.007260731 552051.8105;7821396.238;-9081.379883;60;0.554139897 552101.8105;7821002.07;-9081.55957;60;0.348782447 551989.3105;7820626.668;-9047.589844;60;0.187597045 551951.8105;7820664.211;-9047.900391;60;0.917439175 551614.3105;7820232.5;-9011.709961;60;0.200235169 552114.3105;7817435.77;-8989.929688;60;0.923166996 550439.3105;7821471.32;-9148.769531;60;0.250901275 549176.8105;7819613.09;-9145.570313;60;0.243668751 552214.3105;7817285.609;-8977.950195;60;0.043361519 551389.3105;7820401.43;-9060.910156;60;0.389711569 552439.3105;7821508.859;-9061.459961;60;0.891329019 549714.3105;7818055.18;-9094.679688;60;0.964801404 549876.8105;7821396.238;-9176.759766;60;0.91278938 552051.8105;7818393.039;-9034.790039;60;0.834816234 550176.8105;7820063.57;-8964.570313;60;0.805595733 551576.8105;7818974.91;-9028.660156;60;0.595744865 551101.8105;7821208.539;-9130.929688;60;0.995773029 552439.3105;7821659.02;-9036.480469;60;0.581978122 550926.8105;7821715.328;-9138.94043;60;0.413975748 550489.3105;7816947.75;-9061.990234;60;0.357866784 551589.3105;7821058.379;-9105.580078;60;0.00087612 552076.8105;7819744.48;-9009.219727;60;0.011522219 550851.8105;7821715.328;-9147.049805;60;0.872400988 551801.8105;7818993.68;-9039.860352;60;0.61676097 551889.3105;7817135.449;-9009.669922;60;0.828067457 551176.8105;7816684.969;-9022.599609;60;0.232819456 551876.8105;7820514.051;-9030.110352;60;0.453626673 549576.8105;7819500.469;-9097.889648;60;0.401166147 549939.3105;7819256.457;-9038.849609;60;0.620137009 551589.3105;7819444.16;-9040.570313;60;0.731986455 550989.3105;7821152.23;-9122.75;60;0.094731034 551789.3105;7819594.32;-9031.879883;60;0.875037566 549589.3105;7817285.609;-9023.94043;60;0.737532535 551314.3105;7820664.211;-9080.929688;60;0.401896451 550351.8105;7817210.527;-9054.419922;60;0.204456108 551451.8105;7821283.617;-9119.679688;60;0.739947534 551301.8105;7821002.07;-9109.780273;60;0.335149539 552439.3105;7821696.559;-9031.610352;60;0.38307903 548939.3105;7819875.867;-9152.55957;60;0.516766059 551264.3105;7821715.328;-9121.80957;60;0.373389488 550664.3105;7820457.738;-8977.290039;60;0.459177107 552201.8105;7821734.102;-9022.049805;60;0.81053719 549626.8105;7820795.598;-9151.070313;60;0.427815873 552376.8105;7816816.359;-8938.349609;60;0.174351106 549001.8105;7819669.398;-9152.919922;60;0.963612198 549151.8105;7818073.949;-9105.530273;60;0.864513082 549414.3105;7817229.301;-9013.790039;60;0.695678643 551076.8105;7820194.961;-9042.009766;60;0.511829712 550926.8105;7820983.297;-9113.339844;60;0.905352034 549451.8105;7821508.859;-9187.69043;60;0.817056164 550739.3105;7817585.93;-9048.299805;60;0.877456617 550676.8105;7820589.129;-9014.740234;60;0.513459718 550264.3105;7816684.969;-9065.94043;60;0.52799969 552376.8105;7821508.859;-9058.209961;60;0.318162319 549089.3105;7820326.348;-9159.160156;60;0.093525787 551614.3105;7821415.008;-9115.410156;60;0.847506751 550964.3105;7820495.281;-9031.879883;60;0.458339629 550201.8105;7821377.469;-9156.730469;60;0.897595496 549676.8105;7818974.91;-9068;60;0.30664946 551826.8105;7818299.188;-9021.5;60;0.261149801 548951.8105;7819838.328;-9154.330078;60;0.139292838 551101.8105;7817191.758;-9026.19043;60;0.788554592 551551.8105;7820626.668;-9066.040039;60;0.168148544 551614.3105;7817886.25;-9022.839844;60;0.796376818 551326.8105;7816910.207;-9022;60;0.613334617 552414.3105;7821734.102;-9027;60;0.305308939 551014.3105;7820701.75;-9072.370117;60;0.814435844 551839.3105;7819087.527;-9042.339844;60;0.58213341 551389.3105;7820983.297;-9109.280273;60;0.887868889 551476.8105;7818787.207;-9015.769531;60;0.294298173 551076.8105;7820626.668;-9070.990234;60;0.811850512 551464.3105;7821077.148;-9112.290039;60;0.287073166 551489.3105;7816684.969;-9019.80957;60;0.275259467 551576.8105;7820457.738;-9047.139648;60;0.734055618 551851.8105;7820307.578;-8981.709961;60;0.639851316 551514.3105;7818393.039;-9027.379883;60;0.627057574 550414.3105;7820495.281;-8970.530273;60;0.803761994 552076.8105;7821827.949;-9007.44043;60;0.758952786 549026.8105;7820082.34;-9142.370117;60;0.467499779 551801.8105;7818374.27;-9021.419922;60;0.231269423 550489.3105;7820307.578;-8945.950195;60;0.164977997 552414.3105;7821771.641;-9021.94043;60;0.564664261 549476.8105;7817792.398;-9069.379883;60;0.450231122 549489.3105;7817642.238;-9051.009766;60;0.230310605 549951.8105;7816891.438;-9060.830078;60;0.426732257 552201.8105;7817154.219;-8965.429688;60;0.485569688 551189.3105;7820833.141;-9097.169922;60;0.905078667 550351.8105;7821039.609;-9105.879883;60;0.519106649 550889.3105;7820739.289;-9067.240234;60;0.72152359 550664.3105;7820776.828;-9074.269531;60;0.007117682 552376.8105;7821640.25;-9037.959961;60;0.53844398 550651.8105;7820870.68;-9091.94043;60;0.853902479 549864.3105;7820401.43;-9080.230469;60;0.534286098 549726.8105;7818017.637;-9095.950195;60;0.276017463 551001.8105;7820908.219;-9099.660156;60;0.694281384 551226.8105;7818937.367;-9032.410156;60;0.951448484 551976.8105;7817323.148;-8988.030273;60;0.971349197 552389.3105;7818167.797;-9034.55957;60;0.851974031 549939.3105;7819200.148;-9041.610352;60;0.50055777 549601.8105;7820326.348;-9118.650391;60;0.004606974 549989.3105;7820532.82;-9063.400391;60;0.102127041 551189.3105;7820795.598;-9093.330078;60;0.016800174 550064.3105;7816891.438;-9058.879883;60;0.691821415 550626.8105;7821490.09;-9147.129883;60;0.653912939 551214.3105;7821283.617;-9130.5;60;0.952942515 551576.8105;7818486.891;-9023.299805;60;0.194127612 551576.8105;7817285.609;-9008.200195;60;0.892834183 552201.8105;7821846.719;-9008.799805;60;0.320619722 549339.3105;7819538.008;-9126.830078;60;0.422898714 549126.8105;7820607.898;-9182.610352;60;0.547520764 550226.8105;7821077.148;-9125.620117;60;0.059925536 549914.3105;7821133.457;-9154.150391;60;0.747037098 551276.8105;7821752.867;-9121.269531;60;0.938417177 552126.8105;7818092.719;-9028.040039;60;0.65243657 551564.3105;7816816.359;-9015.900391;60;0.897021169 549114.3105;7819519.238;-9143.919922;60;0.376688896 550914.3105;7821771.641;-9147.269531;60;0.618932418 551989.3105;7817454.539;-8997.370117;60;0.260756763 551289.3105;7819350.309;-9036.30957;60;0.148572059 551101.8105;7821546.398;-9122.950195;60;0.527803452 549951.8105;7817079.141;-9052.660156;60;0.1419504 550501.8105;7821659.02;-9161.030273;60;0.562748816 550889.3105;7816928.98;-9041.219727;60;0.927774378 549051.8105;7820176.188;-9146.049805;60;0.940151657 549889.3105;7818918.598;-9069.889648;60;0.616318923 549276.8105;7819406.617;-9131.230469;60;0.368716374 551401.8105;7818374.27;-9017.950195;60;0.98958368 549514.3105;7817754.859;-9064.769531;60;0.712063207 551376.8105;7821020.84;-9110.55957;60;0.946652751 552164.3105;7817510.848;-8992.929688;60;0.922500068 551489.3105;7820495.281;-9064.580078;60;0.639019981 550676.8105;7821790.41;-9155.860352;60;0.060177424 549664.3105;7819143.84;-9079.459961;60;0.187660543 551851.8105;7821452.551;-9087.980469;60;0.022133681 552439.3105;7821246.078;-9071.549805;60;0.365161781 552151.8105;7821283.617;-9077.469727;60;0.565901285 551751.8105;7819068.758;-9039.639648;60;0.304114646 551626.8105;7817323.148;-9007.740234;60;0.764434154 549826.8105;7817379.461;-9062.5;60;0.860633278 551851.8105;7817623.469;-9012.339844;60;0.932536305 551626.8105;7818486.891;-9019.150391;60;0.690672458 549589.3105;7819425.391;-9095.429688;60;0.222203508 549164.3105;7819650.629;-9148.490234;60;0.868016966 550114.3105;7820270.039;-8966.269531;60;0.943451366 552139.3105;7821415.008;-9068.05957;60;0.199399307 550476.8105;7817285.609;-9056.769531;60;0.559934533 550426.8105;7816891.438;-9059.620117;60;0.213361772 549626.8105;7820401.43;-9125.660156;60;0.22239731 549276.8105;7820589.129;-9168.160156;60;0.675226649 549814.3105;7818374.27;-9086.25;60;0.063162041 552051.8105;7821358.699;-9084.120117;60;0.71997819 549664.3105;7819218.918;-9082.700195;60;0.716007281 549864.3105;7820438.969;-9087.049805;60;0.434302238 549089.3105;7819894.641;-9154.969727;60;0.842865021 551789.3105;7821302.391;-9101.849609;60;0.200916477 552076.8105;7818130.258;-9026.929688;60;0.904906169 552076.8105;7821490.09;-9052.549805;60;0.796931502 550676.8105;7817191.758;-9035.740234;60;0.475073074 549539.3105;7819237.688;-9104.370117;60;0.107426416 551376.8105;7819031.219;-9034.669922;60;0.721752492 550176.8105;7820138.648;-8959.139648;60;0.541328314 550301.8105;7821433.781;-9148.5;60;0.062408578 549639.3105;7821039.609;-9165.459961;60;0.343428241 552264.3105;7817304.379;-8972.740234;60;0.691093743 551839.3105;7821527.629;-9077.94043;60;0.375934519 550101.8105;7820908.219;-9107.30957;60;0.946291465 549814.3105;7816816.359;-9055.370117;60;0.261238704 549701.8105;7816741.277;-9051.320313;60;0.60211451 549451.8105;7821677.789;-9194.730469;60;0.150804664 549701.8105;7820438.969;-9121.55957;60;0.145525153 549326.8105;7819481.699;-9125.599609;60;0.286284148 549639.3105;7819049.988;-9076.580078;60;0.182002308 551326.8105;7819143.84;-9044.290039;60;0.275083982 552439.3105;7817642.238;-8969.30957;60;0.874891918 552326.8105;7821602.711;-9040.5;60;0.052809345 551189.3105;7820607.898;-9077.339844;60;0.678998839 549676.8105;7818261.648;-9092.990234;60;0.812644398 551626.8105;7821246.078;-9116.769531;60;0.539617667 550726.8105;7821227.309;-9143.040039;60;0.500732449 550376.8105;7816910.207;-9062.980469;60;0.180959465 551451.8105;7821246.078;-9120.110352;60;0.905966963 550201.8105;7820044.801;-8960.549805;60;0.92455034 552351.8105;7818130.258;-9035.099609;60;0.800579211 551801.8105;7819800.789;-9019.950195;60;0.915936428 552251.8105;7820420.199;-9010.669922;60;0.784964117 550451.8105;7821752.867;-9165.519531;60;0.368604996 552201.8105;7821283.617;-9077.259766;60;0.414620327 549264.3105;7819894.641;-9143.820313;60;0.038354866 549901.8105;7817191.758;-9057.929688;60;0.707966144 551376.8105;7818749.668;-9020.360352;60;0.357820427 550064.3105;7816928.98;-9056.570313;60;0.904392646 550189.3105;7821677.789;-9163.179688;60;0.493859762 549001.8105;7817679.777;-9071.379883;60;0.569372245 549401.8105;7819462.93;-9115.400391;60;0.654202805 552151.8105;7821734.102;-9017.629883;60;0.590870112 552101.8105;7820138.648;-8969.610352;60;0.824696336 551801.8105;7820307.578;-8991.290039;60;0.825051933 549701.8105;7816947.75;-9049.19043;60;0.312111999 549864.3105;7818092.719;-9097.330078;60;0.732944132 550089.3105;7821189.77;-9139.69043;60;0.167615621 549889.3105;7816947.75;-9059.929688;60;0.017290798 551651.8105;7818393.039;-9018.459961;60;0.838851341 550239.3105;7816947.75;-9057.620117;60;0.827938512 551501.8105;7820551.59;-9065.549805;60;0.064385119 551839.3105;7817398.227;-9000.030273;60;0.218564076 549801.8105;7821058.379;-9168.629883;60;0.02470562 551814.3105;7819068.758;-9041.450195;60;0.581911992 551526.8105;7821696.559;-9082.769531;60;0.572707111 551164.3105;7818956.141;-9034.320313;60;0.759695023 551539.3105;7820908.219;-9095.030273;60;0.519764784 551851.8105;7817661.008;-9013.849609;60;0.241306896 549526.8105;7819369.078;-9100.639648;60;0.369876393 549039.3105;7817210.527;-9055.759766;60;0.348518248 552139.3105;7818543.199;-9044.230469;60;0.543771571 551601.8105;7817961.328;-9015.480469;60;0.959664167 551964.3105;7821471.32;-9085.30957;60;0.190974355 551289.3105;7818299.188;-9019.080078;60;0.552601331 552264.3105;7817604.699;-8989.259766;60;0.192900526 549926.8105;7820720.52;-9099.290039;60;0.76973471 550239.3105;7820194.961;-8952.219727;60;0.224374015 550664.3105;7821321.16;-9143.959961;60;0.301550165 551639.3105;7818561.969;-9017.950195;60;0.091868471 550264.3105;7816778.816;-9061.320313;60;0.323669293 551526.8105;7819913.41;-9047.200195;60;0.621741199 551639.3105;7820495.281;-9041.339844;60;0.926670647 552101.8105;7820964.531;-9079.129883;60;0.271003781 550489.3105;7821508.859;-9152.240234;60;0.970320894 550339.3105;7820363.887;-8957.230469;60;0.600614149 551014.3105;7820739.289;-9077.410156;60;0.768804932 551489.3105;7816647.43;-9019.80957;60;0.767557557 550639.3105;7820438.969;-8975;60;0.842904357 551426.8105;7820851.91;-9095.610352;60;0.778342447 549951.8105;7817060.367;-9053.160156;60;0.907088814 549314.3105;7820589.129;-9162.769531;60;0.001206242 549801.8105;7816797.59;-9055.450195;60;0.900510543 551114.3105;7821020.84;-9119.089844;60;0.073641387 552439.3105;7817585.93;-8961.030273;60;0.64548624 552126.8105;7821752.867;-9013.139648;60;0.773921845 552214.3105;7817248.07;-8978.070313;60;0.541864121 551514.3105;7821790.41;-9081.089844;60;0.217044205 551264.3105;7818317.957;-9020.660156;60;0.235066378 551426.8105;7820814.371;-9091.519531;60;0.119217697 550751.8105;7817154.219;-9035.450195;60;0.468977399 552076.8105;7820551.59;-9027.049805;60;0.486957938 552264.3105;7819894.641;-9016.75;60;0.608827062 551989.3105;7817135.449;-8997.769531;60;0.017010895 552326.8105;7820551.59;-9036.959961;60;0.516340101 552289.3105;7821809.18;-9018.120117;60;0.679066381 549814.3105;7819237.688;-9049.030273;60;0.272946051 551576.8105;7821152.23;-9109.580078;60;0.543317526 551176.8105;7820908.219;-9104.769531;60;0.061037279 552376.8105;7821677.789;-9033.360352;60;0.422393674 549539.3105;7819256.457;-9104.75;60;0.919092787 551051.8105;7816872.668;-9031.740234;60;0.829888555 552214.3105;7821583.941;-9040.950195;60;0.412919572 551664.3105;7817736.09;-9026.55957;60;0.459022487 549114.3105;7819613.09;-9149.080078;60;0.853779716 552439.3105;7819800.789;-9026.830078;60;0.368630186 551839.3105;7819932.18;-9005.110352;60;0.676482524 549926.8105;7817454.539;-9065.179688;60;0.161139498 549664.3105;7819181.379;-9081.19043;60;0.672270121 551364.3105;7820138.648;-9050.709961;60;0.213246456 551926.8105;7820101.109;-8959.299805;60;0.668019311 549526.8105;7819331.539;-9102.5;60;0.628846449 551589.3105;7816928.98;-9019.530273;60;0.288319284 550326.8105;7816778.816;-9059.30957;60;0.423208348 552426.8105;7818036.41;-9017.450195;60;0.820827263 551714.3105;7819162.609;-9041.919922;60;0.486717555 551214.3105;7819969.719;-9051.25;60;0.581387247 549926.8105;7818092.719;-9098.870117;60;0.176361402 549276.8105;7821283.617;-9181.19043;60;0.63495884 551414.3105;7820889.449;-9101.389648;60;0.831235437 550064.3105;7816722.508;-9047.299805;60;0.397956382 549164.3105;7820626.668;-9181.44043;60;0.130186167 551139.3105;7821321.16;-9131.299805;60;0.153373071 549751.8105;7820495.281;-9117.599609;60;0.156144297 550776.8105;7820232.5;-8972.570313;60;0.078353613 551389.3105;7819669.398;-9044.980469;60;0.378991214 550751.8105;7817116.68;-9038.459961;60;0.939140199 551489.3105;7820026.027;-9039.230469;60;0.835932839 549739.3105;7819162.609;-9061.089844;60;0.840079853 549251.8105;7817323.148;-9004.299805;60;0.576196394 551439.3105;7820701.75;-9084.099609;60;0.547203704 552039.3105;7821583.941;-9044.129883;60;0.469789355 551276.8105;7821659.02;-9119.030273;60;0.426035703 552201.8105;7821771.641;-9016.799805;60;0.281548663 552276.8105;7819857.098;-9009.009766;60;0.64563177 551576.8105;7820570.359;-9055.759766;60;0.240147362 550151.8105;7820739.289;-9072.879883;60;0.75624884 552264.3105;7821283.617;-9073.870117;60;0.657546276 551801.8105;7821433.781;-9092.910156;60;0.829297984 550039.3105;7817248.07;-9058.620117;60;0.147428298 550726.8105;7821321.16;-9146.570313;60;0.489406223 550114.3105;7820063.57;-8982.179688;60;0.602416494 552139.3105;7821565.168;-9044.620117;60;0.319329164 550301.8105;7816985.289;-9059;60;0.390516184 551526.8105;7821039.609;-9108.019531;60;0.658826973 549226.8105;7818055.18;-9103.320313;60;0.699692837 549014.3105;7817417;-9058.200195;60;0.883944255 550651.8105;7820814.371;-9080.929688;60;0.92129414 550664.3105;7818036.41;-9052.980469;60;0.15733287 550614.3105;7821452.551;-9144.230469;60;0.119393222 551351.8105;7820945.758;-9107.69043;60;0.013376794 550451.8105;7819481.699;-8982.30957;60;0.35584101 548951.8105;7817454.539;-9067.519531;60;0.739318703 550151.8105;7817154.219;-9052.230469;60;0.585293786 551651.8105;7819275.23;-9047.610352;60;0.185805293 552351.8105;7820457.738;-9033.169922;60;0.860874267 551701.8105;7821752.867;-9049.389648;60;0.978273419 552201.8105;7821471.32;-9060.269531;60;0.214720786 550801.8105;7816816.359;-9047.900391;60;0.92959559 552251.8105;7821452.551;-9062.570313;60;0.634846874 549826.8105;7818073.949;-9097.419922;60;0.333925756 549101.8105;7819387.852;-9145.959961;60;0.455567852 549114.3105;7817379.461;-9038.509766;60;0.539786922 551326.8105;7819932.18;-9053.69043;60;0.15373367 549101.8105;7819294;-9149.959961;60;0.358182302 551214.3105;7821715.328;-9120.040039;60;0.210503997 551364.3105;7820682.98;-9083.889648;60;0.335842057 550889.3105;7820701.75;-9059.919922;60;0.462373527 549176.8105;7819331.539;-9141.80957;60;0.864478094 549651.8105;7818111.488;-9092.839844;60;0.949425124 551214.3105;7821339.93;-9130.950195;60;0.153292398 551776.8105;7819162.609;-9039.450195;60;0.747438919 549201.8105;7817398.227;-9015.849609;60;0.716812889 549801.8105;7821189.77;-9168.080078;60;0.849529679 551851.8105;7821377.469;-9092.849609;60;0.447712127 552326.8105;7820908.219;-9060.589844;60;0.001899338 551926.8105;7817585.93;-9008.870117;60;0.319258728 551426.8105;7820176.188;-9039.120117;60;0.699924347 551976.8105;7817398.227;-8989.820313;60;0.380071995 549639.3105;7819087.527;-9080.75;60;0.693115513 550376.8105;7820157.418;-8939.150391;60;0.874125286 551939.3105;7817135.449;-9006.339844;60;0.228226748 552064.3105;7817698.547;-9010.790039;60;0.725008865 551314.3105;7820288.809;-9045.209961;60;0.681897377 551414.3105;7820776.828;-9089.480469;60;0.966870327 549814.3105;7819162.609;-9047.769531;60;0.042432845 549714.3105;7817792.398;-9080.339844;60;0.112070451 551001.8105;7821114.691;-9125.139648;60;0.286995566 551926.8105;7817848.711;-9015.290039;60;0.113942678 551614.3105;7821508.859;-9107.089844;60;0.004196979 550189.3105;7817135.449;-9048.549805;60;0.235861614 551251.8105;7820776.828;-9089.950195;60;0.019242096 551364.3105;7819125.07;-9042.740234;60;0.804852741 552326.8105;7817679.777;-8995.94043;60;0.29851243 551376.8105;7818956.141;-9028.599609;60;0.406604669 551626.8105;7817229.301;-9009.700195;60;0.053146975 551626.8105;7821095.918;-9108.450195;60;0.221673608 551251.8105;7820870.68;-9100.740234;60;0.731691972 551789.3105;7817679.777;-9018.040039;60;0.177795896 551914.3105;7817623.469;-9010.700195;60;0.106220882 550701.8105;7820664.211;-9043.730469;60;0.720348505 550126.8105;7819969.719;-8979.370117;60;0.127790032 550826.8105;7821433.781;-9143.139648;60;0.605389766 552301.8105;7820401.43;-9020.299805;60;0.363959134 549614.3105;7819594.32;-9097.75;60;0.290679983 551501.8105;7819462.93;-9036.870117;60;0.047626662 550089.3105;7821264.848;-9148.459961;60;0.857898137 552439.3105;7816816.359;-8923.480469;60;0.96019249 549876.8105;7818355.5;-9086.05957;60;0.649219446 550001.8105;7818881.059;-9059.080078;60;0.065564781 549914.3105;7817417;-9065.910156;60;0.171883896 551739.3105;7818937.367;-9035.200195;60;0.430483997 549376.8105;7820119.879;-9141.910156;60;0.07301803 549626.8105;7817529.617;-9046.650391;60;0.974676371 551539.3105;7817454.539;-9019.009766;60;0.535933114 550514.3105;7817717.32;-9066.870117;60;0.957895897 551739.3105;7817848.711;-9026.959961;60;0.013009962 551151.8105;7818899.828;-9033.929688;60;0.870038453 550501.8105;7817135.449;-9045.410156;60;0.702471931 549539.3105;7817829.938;-9079.19043;60;0.707838178 549901.8105;7817341.918;-9064.080078;60;0.274669883 552226.8105;7818017.637;-9027.790039;60;0.463048005 552439.3105;7819331.539;-9055.469727;60;0.369110852 550326.8105;7821114.691;-9116.900391;60;0.476647752 551276.8105;7820945.758;-9107.450195;60;0.729622851 552314.3105;7819256.457;-9053.209961;60;0.862116641 551576.8105;7819087.527;-9038.839844;60;0.233472687 549714.3105;7820307.578;-9092.320313;60;0.8778271 549601.8105;7821358.699;-9175.480469;60;0.005087591 549939.3105;7821452.551;-9180.009766;60;0.703264438 552114.3105;7820776.828;-9064.339844;60;0.905451483 551164.3105;7821602.711;-9122.480469;60;0.41035861 551189.3105;7820101.109;-9053.25;60;0.975762531 552089.3105;7818036.41;-9015.349609;60;0.931997546 550351.8105;7821283.617;-9131.780273;60;0.932946926 550064.3105;7820194.961;-8984.089844;60;0.442487206 551001.8105;7821415.008;-9129.919922;60;0.336267235 550201.8105;7821471.32;-9155.049805;60;0.768528872 550239.3105;7821302.391;-9147.519531;60;0.566619657 551376.8105;7821583.941;-9113.150391;60;0.190541497 549276.8105;7819782.02;-9144.110352;60;0.911423636 550464.3105;7819369.078;-8979.80957;60;0.78081998 550764.3105;7819143.84;-8993.540039;60;0.72220744 551539.3105;7818805.98;-9015.620117;60;0.905042322 552401.8105;7820382.66;-9031.269531;60;0.301339759 548964.3105;7820682.98;-9184.959961;60;0.582773183 550776.8105;7821583.941;-9142.349609;60;0.654144098 549751.8105;7819369.078;-9062.790039;60;0.921762573 549676.8105;7820288.809;-9097.580078;60;0.040620865 551876.8105;7819312.77;-9035.349609;60;0.150408554 552289.3105;7817097.91;-8937.30957;60;0.704752945 550176.8105;7820964.531;-9108.700195;60;0.192140011 551926.8105;7821020.84;-9086.610352;60;0.281301015 549351.8105;7820945.758;-9178.410156;60;0.208155133 551951.8105;7819857.098;-9006.799805;60;0.455306666 551564.3105;7817360.688;-9009.889648;60;0.273349668 549701.8105;7819631.859;-9084.94043;60;0.079747362 551726.8105;7820176.188;-8976.480469;60;0.062060109 550426.8105;7820082.34;-8941.429688;60;0.140737026 551389.3105;7819932.18;-9054.160156;60;0.759114952 550776.8105;7820570.359;-9018.910156;60;0.158514721 551639.3105;7817773.629;-9026.849609;60;0.119781547 549876.8105;7817266.84;-9060.830078;60;0.040764375 552201.8105;7818092.719;-9035.769531;60;0.895376522 550501.8105;7820814.371;-9049.870117;60;0.003609115 552251.8105;7820363.887;-9004.879883;60;0.302976158 551051.8105;7821771.641;-9123.129883;60;0.749414586 552176.8105;7819425.391;-9032.599609;60;0.701856728 552051.8105;7819406.617;-9035.599609;60;0.300652585 549364.3105;7819275.23;-9110.179688;60;0.021827727 551739.3105;7819894.641;-9019.259766;60;0.252668251 550001.8105;7818824.75;-9054.179688;60;0.1514891 550714.3105;7820194.961;-8959.490234;60;0.762330931 549089.3105;7817191.758;-9045.040039;60;0.331789531 548964.3105;7820194.961;-9158.05957;60;0.904443015 552176.8105;7817097.91;-8959.919922;60;0.57060588 550289.3105;7820026.027;-8952.639648;60;0.152248762 552401.8105;7817172.988;-8908.089844;60;0.472738505 549376.8105;7818374.27;-9102.110352;60;0.404413821 550826.8105;7821189.77;-9126.299805;60;0.413999271 549526.8105;7817492.078;-9029.950195;60;0.216859253 549089.3105;7816891.438;-9080.290039;60;0.003030866 550114.3105;7818355.5;-9089.110352;60;0.927314153 551939.3105;7816816.359;-9001.879883;60;0.397598249 551401.8105;7819256.457;-9047.120117;60;0.385816008 549689.3105;7818149.027;-9093.629883;60;0.538899497 550139.3105;7821283.617;-9151.919922;60;0.037112909 551676.8105;7818468.117;-9019.910156;60;0.001721819 549789.3105;7819031.219;-9059.950195;60;0.288244487 550501.8105;7819425.391;-8974.950195;60;0.853747209 552014.3105;7817754.859;-9013.169922;60;0.685901517 548926.8105;7820926.988;-9202.480469;60;0.447576622 550476.8105;7820194.961;-8929.769531;60;0.501921932 551901.8105;7817041.598;-9000.030273;60;0.315151385 551764.3105;7819312.77;-9041.169922;60;0.278102057 550714.3105;7821114.691;-9131.349609;60;0.911498461 549576.8105;7817473.309;-9032.30957;60;0.765428875 552351.8105;7820176.188;-9023.80957;60;0.273882629 552101.8105;7819838.328;-8999.280273;60;0.275406294 551051.8105;7821077.148;-9127.44043;60;0.847193906 552264.3105;7820157.418;-9006.070313;60;0.480364965 550701.8105;7819462.93;-9008.419922;60;0.688308126 549326.8105;7819725.711;-9137.780273;60;0.814252436 549364.3105;7819782.02;-9136.950195;60;0.890327627 551964.3105;7820964.531;-9081.5;60;0.907173668 548926.8105;7817041.598;-9079.099609;60;0.321813432 549364.3105;7817623.469;-9053.280273;60;0.987288057 549639.3105;7820438.969;-9128.849609;60;0.542714664 551901.8105;7817341.918;-8988.969727;60;0.623397259 549639.3105;7819744.48;-9098.240234;60;0.706061305 550339.3105;7821189.77;-9124.230469;60;0.666265474 549964.3105;7817191.758;-9056.599609;60;0.634157647 549939.3105;7819181.379;-9042.410156;60;0.597734083 552439.3105;7817191.758;-8899.830078;60;0.222310859 548976.8105;7820420.199;-9175.139648;60;0.317958816 550364.3105;7817041.598;-9056.280273;60;0.313654717 551776.8105;7817604.699;-9015.75;60;0.089272748 551589.3105;7818261.648;-9017.230469;60;0.566977063 550026.8105;7821602.711;-9183.05957;60;0.863672641 549839.3105;7819594.32;-9058.469727;60;0.23274539 552439.3105;7817097.91;-8880.419922;60;0.771508746 550776.8105;7821264.848;-9143.650391;60;0.773273564 550014.3105;7820251.27;-8998.959961;60;0.21749803 552176.8105;7820645.438;-9049.629883;60;0.254886585 549789.3105;7818824.75;-9071.759766;60;0.463915811 552176.8105;7817754.859;-9019.169922;60;0.920368035 550026.8105;7821171;-9143.400391;60;0.479127813 549689.3105;7819575.551;-9085.790039;60;0.695009225 552439.3105;7820307.578;-9029.75;60;0.189088224 552326.8105;7817923.789;-9008.089844;60;0.686368395 549989.3105;7817379.461;-9060.919922;60;0.764745399 552226.8105;7818036.41;-9030.5;60;0.716464681 551751.8105;7818280.418;-9015.69043;60;0.091760464 551776.8105;7817754.859;-9021.759766;60;0.507441332 549464.3105;7817473.309;-9021.099609;60;0.300646975 551639.3105;7820795.598;-9078.839844;60;0.743057064 552126.8105;7820476.508;-9001.94043;60;0.719658747 551764.3105;7821734.102;-9043.94043;60;0.382262095 551876.8105;7818862.289;-9033.540039;60;0.118586608 549076.8105;7817060.367;-9059.80957;60;0.798818983 551264.3105;7819575.551;-9039.299805;60;0.208152677 551014.3105;7821846.719;-9137.889648;60;0.790185572 551589.3105;7818787.207;-9014.55957;60;0.428365156 549689.3105;7821452.551;-9177.009766;60;0.263035291 552151.8105;7819237.688;-9042.870117;60;0.735047223 551026.8105;7820570.359;-9055.200195;60;0.078723797 551214.3105;7818280.418;-9026.660156;60;0.861234998 549301.8105;7817285.609;-9002.469727;60;0.375087572 549701.8105;7818355.5;-9085.179688;60;0.142817375 551864.3105;7819688.168;-9021.150391;60;0.851800321 550251.8105;7821659.02;-9155.900391;60;0.863648647 549639.3105;7820213.73;-9103.049805;60;0.209045607 549876.8105;7816872.668;-9058.700195;60;0.34118837 549501.8105;7820551.59;-9148.469727;60;0.040988853 552189.3105;7820026.027;-9002.030273;60;0.296506004 549476.8105;7819838.328;-9126.469727;60;0.486129381 551214.3105;7819800.789;-9050.519531;60;0.83300529 551826.8105;7817454.539;-9006.070313;60;0.411617191 550739.3105;7821677.789;-9152.959961;60;0.412480888 550601.8105;7819462.93;-8983.129883;60;0.989411685 551514.3105;7820401.43;-9052.860352;60;0.91039428 551314.3105;7818843.52;-9026.780273;60;0.916651033 551326.8105;7818899.828;-9028.049805;60;0.396392497 549714.3105;7817623.469;-9068.379883;60;0.841952698 550664.3105;7818317.957;-9052.070313;60;0.791139222 552164.3105;7817623.469;-9002.009766;60;0.217832636 548926.8105;7817848.711;-9092.459961;60;0.351060377 548876.8105;7817905.02;-9100.549805;60;0.421696125 549576.8105;7821058.379;-9164.820313;60;0.536854983 551826.8105;7820194.961;-8963.679688;60;0.799718623 549189.3105;7816947.75;-9059.589844;60;0.360642968 549314.3105;7820194.961;-9138.30957;60;0.920571024 551426.8105;7818561.969;-9014.139648;60;0.247375574 552064.3105;7819763.25;-9008.040039;60;0.109140968 550776.8105;7821508.859;-9140.889648;60;0.862208187 551476.8105;7821752.867;-9089.299805;60;0.687114463 551851.8105;7819782.02;-9018.55957;60;0.207326349 549464.3105;7818224.109;-9096.519531;60;0.366911284 552001.8105;7819932.18;-8989.540039;60;0.548124038 549164.3105;7818130.258;-9107.320313;60;0.364403626 551301.8105;7819669.398;-9047;60;0.024485254 551314.3105;7817191.758;-9014.160156;60;0.925156556 551364.3105;7818486.891;-9015.219727;60;0.931253336 550489.3105;7817323.148;-9058.669922;60;0.849610762 550464.3105;7819312.77;-8977.75;60;0.006762471 550676.8105;7821546.398;-9149.259766;60;0.919781332 552064.3105;7819669.398;-9005.629883;60;0.29782434 551889.3105;7819857.098;-9012.719727;60;0.30193693 549964.3105;7820138.648;-9030.370117;60;0.013856978 551689.3105;7818355.5;-9016.179688;60;0.409046906 551839.3105;7818017.637;-9004.450195;60;0.473275932 552451.8105;7818092.719;-9020.389648;60;0.635937145 548939.3105;7818186.57;-9121.679688;60;0.035668766 552401.8105;7817079.141;-8889.269531;60;0.4637056 550164.3105;7820532.82;-9023.05957;60;0.781619785 551326.8105;7821790.41;-9115.94043;60;0.792267646 552439.3105;7819932.18;-9024.929688;60;0.414525253 549526.8105;7818261.648;-9093.639648;60;0.823673501 551464.3105;7820401.43;-9057.629883;60;0.288188721 552401.8105;7819988.488;-9021.530273;60;0.73523092 551364.3105;7820307.578;-9045.030273;60;0.764486847 549951.8105;7821809.18;-9187.580078;60;0.854122575 551789.3105;7820119.879;-8963.44043;60;0.643798555 552039.3105;7820194.961;-8956.80957;60;0.902230959 552439.3105;7817022.828;-8874.490234;60;0.676183921 550126.8105;7820964.531;-9112.769531;60;0.467729765 549476.8105;7818299.188;-9091.740234;60;0.377646472 549251.8105;7818092.719;-9104.19043;60;0.704681377 551789.3105;7818092.719;-8997.30957;60;0.749751207 551214.3105;7821546.398;-9124.509766;60;0.356809194 549764.3105;7820401.43;-9103.910156;60;0.360712299 549751.8105;7818974.91;-9074.360352;60;0.904471648 549151.8105;7819894.641;-9151.480469;60;0.057855402 549751.8105;7819969.719;-9084.769531;60;0.435120845 552139.3105;7816816.359;-8984.379883;60;0.728984964 550951.8105;7821208.539;-9121.150391;60;0.029123399 550314.3105;7820664.211;-9031.629883;60;0.303215752 551376.8105;7821827.949;-9104.650391;60;0.099623257 551564.3105;7817661.008;-9030.570313;60;0.767934444 551376.8105;7818149.027;-9014.5;60;0.311679802 549639.3105;7819988.488;-9103.179688;60;0.310331216 549414.3105;7818092.719;-9096.769531;60;0.553909988 551214.3105;7819068.758;-9038.759766;60;0.935008171 551176.8105;7819875.867;-9047.19043;60;0.032535421 552439.3105;7820007.258;-9025.110352;60;0.711628616 549626.8105;7821002.07;-9162.44043;60;0.61408756 549426.8105;7818261.648;-9096.099609;60;0.18446181 550501.8105;7817079.141;-9048.980469;60;0.052660707 550039.3105;7821283.617;-9152.549805;60;0.887514968 551989.3105;7820476.508;-9011.730469;60;0.877919884 549314.3105;7818055.18;-9100.730469;60;0.667591472 549626.8105;7821283.617;-9176.709961;60;0.680183467 552176.8105;7819162.609;-9046.30957;60;0.826145012 549826.8105;7820833.141;-9135.969727;60;0.799338041 551889.3105;7819763.25;-9015.200195;60;0.475823127 549939.3105;7818899.828;-9066.540039;60;0.690086187 550601.8105;7819725.711;-9004.849609;60;0.770187759 550514.3105;7818224.109;-9069.370117;60;0.148841714 ================================================ FILE: examples/data/input_data/Claudius/CPoints.csv ================================================ X;Y;Z;Strati;Cutoff 550439.3105;7820270.039;-9380.080078;250;0.972202819 549876.8105;7818805.98;-9571.379883;250;0.746044021 550776.8105;7821321.16;-9717.740234;250;0.347547866 549489.3105;7818937.367;-9627.379883;250;0.484744574 550614.3105;7821452.551;-9740.019531;250;0.366673854 550339.3105;7817210.527;-9589.839844;250;0.295301527 550051.8105;7817792.398;-9701.169922;250;0.32706052 549364.3105;7820758.059;-9736.400391;250;0.684210809 549614.3105;7817492.078;-9570.709961;250;0.429824938 551001.8105;7817698.547;-9577.719727;250;0.794720719 551101.8105;7821809.18;-9699.519531;250;0.396576162 551389.3105;7817661.008;-9582.360352;250;0.774789266 552426.8105;7816684.969;-9453.110352;250;0.014731307 550301.8105;7817454.539;-9647.209961;250;0.007738876 549326.8105;7820026.027;-9728.69043;250;0.865773604 549339.3105;7817022.828;-9607.080078;250;0.227154754 549689.3105;7818937.367;-9599.040039;250;0.681533598 549726.8105;7821659.02;-9749.259766;250;0.040066613 550189.3105;7818130.258;-9702.919922;250;0.693148496 549814.3105;7819162.609;-9625.75;250;0.850163402 549476.8105;7819763.25;-9702.009766;250;0.753663968 548901.8105;7821171;-9771.030273;250;0.760740721 549214.3105;7819031.219;-9712.870117;250;0.137377393 551226.8105;7817998.871;-9551.719727;250;0.708768669 549739.3105;7819556.777;-9654.629883;250;0.323429155 548901.8105;7817398.227;-9597.410156;250;0.529229894 549714.3105;7821058.379;-9740.69043;250;0.309159524 549076.8105;7816797.59;-9685.900391;250;0.479338209 549426.8105;7820870.68;-9736.230469;250;0.545562137 550839.3105;7821508.859;-9716.299805;250;0.302230055 550014.3105;7818787.207;-9626.19043;250;0.577041601 550776.8105;7821058.379;-9675.740234;250;0.862728832 548901.8105;7819012.449;-9739.599609;250;0.111679101 551214.3105;7818336.73;-9521.990234;250;0.506278707 549226.8105;7816778.816;-9696.839844;250;0.442993223 549601.8105;7820870.68;-9744.230469;250;0.040876819 549489.3105;7820945.758;-9745.25;250;0.768543141 549126.8105;7820363.887;-9736.25;250;0.459614277 551576.8105;7821546.398;-9656.320313;250;0.559060876 549214.3105;7820326.348;-9735.94043;250;0.532570146 550964.3105;7818092.719;-9609.459961;250;0.070658705 549939.3105;7821039.609;-9725.219727;250;0.907091489 550376.8105;7817510.848;-9661.679688;250;0.75920058 551376.8105;7816666.199;-9592.370117;250;0.052904958 549251.8105;7820176.188;-9725.269531;250;0.166114583 549801.8105;7820570.359;-9658.730469;250;0.959930295 552201.8105;7816985.289;-9508.629883;250;0.757639704 549301.8105;7820438.969;-9737.099609;250;0.601882561 549089.3105;7817210.527;-9563.820313;250;0.830917969 549339.3105;7819031.219;-9681.799805;250;0.017390035 549489.3105;7819200.148;-9673.629883;250;0.616272232 550851.8105;7821677.789;-9721.780273;250;0.564551422 551501.8105;7821583.941;-9663.679688;250;0.220321402 549764.3105;7817961.328;-9700.639648;250;0.73407642 549451.8105;7818299.188;-9697.009766;250;0.097895511 549189.3105;7820176.188;-9723.509766;250;0.068352633 550489.3105;7820232.5;-9393.910156;250;0.806293005 550064.3105;7816684.969;-9640.160156;250;0.405331337 549264.3105;7819969.719;-9731.780273;250;0.758587498 550364.3105;7817848.711;-9671.929688;250;0.860707307 549264.3105;7817266.84;-9473.070313;250;0.225233982 548939.3105;7820682.98;-9756.780273;250;0.30388434 549351.8105;7817942.559;-9681.400391;250;0.491651466 550776.8105;7819538.008;-9525.519531;250;0.144911748 552289.3105;7817060.367;-9477.830078;250;0.879875641 550189.3105;7817248.07;-9588.849609;250;0.134472928 549401.8105;7817679.777;-9567.099609;250;0.461437903 549614.3105;7817792.398;-9654.139648;250;0.84492203 549314.3105;7817717.32;-9587.799805;250;0.976250035 548901.8105;7816985.289;-9686.269531;250;0.912626081 549951.8105;7816703.738;-9653.610352;250;0.717004572 550951.8105;7819256.457;-9545.879883;250;0.67412056 550339.3105;7817773.629;-9676.419922;250;0.144540267 549989.3105;7817379.461;-9630.589844;250;0.206843079 551389.3105;7821809.18;-9634.709961;250;0.921465916 549464.3105;7817210.527;-9536.790039;250;0.887359189 552439.3105;7817792.398;-9523.230469;250;0.516229061 551401.8105;7821734.102;-9641.339844;250;0.996468056 549076.8105;7818881.059;-9719.75;250;0.261574065 549289.3105;7818824.75;-9685.780273;250;0.720600511 548901.8105;7821415.008;-9756.790039;250;0.901302443 549926.8105;7817736.09;-9697.419922;250;0.38029818 550389.3105;7817360.688;-9625.730469;250;0.352768631 550026.8105;7820833.141;-9665.469727;250;0.628684413 549101.8105;7818599.508;-9720.099609;250;0.246574484 549176.8105;7818317.957;-9708.980469;250;0.092646769 550301.8105;7820270.039;-9384.450195;250;0.653825697 551176.8105;7817736.09;-9574.080078;250;0.162932327 550139.3105;7817679.777;-9689.69043;250;0.75465131 548951.8105;7820044.801;-9722.599609;250;0.564295191 550801.8105;7818749.668;-9627.360352;250;0.686804742 550489.3105;7820851.91;-9590.69043;250;0.709321733 550889.3105;7820363.887;-9527.959961;250;0.779386957 549964.3105;7817642.238;-9684.700195;250;0.93570321 549214.3105;7819950.949;-9728.450195;250;0.827667547 549026.8105;7818956.141;-9730.370117;250;0.437028894 551901.8105;7817998.871;-9561.700195;250;0.154912796 550464.3105;7817417;-9640.019531;250;0.079835051 550901.8105;7821058.379;-9689.429688;250;0.54929512 550301.8105;7821020.84;-9654.299805;250;0.945065603 550389.3105;7817585.93;-9666.370117;250;0.977604115 549689.3105;7818524.43;-9581.530273;250;0.226405159 550639.3105;7817022.828;-9616.980469;250;0.33155883 548989.3105;7820495.281;-9739.299805;250;0.795169945 549026.8105;7817773.629;-9638.410156;250;0.347765312 549364.3105;7818261.648;-9705.160156;250;0.780101278 550389.3105;7820232.5;-9379.629883;250;0.648755669 549076.8105;7821827.949;-9752.209961;250;0.673024181 550364.3105;7821058.379;-9661.610352;250;0.058453733 551239.3105;7817942.559;-9557.299805;250;0.923926429 549626.8105;7821114.691;-9744.269531;250;0.770516428 549339.3105;7818561.969;-9644;250;0.97369872 550089.3105;7820776.828;-9623.469727;250;0.675963998 549689.3105;7820626.668;-9700.160156;250;0.009788061 551451.8105;7817454.539;-9591.070313;250;0.432814585 549301.8105;7819763.25;-9726.580078;250;0.298422116 549801.8105;7817004.059;-9623.740234;250;0.791464809 548889.3105;7820570.359;-9755.540039;250;0.613648546 549639.3105;7820026.027;-9658.870117;250;0.126658632 549889.3105;7816684.969;-9654.879883;250;0.703057461 549789.3105;7819706.938;-9656.69043;250;0.865656153 549039.3105;7818599.508;-9726.950195;250;0.704989835 550201.8105;7818055.18;-9700.540039;250;0.229125074 550776.8105;7819631.859;-9546.719727;250;0.179460414 549164.3105;7818881.059;-9711.660156;250;0.145508891 550826.8105;7819331.539;-9491.660156;250;0.799731607 552364.3105;7817060.367;-9439.099609;250;0.433818425 549076.8105;7817829.938;-9653.530273;250;0.579726334 549239.3105;7817604.699;-9539.379883;250;0.970092727 549526.8105;7820551.59;-9725.610352;250;0.169445123 549251.8105;7817811.168;-9632.080078;250;0.931710968 550876.8105;7816741.277;-9640.919922;250;0.794145629 548901.8105;7816928.98;-9690.549805;250;0.705304685 551326.8105;7821677.789;-9657.69043;250;0.476307936 550614.3105;7817942.559;-9618.589844;250;0.373644788 549251.8105;7817041.598;-9591.759766;250;0.617704709 551901.8105;7817811.168;-9570.110352;250;0.120328239 550714.3105;7820908.219;-9610.30957;250;0.5108405 550964.3105;7818280.418;-9600.929688;250;0.911028162 550639.3105;7821020.84;-9646.799805;250;0.802891341 549014.3105;7819969.719;-9722.799805;250;0.138403759 549426.8105;7817004.059;-9612.120117;250;0.350650309 551114.3105;7820795.598;-9669.719727;250;0.413294884 552426.8105;7817116.68;-9398.120117;250;0.924807902 551301.8105;7817191.758;-9573.820313;250;0.269021939 549551.8105;7817229.301;-9568.610352;250;0.048709078 551964.3105;7817867.48;-9567.469727;250;0.650798259 549664.3105;7820457.738;-9685.330078;250;0.16547471 550351.8105;7820964.531;-9628.969727;250;0.63688429 550839.3105;7818299.188;-9633.80957;250;0.49428099 551864.3105;7821790.41;-9532.830078;250;0.575630451 550151.8105;7821077.148;-9704.299805;250;0.699976656 551101.8105;7818411.809;-9554.419922;250;0.510916046 550026.8105;7818843.52;-9630.660156;250;0.082073502 551189.3105;7818524.43;-9552.419922;250;0.898361537 549664.3105;7818036.41;-9702.389648;250;0.244484547 550714.3105;7821189.77;-9697.679688;250;0.116318944 549501.8105;7819387.852;-9687.19043;250;0.183548944 549651.8105;7820758.059;-9731.469727;250;0.521477799 550089.3105;7821827.949;-9745.120117;250;0.260443951 551614.3105;7816684.969;-9578.179688;250;0.906377222 550989.3105;7816684.969;-9622.240234;250;0.674682162 551376.8105;7821396.238;-9686.969727;250;0.443360638 552339.3105;7817529.617;-9520.030273;250;0.477718866 549376.8105;7818205.34;-9711.320313;250;0.982040417 549126.8105;7818393.039;-9713.110352;250;0.124465545 551376.8105;7817210.527;-9572.900391;250;0.079520002 549276.8105;7820101.109;-9721.44043;250;0.178107924 549589.3105;7816966.52;-9637.580078;250;0.141968866 549539.3105;7820908.219;-9746.240234;250;0.231949422 549426.8105;7819782.02;-9711.150391;250;0.015911351 550089.3105;7820945.758;-9675.330078;250;0.693888631 550239.3105;7817642.238;-9681.799805;250;0.354765164 550364.3105;7821283.617;-9715.980469;250;0.286665794 550426.8105;7817510.848;-9655.230469;250;0.739997943 549439.3105;7817492.078;-9497.679688;250;0.705033516 551414.3105;7821171;-9672.459961;250;0.664668404 550901.8105;7820101.109;-9547.509766;250;0.991301098 549026.8105;7816797.59;-9687.799805;250;0.726171027 550389.3105;7816966.52;-9578.360352;250;0.410822053 548939.3105;7817867.48;-9682.929688;250;0.952652501 549601.8105;7817417;-9565.639648;250;0.246088796 551426.8105;7821583.941;-9667.099609;250;0.05038651 551489.3105;7821471.32;-9677.179688;250;0.478947273 549426.8105;7817773.629;-9616.629883;250;0.209283838 549964.3105;7820589.129;-9618.929688;250;0.425263699 549351.8105;7816666.199;-9662.910156;250;0.96506966 550626.8105;7820138.648;-9452.969727;250;0.945561376 550489.3105;7817229.301;-9607.370117;250;0.129560414 551726.8105;7821602.711;-9621.94043;250;0.935307205 551864.3105;7821827.949;-9523.120117;250;0.214082696 550176.8105;7817116.68;-9575.589844;250;0.068624244 550839.3105;7821302.391;-9717.120117;250;0.232425506 551301.8105;7816966.52;-9578.290039;250;0.520884107 550626.8105;7819500.469;-9507.879883;250;0.15664054 551501.8105;7821152.23;-9665.25;250;0.983048912 549689.3105;7819500.469;-9656.959961;250;0.588847197 549651.8105;7817942.559;-9694.330078;250;0.340994307 549639.3105;7820945.758;-9737.80957;250;0.483147987 549176.8105;7817097.91;-9570.900391;250;0.710746539 549051.8105;7820194.961;-9720.339844;250;0.666168416 550064.3105;7817623.469;-9682.55957;250;0.362115718 551376.8105;7821039.609;-9666.139648;250;0.719986111 550239.3105;7817116.68;-9571.320313;250;0.310909142 550364.3105;7819969.719;-9451.44043;250;0.215340153 551276.8105;7821546.398;-9674.349609;250;0.852623701 550626.8105;7816928.98;-9628.110352;250;0.746183536 550889.3105;7820138.648;-9541.759766;250;0.939595253 549876.8105;7817398.227;-9643.790039;250;0.885888551 551814.3105;7817060.367;-9561.540039;250;0.020328434 549164.3105;7821208.539;-9756.889648;250;0.67403798 550289.3105;7817398.227;-9630.549805;250;0.758149677 550876.8105;7817266.84;-9610.530273;250;0.050133047 550614.3105;7817623.469;-9624.650391;250;0.454896483 550764.3105;7817642.238;-9594.299805;250;0.790516469 551439.3105;7821077.148;-9663.910156;250;0.773707449 549889.3105;7820626.668;-9652.240234;250;0.985136006 550351.8105;7817135.449;-9574.830078;250;0.612695192 550014.3105;7816684.969;-9654.209961;250;0.828891568 549426.8105;7818111.488;-9719.929688;250;0.217306472 549801.8105;7817097.91;-9629.459961;250;0.79886177 549226.8105;7819181.379;-9717.990234;250;0.616577562 549276.8105;7820607.898;-9735.959961;250;0.793856988 550501.8105;7818205.34;-9668.459961;250;0.583266606 551314.3105;7821396.238;-9684.599609;250;0.455267553 549339.3105;7819969.719;-9732.490234;250;0.419011955 549939.3105;7817304.379;-9633.129883;250;0.473955517 551364.3105;7817623.469;-9584.150391;250;0.455128593 549564.3105;7821396.238;-9755.25;250;0.244125068 549626.8105;7817604.699;-9603.230469;250;0.141746966 549976.8105;7817829.938;-9708.650391;250;0.520389152 550364.3105;7817285.609;-9606.339844;250;0.76103295 549364.3105;7820664.211;-9737.860352;250;0.716574893 551714.3105;7821696.559;-9589.30957;250;0.020359315 551289.3105;7818073.949;-9529;250;0.924408607 550826.8105;7820438.969;-9506.629883;250;0.014432736 549014.3105;7820026.027;-9723.769531;250;0.649501065 549151.8105;7817567.16;-9538.919922;250;0.042006424 549639.3105;7816853.898;-9660.759766;250;0.224334078 550014.3105;7817529.617;-9662.700195;250;0.954036962 549939.3105;7817961.328;-9712.379883;250;0.478417536 549601.8105;7817998.871;-9699.269531;250;0.609170662 550614.3105;7816760.051;-9646.290039;250;0.395812422 550639.3105;7820964.531;-9625.679688;250;0.361890064 551539.3105;7821264.848;-9666.889648;250;0.297115228 549001.8105;7817266.84;-9568.849609;250;0.745395106 549576.8105;7819331.539;-9666.129883;250;0.890803746 549101.8105;7821377.469;-9766.049805;250;0.560434203 548914.3105;7819857.098;-9728.929688;250;0.152474167 550939.3105;7818599.508;-9640.610352;250;0.698229073 550089.3105;7817510.848;-9655.570313;250;0.121189038 549951.8105;7817585.93;-9673.919922;250;0.273909099 549726.8105;7817848.711;-9687.580078;250;0.911043073 549339.3105;7821490.09;-9739.370117;250;0.498283379 550839.3105;7821264.848;-9714.759766;250;0.178319142 549039.3105;7817435.77;-9545.30957;250;0.806553042 550401.8105;7821020.84;-9650.150391;250;0.825204042 549464.3105;7820532.82;-9729.589844;250;0.469878713 549601.8105;7820551.59;-9715.459961;250;0.129783466 550689.3105;7818637.047;-9648.099609;250;0.879017182 548939.3105;7821339.93;-9762.169922;250;0.60029841 550401.8105;7821602.711;-9736.990234;250;0.923821423 552364.3105;7821227.309;-9605.530273;250;0.7964841 549476.8105;7820251.27;-9717.179688;250;0.775496458 549526.8105;7819087.527;-9648.049805;250;0.386748858 548889.3105;7819969.719;-9720.370117;250;0.535998292 550701.8105;7821583.941;-9735.099609;250;0.711456179 549926.8105;7818186.57;-9700.150391;250;0.207239266 551426.8105;7821133.457;-9667.620117;250;0.57813121 551489.3105;7821208.539;-9667.929688;250;0.744402749 549801.8105;7817041.598;-9624.509766;250;0.731299062 550639.3105;7819913.41;-9513.110352;250;0.285244547 550639.3105;7817905.02;-9613.599609;250;0.657509946 551151.8105;7816684.969;-9591.469727;250;0.526103875 549814.3105;7817135.449;-9632.580078;250;0.612531577 552364.3105;7821471.32;-9590.889648;250;0.75468318 550139.3105;7816985.289;-9568.629883;250;0.021876709 550239.3105;7817248.07;-9589.919922;250;0.197704082 549226.8105;7819763.25;-9729.730469;250;0.528781025 549639.3105;7820589.129;-9707.879883;250;0.140055354 550239.3105;7817811.168;-9691.719727;250;0.629261787 549676.8105;7817548.387;-9608.75;250;0.774447531 552301.8105;7817886.25;-9565.5;250;0.305561852 549764.3105;7820739.289;-9713.490234;250;0.003428706 551064.3105;7817398.227;-9590.530273;250;0.354414279 550076.8105;7817923.789;-9707.740234;250;0.899656483 549764.3105;7817473.309;-9629.150391;250;0.645843202 550951.8105;7817829.938;-9584.389648;250;0.440703937 551239.3105;7821377.469;-9685.410156;250;0.550605903 549251.8105;7817079.141;-9569.429688;250;0.144161509 550189.3105;7817492.078;-9650.780273;250;0.878417579 549114.3105;7818299.188;-9716.459961;250;0.861053057 549826.8105;7820514.051;-9636.099609;250;0.745861022 549351.8105;7820457.738;-9737.230469;250;0.959736219 549776.8105;7820645.438;-9687.469727;250;0.00869186 549501.8105;7817905.02;-9675.910156;250;0.32092839 549776.8105;7817529.617;-9637.780273;250;0.236244148 549539.3105;7817135.449;-9588.650391;250;0.362751851 550989.3105;7820776.828;-9646.820313;250;0.085928002 549751.8105;7820833.141;-9727.299805;250;0.274454722 550939.3105;7817773.629;-9581.280273;250;0.90287305 549089.3105;7817172.988;-9576.549805;250;0.362051148 550726.8105;7819425.391;-9481.080078;250;0.345798218 549801.8105;7817304.379;-9646.849609;250;0.491719885 552151.8105;7816741.277;-9526.379883;250;0.978255136 551564.3105;7821433.781;-9667.410156;250;0.367842943 549039.3105;7817492.078;-9563.200195;250;0.40468899 550739.3105;7816666.199;-9650.669922;250;0.652201189 550064.3105;7817004.059;-9573.240234;250;0.727883129 550151.8105;7817041.598;-9566.990234;250;0.836132585 549089.3105;7819894.641;-9725.44043;250;0.83939508 550614.3105;7819068.758;-9479.679688;250;0.001385666 550639.3105;7816966.52;-9624.219727;250;0.446911692 550501.8105;7818036.41;-9645.639648;250;0.536854382 549626.8105;7817323.148;-9584.209961;250;0.927240663 549351.8105;7817661.008;-9555.240234;250;0.206811872 549439.3105;7820495.281;-9730.19043;250;0.928461825 549089.3105;7819763.25;-9733.679688;250;0.703719165 549176.8105;7817266.84;-9501.549805;250;0.90211812 549576.8105;7817642.238;-9591.950195;250;0.403498218 551664.3105;7817604.699;-9573.679688;250;0.423769817 549864.3105;7820664.211;-9670.150391;250;0.038123515 549876.8105;7817510.848;-9653.330078;250;0.19232526 549901.8105;7816910.207;-9605.200195;250;0.279027397 549101.8105;7818242.879;-9715.509766;250;0.292845728 549326.8105;7821546.398;-9740.30957;250;0.741718551 548889.3105;7817848.711;-9686.19043;250;0.338229633 549051.8105;7818355.5;-9721.849609;250;0.067079755 550201.8105;7817022.828;-9564.080078;250;0.6835813 549076.8105;7821771.641;-9753.200195;250;0.822829695 550951.8105;7821246.078;-9710.639648;250;0.464063533 551476.8105;7821020.84;-9662.19043;250;0.174395053 551826.8105;7821471.32;-9650.019531;250;0.185346772 550651.8105;7817754.859;-9610.019531;250;0.124627159 549801.8105;7817698.547;-9683.650391;250;0.796410623 549351.8105;7820551.59;-9738.519531;250;0.521936035 550476.8105;7820664.211;-9506.549805;250;0.954860111 551276.8105;7817717.32;-9575.209961;250;0.693319348 549776.8105;7816760.051;-9661.419922;250;0.247342739 550001.8105;7817135.449;-9598.900391;250;0.803783779 549164.3105;7817004.059;-9620.200195;250;0.624192076 551801.8105;7821358.699;-9670.950195;250;0.033176762 549539.3105;7817191.758;-9574.25;250;0.079634777 549189.3105;7817304.379;-9475.629883;250;0.592102598 549489.3105;7817022.828;-9609.240234;250;0.264380943 549989.3105;7820664.211;-9625;250;0.778254611 551051.8105;7817604.699;-9585.25;250;0.956636355 551064.3105;7818092.719;-9588.629883;250;0.671190068 549876.8105;7817341.918;-9643.620117;250;0.03031587 550239.3105;7818111.488;-9697.169922;250;0.120505596 549464.3105;7817304.379;-9510.969727;250;0.780390472 550451.8105;7821152.23;-9698.129883;250;0.713935239 550701.8105;7817567.16;-9610.05957;250;0.329651554 549089.3105;7818186.57;-9712.129883;250;0.263494227 549426.8105;7820607.898;-9735.969727;250;0.667163997 549651.8105;7817417;-9588.120117;250;0.794431265 550339.3105;7817379.461;-9630.129883;250;0.888930576 549364.3105;7818317.957;-9694.360352;250;0.879375809 549726.8105;7820532.82;-9673.759766;250;0.677451003 549001.8105;7817079.141;-9639.379883;250;0.603303561 550826.8105;7818036.41;-9614.280273;250;0.43038002 550626.8105;7820326.348;-9429.349609;250;0.825747121 548951.8105;7819894.641;-9726.919922;250;0.509662659 550089.3105;7817698.547;-9691.870117;250;0.544359873 549964.3105;7817341.918;-9631.150391;250;0.160434841 551589.3105;7821396.238;-9667.19043;250;0.632330746 550939.3105;7817398.227;-9597.089844;250;0.871161778 551114.3105;7817360.688;-9590.969727;250;0.500793776 549239.3105;7818411.809;-9687.419922;250;0.189931434 550401.8105;7820326.348;-9375.370117;250;0.134762959 550176.8105;7817417;-9627.459961;250;0.340922051 549226.8105;7821246.078;-9753.900391;250;0.407186605 551489.3105;7817661.008;-9583.299805;250;0.879038353 549089.3105;7817341.918;-9514.320313;250;0.896114389 550301.8105;7817304.379;-9605.519531;250;0.692305708 551151.8105;7821827.949;-9693.280273;250;0.253161198 549039.3105;7820138.648;-9722.110352;250;0.609699504 549614.3105;7817116.68;-9614.780273;250;0.740736357 550276.8105;7817079.141;-9563.900391;250;0.492980177 551289.3105;7817079.141;-9574.820313;250;0.845808409 551689.3105;7821264.848;-9678.709961;250;0.856665154 550476.8105;7821002.07;-9646.830078;250;0.110596982 550076.8105;7817285.609;-9600.450195;250;0.741830463 549576.8105;7818224.109;-9692.089844;250;0.056850091 550764.3105;7821734.102;-9722.540039;250;0.386566332 549714.3105;7817041.598;-9631.19043;250;0.747326022 548989.3105;7821358.699;-9764.719727;250;0.519176596 550414.3105;7817266.84;-9607.679688;250;0.802783729 552189.3105;7817905.02;-9573.110352;250;0.78044368 550226.8105;7821002.07;-9664.860352;250;0.160348591 550326.8105;7817717.32;-9676.339844;250;0.600511751 549164.3105;7818205.34;-9710.280273;250;0.20838297 549176.8105;7818261.648;-9711.049805;250;0.31538595 549314.3105;7818430.578;-9671.070313;250;0.699827507 551314.3105;7821471.32;-9677.509766;250;0.239831194 549326.8105;7817886.25;-9659.780273;250;0.644669833 549251.8105;7817172.988;-9521.650391;250;0.405214095 551401.8105;7821283.617;-9682.700195;250;0.13334013 550051.8105;7818280.418;-9698.69043;250;0.200990054 549414.3105;7818036.41;-9712.990234;250;0.114545421 550901.8105;7819519.238;-9532.820313;250;0.314140328 549614.3105;7818881.059;-9601.280273;250;0.339757587 549951.8105;7816666.199;-9661.280273;250;0.416555451 550376.8105;7817661.008;-9665.580078;250;0.409914637 551876.8105;7821640.25;-9591.799805;250;0.911681073 550601.8105;7818993.68;-9507.980469;250;0.906099053 551014.3105;7821809.18;-9704.5;250;0.182323713 551026.8105;7818261.648;-9582.040039;250;0.870813373 551201.8105;7817060.367;-9576.889648;250;0.967519386 549751.8105;7820495.281;-9660.120117;250;0.827526856 549214.3105;7819894.641;-9729.799805;250;0.82588949 551039.3105;7818411.809;-9576.969727;250;0.613955099 550001.8105;7818055.18;-9712.679688;250;0.263129109 549064.3105;7820345.121;-9732.139648;250;0.87829254 549439.3105;7817097.91;-9569.490234;250;0.58376047 550464.3105;7820532.82;-9409.469727;250;0.036463527 551801.8105;7821640.25;-9599.049805;250;0.411546683 549126.8105;7820607.898;-9731.959961;250;0.103698347 550389.3105;7816835.129;-9600.799805;250;0.086024821 550814.3105;7817567.16;-9589.790039;250;0.811349784 549789.3105;7820607.898;-9672.950195;250;0.231688538 549426.8105;7821415.008;-9749.69043;250;0.876112109 549239.3105;7816985.289;-9625.480469;250;0.965651146 549339.3105;7821433.781;-9743.730469;250;0.865084998 551689.3105;7816778.816;-9573.669922;250;0.863328708 550439.3105;7819894.641;-9490.469727;250;0.378361762 549351.8105;7817172.988;-9515.740234;250;0.844622764 549589.3105;7820476.508;-9708.009766;250;0.242770432 550601.8105;7818937.367;-9530.360352;250;0.694450528 550689.3105;7821715.328;-9724.719727;250;0.758362746 549339.3105;7816985.289;-9626.429688;250;0.197650579 551189.3105;7817661.008;-9578.650391;250;0.675552681 551451.8105;7821358.699;-9681.099609;250;0.807951736 551464.3105;7821246.078;-9674.089844;250;0.673716601 548951.8105;7819087.527;-9733.80957;250;0.638644279 550739.3105;7820082.34;-9496.209961;250;0.78618823 550014.3105;7817942.559;-9712.030273;250;0.118231647 548989.3105;7817585.93;-9600.25;250;0.849221691 550864.3105;7820476.508;-9527.30957;250;0.100080175 549151.8105;7819819.559;-9729.30957;250;0.539883829 551614.3105;7821302.391;-9673.349609;250;0.128784151 552264.3105;7821640.25;-9572.580078;250;0.796893571 551039.3105;7818824.75;-9616.160156;250;0.267835962 549189.3105;7821377.469;-9762.339844;250;0.066440164 551289.3105;7818336.73;-9515.030273;250;0.644266444 550214.3105;7821752.867;-9744.650391;250;0.057587757 549039.3105;7817567.16;-9580.25;250;0.281855264 549776.8105;7816647.43;-9664.55957;250;0.226157388 550189.3105;7821171;-9715.5;250;0.711136589 550164.3105;7816891.438;-9575.44043;250;0.021155833 549126.8105;7816666.199;-9682.419922;250;0.453016486 552026.8105;7821659.02;-9575.879883;250;0.842199734 550664.3105;7817210.527;-9616.75;250;0.076555406 550339.3105;7816741.277;-9605.950195;250;0.597310012 550264.3105;7820438.969;-9464.660156;250;0.205122324 549714.3105;7818674.59;-9546.740234;250;0.120769322 549576.8105;7818580.738;-9572.94043;250;0.548577513 550101.8105;7821020.84;-9695.969727;250;0.224686287 551364.3105;7821565.168;-9666.730469;250;0.827425487 550626.8105;7817417;-9629.69043;250;0.548676519 551364.3105;7821508.859;-9675.799805;250;0.231602878 548901.8105;7817172.988;-9636.450195;250;0.154049001 552126.8105;7821546.398;-9603.25;250;0.364176768 552364.3105;7821321.16;-9603.620117;250;0.357590286 550839.3105;7820101.109;-9524.700195;250;0.174045198 549226.8105;7818149.027;-9707.669922;250;0.224910233 551814.3105;7821602.711;-9610.009766;250;0.089196617 550676.8105;7817360.688;-9622.969727;250;0.516798828 550276.8105;7817567.16;-9667.049805;250;0.883083527 549451.8105;7819049.988;-9655.959961;250;0.555710349 549151.8105;7820101.109;-9721.599609;250;0.068570634 549914.3105;7817210.527;-9627.129883;250;0.498441972 550489.3105;7821508.859;-9735.799805;250;0.615203853 549826.8105;7821659.02;-9742.5;250;0.516797926 550626.8105;7821827.949;-9727.070313;250;0.392671194 549589.3105;7820682.98;-9720.070313;250;0.766747114 550401.8105;7820626.668;-9490.540039;250;0.853111507 549701.8105;7817079.141;-9629.429688;250;0.809120414 550389.3105;7818261.648;-9682.19043;250;0.687126915 549014.3105;7820082.34;-9723.860352;250;0.589984836 551739.3105;7821546.398;-9637.519531;250;0.941944528 548964.3105;7821171;-9771.05957;250;0.149825622 548889.3105;7821283.617;-9766.05957;250;0.924131798 549739.3105;7819012.449;-9608.94043;250;0.222555752 552064.3105;7816722.508;-9542.19043;250;0.792603391 549239.3105;7816947.75;-9647.889648;250;0.213477248 549614.3105;7820645.438;-9715.320313;250;0.355084684 551664.3105;7821152.23;-9673.719727;250;0.227845533 549164.3105;7818674.59;-9710.230469;250;0.810721195 549701.8105;7817698.547;-9657.740234;250;0.060013384 548964.3105;7821415.008;-9755.009766;250;0.110534381 551314.3105;7817266.84;-9577.759766;250;0.216534521 550739.3105;7818017.637;-9616.509766;250;0.759379928 551101.8105;7818149.027;-9571.030273;250;0.55973953 550126.8105;7818261.648;-9702.370117;250;0.21923493 549851.8105;7817604.699;-9666.830078;250;0.651174899 550864.3105;7818242.879;-9627.94043;250;0.08518729 551351.8105;7821152.23;-9679.209961;250;0.357307716 550876.8105;7819650.629;-9552.580078;250;0.983788608 551839.3105;7821302.391;-9673.980469;250;0.397411747 549239.3105;7818618.281;-9686.679688;250;0.31901636 551114.3105;7817886.25;-9575.30957;250;0.099366734 549864.3105;7817811.168;-9707.830078;250;0.617015307 551114.3105;7817604.699;-9582.719727;250;0.756971715 552264.3105;7821677.789;-9560.980469;250;0.108134279 549064.3105;7816966.52;-9651.889648;250;0.403595187 549401.8105;7821208.539;-9747.820313;250;0.855280536 550864.3105;7817792.398;-9592.55957;250;0.158100676 551651.8105;7821490.09;-9656.799805;250;0.301285968 550801.8105;7818092.719;-9622.280273;250;0.978252974 549951.8105;7821396.238;-9756.169922;250;0.213167074 549826.8105;7820908.219;-9725.290039;250;0.742783654 550389.3105;7817191.758;-9591.040039;250;0.587566087 549564.3105;7817961.328;-9691.959961;250;0.413267213 551151.8105;7818055.18;-9563.44043;250;0.644538442 551201.8105;7817623.469;-9580.370117;250;0.525625553 549226.8105;7821039.609;-9748.980469;250;0.366022552 549751.8105;7821433.781;-9748.120117;250;0.192195755 551639.3105;7821189.77;-9676.160156;250;0.050677367 549301.8105;7816853.898;-9683.459961;250;0.174966418 550164.3105;7821602.711;-9746.349609;250;0.780671823 552039.3105;7821621.48;-9588.549805;250;0.143448604 550164.3105;7819049.988;-9587.589844;250;0.801484536 550251.8105;7817022.828;-9563.660156;250;0.61608226 549089.3105;7820119.879;-9721.240234;250;0.038882721 550289.3105;7820345.121;-9404.400391;250;0.200613837 549114.3105;7821095.918;-9760.639648;250;0.083534967 551014.3105;7817529.617;-9587.780273;250;0.192484415 550414.3105;7817097.91;-9575.009766;250;0.637270765 550364.3105;7817004.059;-9567.900391;250;0.507382284 549289.3105;7821058.379;-9743.870117;250;0.866737312 550939.3105;7817529.617;-9587.339844;250;0.687959279 551214.3105;7821546.398;-9677.889648;250;0.904712135 549726.8105;7817548.387;-9626.040039;250;0.982925776 549764.3105;7817698.547;-9676.55957;250;0.650439353 549851.8105;7821377.469;-9759.089844;250;0.554428019 550789.3105;7817698.547;-9592.580078;250;0.799167623 550689.3105;7817398.227;-9621.280273;250;0.699484601 550626.8105;7818036.41;-9624.379883;250;0.816255009 549314.3105;7821227.309;-9747.959961;250;0.270898054 549851.8105;7819669.398;-9643.259766;250;0.755480623 551051.8105;7818036.41;-9590.669922;250;0.416636026 549739.3105;7816760.051;-9665.769531;250;0.465843893 550451.8105;7818486.891;-9680.280273;250;0.423600049 549389.3105;7820495.281;-9736.389648;250;0.410038568 551389.3105;7817417;-9590.799805;250;0.875424504 550364.3105;7821827.949;-9731.900391;250;0.982229946 550864.3105;7816985.289;-9621.589844;250;0.444554776 552189.3105;7821640.25;-9580.200195;250;0.457075942 548989.3105;7820682.98;-9745.530273;250;0.463081133 549676.8105;7819538.008;-9667.410156;250;0.862327331 549801.8105;7817210.527;-9643.169922;250;0.642829153 550964.3105;7817285.609;-9605.889648;250;0.325182069 549814.3105;7820814.371;-9712.019531;250;0.114515377 551714.3105;7821640.25;-9611.200195;250;0.471960369 551489.3105;7821696.559;-9640.919922;250;0.491169665 549901.8105;7817585.93;-9670.269531;250;0.923891618 549939.3105;7820664.211;-9646.55957;250;0.270572399 550626.8105;7821602.711;-9733.990234;250;0.210285471 549201.8105;7821583.941;-9765.639648;250;0.244981262 550414.3105;7821189.77;-9705.679688;250;0.319778821 550026.8105;7821696.559;-9742.19043;250;0.804354589 549326.8105;7821171;-9745.080078;250;0.973176262 548951.8105;7818881.059;-9731.94043;250;0.218180087 550926.8105;7817717.32;-9580.5;250;0.012429339 550876.8105;7819256.457;-9515.929688;250;0.852749972 549339.3105;7819256.457;-9716.259766;250;0.918288117 549351.8105;7818824.75;-9667.790039;250;0.191505979 551301.8105;7817642.238;-9583.719727;250;0.30459739 550339.3105;7817060.367;-9562.530273;250;0.965453233 550726.8105;7819669.398;-9543.410156;250;0.397789528 550426.8105;7820401.43;-9374.730469;250;0.341428074 551139.3105;7818111.488;-9561.629883;250;0.829862851 550839.3105;7816703.738;-9644.910156;250;0.178177158 548989.3105;7817360.688;-9555.040039;250;0.95242573 550126.8105;7817435.77;-9633.269531;250;0.981504067 549939.3105;7818618.281;-9599.320313;250;0.905380403 549464.3105;7821508.859;-9738.5;250;0.566304917 549089.3105;7817773.629;-9632.839844;250;0.70686147 549426.8105;7818637.047;-9624.5;250;0.805120859 549714.3105;7817323.148;-9622.620117;250;0.099259107 550201.8105;7821095.918;-9696.839844;250;0.799093459 550901.8105;7820044.801;-9548.570313;250;0.812091192 551101.8105;7816666.199;-9600.410156;250;0.359229357 550939.3105;7821771.641;-9708.620117;250;0.255660023 549401.8105;7816835.129;-9667.889648;250;0.863111812 551014.3105;7820851.91;-9662.469727;250;0.976785312 550639.3105;7820664.211;-9505.94043;250;0.019591578 550651.8105;7817998.871;-9617.629883;250;0.581794465 548951.8105;7820814.371;-9763.929688;250;0.128679674 551064.3105;7817961.328;-9583.469727;250;0.484673038 550426.8105;7816947.75;-9587.709961;250;0.367058958 549764.3105;7821396.238;-9751.709961;250;0.938205122 551126.8105;7818336.73;-9541.230469;250;0.839424386 549876.8105;7816778.816;-9639.919922;250;0.641886716 549151.8105;7817379.461;-9472.429688;250;0.620217462 548889.3105;7818956.141;-9741.139648;250;0.463942156 549926.8105;7821433.781;-9753.839844;250;0.82822331 549201.8105;7821339.93;-9760.469727;250;0.97890645 551251.8105;7817304.379;-9584.620117;250;0.934601729 550826.8105;7816928.98;-9629.620117;250;0.563323459 550039.3105;7816872.668;-9590.240234;250;0.53358157 550639.3105;7818130.258;-9640.759766;250;0.615276936 549214.3105;7821302.391;-9758.240234;250;0.921774131 549989.3105;7821321.16;-9754.580078;250;0.52761398 549664.3105;7817304.379;-9602.860352;250;0.713643099 550901.8105;7820570.359;-9557.459961;250;0.820195925 549189.3105;7821715.328;-9766.200195;250;0.761026811 549089.3105;7820795.598;-9746.459961;250;0.579032402 551101.8105;7817435.77;-9585.5;250;0.868487192 551326.8105;7816778.816;-9593.490234;250;0.778482258 549464.3105;7816778.816;-9666.969727;250;0.614781824 549714.3105;7817661.008;-9653.469727;250;0.206328526 549051.8105;7816928.98;-9663.360352;250;0.237866744 550939.3105;7821095.918;-9699.959961;250;0.66952302 550364.3105;7821152.23;-9690.80957;250;0.158386401 552289.3105;7817548.387;-9538.30957;250;0.197991446 549951.8105;7817079.141;-9598.879883;250;0.460174285 548901.8105;7817266.84;-9605.969727;250;0.74508878 549239.3105;7820570.359;-9736.530273;250;0.243230049 550164.3105;7817961.328;-9701.459961;250;0.170841256 550976.8105;7818186.57;-9607.05957;250;0.720089637 549701.8105;7817116.68;-9627.459961;250;0.429466886 549951.8105;7817417;-9640.679688;250;0.475497114 549989.3105;7821152.23;-9738.290039;250;0.245699248 549814.3105;7817435.77;-9639.200195;250;0.105074248 549089.3105;7817304.379;-9527.25;250;0.247659592 551276.8105;7817022.828;-9574.700195;250;0.021187824 549539.3105;7816760.051;-9662.80957;250;0.682345205 549589.3105;7817905.02;-9683.900391;250;0.087942878 552164.3105;7816835.129;-9526.830078;250;0.844064281 550426.8105;7820589.129;-9455.459961;250;0.253717448 550639.3105;7817154.219;-9611.620117;250;0.150656018 550826.8105;7820720.52;-9566.160156;250;0.758968365 549014.3105;7818205.34;-9720.879883;250;0.839316392 548876.8105;7820476.508;-9747.080078;250;0.487195554 551564.3105;7821171;-9669.990234;250;0.478393268 550476.8105;7821302.391;-9732.990234;250;0.321471389 551326.8105;7817435.77;-9587.870117;250;0.987347738 549464.3105;7820682.98;-9735.110352;250;0.381423528 549764.3105;7821527.629;-9743.44043;250;0.99335722 550726.8105;7818317.957;-9664.900391;250;0.05581107 549001.8105;7817210.527;-9590.910156;250;0.341571538 550426.8105;7816891.438;-9598.69043;250;0.891457481 549664.3105;7821433.781;-9752.459961;250;0.200929608 551101.8105;7817942.559;-9576.5;250;0.711751292 549501.8105;7820420.199;-9717.330078;250;0.328081459 550014.3105;7821433.781;-9754.990234;250;0.829777585 550114.3105;7816891.438;-9580.469727;250;0.87095378 551339.3105;7821227.309;-9690.370117;250;0.700571348 550889.3105;7821508.859;-9709.950195;250;0.870529716 552201.8105;7817360.688;-9506.730469;250;0.342963116 548964.3105;7817773.629;-9651.969727;250;0.728032645 550476.8105;7820607.898;-9464.320313;250;0.458038941 549376.8105;7821377.469;-9749.179688;250;0.31074378 550039.3105;7821790.41;-9744.719727;250;0.017591245 549001.8105;7817398.227;-9554.009766;250;0.044347228 549426.8105;7816966.52;-9628.629883;250;0.565293203 550926.8105;7817154.219;-9616.469727;250;0.568914969 549201.8105;7820476.508;-9738.849609;250;0.340491738 550151.8105;7816816.359;-9582.769531;250;0.576048646 549089.3105;7817266.84;-9542.450195;250;0.777871831 551276.8105;7821602.711;-9666.929688;250;0.343783312 548876.8105;7821339.93;-9761.030273;250;0.679716705 551364.3105;7821095.918;-9671.660156;250;0.01883422 549626.8105;7821189.77;-9744.219727;250;0.819565689 548889.3105;7821039.609;-9770.730469;250;0.463021736 550664.3105;7819406.617;-9473.620117;250;0.643657638 550489.3105;7817567.16;-9649.049805;250;0.902131116 550964.3105;7820889.449;-9658.610352;250;0.96043335 549414.3105;7821152.23;-9747.169922;250;0.550121831 549139.3105;7821264.848;-9760.320313;250;0.634272356 549501.8105;7820701.75;-9731.80957;250;0.047293173 550976.8105;7821114.691;-9703.740234;250;0.339009949 550501.8105;7816797.59;-9626.530273;250;0.065550338 550951.8105;7821189.77;-9710.019531;250;0.852943924 550214.3105;7816891.438;-9573.509766;250;0.941098212 551176.8105;7818280.418;-9529.69043;250;0.594826951 550439.3105;7818336.73;-9684.75;250;0.912061419 549676.8105;7821321.16;-9750.290039;250;0.303840967 550051.8105;7821114.691;-9725.69043;250;0.677704192 549676.8105;7821396.238;-9753.089844;250;0.637844764 549351.8105;7819913.41;-9729.509766;250;0.79853348 550276.8105;7821583.941;-9741.299805;250;0.240868926 550626.8105;7821677.789;-9730.400391;250;0.69986816 550476.8105;7819988.488;-9464.469727;250;0.210768592 551401.8105;7817266.84;-9577.980469;250;0.020238974 549101.8105;7821133.457;-9761.339844;250;0.330217523 550439.3105;7820457.738;-9383.719727;250;0.55326681 549776.8105;7817792.398;-9691.349609;250;0.547982904 551364.3105;7821452.551;-9682.889648;250;0.739229115 550064.3105;7817135.449;-9589.120117;250;0.568654121 549676.8105;7816853.898;-9659.230469;250;0.036630325 552101.8105;7821752.867;-9527.799805;250;0.435931486 549939.3105;7820758.059;-9669.280273;250;0.156943205 550764.3105;7816872.668;-9638.639648;250;0.287862604 551401.8105;7817754.859;-9577;250;0.770967844 551626.8105;7816835.129;-9570.830078;250;0.038501524 548889.3105;7817454.539;-9609.139648;250;0.158240761 550489.3105;7817079.141;-9587.589844;250;0.150782584 550076.8105;7816966.52;-9573.200195;250;0.868997746 550014.3105;7818655.82;-9626.05957;250;0.982009999 548964.3105;7817435.77;-9579.530273;250;0.409126997 552239.3105;7817886.25;-9569.290039;250;0.011502557 550001.8105;7817079.141;-9589.80957;250;0.293791589 551664.3105;7821452.551;-9663.69043;250;0.157272659 552364.3105;7821527.629;-9582.490234;250;0.671938981 551039.3105;7821415.008;-9698.639648;250;0.114508289 550189.3105;7817172.988;-9583.05957;250;0.357111076 551414.3105;7817323.148;-9585.150391;250;0.379741816 549351.8105;7821077.148;-9743.450195;250;0.723422399 551651.8105;7821640.25;-9618.900391;250;0.933078045 549814.3105;7821339.93;-9757.759766;250;0.647640021 550226.8105;7816947.75;-9569.570313;250;0.822428366 550839.3105;7817097.91;-9623.219727;250;0.041594063 551626.8105;7816966.52;-9569.44043;250;0.859083546 548889.3105;7820664.211;-9762.599609;250;0.030992994 551626.8105;7821696.559;-9606.969727;250;0.444537737 548976.8105;7818317.957;-9726.839844;250;0.563733077 552214.3105;7821415.008;-9608.879883;250;0.180776127 549389.3105;7816760.051;-9667.860352;250;0.175265901 552426.8105;7817248.07;-9402.400391;250;0.128842332 549001.8105;7817191.758;-9598.540039;250;0.557330069 552214.3105;7821471.32;-9602.179688;250;0.55411488 550201.8105;7818899.828;-9629.5;250;0.17632378 550114.3105;7821189.77;-9730.290039;250;0.255593641 550626.8105;7817510.848;-9628.679688;250;0.214262712 551064.3105;7817341.918;-9595.929688;250;0.525187453 551189.3105;7821002.07;-9693.5;250;0.078179792 549689.3105;7820720.52;-9723.290039;250;0.276159194 550289.3105;7816947.75;-9573.360352;250;0.865942735 551489.3105;7821790.41;-9619.740234;250;0.087583149 549476.8105;7819556.777;-9700.849609;250;0.720651808 551726.8105;7821508.859;-9648.759766;250;0.061520186 551014.3105;7821339.93;-9704.5;250;0.083065457 550801.8105;7821827.949;-9717.419922;250;0.191944014 550389.3105;7818355.5;-9684.540039;250;0.989343313 550951.8105;7817886.25;-9588.009766;250;0.717761261 552376.8105;7821377.469;-9599.719727;250;0.15604976 551189.3105;7818111.488;-9544.419922;250;0.825778211 550864.3105;7817510.848;-9590.230469;250;0.041199102 552264.3105;7821734.102;-9543.080078;250;0.624298496 551201.8105;7816778.816;-9587.889648;250;0.584821843 550001.8105;7819387.852;-9587.780273;250;0.694982954 549614.3105;7819012.449;-9621.519531;250;0.823419027 550239.3105;7817172.988;-9580.419922;250;0.240812146 550614.3105;7817867.48;-9613.530273;250;0.17454762 550739.3105;7820345.121;-9466.820313;250;0.572230977 549864.3105;7817191.758;-9635.379883;250;0.378747633 551464.3105;7816797.59;-9584.469727;250;0.063924838 549776.8105;7819763.25;-9649.80957;250;0.127308051 549401.8105;7818956.141;-9653.230469;250;0.019535414 551201.8105;7816684.969;-9587.629883;250;0.631492262 549189.3105;7821471.32;-9766.419922;250;0.600642412 550451.8105;7818899.828;-9554.009766;250;0.769216267 549914.3105;7821283.617;-9753.599609;250;0.355383935 549414.3105;7820401.43;-9731.540039;250;0.191885805 549214.3105;7816872.668;-9680.110352;250;0.195747561 550839.3105;7817942.559;-9601.75;250;0.02931423 550451.8105;7818693.359;-9642.870117;250;0.558502644 550651.8105;7820889.449;-9601.209961;250;0.543814145 549189.3105;7821114.691;-9753.709961;250;0.411042343 550726.8105;7817811.168;-9607.259766;250;0.223225457 551789.3105;7821246.078;-9675.179688;250;0.172872369 549626.8105;7821377.469;-9756.459961;250;0.974955164 549389.3105;7821246.078;-9748.280273;250;0.913656879 551151.8105;7817135.449;-9582.950195;250;0.130330833 549839.3105;7821246.078;-9750.099609;250;0.171204582 551601.8105;7821339.93;-9670.019531;250;0.133201575 551201.8105;7818167.797;-9531.349609;250;0.653908774 548889.3105;7821471.32;-9758.459961;250;0.238018168 551426.8105;7821809.18;-9627.240234;250;0.874962515 548889.3105;7821659.02;-9765.839844;250;0.736131772 548951.8105;7821827.949;-9756.80957;250;0.228417885 550851.8105;7821827.949;-9717.480469;250;0.999330777 550314.3105;7820438.969;-9431.330078;250;0.046360242 550614.3105;7817473.309;-9631.5;250;0.736176071 550164.3105;7821208.539;-9726.139648;250;0.183940707 550689.3105;7817172.988;-9617.410156;250;0.348532501 548964.3105;7821227.309;-9771.169922;250;0.828097389 549301.8105;7818317.957;-9699.070313;250;0.037434984 549214.3105;7817360.688;-9446.389648;250;0.410530678 551639.3105;7821602.711;-9631.980469;250;0.814361534 551639.3105;7821734.102;-9591.219727;250;0.758062459 549251.8105;7821752.867;-9763.759766;250;0.450591417 551276.8105;7821490.09;-9679.549805;250;0.431751204 552439.3105;7821377.469;-9594.549805;250;0.697193471 549964.3105;7816910.207;-9589.889648;250;0.781963569 549276.8105;7821114.691;-9745.650391;250;0.152235581 549664.3105;7817886.25;-9686.129883;250;0.278162232 551626.8105;7821790.41;-9581.740234;250;0.155963852 550801.8105;7819688.168;-9557.360352;250;0.627811431 548964.3105;7818411.809;-9735.55957;250;0.747323903 551164.3105;7817998.871;-9564.459961;250;0.252722676 550451.8105;7817661.008;-9656.280273;250;0.610340905 550701.8105;7817661.008;-9608.879883;250;0.569216094 550676.8105;7820026.027;-9492.610352;250;0.360231371 549876.8105;7821508.859;-9748.110352;250;0.875692093 549526.8105;7821152.23;-9744.610352;250;0.250606042 551351.8105;7817773.629;-9572.980469;250;0.773133961 550914.3105;7820514.051;-9552.410156;250;0.131678825 549126.8105;7821527.629;-9764;250;0.422137941 551876.8105;7817248.07;-9554.200195;250;0.889703554 551826.8105;7821546.398;-9627.94043;250;0.615490376 550926.8105;7817248.07;-9610.679688;250;0.859606843 551201.8105;7820945.758;-9684.919922;250;0.595996643 549039.3105;7818411.809;-9725.69043;250;0.55862613 549439.3105;7819387.852;-9701.769531;250;0.078555944 550789.3105;7817754.859;-9595.490234;250;0.95103175 548889.3105;7819763.25;-9734.070313;250;0.116022533 551501.8105;7821527.629;-9671.669922;250;0.473297531 549014.3105;7821715.328;-9753.200195;250;0.838353636 549139.3105;7820739.289;-9736.700195;250;0.79432458 549851.8105;7821696.559;-9743.179688;250;0.859080549 551426.8105;7821640.25;-9655.480469;250;0.386382497 552301.8105;7821415.008;-9596.839844;250;0.230890653 549264.3105;7821602.711;-9759.330078;250;0.714005377 549089.3105;7817060.367;-9615.860352;250;0.457131216 551314.3105;7821339.93;-9690.570313;250;0.939875511 549976.8105;7821358.699;-9756.820313;250;0.681256877 550626.8105;7818693.359;-9637.830078;250;0.838670676 550501.8105;7818486.891;-9682.480469;250;0.943993337 551576.8105;7821602.711;-9645.620117;250;0.472188692 549489.3105;7818655.82;-9605.19043;250;0.359341902 551789.3105;7821827.949;-9532.400391;250;0.962514404 548889.3105;7818186.57;-9726.450195;250;0.986526716 548939.3105;7821283.617;-9768.459961;250;0.505309433 551639.3105;7821827.949;-9571.75;250;0.049241985 549239.3105;7818261.648;-9709.019531;250;0.576699902 549039.3105;7818299.188;-9722.870117;250;0.145545303 549014.3105;7820851.91;-9763.69043;250;0.003930852 549476.8105;7821152.23;-9746.450195;250;0.82703412 550626.8105;7818580.738;-9665.589844;250;0.241318096 549076.8105;7817548.387;-9560.089844;250;0.935289449 551001.8105;7818937.367;-9609.080078;250;0.801911872 549514.3105;7816947.75;-9639.759766;250;0.56883387 550501.8105;7818599.508;-9668.30957;250;0.946168429 550314.3105;7816816.359;-9589.900391;250;0.99364549 551939.3105;7821790.41;-9521.650391;250;0.077293989 549851.8105;7819763.25;-9633.830078;250;0.211346 551876.8105;7821696.559;-9569.410156;250;0.488994053 548939.3105;7818224.109;-9724.69043;250;0.603649662 550714.3105;7817698.547;-9606.44043;250;0.575662953 551476.8105;7821827.949;-9616.889648;250;0.97498798 550801.8105;7820063.57;-9515.179688;250;0.411162751 550489.3105;7818280.418;-9680.889648;250;0.588517394 548951.8105;7820101.109;-9722.320313;250;0.458211747 549701.8105;7821490.09;-9747.589844;250;0.825753079 549051.8105;7818505.66;-9728.799805;250;0.840872668 550939.3105;7821659.02;-9705.070313;250;0.76491634 550326.8105;7816703.738;-9611.639648;250;0.38319503 551451.8105;7817004.059;-9579.490234;250;0.720723752 550714.3105;7819012.449;-9517.120117;250;0.293300011 549976.8105;7821471.32;-9750.980469;250;0.991410582 550776.8105;7820194.961;-9490.849609;250;0.725827683 550314.3105;7819838.328;-9505.55957;250;0.998892324 550876.8105;7817548.387;-9587.290039;250;0.242957345 551701.8105;7821790.41;-9558.450195;250;0.312514727 551401.8105;7816741.277;-9588.089844;250;0.085457342 550326.8105;7820363.887;-9392.009766;250;0.123334499 549351.8105;7821358.699;-9748.120117;250;0.115061768 550101.8105;7821677.789;-9746.049805;250;0.822117234 552114.3105;7821583.941;-9595.879883;250;0.73423605 549026.8105;7818261.648;-9723.209961;250;0.000317621 551914.3105;7821246.078;-9669.950195;250;0.968618032 551389.3105;7818167.797;-9526.839844;250;0.927409331 551089.3105;7816928.98;-9598.400391;250;0.73533696 550451.8105;7818637.047;-9658.790039;250;0.877186816 550339.3105;7816666.199;-9617.139648;250;0.16343588 550001.8105;7817004.059;-9579.269531;250;0.235073132 550901.8105;7817604.699;-9583.860352;250;0.47394127 549464.3105;7818580.738;-9610.259766;250;0.514267852 549789.3105;7821546.398;-9742.44043;250;0.093494739 549126.8105;7820814.371;-9744.480469;250;0.696690034 550876.8105;7818937.367;-9580.580078;250;0.381714586 550689.3105;7817604.699;-9612.099609;250;0.33638877 549014.3105;7821771.641;-9752.040039;250;0.476925523 549664.3105;7816966.52;-9638.530273;250;0.724442065 548976.8105;7820194.961;-9722.730469;250;0.837908991 550501.8105;7818693.359;-9643.94043;250;0.426104812 549014.3105;7821827.949;-9751.280273;250;0.213985447 549851.8105;7816928.98;-9617.150391;250;0.627590306 550839.3105;7820326.348;-9507.5;250;0.269495649 550964.3105;7817116.68;-9610.05957;250;0.608811942 549789.3105;7819650.629;-9658.480469;250;0.407991613 549814.3105;7818693.359;-9551.400391;250;0.573916646 551864.3105;7817004.059;-9564.450195;250;0.758668377 549839.3105;7816666.199;-9659.44043;250;0.180379105 549751.8105;7821827.949;-9738.599609;250;0.353856024 550839.3105;7817304.379;-9608.820313;250;0.106658907 549301.8105;7818261.648;-9706.110352;250;0.549571801 548939.3105;7821546.398;-9755.639648;250;0.308463771 550901.8105;7818505.66;-9632.969727;250;0.87667255 551014.3105;7818655.82;-9623.80957;250;0.311152542 551876.8105;7817473.309;-9562.780273;250;0.042642759 552351.8105;7821602.711;-9566.780273;250;0.404430316 548976.8105;7818505.66;-9734.540039;250;0.112358597 551676.8105;7821095.918;-9670.450195;250;0.171483277 548889.3105;7821771.641;-9765.990234;250;0.771713612 551014.3105;7816778.816;-9619.30957;250;0.193071704 551226.8105;7818280.418;-9518.160156;250;0.783212066 551151.8105;7821152.23;-9701.80957;250;0.062275567 551626.8105;7821246.078;-9676.290039;250;0.631277749 550714.3105;7818730.898;-9623.780273;250;0.353024343 550789.3105;7821508.859;-9722.759766;250;0.57007328 552289.3105;7821283.617;-9608.700195;250;0.609281566 550826.8105;7820607.898;-9534.650391;250;0.410540504 549514.3105;7818299.188;-9691.299805;250;0.081810024 549314.3105;7819181.379;-9711.849609;250;0.148348717 551301.8105;7821827.949;-9648.360352;250;0.773239841 548901.8105;7817492.078;-9613.959961;250;0.790291904 551951.8105;7821827.949;-9510.200195;250;0.396993148 548976.8105;7816666.199;-9696.660156;250;0.116741096 551114.3105;7817661.008;-9579.549805;250;0.744158773 552001.8105;7817060.367;-9550.660156;250;0.761347025 549339.3105;7821133.457;-9744.089844;250;0.976090349 550614.3105;7820570.359;-9465.889648;250;0.558426331 548889.3105;7821827.949;-9765.570313;250;0.81808256 552176.8105;7821677.789;-9567.509766;250;0.345509636 550789.3105;7820138.648;-9502.139648;250;0.537362829 550089.3105;7821058.379;-9709.450195;250;0.663620291 551564.3105;7816816.359;-9577.25;250;0.372288384 551714.3105;7821827.949;-9547.360352;250;0.290543202 552014.3105;7821827.949;-9504.44043;250;0.979899281 552076.8105;7821415.008;-9633.950195;250;0.8909512 551564.3105;7821640.25;-9640.669922;250;0.926567404 548889.3105;7816778.816;-9697.370117;250;0.882738569 552451.8105;7817961.328;-9556.169922;250;0.247634542 551864.3105;7821734.102;-9555.320313;250;0.537965586 551551.8105;7821827.949;-9603.910156;250;0.32774876 549064.3105;7821264.848;-9765.879883;250;0.415862277 549889.3105;7820532.82;-9621.790039;250;0.193840562 550851.8105;7816835.129;-9640.009766;250;0.861512614 550064.3105;7821546.398;-9744.799805;250;0.143580036 549914.3105;7821790.41;-9741.540039;250;0.318413761 551689.3105;7821321.16;-9677.919922;250;0.402280351 550914.3105;7820307.578;-9542.009766;250;0.434279918 549689.3105;7817379.461;-9606.75;250;0.742555652 551514.3105;7817698.547;-9582.679688;250;0.312686993 550189.3105;7820251.27;-9421.919922;250;0.413779541 548889.3105;7821715.328;-9766.299805;250;0.837609913 552139.3105;7821246.078;-9642.150391;250;0.257249569 549276.8105;7818524.43;-9664.799805;250;0.022047045 549064.3105;7818543.199;-9726.929688;250;0.862665171 550689.3105;7817510.848;-9615.990234;250;0.657258654 549889.3105;7821321.16;-9756.660156;250;0.83711656 550764.3105;7817473.309;-9603.05957;250;0.175693973 549376.8105;7816797.59;-9671.200195;250;0.674708161 551776.8105;7821790.41;-9543.330078;250;0.390636733 549126.8105;7818505.66;-9713.5;250;0.751314568 552226.8105;7821377.469;-9610.700195;250;0.163772632 551351.8105;7816816.359;-9591.200195;250;0.98519901 552064.3105;7821377.469;-9642.549805;250;0.923065236 549439.3105;7818956.141;-9641.259766;250;0.445093629 550264.3105;7819744.48;-9546.230469;250;0.379946118 551114.3105;7820964.531;-9689.980469;250;0.496100584 549264.3105;7821546.398;-9757.450195;250;0.781632727 550314.3105;7817004.059;-9565.30957;250;0.267481704 550939.3105;7818205.34;-9613.780273;250;0.055419564 551526.8105;7821114.691;-9666;250;0.057241076 550264.3105;7816872.668;-9577.879883;250;0.040870772 549401.8105;7821827.949;-9739.459961;250;0.85028922 550001.8105;7821020.84;-9712.620117;250;0.897985914 548964.3105;7816703.738;-9699.179688;250;0.670982008 550314.3105;7821602.711;-9740.360352;250;0.257995907 549226.8105;7816835.129;-9690.339844;250;0.074630296 551001.8105;7817829.938;-9580.089844;250;0.007215508 550914.3105;7817323.148;-9603.769531;250;0.422710834 550451.8105;7817022.828;-9580.669922;250;0.984602343 549089.3105;7817435.77;-9514.740234;250;0.756456254 549489.3105;7816910.207;-9651;250;0.661959036 549826.8105;7821471.32;-9751.94043;250;0.100432049 549926.8105;7821677.789;-9742.049805;250;0.76983677 552426.8105;7821527.629;-9580.30957;250;0.199880349 552301.8105;7821321.16;-9605.549805;250;0.912632338 551126.8105;7818637.047;-9588.219727;250;0.10081159 552026.8105;7821790.41;-9514.349609;250;0.463107994 549326.8105;7816928.98;-9655.929688;250;0.57723072 549226.8105;7816910.207;-9666.519531;250;0.08380202 551114.3105;7818224.109;-9556.570313;250;0.329823999 551814.3105;7821715.328;-9569.040039;250;0.522914134 550464.3105;7818862.289;-9569.650391;250;0.147470257 549876.8105;7820570.359;-9636.980469;250;0.857774414 549189.3105;7817417;-9458.759766;250;0.724206402 549501.8105;7821452.551;-9751.910156;250;0.82074523 549039.3105;7820758.059;-9746.240234;250;0.917424137 551014.3105;7816872.668;-9618.570313;250;0.875548451 551564.3105;7821696.559;-9626.910156;250;0.557118241 551026.8105;7821227.309;-9711.230469;250;0.545856659 552001.8105;7817191.758;-9539.69043;250;0.554011097 551976.8105;7821527.629;-9624.730469;250;0.592627195 551151.8105;7821490.09;-9683.259766;250;0.285200472 548951.8105;7821715.328;-9758.759766;250;0.998439788 551376.8105;7821339.93;-9689.070313;250;0.454594906 548989.3105;7820626.668;-9741.30957;250;0.343972277 550476.8105;7818393.039;-9686.490234;250;0.853523584 550901.8105;7818843.52;-9614.55957;250;0.640997558 551564.3105;7821227.309;-9668.860352;250;0.368062942 549639.3105;7817022.828;-9628.910156;250;0.656789983 551339.3105;7817135.449;-9573.769531;250;0.775361088 550126.8105;7820945.758;-9665.730469;250;0.691971763 551939.3105;7817060.367;-9553.05957;250;0.999883062 549751.8105;7821227.309;-9743.379883;250;0.899415555 549126.8105;7820232.5;-9724.540039;250;0.933571596 551201.8105;7817567.16;-9581.839844;250;0.605595466 550476.8105;7819181.379;-9446.450195;250;0.101999566 552439.3105;7821490.09;-9583.870117;250;0.106550435 549139.3105;7821715.328;-9760.980469;250;0.845116107 550501.8105;7817004.059;-9593.849609;250;0.915077654 550239.3105;7819613.09;-9567.679688;250;0.772434806 551014.3105;7817248.07;-9602.330078;250;0.224127411 552289.3105;7821377.469;-9601.169922;250;0.293753292 552114.3105;7821715.328;-9547.969727;250;0.519732798 550626.8105;7818637.047;-9654.330078;250;0.974928837 551851.8105;7821377.469;-9668.790039;250;0.300647059 552376.8105;7817905.02;-9557.030273;250;0.090046576 552139.3105;7821490.09;-9613.110352;250;0.618718934 549089.3105;7820026.027;-9722.759766;250;0.042710365 550864.3105;7817135.449;-9621.959961;250;0.696567177 549176.8105;7821171;-9755.389648;250;0.780860979 550476.8105;7821114.691;-9686.240234;250;0.106759142 550351.8105;7816910.207;-9584.929688;250;0.434160907 550964.3105;7816853.898;-9626.669922;250;0.446178313 550489.3105;7819218.918;-9433.200195;250;0.948994888 550464.3105;7816947.75;-9595.070313;250;0.831617921 549601.8105;7821452.551;-9750.469727;250;0.256610339 549201.8105;7821433.781;-9763.700195;250;0.244998863 550389.3105;7817923.789;-9665.5;250;0.317751604 551939.3105;7821696.559;-9563.200195;250;0.660736528 549014.3105;7820589.129;-9737.269531;250;0.267386193 551314.3105;7816722.508;-9594.469727;250;0.091332962 551439.3105;7821415.008;-9684.179688;250;0.833904269 550901.8105;7819988.488;-9551.19043;250;0.332469683 550439.3105;7820194.961;-9391.719727;250;0.130468282 551114.3105;7821321.16;-9702.400391;250;0.844595427 548951.8105;7821771.641;-9757.400391;250;0.771042527 548889.3105;7820814.371;-9766.099609;250;0.185661471 549114.3105;7821433.781;-9766.849609;250;0.911224868 551564.3105;7821790.41;-9605.509766;250;0.072044684 550489.3105;7821565.168;-9735.389648;250;0.608525936 551289.3105;7821171;-9694.209961;250;0.766593849 550939.3105;7817998.871;-9598.639648;250;0.120549641 552151.8105;7821452.551;-9617.30957;250;0.933833536 550951.8105;7820457.738;-9559.849609;250;0.4152609 550176.8105;7821546.398;-9745.740234;250;0.50921293 551176.8105;7817473.309;-9584.209961;250;0.20555294 549339.3105;7821827.949;-9750.040039;250;0.013406628 550639.3105;7820063.57;-9471.540039;250;0.428568181 551239.3105;7816684.969;-9587.860352;250;0.803478254 551001.8105;7817135.449;-9603.209961;250;0.617914102 549739.3105;7818881.059;-9566.009766;250;0.098339021 551676.8105;7821358.699;-9676.330078;250;0.288692788 549689.3105;7816741.277;-9668.839844;250;0.79295803 549626.8105;7821302.391;-9750.80957;250;0.929089074 549376.8105;7820382.66;-9734.660156;250;0.705713514 549076.8105;7821659.02;-9755.55957;250;0.58797577 548901.8105;7816816.359;-9695.820313;250;0.75912169 551901.8105;7821508.859;-9638.139648;250;0.731070866 551776.8105;7821715.328;-9573.75;250;0.339739161 549676.8105;7818805.98;-9570.349609;250;0.449627876 551076.8105;7821321.16;-9704.490234;250;0.433984761 549239.3105;7821189.77;-9750.44043;250;0.522718573 548889.3105;7818242.879;-9730.400391;250;0.710811491 550489.3105;7819406.617;-9479.580078;250;0.428268621 550826.8105;7820213.73;-9510.910156;250;0.146381327 550314.3105;7821771.641;-9738.219727;250;0.120198898 549864.3105;7818749.668;-9565.549805;250;0.698657574 551464.3105;7816666.199;-9585.450195;250;0.928058759 550939.3105;7820964.531;-9673.740234;250;0.405811641 552039.3105;7821527.629;-9615.360352;250;0.363103614 549851.8105;7821583.941;-9744.169922;250;0.118955713 551539.3105;7816778.816;-9582.290039;250;0.035102481 551789.3105;7821527.629;-9634.75;250;0.808631322 550126.8105;7817210.527;-9588.19043;250;0.886299599 549201.8105;7821077.148;-9752.169922;250;0.223068453 551801.8105;7816966.52;-9571.330078;250;0.733495274 551626.8105;7817717.32;-9577.580078;250;0.380489085 550789.3105;7817041.598;-9622.230469;250;0.107677948 551889.3105;7821396.238;-9663.269531;250;0.843612339 549351.8105;7821715.328;-9744.320313;250;0.336371321 551551.8105;7817116.68;-9567.089844;250;0.748255656 551539.3105;7816741.277;-9584.480469;250;0.044365667 550901.8105;7816684.969;-9637.419922;250;0.937017859 550689.3105;7818693.359;-9633.75;250;0.653391016 550464.3105;7819444.16;-9495.040039;250;0.986179748 549451.8105;7821546.398;-9730.120117;250;0.614458811 549551.8105;7821527.629;-9741.5;250;0.126902453 550976.8105;7821283.617;-9708.910156;250;0.787490697 549314.3105;7817454.539;-9448.660156;250;0.94296067 550664.3105;7820814.371;-9573.980469;250;0.758272871 551676.8105;7816760.051;-9573.469727;250;0.711384436 550251.8105;7821358.699;-9738.540039;250;0.080129092 550814.3105;7820382.66;-9496.049805;250;0.879539414 550689.3105;7818430.578;-9676.709961;250;0.518586045 552001.8105;7817454.539;-9554.139648;250;0.895347116 549426.8105;7816666.199;-9657.929688;250;0.602088572 550214.3105;7817886.25;-9694.650391;250;0.169867742 551764.3105;7821452.551;-9656.179688;250;0.825010009 550639.3105;7819613.09;-9531.94043;250;0.306579887 551864.3105;7821171;-9673.370117;250;0.006574368 551501.8105;7816928.98;-9579.490234;250;0.887659321 550614.3105;7818768.438;-9609.339844;250;0.428316476 551776.8105;7817585.93;-9565.799805;250;0.325274937 548939.3105;7820345.121;-9730.219727;250;0.34346486 550101.8105;7819012.449;-9608.030273;250;0.59456152 550814.3105;7818393.039;-9646.490234;250;0.695106738 550976.8105;7821715.328;-9703.150391;250;0.670469638 552289.3105;7821189.77;-9614.320313;250;0.902411339 550889.3105;7817172.988;-9619.129883;250;0.605132036 552101.8105;7816928.98;-9534.780273;250;0.629260541 550814.3105;7818130.258;-9626.05957;250;0.951097487 550739.3105;7821490.09;-9727.19043;250;0.154651936 549489.3105;7816816.359;-9665.530273;250;0.432735628 550464.3105;7821377.469;-9735.429688;250;0.290954018 551689.3105;7817172.988;-9556.94043;250;0.427932319 549576.8105;7821171;-9745.610352;250;0.869492617 551314.3105;7817379.461;-9587.580078;250;0.619874087 550726.8105;7820044.801;-9499.389648;250;0.98319188 550814.3105;7820495.281;-9512.849609;250;0.734254966 551364.3105;7817360.688;-9587.660156;250;0.768640742 550364.3105;7816797.59;-9600.639648;250;0.734445685 549426.8105;7816872.668;-9661.950195;250;0.73605102 550964.3105;7817210.527;-9610.269531;250;0.214584947 549464.3105;7821208.539;-9747.820313;250;0.978299678 548964.3105;7818261.648;-9725.049805;250;0.061232125 550589.3105;7817792.398;-9614.320313;250;0.282123828 549289.3105;7818561.969;-9661.679688;250;0.935532051 550626.8105;7817304.379;-9624.820313;250;0.760564174 550326.8105;7816872.668;-9586.070313;250;0.233805428 549126.8105;7817454.539;-9496.799805;250;0.238506499 550814.3105;7820570.359;-9524.589844;250;0.107074364 552426.8105;7821621.48;-9559.75;250;0.218196 550126.8105;7821133.457;-9719.910156;250;0.543950964 551014.3105;7820983.297;-9688.929688;250;0.114435554 550639.3105;7817661.008;-9619.599609;250;0.085770562 552389.3105;7817454.539;-9488.200195;250;0.470275947 549526.8105;7821790.41;-9735.469727;250;0.939965847 551226.8105;7817379.461;-9587.679688;250;0.251409278 550476.8105;7819369.078;-9466.580078;250;0.462476243 550964.3105;7818674.59;-9639.259766;250;0.172259893 550689.3105;7818580.738;-9660.400391;250;0.456347245 551926.8105;7821208.539;-9670.610352;250;0.246571166 549726.8105;7821246.078;-9742.879883;250;0.29143554 551326.8105;7818186.57;-9515.519531;250;0.703795068 551251.8105;7817510.848;-9586.459961;250;0.687812349 550964.3105;7818843.52;-9616.360352;250;0.030283666 549914.3105;7821621.48;-9743.099609;250;0.011289695 551739.3105;7821133.457;-9673.240234;250;0.573765547 552139.3105;7817492.078;-9541.370117;250;0.573779959 551101.8105;7817717.32;-9575.929688;250;0.420293727 548901.8105;7818524.43;-9731.80957;250;0.743685239 551539.3105;7816647.43;-9586.530273;250;0.047686661 550439.3105;7817210.527;-9598.860352;250;0.397741144 551464.3105;7817229.301;-9578.240234;250;0.787273376 551351.8105;7816872.668;-9586.969727;250;0.656046271 550214.3105;7816741.277;-9597.769531;250;0.879386209 550701.8105;7821077.148;-9669.429688;250;0.873755961 549951.8105;7816741.277;-9643.290039;250;0.953456189 551051.8105;7818655.82;-9611.269531;250;0.49270231 551451.8105;7821302.391;-9679.759766;250;0.768382519 550464.3105;7821752.867;-9733.540039;250;0.9680469 549139.3105;7816835.129;-9685.490234;250;0.070664277 551664.3105;7821396.238;-9672.219727;250;0.265539032 552326.8105;7821809.18;-9528.040039;250;0.229576542 550114.3105;7818768.438;-9652.450195;250;0.088967213 550851.8105;7820176.188;-9524.540039;250;0.970311151 550089.3105;7821246.078;-9740.959961;250;0.841688809 549914.3105;7820044.801;-9544.839844;250;0.869526033 551326.8105;7821734.102;-9652.530273;250;0.955381475 552189.3105;7821734.102;-9543.219727;250;0.034070121 550639.3105;7818486.891;-9676;250;0.310633926 550614.3105;7821321.16;-9723.200195;250;0.654446287 549889.3105;7817135.449;-9622.219727;250;0.464805642 550426.8105;7820119.879;-9411.269531;250;0.67196157 550426.8105;7818449.348;-9682.55957;250;0.19968456 552001.8105;7816816.359;-9555.179688;250;0.049507945 549664.3105;7817473.309;-9591.269531;250;0.511829654 550414.3105;7819312.77;-9463.830078;250;0.822908407 551114.3105;7821208.539;-9702.910156;250;0.418218207 552064.3105;7816816.359;-9548.30957;250;0.237687653 550964.3105;7818543.199;-9626.160156;250;0.909993674 552026.8105;7817360.688;-9541.589844;250;0.099149527 550776.8105;7816797.59;-9644.660156;250;0.271524422 549551.8105;7821246.078;-9746.849609;250;0.835600258 550139.3105;7820570.359;-9541.610352;250;0.265268674 548901.8105;7818374.27;-9740.160156;250;0.551742571 552189.3105;7821771.641;-9527.419922;250;0.488596823 552426.8105;7821583.941;-9568.849609;250;0.340468072 549189.3105;7821640.25;-9765.820313;250;0.53554768 549476.8105;7821621.48;-9724.980469;250;0.676170063 549926.8105;7821189.77;-9744.769531;250;0.199566309 552426.8105;7821659.02;-9549.339844;250;0.55394522 550014.3105;7816760.051;-9632.900391;250;0.049883112 551926.8105;7816778.816;-9559.379883;250;0.523213319 550714.3105;7820176.188;-9470.980469;250;0.456557492 550851.8105;7817210.527;-9617.410156;250;0.845646207 552439.3105;7816853.898;-9410.519531;250;0.934746809 552439.3105;7821171;-9607.849609;250;0.29534596 551214.3105;7818449.348;-9533.780273;250;0.086963344 549051.8105;7821433.781;-9763.259766;250;0.767293583 551264.3105;7817548.387;-9586.110352;250;0.871542623 549801.8105;7817248.07;-9646.110352;250;0.245078792 550489.3105;7817642.238;-9650.169922;250;0.828651192 551564.3105;7816966.52;-9572.769531;250;0.655108511 551664.3105;7816666.199;-9570.889648;250;0.847590106 551439.3105;7816947.75;-9582.320313;250;0.842639711 551401.8105;7816797.59;-9588.150391;250;0.38221276 550801.8105;7819256.457;-9490.040039;250;0.704529994 551764.3105;7821283.617;-9675.25;250;0.195211546 550676.8105;7817097.91;-9614.980469;250;0.416619502 549951.8105;7816947.75;-9587.070313;250;0.191625438 549126.8105;7820701.75;-9732.69043;250;0.212471334 549414.3105;7821715.328;-9729.849609;250;0.479971399 551689.3105;7816928.98;-9570.719727;250;0.312972087 549814.3105;7821283.617;-9752.790039;250;0.504196264 550289.3105;7820589.129;-9510.05957;250;0.867139789 549539.3105;7821433.781;-9753.389648;250;0.513918639 549889.3105;7821377.469;-9757.049805;250;0.202601348 549414.3105;7821471.32;-9740.44043;250;0.9084457 550214.3105;7818956.141;-9610.839844;250;0.047974901 549076.8105;7820589.129;-9733.820313;250;0.442709598 549076.8105;7820870.68;-9760.450195;250;0.975285499 550239.3105;7816797.59;-9583.55957;250;0.329415285 550489.3105;7820307.578;-9378.5;250;0.960411254 552039.3105;7821565.168;-9605.480469;250;0.229647315 550376.8105;7820157.418;-9393.419922;250;0.982379445 549964.3105;7816853.898;-9602.490234;250;0.19363365 550214.3105;7820476.508;-9493.290039;250;0.473387651 550351.8105;7818299.188;-9685;250;0.35487639 549314.3105;7816891.438;-9672.040039;250;0.770872852 550726.8105;7821002.07;-9649.629883;250;0.147529836 551489.3105;7821396.238;-9677.379883;250;0.056053097 552426.8105;7821696.559;-9539.870117;250;0.481135354 550726.8105;7821396.238;-9721.839844;250;0.957789775 551176.8105;7821377.469;-9692.019531;250;0.338368761 550764.3105;7820532.82;-9501.139648;250;0.919861362 550026.8105;7821058.379;-9717.389648;250;0.594169049 550489.3105;7821790.41;-9731.769531;250;0.518791499 550451.8105;7818580.738;-9669.839844;250;0.226225481 550689.3105;7820345.121;-9448.209961;250;0.352004297 549726.8105;7821508.859;-9745.160156;250;0.897911822 550326.8105;7821734.102;-9740.610352;250;0.680651896 551064.3105;7821246.078;-9709.740234;250;0.605603133 551076.8105;7818299.188;-9559.55957;250;0.980794505 549814.3105;7821433.781;-9754.929688;250;0.319507596 550239.3105;7820570.359;-9513.030273;250;0.896203785 550776.8105;7816722.508;-9647.839844;250;0.703088405 551389.3105;7818205.34;-9522.330078;250;0.49386436 550189.3105;7816966.52;-9567.55957;250;0.203582438 550864.3105;7818355.5;-9628.019531;250;0.387609053 552439.3105;7821283.617;-9602.480469;250;0.252847996 550414.3105;7819125.07;-9484.019531;250;0.407259819 551839.3105;7816816.359;-9569.429688;250;0.029454068 548901.8105;7818486.891;-9736.620117;250;0.295673648 551951.8105;7817154.219;-9545.660156;250;0.9217077 550626.8105;7816703.738;-9649.759766;250;0.282518176 548901.8105;7821227.309;-9769.700195;250;0.288715093 552001.8105;7821734.102;-9542.379883;250;0.910194589 549876.8105;7821602.711;-9744.120117;250;0.134744621 551114.3105;7821264.848;-9704.320313;250;0.737736097 550914.3105;7821433.781;-9709.429688;250;0.395301579 551489.3105;7816872.668;-9582.169922;250;0.761215887 549051.8105;7820908.219;-9765.849609;250;0.426037319 550726.8105;7817079.141;-9618.490234;250;0.109086677 551539.3105;7816703.738;-9585.759766;250;0.968212646 552176.8105;7821809.18;-9516.44043;250;0.782507147 549989.3105;7818524.43;-9631.469727;250;0.284209932 550876.8105;7820945.758;-9652.870117;250;0.167297328 551426.8105;7816891.438;-9586.120117;250;0.928446219 550189.3105;7819012.449;-9597.25;250;0.816468321 550401.8105;7819481.699;-9512.179688;250;0.153695324 549589.3105;7816928.98;-9647.25;250;0.143826901 551401.8105;7821227.309;-9679.549805;250;0.268158488 551701.8105;7821208.539;-9676.230469;250;0.076852616 551114.3105;7821527.629;-9686.629883;250;0.481089231 550439.3105;7821508.859;-9731.169922;250;0.218770387 550326.8105;7819519.238;-9540.179688;250;0.127804534 550264.3105;7819406.617;-9525.290039;250;0.467579141 552264.3105;7821846.719;-9523.240234;250;0.031016256 549064.3105;7820232.5;-9721.480469;250;0.437745289 550339.3105;7821415.008;-9734.650391;250;0.35285458 550376.8105;7821227.309;-9707.740234;250;0.896639964 550139.3105;7819556.777;-9581.5;250;0.484387807 549426.8105;7821659.02;-9722.639648;250;0.823837507 551664.3105;7817041.598;-9567.070313;250;0.391165745 549976.8105;7820551.59;-9605.650391;250;0.211205977 550851.8105;7821114.691;-9698.540039;250;0.324709047 550164.3105;7821771.641;-9745.889648;250;0.729295196 549689.3105;7818205.34;-9685.179688;250;0.137282075 550076.8105;7819650.629;-9594.709961;250;0.375699784 550326.8105;7819143.84;-9507.820313;250;0.046161076 550676.8105;7821246.078;-9702.400391;250;0.311765631 552414.3105;7821809.18;-9519.259766;250;0.427294333 549701.8105;7821827.949;-9735.139648;250;0.968566209 550851.8105;7821583.941;-9716.889648;250;0.263456424 550026.8105;7819125.07;-9601.080078;250;0.26128211 550039.3105;7820401.43;-9541.820313;250;0.184518239 550326.8105;7821339.93;-9727.570313;250;0.791861424 549901.8105;7819857.098;-9592.860352;250;0.959832198 548901.8105;7818468.117;-9738.679688;250;0.216579415 551601.8105;7821058.379;-9668.94043;250;0.248294867 550864.3105;7820908.219;-9637.80957;250;0.360043716 551689.3105;7817079.141;-9562.30957;250;0.716163708 550401.8105;7817773.629;-9661.120117;250;0.847879076 550264.3105;7816722.508;-9605.860352;250;0.017949767 551176.8105;7821734.102;-9687.900391;250;0.206121132 550889.3105;7817829.938;-9592.669922;250;0.109664349 550326.8105;7820589.129;-9500.820313;250;0.940341712 550689.3105;7820532.82;-9474.230469;250;0.0494729 552264.3105;7816910.207;-9492.610352;250;0.21943801 550651.8105;7820101.109;-9467.269531;250;0.48140348 550951.8105;7821583.941;-9701.490234;250;0.836786266 551564.3105;7818130.258;-9543.69043;250;0.831832985 550251.8105;7819031.219;-9574.349609;250;0.150888329 550239.3105;7818787.207;-9645.44043;250;0.998057341 549376.8105;7821583.941;-9727.099609;250;0.243931392 549401.8105;7821771.641;-9737.290039;250;0.929648292 549301.8105;7821358.699;-9749.900391;250;0.573967179 550401.8105;7820532.82;-9427.980469;250;0.774010778 550064.3105;7816778.816;-9616.980469;250;0.963260869 550726.8105;7820401.43;-9463.160156;250;0.117201519 551126.8105;7818280.418;-9545.05957;250;0.895180674 551364.3105;7816910.207;-9583.730469;250;0.394113051 549876.8105;7820307.578;-9603.450195;250;0.25834323 550401.8105;7817041.598;-9569.839844;250;0.892253622 550476.8105;7820926.988;-9619.799805;250;0.838198906 549814.3105;7821565.168;-9742.910156;250;0.113738048 551551.8105;7821734.102;-9621.459961;250;0.039351231 549951.8105;7816778.816;-9628.549805;250;0.688435736 550626.8105;7818843.52;-9575.299805;250;0.456625594 552351.8105;7817867.48;-9554.419922;250;0.211988166 551189.3105;7821114.691;-9703.009766;250;0.294396247 550214.3105;7821527.629;-9745.099609;250;0.567512709 549201.8105;7817510.848;-9493.230469;250;0.224539143 550826.8105;7820026.027;-9526.05957;250;0.854122434 550376.8105;7821527.629;-9735.929688;250;0.419211705 550626.8105;7817698.547;-9616.5;250;0.904266705 550414.3105;7819725.711;-9544.259766;250;0.448627511 550039.3105;7821208.539;-9739.610352;250;0.450803825 549076.8105;7821715.328;-9754.429688;250;0.75059161 551851.8105;7817661.008;-9567.879883;250;0.53392449 550426.8105;7816666.199;-9626.360352;250;0.909499419 550389.3105;7817998.871;-9666.370117;250;0.363870397 551889.3105;7821546.398;-9626.410156;250;0.913798374 549901.8105;7821471.32;-9750.820313;250;0.548798534 551876.8105;7817942.559;-9561.080078;250;0.591085549 549976.8105;7818974.91;-9605.290039;250;0.120905699 550176.8105;7816760.051;-9591.5;250;0.508224532 550601.8105;7817041.598;-9610.719727;250;0.144360641 550014.3105;7821546.398;-9743.160156;250;0.008986935 550001.8105;7821095.918;-9728.530273;250;0.620833284 549251.8105;7821152.23;-9748.480469;250;0.370949549 550814.3105;7816853.898;-9640.5;250;0.856463818 551064.3105;7817867.48;-9578.969727;250;0.479597802 549001.8105;7821302.391;-9769.459961;250;0.770421631 550489.3105;7817341.918;-9628.320313;250;0.685591895 550214.3105;7819369.078;-9538.450195;250;0.468007515 549739.3105;7817398.227;-9622.870117;250;0.831723415 550414.3105;7817154.219;-9585.160156;250;0.704078111 548989.3105;7818449.348;-9734.820313;250;0.818922664 552239.3105;7817698.547;-9548.110352;250;0.050653888 550076.8105;7820270.039;-9480.669922;250;0.686766241 551089.3105;7817736.09;-9575.080078;250;0.554262074 552076.8105;7816985.289;-9541.910156;250;0.766073216 551189.3105;7817529.617;-9582.419922;250;0.403170954 550851.8105;7820532.82;-9533.290039;250;0.319348942 550789.3105;7817811.168;-9599.110352;250;0.107079864 551189.3105;7817341.918;-9587.089844;250;0.203344043 548951.8105;7819181.379;-9729.129883;250;0.495029732 551964.3105;7821565.168;-9613.330078;250;0.516161206 551726.8105;7821171;-9674.169922;250;0.471784768 550764.3105;7817529.617;-9598.820313;250;0.555458729 550701.8105;7817473.309;-9616.469727;250;0.583303187 550464.3105;7820157.418;-9406.969727;250;0.496514231 549076.8105;7821508.859;-9759.620117;250;0.325250577 551951.8105;7821734.102;-9545.389648;250;0.547764092 550239.3105;7821114.691;-9693.669922;250;0.691673573 552201.8105;7821583.941;-9592.120117;250;0.664833819 549589.3105;7817022.828;-9623.700195;250;0.176099443 551501.8105;7818017.637;-9561.44043;250;0.789927024 550201.8105;7816816.359;-9579;250;0.085241908 550026.8105;7821827.949;-9745.240234;250;0.169735431 552226.8105;7821246.078;-9622.410156;250;0.171081732 551439.3105;7817379.461;-9591.219727;250;0.849410171 551151.8105;7816741.277;-9591.900391;250;0.767561707 551014.3105;7817886.25;-9584.429688;250;0.668947467 552276.8105;7816741.277;-9492.280273;250;0.552861171 549589.3105;7819087.527;-9635.080078;250;0.256547796 551826.8105;7821415.008;-9663.110352;250;0.528090507 551951.8105;7821602.711;-9600.700195;250;0.119407073 551114.3105;7821583.941;-9688.790039;250;0.883199398 549326.8105;7821602.711;-9742.549805;250;0.562546933 549714.3105;7817285.609;-9624.769531;250;0.685736059 550439.3105;7816741.277;-9621.679688;250;0.573624383 549401.8105;7821527.629;-9729.879883;250;0.247054389 550776.8105;7820701.75;-9542.700195;250;0.936020213 549401.8105;7818374.27;-9675.360352;250;0.891108829 549726.8105;7821302.391;-9747.259766;250;0.565216663 550951.8105;7817942.559;-9592.019531;250;0.87728334 551001.8105;7818130.258;-9604.44043;250;0.060922085 552114.3105;7821621.48;-9585.900391;250;0.762731013 549051.8105;7816872.668;-9675.509766;250;0.060716648 548989.3105;7821546.398;-9751.349609;250;0.932521314 550876.8105;7821396.238;-9714.629883;250;0.425893542 550926.8105;7821358.699;-9709.540039;250;0.289466197 548939.3105;7817097.91;-9651.610352;250;0.796620193 551914.3105;7816741.277;-9555.620117;250;0.51061049 551451.8105;7816703.738;-9585;250;0.040726691 550726.8105;7820138.648;-9481.740234;250;0.800059949 549939.3105;7818017.637;-9710.820313;250;0.921391693 550139.3105;7820176.188;-9433.080078;250;0.901777787 550151.8105;7820476.508;-9511.540039;250;0.710100672 549801.8105;7817923.789;-9701.259766;250;0.464435439 549651.8105;7821771.641;-9736.889648;250;0.848183984 551501.8105;7817172.988;-9573.929688;250;0.96405673 552326.8105;7817811.168;-9544.849609;250;0.940166438 552151.8105;7817191.758;-9512.650391;250;0.809903121 549664.3105;7821246.078;-9743.599609;250;0.523788757 548889.3105;7819256.457;-9729.389648;250;0.692745994 551814.3105;7817154.219;-9555.099609;250;0.309192682 550376.8105;7818149.027;-9681.94043;250;0.071767667 552214.3105;7816666.199;-9516.490234;250;0.640130839 551839.3105;7817529.617;-9561.990234;250;0.667918829 548901.8105;7818299.188;-9733.730469;250;0.154320353 552389.3105;7821752.867;-9530.209961;250;0.598158078 550701.8105;7820645.438;-9504.599609;250;0.673958545 550389.3105;7818730.898;-9630.179688;250;0.686386735 549601.8105;7819800.789;-9673.179688;250;0.003730955 549464.3105;7816666.199;-9655.080078;250;0.278079795 550151.8105;7821827.949;-9745.780273;250;0.186904968 549501.8105;7821583.941;-9730.410156;250;0.900397542 551539.3105;7821321.16;-9667.950195;250;0.879892962 549051.8105;7818449.348;-9726.370117;250;0.752850681 549664.3105;7820851.91;-9738.219727;250;0.118634111 549126.8105;7821471.32;-9766.55957;250;0.131447008 550826.8105;7820870.68;-9613.870117;250;0.650859864 550626.8105;7819387.852;-9473.480469;250;0.0248575 551064.3105;7818768.438;-9613.769531;250;0.454092975 550464.3105;7818543.199;-9675.629883;250;0.925145499 549114.3105;7818355.5;-9715.660156;250;0.868555741 550439.3105;7821264.848;-9723.799805;250;0.218124746 548976.8105;7820138.648;-9723.089844;250;0.660203612 549839.3105;7819800.789;-9627.320313;250;0.562913301 552364.3105;7821415.008;-9597.009766;250;0.546384947 552314.3105;7817341.918;-9472.370117;250;0.789261157 551751.8105;7817116.68;-9557.669922;250;0.278240731 552226.8105;7821508.859;-9596.679688;250;0.987235954 548989.3105;7820889.449;-9766.070313;250;0.236734636 548951.8105;7821114.691;-9771.30957;250;0.931076696 549064.3105;7821621.48;-9754.639648;250;0.297822821 551526.8105;7821396.238;-9671.5;250;0.259829679 551001.8105;7821396.238;-9702.669922;250;0.214349528 550601.8105;7819444.16;-9492.69043;250;0.17917783 551551.8105;7818092.719;-9551.580078;250;0.453977875 550326.8105;7821827.949;-9733.769531;250;0.108774381 551189.3105;7821171;-9700.799805;250;0.913764346 549264.3105;7816666.199;-9686.660156;250;0.126664771 550114.3105;7819049.988;-9597.160156;250;0.795342383 550689.3105;7817285.609;-9619.009766;250;0.505144374 549776.8105;7817172.988;-9636.639648;250;0.156658864 549489.3105;7816853.898;-9662.709961;250;0.276923292 551939.3105;7821377.469;-9659.360352;250;0.556453322 550214.3105;7821696.559;-9745.469727;250;0.805895921 551276.8105;7817341.918;-9587.049805;250;0.624624457 550989.3105;7821171;-9708.730469;250;0.77911005 551076.8105;7818618.281;-9599.150391;250;0.101769084 552226.8105;7817191.758;-9487.849609;250;0.765892662 549939.3105;7818674.59;-9593.80957;250;0.498605708 551326.8105;7821790.41;-9647.860352;250;0.737833381 550714.3105;7819706.938;-9543.929688;250;0.100968256 549301.8105;7821752.867;-9756.150391;250;0.343446068 549626.8105;7819218.918;-9642.25;250;0.319632149 552151.8105;7821208.539;-9641.120117;250;0.889379189 552064.3105;7817435.77;-9542.94043;250;0.72632032 549514.3105;7821227.309;-9746.629883;250;0.37874729 549526.8105;7820232.5;-9702.889648;250;0.359037173 550701.8105;7821358.699;-9719.290039;250;0.270414947 550826.8105;7821415.008;-9718.790039;250;0.931100112 552314.3105;7816928.98;-9472.55957;250;0.166370264 551289.3105;7817773.629;-9568.950195;250;0.907297505 551214.3105;7818205.34;-9523.040039;250;0.976904964 550114.3105;7821752.867;-9746.009766;250;0.801729548 551714.3105;7821433.781;-9665.709961;250;0.087582456 550939.3105;7818486.891;-9622.05957;250;0.946010587 551489.3105;7816835.129;-9582.759766;250;0.592362363 550476.8105;7820720.52;-9537.490234;250;0.114202746 552426.8105;7821321.16;-9600.419922;250;0.114313538 551951.8105;7821659.02;-9578.589844;250;0.155330692 551051.8105;7818167.797;-9587.5;250;0.708195488 551714.3105;7817548.387;-9561.589844;250;0.715303231 550289.3105;7819538.008;-9552.490234;250;0.537686199 551876.8105;7816835.129;-9567.30957;250;0.816509639 550801.8105;7820964.531;-9639.410156;250;0.862332517 552214.3105;7821208.539;-9627.299805;250;0.36212767 550739.3105;7819237.688;-9471.339844;250;0.702299288 551914.3105;7817379.461;-9560.929688;250;0.410068172 550501.8105;7817417;-9640.799805;250;0.519780393 549426.8105;7819425.391;-9706.169922;250;0.753660809 551939.3105;7817191.758;-9546.19043;250;0.544308778 550676.8105;7819162.609;-9468.730469;250;0.383002877 552289.3105;7821471.32;-9591.480469;250;0.395955902 550326.8105;7818862.289;-9600.019531;250;0.106661526 550326.8105;7819800.789;-9523.820313;250;0.657027838 552389.3105;7821734.102;-9533.870117;250;0.283469051 551414.3105;7817097.91;-9577.870117;250;0.176464047 550276.8105;7819369.078;-9516.05957;250;0.985399594 550814.3105;7816778.816;-9644.950195;250;0.988129969 550051.8105;7821640.25;-9742.730469;250;0.599381951 549139.3105;7821771.641;-9758.099609;250;0.592353259 552126.8105;7817754.859;-9566.540039;250;0.271761559 552289.3105;7821508.859;-9588.490234;250;0.166014514 549564.3105;7821602.711;-9738.080078;250;0.433416174 550389.3105;7818862.289;-9580.69043;250;0.477989029 550389.3105;7818205.34;-9681.650391;250;0.826715926 549139.3105;7817811.168;-9644.870117;250;0.613198634 552339.3105;7816853.898;-9459.05957;250;0.555033672 550051.8105;7820307.578;-9507.179688;250;0.561621585 552389.3105;7821715.328;-9537.570313;250;0.541147098 551789.3105;7821189.77;-9674.969727;250;0.734190204 549864.3105;7818205.34;-9694.070313;250;0.310896838 550389.3105;7818524.43;-9673.280273;250;0.669354123 551739.3105;7817323.148;-9563.80957;250;0.372272553 551539.3105;7817079.141;-9570.450195;250;0.494785153 550251.8105;7820251.27;-9400.650391;250;0.136961149 550814.3105;7818449.348;-9648.660156;250;0.216563542 552114.3105;7821827.949;-9502.570313;250;0.088927086 550676.8105;7818918.598;-9546.580078;250;0.40552976 550039.3105;7818468.117;-9658.200195;250;0.331348787 552164.3105;7817529.617;-9545.709961;250;0.086012326 551739.3105;7818073.949;-9549.480469;250;0.384871891 550064.3105;7821490.09;-9749.540039;250;0.543366562 549489.3105;7821677.789;-9728.629883;250;0.162208582 549701.8105;7818299.188;-9659.530273;250;0.033600667 552376.8105;7816835.129;-9439.980469;250;0.10515129 552214.3105;7817022.828;-9506.05957;250;0.13090311 552214.3105;7816703.738;-9513.919922;250;0.491026072 550764.3105;7817980.098;-9615.860352;250;0.725381171 550051.8105;7818561.969;-9643.209961;250;0.302595127 552314.3105;7817435.77;-9503.709961;250;0.240844778 550689.3105;7820251.27;-9454.530273;250;0.799106024 549839.3105;7820082.34;-9572.469727;250;0.910716864 549739.3105;7818186.57;-9689.570313;250;0.574420948 551951.8105;7817510.848;-9561.509766;250;0.955978671 550239.3105;7818336.73;-9693.209961;250;0.046671132 550289.3105;7818242.879;-9694.839844;250;0.778319414 551539.3105;7817360.688;-9581.209961;250;0.949322688 550989.3105;7821659.02;-9699.519531;250;0.275412325 550339.3105;7820532.82;-9466.269531;250;0.572080967 550901.8105;7818618.281;-9646.55957;250;0.691106783 550901.8105;7819932.18;-9553.969727;250;0.260661843 551076.8105;7821659.02;-9694.349609;250;0.750548488 551376.8105;7816966.52;-9579.650391;250;0.613124995 551151.8105;7821039.609;-9702.459961;250;0.562386492 550926.8105;7820420.199;-9546.070313;250;0.842701464 549826.8105;7820176.188;-9593.030273;250;0.228809602 549451.8105;7821809.18;-9731.919922;250;0.946496167 550901.8105;7817417;-9597.269531;250;0.738603704 551001.8105;7818599.508;-9623.589844;250;0.340618583 551001.8105;7818768.438;-9623.55957;250;0.754698718 550426.8105;7820983.297;-9639.120117;250;0.870918241 549926.8105;7818430.578;-9637.75;250;0.785844089 549951.8105;7819012.449;-9599.650391;250;0.702767978 550789.3105;7820908.219;-9616.980469;250;0.720709937 550476.8105;7817135.449;-9590.459961;250;0.752608466 548876.8105;7820307.578;-9724.620117;250;0.560419316 551776.8105;7816760.051;-9569.570313;250;0.637835379 551064.3105;7821152.23;-9705.120117;250;0.947777185 550114.3105;7821415.008;-9754.519531;250;0.528667907 550901.8105;7820701.75;-9592.480469;250;0.510561846 550301.8105;7819631.859;-9565.25;250;0.848867771 549351.8105;7821302.391;-9748.94043;250;0.683506825 552189.3105;7817736.09;-9557.490234;250;0.392813954 548889.3105;7818073.949;-9715.55957;250;0.002607852 550676.8105;7819519.238;-9510.19043;250;0.593051412 550376.8105;7818599.508;-9663.400391;250;0.165824725 549689.3105;7820288.809;-9667.019531;250;0.892613638 550651.8105;7816816.359;-9642.030273;250;0.76808157 549851.8105;7821227.309;-9748.44043;250;0.113294821 549189.3105;7818468.117;-9696.44043;250;0.006659474 549864.3105;7819988.488;-9566.400391;250;0.04875374 552239.3105;7821302.391;-9615.589844;250;0.876179216 552051.8105;7817905.02;-9567.049805;250;0.322687759 550376.8105;7819556.777;-9544.379883;250;0.025420433 550914.3105;7818224.109;-9618.080078;250;0.552224561 550501.8105;7819556.777;-9520.620117;250;0.571583549 549976.8105;7820420.199;-9573.639648;250;0.945788201 550151.8105;7818411.809;-9683.110352;250;0.18176786 551914.3105;7817604.699;-9565.019531;250;0.74704322 549251.8105;7821659.02;-9762.400391;250;0.642603563 551714.3105;7817792.398;-9570.070313;250;0.345659755 549914.3105;7821734.102;-9742.650391;250;0.968333975 550764.3105;7818674.59;-9640;250;0.097682827 548901.8105;7817041.598;-9676.099609;250;0.967153897 550814.3105;7819218.918;-9503.469727;250;0.308475753 550626.8105;7819950.949;-9499.730469;250;0.716095126 552226.8105;7817229.301;-9484.900391;250;0.274124901 549476.8105;7821715.328;-9729.709961;250;0.366407993 550639.3105;7820194.961;-9447.980469;250;0.689257586 550751.8105;7818449.348;-9665.110352;250;0.171288719 551039.3105;7820945.758;-9683.169922;250;0.916781526 552351.8105;7817285.609;-9442.459961;250;0.812259659 550114.3105;7818186.57;-9708.049805;250;0.219078385 549851.8105;7819406.617;-9616.910156;250;0.964857789 552139.3105;7817304.379;-9511.330078;250;0.845955173 551551.8105;7817604.699;-9578.790039;250;0.856004665 549064.3105;7821321.16;-9766.969727;250;0.55469314 551576.8105;7817435.77;-9572.030273;250;0.519510675 551801.8105;7821152.23;-9674.589844;250;0.076868795 551726.8105;7816985.289;-9571.200195;250;0.957420722 549039.3105;7817886.25;-9672.589844;250;0.013220366 551964.3105;7821471.32;-9640.830078;250;0.388320992 550276.8105;7819444.16;-9529.69043;250;0.388654032 550164.3105;7820063.57;-9453.459961;250;0.399012681 551164.3105;7821602.711;-9681.870117;250;0.892036874 551276.8105;7818411.809;-9523.719727;250;0.940642162 548964.3105;7819143.84;-9730.540039;250;0.189901485 550426.8105;7819688.168;-9548.480469;250;0.150828282 552289.3105;7816778.816;-9484.230469;250;0.639813975 550339.3105;7821640.25;-9740.519531;250;0.992844538 551651.8105;7817004.059;-9569.389648;250;0.626937215 551064.3105;7817004.059;-9599.049805;250;0.074788484 548889.3105;7821527.629;-9762.25;250;0.371370917 552051.8105;7817679.777;-9562.969727;250;0.49275574 550451.8105;7816816.359;-9615.950195;250;0.622383999 550251.8105;7818824.75;-9634.540039;250;0.187620765 550189.3105;7820194.961;-9416.070313;250;0.109404908 551251.8105;7821171;-9699.490234;250;0.432584123 549076.8105;7820063.57;-9722.860352;250;0.77054651 552014.3105;7817097.91;-9546.360352;250;0.978334846 550989.3105;7818505.66;-9611.820313;250;0.28859329 550339.3105;7818224.109;-9688.780273;250;0.157301167 550864.3105;7821471.32;-9713.790039;250;0.756071075 552389.3105;7821771.641;-9526.799805;250;0.481836206 550989.3105;7819087.527;-9585.879883;250;0.000176639 551264.3105;7818130.258;-9522.990234;250;0.686677284 551989.3105;7821377.469;-9652.929688;250;0.404838965 551051.8105;7816835.129;-9612.070313;250;0.146370188 551789.3105;7817867.48;-9564.870117;250;0.436416261 551701.8105;7816722.508;-9569.740234;250;0.372975655 549976.8105;7821264.848;-9749.709961;250;0.533673497 550164.3105;7818655.82;-9659.790039;250;0.308624287 551439.3105;7817191.758;-9576.299805;250;0.672521986 551626.8105;7817191.758;-9560.94043;250;0.911548476 550701.8105;7816891.438;-9634.660156;250;0.211148502 551264.3105;7816778.816;-9590.570313;250;0.96967867 552076.8105;7817135.449;-9536.070313;250;0.138950686 550776.8105;7817191.758;-9620.080078;250;0.041849368 551501.8105;7817811.168;-9582.700195;250;0.811932905 550314.3105;7820026.027;-9432.849609;250;0.151028098 549726.8105;7819763.25;-9660.169922;250;0.286540442 551601.8105;7817529.617;-9570.290039;250;0.61921962 550776.8105;7819988.488;-9516.75;250;0.456089394 550489.3105;7816872.668;-9614.759766;250;0.774049133 551751.8105;7817079.141;-9561.660156;250;0.150345613 550389.3105;7821471.32;-9732.150391;250;0.50106456 550289.3105;7818073.949;-9687.959961;250;0.462838848 550839.3105;7817848.711;-9596.379883;250;0.689887713 550239.3105;7819988.488;-9451.610352;250;0.974865213 549889.3105;7821002.07;-9728.290039;250;0.916266512 552151.8105;7817097.91;-9524.410156;250;0.881276374 550664.3105;7819669.398;-9539.280273;250;0.485197172 550089.3105;7820044.801;-9479.549805;250;0.043042902 550451.8105;7819838.328;-9511.929688;250;0.113024611 549564.3105;7821827.949;-9736.660156;250;0.713460877 550939.3105;7818993.68;-9584.919922;250;0.098874136 550951.8105;7821546.398;-9701.629883;250;0.04655234 550226.8105;7817961.328;-9693.669922;250;0.741148397 551139.3105;7816928.98;-9587.360352;250;0.296429353 549926.8105;7818561.969;-9605.259766;250;0.339995499 549951.8105;7821565.168;-9743.469727;250;0.348371237 549439.3105;7821264.848;-9748.179688;250;0.688468951 548889.3105;7820720.52;-9765.269531;250;0.087585647 551651.8105;7817285.609;-9566.480469;250;0.345994045 551776.8105;7816872.668;-9572.5;250;0.866743588 550939.3105;7818937.367;-9595.580078;250;0.400915513 550226.8105;7818186.57;-9699.69043;250;0.964311065 550764.3105;7820457.738;-9486.469727;250;0.083709462 550701.8105;7820213.73;-9462.320313;250;0.300777898 551801.8105;7816835.129;-9572.099609;250;0.40975978 550901.8105;7818111.488;-9615.55957;250;0.101730066 552339.3105;7821696.559;-9545.480469;250;0.930077679 551526.8105;7817266.84;-9576.900391;250;0.337523749 549751.8105;7818561.969;-9576.009766;250;0.211017827 548964.3105;7818167.797;-9718.740234;250;0.929510041 550764.3105;7817004.059;-9622.669922;250;0.399226453 552101.8105;7817548.387;-9550.700195;250;0.884574617 550489.3105;7819275.23;-9434.910156;250;0.603844112 549989.3105;7819969.719;-9526.650391;250;0.127190284 550739.3105;7818918.598;-9555.900391;250;0.086703335 552076.8105;7821809.18;-9506.339844;250;0.848801504 551501.8105;7817417;-9587.05957;250;0.632393753 549239.3105;7821809.18;-9763.860352;250;0.931336223 551751.8105;7817454.539;-9562.769531;250;0.985288894 550901.8105;7820776.828;-9614.610352;250;0.212107051 550789.3105;7819162.609;-9508.080078;250;0.010855906 550726.8105;7816835.129;-9641.610352;250;0.617364996 550776.8105;7819049.988;-9524.209961;250;0.84173651 551589.3105;7817248.07;-9568.860352;250;0.014255325 550039.3105;7816910.207;-9581.589844;250;0.864648636 549689.3105;7821583.941;-9750.55957;250;0.257002187 550989.3105;7818017.637;-9599.629883;250;0.314240355 550476.8105;7817942.559;-9646.209961;250;0.745858218 551614.3105;7817341.918;-9570.639648;250;0.711941252 551489.3105;7818130.258;-9542.389648;250;0.340291267 550964.3105;7817661.008;-9581.650391;250;0.143138123 550614.3105;7820814.371;-9579.480469;250;0.951124504 552439.3105;7817285.609;-9409.280273;250;0.258776863 549051.8105;7821189.77;-9765.889648;250;0.256446104 551551.8105;7818036.41;-9561.370117;250;0.892720988 550351.8105;7819387.852;-9492.570313;250;0.471723198 550351.8105;7821565.168;-9738.030273;250;0.792168406 550489.3105;7819913.41;-9488.290039;250;0.231386158 550701.8105;7821433.781;-9726.540039;250;0.877100466 551039.3105;7818205.34;-9587.089844;250;0.922863783 550314.3105;7818618.281;-9658.620117;250;0.246718767 550614.3105;7817116.68;-9608.030273;250;0.528705838 551151.8105;7821771.641;-9692.660156;250;0.05126488 550139.3105;7821246.078;-9736.009766;250;0.451932927 550389.3105;7820476.508;-9402.110352;250;0.695585145 551076.8105;7818355.5;-9557.290039;250;0.762604628 550864.3105;7820288.809;-9522.30957;250;0.844849785 551364.3105;7817172.988;-9572.69043;250;0.701338811 551876.8105;7817097.91;-9553.370117;250;0.952699704 550426.8105;7819275.23;-9454.80957;250;0.118894333 549789.3105;7821790.41;-9741.259766;250;0.440177305 551726.8105;7816910.207;-9572.019531;250;0.973382748 550401.8105;7819819.559;-9515.580078;250;0.274529247 551014.3105;7816722.508;-9618.030273;250;0.02350999 549951.8105;7816816.359;-9615.639648;250;0.164894257 550839.3105;7817998.871;-9607.639648;250;0.401415999 550351.8105;7819218.918;-9485.089844;250;0.292037667 552189.3105;7821546.398;-9597.910156;250;0.159427672 550414.3105;7816760.051;-9614.389648;250;0.39246736 550701.8105;7817886.25;-9610.519531;250;0.423740509 550739.3105;7816741.277;-9648.169922;250;0.237591511 550839.3105;7819988.488;-9532.790039;250;0.859941866 551401.8105;7817060.367;-9577.230469;250;0.444973754 550789.3105;7818355.5;-9653.070313;250;0.609465612 550064.3105;7821602.711;-9743.339844;250;0.372566613 551414.3105;7816853.898;-9587.580078;250;0.146812754 551614.3105;7817604.699;-9576.299805;250;0.75169293 550689.3105;7820851.91;-9586.709961;250;0.047440835 552001.8105;7821452.551;-9638.290039;250;0.57722286 552051.8105;7821715.328;-9548.610352;250;0.362220611 550301.8105;7818449.348;-9679.370117;250;0.540448083 551214.3105;7818411.809;-9528.349609;250;0.722393284 549551.8105;7821640.25;-9737.030273;250;0.458414688 551526.8105;7817022.828;-9574.589844;250;0.657862305 548889.3105;7817116.68;-9657.259766;250;0.252049231 548889.3105;7819218.918;-9729.419922;250;0.069717852 551726.8105;7817022.828;-9568.700195;250;0.86902467 550051.8105;7818524.43;-9648.120117;250;0.079712577 552176.8105;7821846.719;-9508.799805;250;0.068537101 550389.3105;7818693.359;-9642.740234;250;0.459950536 552426.8105;7816816.359;-9419.959961;250;0.163411008 549551.8105;7821696.559;-9737.759766;250;0.03941042 550276.8105;7821527.629;-9742.30957;250;0.687423046 552151.8105;7816666.199;-9525.870117;250;0.864629333 552264.3105;7821602.711;-9581.620117;250;0.853638122 550389.3105;7819143.84;-9484.55957;250;0.225275152 551489.3105;7817135.449;-9576.019531;250;0.559978243 549289.3105;7821302.391;-9750.660156;250;0.835211903 551914.3105;7821321.16;-9667.379883;250;0.658757301 550801.8105;7821377.469;-9720.110352;250;0.398407789 549526.8105;7821734.102;-9735.519531;250;0.232785765 551389.3105;7817004.059;-9577.969727;250;0.274592311 551739.3105;7817304.379;-9562.629883;250;0.239045606 550626.8105;7820701.75;-9525.269531;250;0.40595215 552389.3105;7817266.84;-9421.830078;250;0.01936911 549589.3105;7821264.848;-9748.05957;250;0.570059381 551239.3105;7821433.781;-9684.990234;250;0.281222608 550776.8105;7817942.559;-9612.110352;250;0.178653938 551339.3105;7818149.027;-9520.570313;250;0.850938496 549939.3105;7821527.629;-9747.030273;250;0.285799734 550376.8105;7819894.641;-9481.570313;250;0.966498404 550089.3105;7819125.07;-9589.879883;250;0.857505149 549014.3105;7821508.859;-9752.830078;250;0.411322908 548876.8105;7821583.941;-9765.519531;250;0.871878393 550676.8105;7820607.898;-9488.570313;250;0.160360871 550876.8105;7818993.68;-9565.320313;250;0.651347037 550664.3105;7816741.277;-9649.450195;250;0.257310605 550239.3105;7818693.359;-9653.120117;250;0.377050083 551026.8105;7821302.391;-9707.269531;250;0.833596629 550026.8105;7820232.5;-9499.94043;250;0.525144677 550326.8105;7818956.141;-9570.530273;250;0.404660615 550751.8105;7818073.949;-9620.280273;250;0.468811177 550976.8105;7821827.949;-9707.110352;250;0.323696898 549089.3105;7817905.02;-9674.209961;250;0.612845562 551876.8105;7817154.219;-9551.519531;250;0.833925291 550801.8105;7818862.289;-9588.769531;250;0.201217858 550826.8105;7818712.129;-9639.169922;250;0.014486999 550664.3105;7818787.207;-9602.30957;250;0.82285168 552351.8105;7816703.738;-9475.370117;250;0.678456008 550101.8105;7820401.43;-9511.419922;250;0.180566685 549839.3105;7820138.648;-9579.299805;250;0.660391901 549389.3105;7821302.391;-9749.959961;250;0.200064588 552001.8105;7817923.789;-9565.230469;250;0.5225157 550001.8105;7819631.859;-9608.790039;250;0.598384226 551926.8105;7821302.391;-9667.139648;250;0.963287506 551839.3105;7817998.871;-9556.55957;250;0.918670378 551464.3105;7817041.598;-9578.509766;250;0.708355349 550314.3105;7821227.309;-9708.540039;250;0.284034159 551826.8105;7817754.859;-9569.379883;250;0.952900681 549189.3105;7821827.949;-9762.099609;250;0.429521664 550064.3105;7819950.949;-9516.459961;250;0.608688183 550139.3105;7816666.199;-9621.55957;250;0.780826916 550764.3105;7821171;-9701.040039;250;0.836155582 549876.8105;7818599.508;-9581.990234;250;0.238659977 550151.8105;7821490.09;-9747.360352;250;0.531356717 552339.3105;7817116.68;-9444.830078;250;0.92432809 552189.3105;7816910.207;-9514.660156;250;0.61173987 550289.3105;7820739.289;-9569.5;250;0.057200105 550026.8105;7819143.84;-9599.349609;250;0.805925904 549951.8105;7819125.07;-9607.110352;250;0.075975429 551214.3105;7821602.711;-9673.929688;250;0.714161376 549589.3105;7821508.859;-9743.879883;250;0.358868377 550426.8105;7817829.938;-9655.620117;250;0.60684288 550051.8105;7819988.488;-9505.129883;250;0.917474884 550114.3105;7821490.09;-9749.620117;250;0.615372325 551751.8105;7817172.988;-9555.339844;250;0.434757147 552439.3105;7817060.367;-9400.870117;250;0.384761549 549151.8105;7818092.719;-9700.44043;250;0.111313214 549239.3105;7819406.617;-9734.389648;250;0.140988084 550676.8105;7816853.898;-9638.669922;250;0.478094771 551064.3105;7821752.867;-9699.480469;250;0.458347685 549026.8105;7817679.777;-9606.459961;250;0.277013692 550451.8105;7819575.551;-9535.669922;250;0.178462526 550689.3105;7819782.02;-9538.980469;250;0.604966106 550714.3105;7819913.41;-9524.200195;250;0.226327667 550926.8105;7819087.527;-9569.240234;250;0.625690133 550764.3105;7820870.68;-9600.040039;250;0.807891326 548951.8105;7818036.41;-9704.889648;250;0.233155359 550014.3105;7819556.777;-9604.419922;250;0.145322093 552439.3105;7817417;-9454.160156;250;0.27692103 550189.3105;7818355.5;-9693.129883;250;0.776184325 550439.3105;7818167.797;-9672.870117;250;0.173845654 549601.8105;7821696.559;-9741.19043;250;0.380295804 550726.8105;7819162.609;-9485.69043;250;0.843821504 550476.8105;7821433.781;-9736.299805;250;0.162296049 549864.3105;7818261.648;-9682.80957;250;0.847528996 548889.3105;7820758.059;-9765.839844;250;0.94461045 550064.3105;7818637.047;-9643.980469;250;0.167302252 550251.8105;7819819.559;-9516.679688;250;0.009883524 549751.8105;7819369.078;-9614.820313;250;0.983805874 549151.8105;7821827.949;-9756.759766;250;0.213911126 550451.8105;7819049.988;-9503.549805;250;0.691494119 552076.8105;7817116.68;-9538.759766;250;0.020709076 551476.8105;7817323.148;-9586.490234;250;0.178083409 552451.8105;7817642.238;-9491.570313;250;0.149184364 549564.3105;7820119.879;-9684.639648;250;0.621361985 550739.3105;7819481.699;-9500.240234;250;0.626551738 549089.3105;7819481.699;-9744.330078;250;0.367074612 549814.3105;7818524.43;-9592.830078;250;0.845107859 549276.8105;7821827.949;-9758.009766;250;0.405828456 550201.8105;7819763.25;-9545.669922;250;0.549783777 550776.8105;7819106.301;-9515.549805;250;0.034925999 552139.3105;7821415.008;-9625;250;0.074776769 552364.3105;7816966.52;-9445.69043;250;0.017471496 551939.3105;7817285.609;-9551.320313;250;0.827958107 551851.8105;7821264.848;-9673.650391;250;0.599144848 550251.8105;7820795.598;-9589.379883;250;0.866702524 551051.8105;7821827.949;-9703.450195;250;0.149343052 549264.3105;7817417;-9440.450195;250;0.17321081 550114.3105;7821546.398;-9745.959961;250;0.491613432 550489.3105;7817867.48;-9640.339844;250;0.243262119 551626.8105;7816872.668;-9568.980469;250;0.893704588 549164.3105;7819462.93;-9744.320313;250;0.842531147 551114.3105;7820983.297;-9694.150391;250;0.136952813 550876.8105;7818899.828;-9592.950195;250;0.048169892 549901.8105;7819819.559;-9605.889648;250;0.157697884 552339.3105;7821565.168;-9576.469727;250;0.917006146 551839.3105;7821208.539;-9674.30957;250;0.140562066 550064.3105;7821302.391;-9749.769531;250;0.113931182 550289.3105;7821377.469;-9736.349609;250;0.57046993 550926.8105;7821283.617;-9709.740234;250;0.317321165 551014.3105;7821508.859;-9698.879883;250;0.457984266 550264.3105;7817886.25;-9689.44043;250;0.776708943 550851.8105;7818167.797;-9626.889648;250;0.707188483 549376.8105;7821659.02;-9731.040039;250;0.840376972 549239.3105;7818017.637;-9688.94043;250;0.469139714 550101.8105;7819631.859;-9590.860352;250;0.810152849 550664.3105;7821302.391;-9714.580078;250;0.76556656 552076.8105;7816853.898;-9544.450195;250;0.621177988 550389.3105;7818805.98;-9602.089844;250;0.142804246 550601.8105;7816816.359;-9640.25;250;0.411577214 551864.3105;7816947.75;-9568.629883;250;0.978248797 550689.3105;7818036.41;-9618.179688;250;0.382657217 550626.8105;7818073.949;-9630.429688;250;0.306396192 550701.8105;7816778.816;-9646.040039;250;0.314963436 548976.8105;7818355.5;-9729.120117;250;0.011231334 551226.8105;7821490.09;-9683.019531;250;0.910754483 550614.3105;7817379.461;-9629.959961;250;0.315881444 549001.8105;7820401.43;-9735.25;250;0.621112539 549351.8105;7819406.617;-9718.580078;250;0.426666818 550164.3105;7819669.398;-9572.80957;250;0.450043257 551476.8105;7817079.141;-9577.959961;250;0.737290469 549876.8105;7818468.117;-9616.650391;250;0.257994872 551189.3105;7821471.32;-9684.950195;250;0.221947487 550964.3105;7816666.199;-9626.799805;250;0.431794665 551764.3105;7816647.43;-9557.650391;250;0.717823838 550851.8105;7817736.09;-9588.480469;250;0.155640373 550489.3105;7818336.73;-9686.509766;250;0.975675829 550039.3105;7816835.129;-9601.599609;250;0.443853998 549389.3105;7818449.348;-9650.889648;250;0.816844022 550189.3105;7820964.531;-9660.120117;250;0.59480587 549639.3105;7821546.398;-9747.799805;250;0.315733097 549214.3105;7819256.457;-9727.30957;250;0.666732561 549226.8105;7818561.969;-9686.150391;250;0.880865137 549551.8105;7817510.848;-9545.179688;250;0.584587522 549801.8105;7819218.918;-9624.839844;250;0.953417983 550626.8105;7818336.73;-9681.040039;250;0.230171448 549989.3105;7818468.117;-9644.980469;250;0.250431582 549701.8105;7819932.18;-9631.480469;250;0.784449143 549939.3105;7817004.059;-9589.629883;250;0.852426363 551364.3105;7817829.938;-9569.240234;250;0.906550871 550176.8105;7819200.148;-9554.120117;250;0.627742092 551251.8105;7821283.617;-9693.339844;250;0.071130897 550876.8105;7819143.84;-9543.320313;250;0.222815225 548876.8105;7817210.527;-9629.139648;250;0.621934386 549014.3105;7819932.18;-9724.360352;250;0.662544049 549364.3105;7819538.008;-9725.349609;250;0.621326425 552089.3105;7817473.309;-9544.799805;250;0.289523788 550126.8105;7819481.699;-9576.030273;250;0.074998055 550026.8105;7820476.508;-9567.910156;250;0.111977144 549351.8105;7819631.859;-9727.150391;250;0.127971973 548901.8105;7818693.359;-9726.75;250;0.217020328 551639.3105;7817510.848;-9564.980469;250;0.900720674 550826.8105;7819087.527;-9534.879883;250;0.047684008 549989.3105;7820026.027;-9516.19043;250;0.417046084 550664.3105;7821565.168;-9736.919922;250;0.792192579 549014.3105;7821246.078;-9770.320313;250;0.734492457 550226.8105;7820682.98;-9554.870117;250;0.267315926 551189.3105;7821696.559;-9682.25;250;0.096575635 549939.3105;7820326.348;-9576.650391;250;0.465769585 549601.8105;7821827.949;-9735.839844;250;0.684341906 549526.8105;7816703.738;-9657.709961;250;0.092207438 551614.3105;7817097.91;-9561.629883;250;0.393431111 549714.3105;7819294;-9619.240234;250;0.206548951 550139.3105;7818618.281;-9657.509766;250;0.731563495 549401.8105;7820326.348;-9734.05957;250;0.703087039 550489.3105;7819125.07;-9466.320313;250;0.003248487 552076.8105;7817229.301;-9526.610352;250;0.87194617 549289.3105;7819256.457;-9722.879883;250;0.668810665 549239.3105;7817548.387;-9504.129883;250;0.91936773 549164.3105;7817210.527;-9533.870117;250;0.728018746 552289.3105;7816966.52;-9482.5;250;0.400538489 549714.3105;7820908.219;-9735.049805;250;0.679683297 550826.8105;7820795.598;-9591.230469;250;0.068011381 550301.8105;7817867.48;-9683.990234;250;0.442737603 551064.3105;7816816.359;-9609.55957;250;0.830357728 549964.3105;7820101.109;-9519.799805;250;0.524546175 552426.8105;7817041.598;-9406.419922;250;0.909751466 551176.8105;7816835.129;-9589.070313;250;0.034969259 549764.3105;7818186.57;-9690.240234;250;0.75767349 549576.8105;7819256.457;-9661.160156;250;0.532047201 550389.3105;7818899.828;-9567.05957;250;0.016298133 549901.8105;7820101.109;-9547.839844;250;0.158493338 551851.8105;7816910.207;-9570.040039;250;0.645367778 552226.8105;7816797.59;-9506.950195;250;0.446481255 550114.3105;7819782.02;-9559.650391;250;0.501091402 550701.8105;7818468.117;-9672.900391;250;0.945841669 550489.3105;7819312.77;-9444.740234;250;0.013385848 550276.8105;7820082.34;-9419.349609;250;0.821946842 551276.8105;7816872.668;-9586.589844;250;0.85356606 549701.8105;7819406.617;-9631.870117;250;0.744177697 551176.8105;7821302.391;-9694.950195;250;0.548309165 550426.8105;7819218.918;-9455.139648;250;0.34952108 550114.3105;7820363.887;-9493.44043;250;0.704614402 550901.8105;7818167.797;-9620.139648;250;0.702501588 550051.8105;7818956.141;-9621.490234;250;0.623159868 550764.3105;7820251.27;-9481.759766;250;0.156033355 552114.3105;7821321.16;-9640.730469;250;0.792439557 550451.8105;7818055.18;-9659.259766;250;0.852757674 552439.3105;7816760.051;-9432.94043;250;0.211581503 551176.8105;7821208.539;-9698.400391;250;0.119053822 550214.3105;7818430.578;-9680.419922;250;0.418723873 551689.3105;7817379.461;-9565.849609;250;0.082634698 549739.3105;7819200.148;-9621.429688;250;0.586838278 551589.3105;7817022.828;-9569.75;250;0.393727369 550176.8105;7819162.609;-9557.230469;250;0.614132697 551751.8105;7817210.527;-9555.780273;250;0.582566781 552089.3105;7817248.07;-9523.160156;250;0.331290647 550701.8105;7819744.48;-9542.209961;250;0.606317657 549576.8105;7819294;-9664.080078;250;0.870864834 550876.8105;7819087.527;-9552.370117;250;0.757153061 552076.8105;7821208.539;-9657.669922;250;0.946478076 549826.8105;7819462.93;-9623.69043;250;0.807557262 550264.3105;7818561.969;-9665.580078;250;0.247196362 549539.3105;7821302.391;-9749.709961;250;0.647743327 550026.8105;7819181.379;-9595.990234;250;0.802079342 550351.8105;7819725.711;-9550.769531;250;0.355063701 550401.8105;7818974.91;-9539.75;250;0.42477733 550451.8105;7820795.598;-9571.019531;250;0.381267871 549176.8105;7819312.77;-9734.360352;250;0.269656959 550489.3105;7819031.219;-9504.339844;250;0.988149078 549864.3105;7819706.938;-9639.040039;250;0.538123214 550151.8105;7820682.98;-9570.150391;250;0.957930271 550101.8105;7818468.117;-9667.599609;250;0.18893244 551989.3105;7816928.98;-9556.799805;250;0.519776733 550039.3105;7819481.699;-9592.610352;250;0.214119915 550626.8105;7819725.711;-9538.459961;250;0.80127436 549864.3105;7818111.488;-9704;250;0.048879999 551839.3105;7816647.43;-9550.269531;250;0.155627873 550776.8105;7818618.281;-9648.099609;250;0.401709201 552214.3105;7817473.309;-9530.919922;250;0.29457713 550276.8105;7818749.668;-9640.860352;250;0.772969133 550064.3105;7819331.539;-9580.25;250;0.487272356 550014.3105;7819706.938;-9598.870117;250;0.811084251 550176.8105;7821396.238;-9748.5;250;0.153109093 550189.3105;7819481.699;-9557.94043;250;0.404925968 550089.3105;7819894.641;-9534.509766;250;0.270915804 551839.3105;7816760.051;-9564.860352;250;0.922434979 550214.3105;7821264.848;-9730.05957;250;0.852675503 551176.8105;7821246.078;-9696.650391;250;0.158237354 551626.8105;7816928.98;-9568.709961;250;0.527571187 550889.3105;7817942.559;-9594.919922;250;0.973219715 548889.3105;7817980.098;-9704.910156;250;0.296783782 549314.3105;7821659.02;-9751.30957;250;0.326493593 550276.8105;7818599.508;-9660.389648;250;0.630853958 551939.3105;7816910.207;-9563.519531;250;0.191795782 551926.8105;7816985.289;-9562.25;250;0.632959044 550689.3105;7819988.488;-9503.759766;250;0.642741274 551989.3105;7821339.93;-9657.599609;250;0.320464287 550189.3105;7819800.789;-9536.120117;250;0.147476135 549151.8105;7819481.699;-9745.75;250;0.924087152 551564.3105;7817398.227;-9575.740234;250;0.539519851 551939.3105;7817116.68;-9548.019531;250;0.373757979 550326.8105;7821471.32;-9738.790039;250;0.602743649 552026.8105;7816910.207;-9550.740234;250;0.321024357 551876.8105;7817060.367;-9556.709961;250;0.359971081 551514.3105;7817454.539;-9584.360352;250;0.523624568 550914.3105;7817022.828;-9615.219727;250;0.170254498 552426.8105;7816910.207;-9411.620117;250;0.423533992 550414.3105;7820739.289;-9549.929688;250;0.857257756 550376.8105;7818637.047;-9657.200195;250;0.337714495 550626.8105;7820232.5;-9440.25;250;0.660304948 550426.8105;7817867.48;-9656.830078;250;0.188927134 551514.3105;7816985.289;-9576.879883;250;0.196128004 551776.8105;7817829.938;-9567.540039;250;0.915316146 550339.3105;7819763.25;-9539.280273;250;0.085186954 550951.8105;7816797.59;-9629.910156;250;0.600993925 550876.8105;7819031.219;-9558.900391;250;0.3026931 551251.8105;7816741.277;-9589.089844;250;0.154900095 552326.8105;7817379.461;-9480.679688;250;0.390212918 550326.8105;7818899.828;-9588.799805;250;0.171770189 550389.3105;7819857.098;-9499.269531;250;0.541627464 550426.8105;7821565.168;-9735.330078;250;0.801911865 549864.3105;7820345.121;-9611.730469;250;0.639065968 550451.8105;7819519.238;-9520.660156;250;0.56407103 549164.3105;7819237.688;-9726.040039;250;0.33691188 548951.8105;7819538.008;-9741.049805;250;0.918707594 552451.8105;7821809.18;-9516.360352;250;0.986969803 549501.8105;7819294;-9682.879883;250;0.449743323 549964.3105;7819875.867;-9563.969727;250;0.503298124 550326.8105;7818768.438;-9625.299805;250;0.671654289 550201.8105;7819894.641;-9497.469727;250;0.235755067 551001.8105;7821752.867;-9703.169922;250;0.396419958 552226.8105;7816835.129;-9507.700195;250;0.755028508 549539.3105;7819913.41;-9691.139648;250;0.015036893 549701.8105;7821133.457;-9741.30957;250;0.681209407 551001.8105;7817341.918;-9600.120117;250;0.818343093 549776.8105;7820157.418;-9612.450195;250;0.692184088 550814.3105;7820270.039;-9501.360352;250;0.563453619 549264.3105;7818092.719;-9699.05957;250;0.69034241 552014.3105;7817248.07;-9537.509766;250;0.051412858 551851.8105;7817341.918;-9563.94043;250;0.755430606 550014.3105;7818974.91;-9613.110352;250;0.781386232 551976.8105;7817585.93;-9562.349609;250;0.613742469 552426.8105;7816741.277;-9439.700195;250;0.196889067 550739.3105;7820288.809;-9469.320313;250;0.853857733 551101.8105;7821715.328;-9696.259766;250;0.882590473 552301.8105;7817304.379;-9466.679688;250;0.365442021 551151.8105;7820870.68;-9677.700195;250;0.888718724 551689.3105;7817417;-9564.379883;250;0.323593723 551051.8105;7817116.68;-9594.139648;250;0.628864708 549539.3105;7817041.598;-9610.389648;250;0.683804864 550251.8105;7818974.91;-9592.910156;250;0.461922128 551664.3105;7817323.148;-9566.469727;250;0.52026194 548964.3105;7819331.539;-9734.570313;250;0.720799741 552164.3105;7817229.301;-9505.599609;250;0.648588126 549439.3105;7817398.227;-9486.700195;250;0.269887115 550226.8105;7820345.121;-9438.669922;250;0.205098736 550114.3105;7819200.148;-9574.679688;250;0.34837301 551439.3105;7818111.488;-9540.179688;250;0.470855013 549164.3105;7819706.938;-9733.110352;250;0.115355821 550689.3105;7818862.289;-9573.030273;250;0.232557378 549289.3105;7819594.32;-9734.919922;250;0.813518069 550251.8105;7821771.641;-9741.120117;250;0.810386158 551739.3105;7817886.25;-9563.160156;250;0.949929943 550826.8105;7819519.238;-9525.110352;250;0.869746803 548889.3105;7820213.73;-9718.540039;250;0.607654244 550301.8105;7819275.23;-9501.25;250;0.161164635 549614.3105;7819575.551;-9677.530273;250;0.174541891 549914.3105;7819369.078;-9600.019531;250;0.01087518 550376.8105;7820363.887;-9378.019531;250;0.336558653 550426.8105;7818017.637;-9660.389648;250;0.796222754 549989.3105;7821602.711;-9739.820313;250;0.622225293 549926.8105;7818299.188;-9678.360352;250;0.643576046 550339.3105;7821189.77;-9700.320313;250;0.951119287 552289.3105;7817135.449;-9468.599609;250;0.708010229 551576.8105;7817905.02;-9577.240234;250;0.210480959 551189.3105;7820908.219;-9681.599609;250;0.446357913 550726.8105;7820570.359;-9495.179688;250;0.671124038 549451.8105;7819106.301;-9668.419922;250;0.481423294 549401.8105;7819012.449;-9660.900391;250;0.023027764 550976.8105;7820945.758;-9675.009766;250;0.652379712 550626.8105;7819294;-9450.870117;250;0.038206484 549276.8105;7817961.328;-9676.299805;250;0.978955122 550026.8105;7820082.34;-9490.299805;250;0.092241571 551989.3105;7821302.391;-9661.679688;250;0.038035705 550839.3105;7819894.641;-9543.759766;250;0.411964114 549201.8105;7819406.617;-9738.219727;250;0.370255933 549239.3105;7818674.59;-9690.990234;250;0.182082872 552064.3105;7817961.328;-9572.5;250;0.779343269 550626.8105;7818393.039;-9683.080078;250;0.032434977 550364.3105;7819594.32;-9556.429688;250;0.188354697 551076.8105;7816722.508;-9605.209961;250;0.475791361 550989.3105;7819031.219;-9593.830078;250;0.195921618 550389.3105;7819200.148;-9473.080078;250;0.398011003 549089.3105;7819162.609;-9725.80957;250;0.682300874 551814.3105;7817248.07;-9557.299805;250;0.225579809 550189.3105;7819106.301;-9564.25;250;0.857038221 550814.3105;7817473.309;-9595.219727;250;0.054377996 551801.8105;7817004.059;-9568.669922;250;0.327755309 549451.8105;7820345.121;-9728.55957;250;0.004691475 552389.3105;7817548.387;-9499.280273;250;0.927098987 548926.8105;7820926.988;-9767.139648;250;0.826925517 549926.8105;7820007.258;-9544.320313;250;0.250320435 550026.8105;7820664.211;-9607.679688;250;0.751098745 550026.8105;7819087.527;-9604.179688;250;0.706421042 550026.8105;7819838.328;-9561.099609;250;0.737944422 551526.8105;7817905.02;-9577.759766;250;0.549112786 551701.8105;7817473.309;-9560.480469;250;0.565401496 549364.3105;7819181.379;-9704.30957;250;0.551615308 550201.8105;7818618.281;-9658.169922;250;0.004063815 550876.8105;7818693.359;-9647.129883;250;0.816366168 552264.3105;7821809.18;-9527.709961;250;0.441564242 550726.8105;7816928.98;-9630.19043;250;0.57448541 550476.8105;7820119.879;-9421.799805;250;0.373134812 550314.3105;7818167.797;-9689.889648;250;0.179741782 550626.8105;7818280.418;-9674.19043;250;0.645931861 549151.8105;7817905.02;-9670.730469;250;0.152614895 552426.8105;7816947.75;-9411.160156;250;0.602454939 548951.8105;7819275.23;-9731.349609;250;0.953609618 549939.3105;7819913.41;-9559.540039;250;0.352440847 550626.8105;7819763.25;-9536.860352;250;0.219997243 551939.3105;7816872.668;-9562.830078;250;0.546914911 550489.3105;7818149.027;-9661.400391;250;0.960543151 549876.8105;7819894.641;-9586.780273;250;0.257771807 550626.8105;7820438.969;-9431.530273;250;0.433429745 549276.8105;7819406.617;-9729.629883;250;0.389767882 551276.8105;7817435.77;-9587.80957;250;0.729519732 549664.3105;7821659.02;-9748.570313;250;0.265448307 550126.8105;7819744.48;-9565.349609;250;0.261472736 550801.8105;7817398.227;-9601.610352;250;0.334420647 549876.8105;7818637.047;-9574.410156;250;0.349469743 550351.8105;7818111.488;-9681.219727;250;0.731158577 550764.3105;7817867.48;-9606.790039;250;0.222018032 549289.3105;7819294;-9725.360352;250;0.771347756 550676.8105;7818374.27;-9677.799805;250;0.793399479 552089.3105;7821490.09;-9618.080078;250;0.463110564 550064.3105;7820532.82;-9562.669922;250;0.22315692 548989.3105;7817980.098;-9693.450195;250;0.671538914 550276.8105;7817942.559;-9686.929688;250;0.934297418 550126.8105;7820270.039;-9453.259766;250;0.384974152 550176.8105;7821452.551;-9747.769531;250;0.902717652 549001.8105;7818073.949;-9704.900391;250;0.007755879 552026.8105;7817529.617;-9556.549805;250;0.11559426 551114.3105;7816872.668;-9596.610352;250;0.320327306 550064.3105;7819875.867;-9543.540039;250;0.314772438 549864.3105;7821827.949;-9738.629883;250;0.535842069 549776.8105;7819857.098;-9624.719727;250;0.241550039 549939.3105;7819237.688;-9604.719727;250;0.939675874 549989.3105;7819688.168;-9606.870117;250;0.112904007 552364.3105;7817004.059;-9444.429688;250;0.250966571 550239.3105;7821415.008;-9744.139648;250;0.262683221 550801.8105;7821659.02;-9729.400391;250;0.494521244 550701.8105;7821640.25;-9730.879883;250;0.307842041 552014.3105;7817285.609;-9538.669922;250;0.824534565 550276.8105;7818730.898;-9643.19043;250;0.12781268 552114.3105;7821339.93;-9638.730469;250;0.618079876 550264.3105;7819200.148;-9519.950195;250;0.957893496 550214.3105;7819650.629;-9568.19043;250;0.740038222 552376.8105;7817135.449;-9422.349609;250;0.174382717 549651.8105;7819838.328;-9658.219727;250;0.127283517 551064.3105;7821621.48;-9693.889648;250;0.53063663 552014.3105;7817792.398;-9573.540039;250;0.006802041 549076.8105;7820307.578;-9729.19043;250;0.508755623 550364.3105;7820420.199;-9389.200195;250;0.815373422 549189.3105;7821771.641;-9764.519531;250;0.567071625 550376.8105;7821339.93;-9723.330078;250;0.508931298 549864.3105;7817980.098;-9706.030273;250;0.948648057 552289.3105;7817266.84;-9464.030273;250;0.783621559 550926.8105;7817079.141;-9614.429688;250;0.065750507 549651.8105;7818336.73;-9647.839844;250;0.394400404 550401.8105;7818092.719;-9672.639648;250;0.296611617 551776.8105;7818017.637;-9553.5;250;0.835844759 551614.3105;7816778.816;-9576;250;0.639038281 549439.3105;7821377.469;-9751.879883;250;0.076405531 550276.8105;7820026.027;-9435.269531;250;0.973438377 550776.8105;7819932.18;-9527.660156;250;0.902956448 549389.3105;7820044.801;-9722.349609;250;0.315384503 552376.8105;7817792.398;-9532.780273;250;0.162925197 549064.3105;7817717.32;-9612.389648;250;0.726901659 549464.3105;7817811.168;-9637.889648;250;0.320943955 550714.3105;7817923.789;-9612.679688;250;0.172629791 550789.3105;7820326.348;-9487.580078;250;0.360625674 549076.8105;7819669.398;-9734.669922;250;0.49161947 550489.3105;7819838.328;-9512.040039;250;0.032842837 550751.8105;7817116.68;-9620.110352;250;0.688922476 550101.8105;7820626.668;-9568.110352;250;0.890020351 550026.8105;7816928.98;-9579.320313;250;0.993865918 550489.3105;7819688.168;-9538.55957;250;0.629445344 552226.8105;7817285.609;-9487.639648;250;0.355631626 549376.8105;7820119.879;-9714.570313;250;0.359373091 550626.8105;7821377.469;-9728.589844;250;0.399719799 550214.3105;7820119.879;-9420.259766;250;0.113753007 552076.8105;7821246.078;-9656.25;250;0.386565879 549864.3105;7818073.949;-9705.889648;250;0.432724022 550951.8105;7818430.578;-9608.219727;250;0.009310026 552001.8105;7816684.969;-9543.639648;250;0.6762693 549539.3105;7819519.238;-9682.179688;250;0.942058368 550364.3105;7820270.039;-9374.129883;250;0.571225 550776.8105;7821415.008;-9721.709961;250;0.406238527 550389.3105;7818956.141;-9549.089844;250;0.066221692 551739.3105;7817398.227;-9565.839844;250;0.193886524 551426.8105;7817154.219;-9576.900391;250;0.750207885 552439.3105;7817848.711;-9536.429688;250;0.607054189 551789.3105;7817679.777;-9573.320313;250;0.279165664 549676.8105;7818580.738;-9564.75;250;0.694219867 549801.8105;7818111.488;-9700.009766;250;0.984074884 550676.8105;7819462.93;-9490.419922;250;0.140612387 551851.8105;7816741.277;-9561.040039;250;0.787729311 551664.3105;7817998.871;-9558.44043;250;0.726921149 551926.8105;7816928.98;-9564.709961;250;0.95662372 549064.3105;7818055.18;-9699.570313;250;0.527149279 549026.8105;7818149.027;-9714.849609;250;0.506136507 550139.3105;7819706.938;-9570.900391;250;0.468239346 551851.8105;7818036.41;-9557.459961;250;0.77978953 550076.8105;7819312.77;-9578.259766;250;0.213795345 549451.8105;7819988.488;-9718.200195;250;0.24976825 552226.8105;7816928.98;-9503.179688;250;0.756508617 549176.8105;7817717.32;-9605.179688;250;0.562269807 552276.8105;7821546.398;-9587.610352;250;0.905337955 551651.8105;7817961.328;-9564.44043;250;0.145533583 552014.3105;7816985.289;-9553.299805;250;0.508418125 551989.3105;7816778.816;-9554.049805;250;0.920922059 551264.3105;7818167.797;-9517.169922;250;0.339169876 549976.8105;7819406.617;-9591.150391;250;0.406459599 551289.3105;7817829.938;-9564.959961;250;0.694192967 552014.3105;7821227.309;-9665.290039;250;0.056328046 548901.8105;7819143.84;-9731.549805;250;0.347027983 552351.8105;7821640.25;-9557.360352;250;0.55771029 551939.3105;7816666.199;-9544.19043;250;0.269785342 549951.8105;7821809.18;-9742.769531;250;0.447409563 548901.8105;7819613.09;-9742.639648;250;0.970341334 552151.8105;7821283.617;-9636.929688;250;0.181627204 549101.8105;7818111.488;-9703.019531;250;0.065498139 549326.8105;7817079.141;-9572.089844;250;0.774149425 549476.8105;7821283.617;-9748.759766;250;0.903213726 552151.8105;7817886.25;-9569.759766;250;0.29645595 551839.3105;7816684.969;-9555.25;250;0.363283209 550789.3105;7819838.328;-9550.620117;250;0.404215366 549901.8105;7820495.281;-9609.570313;250;0.897497992 551726.8105;7817266.84;-9560.339844;250;0.289015146 550114.3105;7820326.348;-9479.919922;250;0.432392731 549339.3105;7820720.52;-9738.05957;250;0.179176551 548964.3105;7819556.777;-9742.660156;250;0.420587585 550701.8105;7819575.551;-9525.530273;250;0.603876692 550651.8105;7820457.738;-9443.679688;250;0.41804566 552389.3105;7817829.938;-9539.339844;250;0.158292455 548976.8105;7817829.938;-9665.610352;250;0.92790857 550164.3105;7818712.129;-9661.110352;250;0.030914951 551776.8105;7816928.98;-9572.339844;250;0.886783738 548951.8105;7818599.508;-9725.610352;250;0.203441208 551814.3105;7817717.32;-9570.469727;250;0.12093666 549664.3105;7819782.02;-9665.179688;250;0.174684597 551601.8105;7817773.629;-9578.280273;250;0.473029833 550626.8105;7820514.051;-9449.980469;250;0.54871889 551189.3105;7821321.16;-9692.610352;250;0.136810889 550676.8105;7821790.41;-9725.589844;250;0.896864341 551101.8105;7816778.816;-9601.070313;250;0.218137755 550226.8105;7821227.309;-9719.549805;250;0.773116806 550951.8105;7816947.75;-9617.589844;250;0.154454161 549101.8105;7817116.68;-9590.860352;250;0.688279248 550051.8105;7820157.418;-9471.820313;250;0.165921951 550251.8105;7820194.961;-9400.419922;250;0.268391854 550726.8105;7817154.219;-9619.339844;250;0.354809053 550689.3105;7818524.43;-9668.94043;250;0.825910841 549951.8105;7819068.758;-9604.360352;250;0.538704886 551626.8105;7817379.461;-9568.709961;250;0.947262979 550189.3105;7820570.359;-9525.950195;250;0.996152207 549726.8105;7820382.66;-9660.549805;250;0.071686706 549364.3105;7817492.078;-9470.969727;250;0.886656518 551576.8105;7817210.527;-9566.259766;250;0.043683717 550239.3105;7818486.891;-9673.75;250;0.709769352 550789.3105;7819875.867;-9542.429688;250;0.404533458 550626.8105;7818881.059;-9557.5;250;0.008342762 551939.3105;7817004.059;-9559.599609;250;0.702986692 550414.3105;7821358.699;-9727.870117;250;0.266990837 551064.3105;7821490.09;-9694.389648;250;0.256615726 552364.3105;7817191.758;-9424.790039;250;0.473312222 551426.8105;7818055.18;-9544.580078;250;0.420749559 552276.8105;7816666.199;-9502.400391;250;0.365737228 550801.8105;7818899.828;-9574.839844;250;0.026686101 550189.3105;7817642.238;-9684.769531;250;0.735930783 551614.3105;7818092.719;-9548.740234;250;0.06787878 551764.3105;7817961.328;-9555.75;250;0.021463352 550226.8105;7819181.379;-9536.160156;250;0.936494123 551976.8105;7821246.078;-9666.080078;250;0.159208753 550789.3105;7817886.25;-9605.349609;250;0.159835201 551164.3105;7817829.938;-9571;250;0.430278291 550339.3105;7819049.988;-9533.44043;250;0.152697997 552051.8105;7821471.32;-9626.400391;250;0.153542305 552201.8105;7817435.77;-9525.030273;250;0.947970802 551701.8105;7817510.848;-9559.349609;250;0.058945477 550114.3105;7816778.816;-9600.919922;250;0.437326637 550926.8105;7819143.84;-9560.290039;250;0.03152531 550126.8105;7819913.41;-9520;250;0.12861308 551014.3105;7818299.188;-9581.389648;250;0.764449049 550926.8105;7816722.508;-9633.660156;250;0.16349046 549651.8105;7821827.949;-9734.620117;250;0.786073725 549926.8105;7821246.078;-9750.030273;250;0.962988468 551689.3105;7816835.129;-9572.299805;250;0.174884221 550601.8105;7817191.758;-9612.110352;250;0.457658709 549426.8105;7821602.711;-9722.05957;250;0.627592686 549026.8105;7819688.168;-9734.150391;250;0.156379321 550676.8105;7820401.43;-9443.269531;250;0.305197915 550101.8105;7816684.969;-9629.169922;250;0.167444768 548951.8105;7818130.258;-9715.700195;250;0.759829672 550251.8105;7819950.949;-9462.370117;250;0.155428803 551639.3105;7817905.02;-9572.30957;250;0.627453996 552001.8105;7816722.508;-9547.429688;250;0.299304059 548901.8105;7820176.188;-9718.759766;250;0.852260799 550826.8105;7821621.48;-9725.55957;250;0.321256572 551664.3105;7817811.168;-9573.919922;250;0.163696427 549864.3105;7817266.84;-9642.769531;250;0.311304736 550464.3105;7821339.93;-9735.389648;250;0.358924251 552364.3105;7821827.949;-9524.009766;250;0.589340741 550339.3105;7819106.301;-9514.19043;250;0.229163825 550139.3105;7820514.051;-9526.5;250;0.431359978 549026.8105;7819481.699;-9741.360352;250;0.00747533 552226.8105;7817529.617;-9542.230469;250;0.418339037 549926.8105;7820363.887;-9586.969727;250;0.416423101 550339.3105;7820626.668;-9513.080078;250;0.144119332 550389.3105;7821415.008;-9728.139648;250;0.467672934 551901.8105;7816684.969;-9549.549805;250;0.560958436 550001.8105;7819932.18;-9533.290039;250;0.349510169 550339.3105;7819294;-9486.259766;250;0.776672048 551476.8105;7817923.789;-9571.660156;250;0.837097782 549739.3105;7819087.527;-9623.990234;250;0.965977786 552064.3105;7816910.207;-9543.379883;250;0.39907208 550814.3105;7821133.457;-9699.610352;250;0.984179839 549314.3105;7821696.559;-9753.299805;250;0.650756255 550139.3105;7819406.617;-9564.469727;250;0.414180687 551289.3105;7821039.609;-9683.169922;250;0.787976806 550739.3105;7820814.371;-9575.740234;250;0.56130366 550514.3105;7818805.98;-9596.339844;250;0.514122808 550176.8105;7819575.551;-9573.80957;250;0.005850086 551276.8105;7818242.879;-9511.429688;250;0.934566791 549964.3105;7820457.738;-9586.299805;250;0.937684737 550414.3105;7818393.039;-9685.349609;250;0.800904812 550326.8105;7818524.43;-9671.290039;250;0.548978849 550126.8105;7818524.43;-9660.549805;250;0.90824116 548889.3105;7818430.578;-9741.639648;250;0.57699465 549351.8105;7821771.641;-9747.240234;250;0.488647448 550514.3105;7816666.199;-9636.580078;250;0.980372509 549776.8105;7820870.68;-9726.769531;250;0.71939988 549151.8105;7820664.211;-9730.889648;250;0.5980181 552014.3105;7817154.219;-9540.490234;250;0.067387469 551064.3105;7821095.918;-9702.80957;250;0.505645886 549026.8105;7821659.02;-9753.469727;250;0.540039076 548876.8105;7817923.789;-9698.150391;250;0.000838869 550251.8105;7819068.758;-9559.05957;250;0.359596124 549376.8105;7819312.77;-9711.200195;250;0.12940433 549439.3105;7819256.457;-9695.679688;250;0.254670309 552226.8105;7817097.91;-9499.589844;250;0.700415116 549776.8105;7821321.16;-9751.80957;250;0.786980898 549639.3105;7821490.09;-9749.219727;250;0.325468293 548939.3105;7817980.098;-9699.160156;250;0.72809384 550226.8105;7819256.457;-9533.719727;250;0.540224089 550989.3105;7818974.91;-9601.709961;250;0.190325288 552076.8105;7821283.617;-9653.610352;250;0.512136068 549664.3105;7819125.07;-9627.530273;250;0.734140401 551126.8105;7818205.34;-9554.269531;250;0.71941095 550739.3105;7819819.559;-9546.280273;250;0.019701337 549989.3105;7821208.539;-9743.780273;250;0.359507147 549589.3105;7821339.93;-9753.919922;250;0.908291617 548989.3105;7818543.199;-9731.230469;250;0.734289058 550264.3105;7818862.289;-9621.990234;250;0.924799783 549176.8105;7817604.699;-9553.19043;250;0.719093202 550276.8105;7819706.938;-9557.339844;250;0.182684485 549776.8105;7821114.691;-9739.879883;250;0.889868247 550051.8105;7820607.898;-9583.44043;250;0.157857815 550126.8105;7818899.828;-9637.889648;250;0.216576095 552076.8105;7816778.816;-9545.240234;250;0.927017365 550164.3105;7818899.828;-9635.660156;250;0.163613552 550764.3105;7818505.66;-9659.389648;250;0.804261671 550726.8105;7819875.867;-9534.019531;250;0.67854741 549951.8105;7819538.008;-9612.240234;250;0.209025368 551039.3105;7816928.98;-9608.929688;250;0.283859796 551464.3105;7816741.277;-9584.389648;250;0.789053068 552364.3105;7821283.617;-9604.849609;250;0.254857159 549264.3105;7821377.469;-9754.69043;250;0.932427064 550451.8105;7818956.141;-9533.389648;250;0.414967546 550364.3105;7819688.168;-9557.929688;250;0.903329851 551051.8105;7817285.609;-9597.650391;250;0.139006223 550764.3105;7821452.551;-9723.370117;250;0.838934626 550751.8105;7821114.691;-9687.929688;250;0.106744028 552101.8105;7821659.02;-9573.200195;250;0.304756739 552401.8105;7817942.559;-9558.179688;250;0.952538302 551439.3105;7821471.32;-9682.889648;250;0.583513394 549976.8105;7818336.73;-9677.25;250;0.861429937 549701.8105;7819444.16;-9639.379883;250;0.241032416 551239.3105;7821227.309;-9698.379883;250;0.753655897 550489.3105;7818430.578;-9685.830078;250;0.193334196 552051.8105;7817642.238;-9558.219727;250;0.166222945 549301.8105;7817623.469;-9538.419922;250;0.539226331 552289.3105;7817811.168;-9549.429688;250;0.53372697 550401.8105;7819012.449;-9527.030273;250;0.528652141 551989.3105;7816666.199;-9541.599609;250;0.170440457 549976.8105;7820814.371;-9673.730469;250;0.341172262 550701.8105;7819950.949;-9514.44043;250;0.074109786 550864.3105;7820833.141;-9614.870117;250;0.046424287 550276.8105;7821827.949;-9736.730469;250;0.104425479 550889.3105;7817998.871;-9599.889648;250;0.594879566 549151.8105;7818167.797;-9707.620117;250;0.238974764 552151.8105;7821358.699;-9629.259766;250;0.719961067 551601.8105;7817060.367;-9565.839844;250;0.519425462 551251.8105;7821114.691;-9697.05957;250;0.261132254 551751.8105;7821321.16;-9674.410156;250;0.678713944 549589.3105;7821565.168;-9741.269531;250;0.031091598 550326.8105;7818693.359;-9644.209961;250;0.608970257 552001.8105;7821396.238;-9648.30957;250;0.602084446 550614.3105;7819669.398;-9536.200195;250;0.115024036 549864.3105;7818017.637;-9706.55957;250;0.459643383 549589.3105;7820044.801;-9679.549805;250;0.85703822 550364.3105;7817717.32;-9668.629883;250;0.989875784 549264.3105;7817698.547;-9586.780273;250;0.015085359 550939.3105;7818899.828;-9603.410156;250;0.22315227 550726.8105;7817304.379;-9615.419922;250;0.882077912 550039.3105;7818430.578;-9667.870117;250;0.714693137 552001.8105;7817022.828;-9553.429688;250;0.535761693 550139.3105;7820101.109;-9449.280273;250;0.717310036 552151.8105;7816703.738;-9525.459961;250;0.933751623 548976.8105;7817886.25;-9679.599609;250;0.303819888 549139.3105;7817848.711;-9656.469727;250;0.061680602 551764.3105;7816684.969;-9561.870117;250;0.397604025 550326.8105;7818805.98;-9616.049805;250;0.873884829 550489.3105;7817172.988;-9598.30957;250;0.911728163 550801.8105;7817248.07;-9615.929688;250;0.304130622 550764.3105;7817398.227;-9606.730469;250;0.716182013 548976.8105;7820758.059;-9756.80957;250;0.078922111 551576.8105;7817492.078;-9572.280273;250;0.778733595 550089.3105;7818430.578;-9674.990234;250;0.578030735 548901.8105;7817060.367;-9671.459961;250;0.609470111 550739.3105;7818956.141;-9542.129883;250;0.207803615 550789.3105;7821002.07;-9654.740234;250;0.072816976 552114.3105;7816816.359;-9538.650391;250;0.946641808 550776.8105;7816928.98;-9630.69043;250;0.751437527 548914.3105;7817792.398;-9670.719727;250;0.056849791 550289.3105;7816778.816;-9592.969727;250;0.362529426 551751.8105;7816741.277;-9568.780273;250;0.069995646 550439.3105;7820833.141;-9587.230469;250;0.601791515 552201.8105;7821302.391;-9623.25;250;0.746409346 552351.8105;7816666.199;-9482.519531;250;0.021979117 550776.8105;7818167.797;-9632.219727;250;0.150743403 551876.8105;7817191.758;-9551.400391;250;0.246443956 551001.8105;7818073.949;-9603.389648;250;0.01239937 550739.3105;7816966.52;-9625.429688;250;0.084825807 551551.8105;7817998.871;-9567;250;0.413927698 552364.3105;7821171;-9607.480469;250;0.631399218 551876.8105;7821602.711;-9605.519531;250;0.012961706 551126.8105;7821077.148;-9703.669922;250;0.73333228 550389.3105;7818561.969;-9668.669922;250;0.853609987 550676.8105;7819125.07;-9477.019531;250;0.289109313 552139.3105;7817060.367;-9529.400391;250;0.666173211 551051.8105;7820664.211;-9630.459961;250;0.455974475 550814.3105;7818486.891;-9649.269531;250;0.008944526 549139.3105;7819331.539;-9736.530273;250;0.469779403 550426.8105;7819631.859;-9549.339844;250;0.61814179 549426.8105;7821095.918;-9745.919922;250;0.470424913 551826.8105;7817961.328;-9557.150391;250;0.514648797 549789.3105;7816835.129;-9649.650391;250;0.268915158 549176.8105;7817980.098;-9685.259766;250;0.949318981 551089.3105;7817210.527;-9588.490234;250;0.85495389 549939.3105;7819256.457;-9603.080078;250;0.668208906 549876.8105;7821189.77;-9744.669922;250;0.774519744 550239.3105;7821471.32;-9744.299805;250;0.499050179 549414.3105;7820213.73;-9719.889648;250;0.608877301 549489.3105;7819481.699;-9692.820313;250;0.931552762 552026.8105;7817585.93;-9558.129883;250;0.014621416 549751.8105;7818111.488;-9698.55957;250;0.872445408 550114.3105;7820138.648;-9446.629883;250;0.944157625 549014.3105;7818918.598;-9728.80957;250;0.37727327 549989.3105;7819331.539;-9590.719727;250;0.188590588 551714.3105;7816666.199;-9564.969727;250;0.817956467 550326.8105;7820176.188;-9389.490234;250;0.306827925 550014.3105;7820119.879;-9492.389648;250;0.578968118 551389.3105;7817567.16;-9586.490234;250;0.842859456 549364.3105;7817266.84;-9474.980469;250;0.090136282 549651.8105;7821058.379;-9741.879883;250;0.436783909 551939.3105;7817417;-9559.19043;250;0.932529792 552189.3105;7817811.168;-9559.299805;250;0.34257138 550851.8105;7819406.617;-9501.990234;250;0.851907303 549801.8105;7818261.648;-9676.549805;250;0.040495204 548876.8105;7819087.527;-9736.110352;250;0.983109497 551814.3105;7817492.078;-9561.959961;250;0.436838017 550851.8105;7821208.539;-9709.490234;250;0.284309268 551901.8105;7817567.16;-9564.009766;250;0.797748482 550264.3105;7821264.848;-9721.530273;250;0.772538528 549026.8105;7819162.609;-9729.900391;250;0.147663575 549289.3105;7820345.121;-9735.089844;250;0.787700884 550076.8105;7819237.688;-9581.969727;250;0.884696949 550401.8105;7820870.68;-9601.030273;250;0.302457045 552389.3105;7817698.547;-9511.549805;250;0.552792592 549201.8105;7818111.488;-9704.030273;250;0.314623374 550001.8105;7819763.25;-9590.610352;250;0.188376027 550414.3105;7819406.617;-9486.160156;250;0.449682315 551539.3105;7817548.387;-9579;250;0.446516268 549564.3105;7820345.121;-9705.410156;250;0.929780382 550201.8105;7819406.617;-9544.700195;250;0.702036036 549351.8105;7819819.559;-9722.370117;250;0.283414081 550339.3105;7818393.039;-9683.929688;250;0.35016808 550626.8105;7821771.641;-9729.120117;250;0.470218541 550876.8105;7818543.199;-9641.320313;250;0.392375592 549789.3105;7820082.34;-9597.610352;250;0.870591415 548976.8105;7820945.758;-9765.650391;250;0.718036371 549014.3105;7819294;-9735.599609;250;0.093592056 549326.8105;7819462.93;-9726.389648;250;0.616052811 551139.3105;7817548.387;-9582.620117;250;0.786109868 549626.8105;7820101.109;-9665.040039;250;0.986102326 551826.8105;7817304.379;-9561.69043;250;0.333968578 549826.8105;7818881.059;-9554.980469;250;0.940412782 550901.8105;7819838.328;-9559.400391;250;0.727237482 551026.8105;7820739.289;-9646.879883;250;0.88347431 551101.8105;7820739.289;-9659.379883;250;0.473445318 551151.8105;7816985.289;-9583.139648;250;0.239808978 550426.8105;7818224.109;-9678.200195;250;0.851184854 551914.3105;7817886.25;-9566.5;250;0.647666447 549476.8105;7820908.219;-9742.530273;250;0.56539559 551089.3105;7821020.84;-9699.830078;250;0.443456373 552276.8105;7816853.898;-9488.540039;250;0.059023525 550826.8105;7818599.508;-9647.700195;250;0.887947628 549476.8105;7818843.52;-9626.120117;250;0.288391035 549014.3105;7819782.02;-9733.160156;250;0.220137366 550901.8105;7819425.391;-9517.580078;250;0.152940146 550876.8105;7820645.438;-9563.360352;250;0.014124275 550901.8105;7821734.102;-9712.759766;250;0.686539288 549439.3105;7817567.16;-9521.339844;250;0.113385507 549189.3105;7819575.551;-9741.269531;250;0.722195284 550676.8105;7819331.539;-9456.459961;250;0.299590193 548901.8105;7820983.297;-9768.450195;250;0.816125877 549876.8105;7819631.859;-9635.69043;250;0.04701694 549539.3105;7819819.559;-9688.209961;250;0.465787427 550851.8105;7818843.52;-9607.639648;250;0.959983545 552064.3105;7817717.32;-9568.519531;250;0.224167011 549864.3105;7819331.539;-9611.599609;250;0.05349987 550939.3105;7819481.699;-9536.730469;250;0.567669077 550226.8105;7818674.59;-9655.719727;250;0.067545599 549326.8105;7818073.949;-9700.280273;250;0.50890555 550876.8105;7818411.809;-9628;250;0.81353846 551001.8105;7817004.059;-9606.639648;250;0.856446944 550176.8105;7818224.109;-9702.469727;250;0.844793098 551126.8105;7817492.078;-9583.389648;250;0.636104592 548926.8105;7820514.051;-9746.519531;250;0.008759719 551026.8105;7817172.988;-9598.629883;250;0.289942426 550451.8105;7817604.699;-9659.049805;250;0.072557144 549551.8105;7820194.961;-9690.709961;250;0.10884114 549639.3105;7820270.039;-9681.120117;250;0.665647465 549739.3105;7818599.508;-9562.950195;250;0.083539308 552139.3105;7817398.227;-9525.639648;250;0.472225823 551676.8105;7817661.008;-9578.179688;250;0.020241404 550026.8105;7818336.73;-9686.419922;250;0.478134956 550826.8105;7819031.219;-9542.339844;250;0.603458262 551439.3105;7817585.93;-9585.540039;250;0.256751402 551101.8105;7818505.66;-9572.19043;250;0.020751619 549039.3105;7819181.379;-9729.429688;250;0.000818769 549626.8105;7818149.027;-9697.580078;250;0.117532753 550814.3105;7821734.102;-9723.599609;250;0.974371808 551114.3105;7817773.629;-9574.410156;250;0.331933832 550351.8105;7820720.52;-9552.549805;250;0.96551446 549326.8105;7818205.34;-9706.879883;250;0.505593291 550664.3105;7817792.398;-9608.280273;250;0.657677112 549814.3105;7818205.34;-9690.650391;250;0.683033386 549139.3105;7820194.961;-9722.349609;250;0.828128123 551214.3105;7816928.98;-9578.820313;250;0.201848272 551014.3105;7817754.859;-9575.269531;250;0.87081099 549951.8105;7819594.32;-9616.599609;250;0.397446096 549326.8105;7820101.109;-9719.969727;250;0.146295967 551176.8105;7817285.609;-9584.400391;250;0.683674791 550839.3105;7820664.211;-9552.660156;250;0.45561592 548951.8105;7819613.09;-9743.240234;250;0.654585866 549189.3105;7819556.777;-9742.860352;250;0.102680447 550426.8105;7821077.148;-9673.480469;250;0.333634292 551014.3105;7817041.598;-9602.540039;250;0.334592496 550201.8105;7819444.16;-9548.719727;250;0.343775296 549926.8105;7818956.141;-9590.080078;250;0.151568082 549689.3105;7820063.57;-9641.290039;250;0.79640782 550151.8105;7821715.328;-9746.389648;250;0.493569943 549789.3105;7816703.738;-9662.709961;250;0.303718913 551889.3105;7821452.551;-9653.740234;250;0.340586692 549939.3105;7819312.77;-9598.009766;250;0.609584712 551689.3105;7818092.719;-9547.299805;250;0.306639007 549401.8105;7819969.719;-9726.450195;250;0.652783398 549014.3105;7818111.488;-9710.230469;250;0.503279715 550839.3105;7821002.07;-9660.80957;250;0.800303308 551989.3105;7817661.008;-9562.660156;250;0.861380732 549914.3105;7820851.91;-9700.240234;250;0.167271146 549764.3105;7818355.5;-9642.030273;250;0.280597515 549789.3105;7819369.078;-9614.740234;250;0.395552722 550064.3105;7818599.508;-9644.419922;250;0.539037949 549476.8105;7819012.449;-9642.450195;250;0.71902897 549514.3105;7821321.16;-9751.139648;250;0.698542257 552039.3105;7817848.711;-9568.719727;250;0.74523175 551739.3105;7817698.547;-9575.030273;250;0.508501622 551001.8105;7821583.941;-9697.160156;250;0.399281581 550789.3105;7818561.969;-9651.950195;250;0.056849284 550039.3105;7819613.09;-9603.629883;250;0.054116588 550126.8105;7819969.719;-9500.110352;250;0.837320686 549414.3105;7817323.148;-9481.580078;250;0.062702702 550989.3105;7820664.211;-9612.400391;250;0.110970452 549801.8105;7818167.797;-9695;250;0.498177178 549876.8105;7820889.449;-9715.370117;250;0.722959852 550739.3105;7819988.488;-9511.200195;250;0.833589577 550426.8105;7819613.09;-9547.429688;250;0.121987954 549839.3105;7818993.68;-9585.089844;250;0.921488782 550214.3105;7817548.387;-9665.669922;250;0.662183336 551114.3105;7818468.117;-9560.400391;250;0.176484717 552101.8105;7817398.227;-9531.240234;250;0.049815951 550039.3105;7819538.008;-9599.790039;250;0.931599691 549426.8105;7819519.238;-9711.69043;250;0.830006009 550501.8105;7816910.207;-9610.80957;250;0.893674705 550376.8105;7820682.98;-9529.669922;250;0.600156554 551226.8105;7817004.059;-9574.219727;250;0.653071411 550964.3105;7818393.039;-9599.959961;250;0.369364522 549964.3105;7820514.051;-9599.860352;250;0.373615157 552101.8105;7817604.699;-9555.240234;250;0.252535534 550676.8105;7819819.559;-9534.480469;250;0.343711256 550876.8105;7817060.367;-9620;250;0.031706049 549951.8105;7820964.531;-9710.839844;250;0.527238059 550126.8105;7818317.957;-9697.25;250;0.411457213 550114.3105;7820589.129;-9554.740234;250;0.082814703 550476.8105;7821246.078;-9721.900391;250;0.970879033 549839.3105;7819031.219;-9599.030273;250;0.571966791 552014.3105;7817492.078;-9556.040039;250;0.611166145 550651.8105;7820270.039;-9442.330078;250;0.202234016 549326.8105;7819500.469;-9729.599609;250;0.252526588 549601.8105;7820176.188;-9675.849609;250;0.21000968 548964.3105;7817492.078;-9593.669922;250;0.851823873 550026.8105;7818205.34;-9706.69043;250;0.806171742 551076.8105;7817492.078;-9585.240234;250;0.181565832 552451.8105;7817473.309;-9466.009766;250;0.358970581 550901.8105;7816910.207;-9626.719727;250;0.351057956 548939.3105;7817679.777;-9635.05957;250;0.844920868 551051.8105;7817191.758;-9594.040039;250;0.716970757 549226.8105;7819688.168;-9731.530273;250;0.942651563 549639.3105;7818280.418;-9666.860352;250;0.924189693 549826.8105;7816741.277;-9655.25;250;0.803396356 550939.3105;7816985.289;-9614.679688;250;0.570330137 550889.3105;7818317.957;-9620.450195;250;0.187287468 549226.8105;7819519.238;-9741.969727;250;0.532845767 551839.3105;7816891.438;-9570.589844;250;0.647936203 552251.8105;7817811.168;-9553.879883;250;0.004569203 550139.3105;7819312.77;-9563.240234;250;0.534598585 548989.3105;7821002.07;-9766.120117;250;0.679779687 550464.3105;7818787.207;-9604.870117;250;0.49052514 549439.3105;7818336.73;-9685.410156;250;0.619665066 549926.8105;7819744.48;-9616.679688;250;0.333018076 550614.3105;7819857.098;-9522.049805;250;0.567701694 549614.3105;7821771.641;-9737.089844;250;0.639817733 550839.3105;7818787.207;-9623.929688;250;0.433457655 549039.3105;7821133.457;-9765.849609;250;0.621287292 550664.3105;7818336.73;-9676.910156;250;0.524383194 550276.8105;7821321.16;-9730.160156;250;0.498476293 551751.8105;7817736.09;-9572.030273;250;0.680107698 549114.3105;7817998.871;-9690.490234;250;0.817405824 549939.3105;7819669.398;-9619.719727;250;0.941035245 549314.3105;7818036.41;-9693.620117;250;0.15048447 552051.8105;7816666.199;-9539.30957;250;0.068182763 549876.8105;7821152.23;-9740.519531;250;0.16841847 550226.8105;7821621.48;-9743.929688;250;0.838470463 550339.3105;7818073.949;-9679.589844;250;0.940188625 549864.3105;7819294;-9614.540039;250;0.073107473 549676.8105;7821696.559;-9745.5;250;0.607193104 551501.8105;7817754.859;-9583.240234;250;0.01175086 550851.8105;7817717.32;-9587.469727;250;0.387300738 550264.3105;7820176.188;-9399.889648;250;0.104336303 551851.8105;7817604.699;-9565.820313;250;0.253585786 549414.3105;7817848.711;-9650.19043;250;0.763490617 548914.3105;7821602.711;-9762.30957;250;0.692576026 549726.8105;7820438.969;-9663.94043;250;0.737662874 549751.8105;7818730.898;-9547.419922;250;0.90979223 549801.8105;7817998.871;-9703.400391;250;0.931452316 549564.3105;7818073.949;-9703.049805;250;0.736007161 550301.8105;7819068.758;-9541.25;250;0.22334788 550364.3105;7818468.117;-9679.330078;250;0.227937463 549551.8105;7817736.09;-9617.099609;250;0.681879219 551051.8105;7821696.559;-9696.019531;250;0.889203552 551326.8105;7817529.617;-9587.429688;250;0.750091089 550626.8105;7821208.539;-9700.490234;250;0.444613261 549789.3105;7820457.738;-9642.389648;250;0.343907383 549851.8105;7820983.297;-9730.389648;250;0.410489653 550139.3105;7818073.949;-9707.049805;250;0.665628766 549801.8105;7819294;-9618.459961;250;0.463721435 550326.8105;7818017.637;-9678.549805;250;0.671951199 550501.8105;7817754.859;-9636.879883;250;0.411513984 550251.8105;7820514.051;-9496.599609;250;0.135787683 550814.3105;7819594.32;-9544.009766;250;0.940584347 550939.3105;7819425.391;-9529.719727;250;0.878421998 549614.3105;7818130.258;-9699.820313;250;0.42097673 549051.8105;7818805.98;-9720.009766;250;0.15994276 550676.8105;7821471.32;-9733.110352;250;0.003029929 549051.8105;7818730.898;-9722.870117;250;0.281798162 550939.3105;7821415.008;-9707.450195;250;0.272501011 550614.3105;7820401.43;-9422.379883;250;0.700067274 549051.8105;7819425.391;-9740.150391;250;0.643101503 550889.3105;7821133.457;-9703.839844;250;0.603559723 549051.8105;7818768.438;-9721.160156;250;0.673262179 549051.8105;7819387.852;-9738.580078;250;0.806694482 549614.3105;7821659.02;-9744.290039;250;0.397801526 551414.3105;7818017.637;-9547.389648;250;0.928405262 549689.3105;7820814.371;-9734.5;250;0.552374825 549951.8105;7820157.418;-9528.730469;250;0.443748422 550101.8105;7820457.738;-9527.780273;250;0.044714081 549301.8105;7818637.047;-9666.05957;250;0.957367621 551089.3105;7821433.781;-9692.139648;250;0.780513914 549964.3105;7817266.84;-9623.959961;250;0.962525055 549876.8105;7819950.949;-9570.240234;250;0.389323958 549789.3105;7821189.77;-9743.730469;250;0.663534493 551164.3105;7817398.227;-9587.179688;250;0.233498521 549151.8105;7818712.129;-9712.679688;250;0.628906991 549776.8105;7820213.73;-9623.480469;250;0.274714428 549426.8105;7821020.84;-9744.580078;250;0.672526792 549151.8105;7820476.508;-9738.950195;250;0.464153896 550914.3105;7819312.77;-9521.629883;250;0.773171715 549651.8105;7817172.988;-9613.669922;250;0.505671574 549376.8105;7819763.25;-9718.75;250;0.269297881 550339.3105;7819425.391;-9505.219727;250;0.370137651 549401.8105;7817961.328;-9694.639648;250;0.725294047 550976.8105;7819143.84;-9574.230469;250;0.071706537 548926.8105;7817604.699;-9625.429688;250;0.486623862 550489.3105;7817473.309;-9644.120117;250;0.847894932 549664.3105;7819631.859;-9676.419922;250;0.356652153 549376.8105;7817585.93;-9516.120117;250;0.639788925 549839.3105;7821077.148;-9736.160156;250;0.227383677 551801.8105;7817360.688;-9566.080078;250;0.144276946 551051.8105;7817642.238;-9582.610352;250;0.412125893 550414.3105;7819782.02;-9529.05957;250;0.708238338 551026.8105;7817473.309;-9587.269531;250;0.806470739 551964.3105;7817323.148;-9550.349609;250;0.831925008 550701.8105;7818224.109;-9652.320313;250;0.472321344 549851.8105;7820382.66;-9616.480469;250;0.364197281 549051.8105;7819369.078;-9738.009766;250;0.623549586 549526.8105;7820026.027;-9701.259766;250;0.785454236 549814.3105;7819125.07;-9622.320313;250;0.412987237 550614.3105;7816666.199;-9649.589844;250;0.643944288 550789.3105;7818805.98;-9607.5;250;0.706817512 550439.3105;7821827.949;-9730.5;250;0.493903963 549701.8105;7818393.039;-9625.030273;250;0.128103677 550164.3105;7818805.98;-9652.25;250;0.960983744 550689.3105;7820720.52;-9531.959961;250;0.070375385 550264.3105;7817698.547;-9684.240234;250;0.389211971 550151.8105;7819294;-9560.320313;250;0.504401179 550776.8105;7820645.438;-9525.200195;250;0.330852369 551926.8105;7816835.129;-9563.169922;250;0.49548406 551064.3105;7818712.129;-9612.080078;250;0.413735724 550289.3105;7820682.98;-9546.860352;250;0.970130113 550889.3105;7818430.578;-9626.089844;250;0.487980159 549776.8105;7819462.93;-9624.009766;250;0.555299777 548964.3105;7819631.859;-9742.169922;250;0.51143985 551251.8105;7816910.207;-9581.94043;250;0.530919232 550764.3105;7817341.918;-9609.589844;250;0.84411791 548976.8105;7817942.559;-9688.980469;250;0.178385407 550176.8105;7818730.898;-9660.450195;250;0.496535516 550151.8105;7818186.57;-9705.080078;250;0.572389686 550439.3105;7821433.781;-9730.070313;250;0.765712426 550064.3105;7819425.391;-9582.849609;250;0.996362299 551864.3105;7817886.25;-9565.110352;250;0.921736081 550476.8105;7818092.719;-9657.469727;250;0.718878033 550001.8105;7819256.457;-9594.839844;250;0.804505623 551601.8105;7817998.871;-9564.230469;250;0.44893703 550314.3105;7818486.891;-9675.75;250;0.939910081 550676.8105;7821058.379;-9660.870117;250;0.788893603 550189.3105;7820814.371;-9603.469727;250;0.183169914 549876.8105;7818299.188;-9673.509766;250;0.043780846 550239.3105;7818242.879;-9699.530273;250;0.953606613 549539.3105;7820438.969;-9711.139648;250;0.266792694 549864.3105;7818336.73;-9660.570313;250;0.09302991 551164.3105;7818411.809;-9536.959961;250;0.689638045 549476.8105;7816722.508;-9659.830078;250;0.446292788 549789.3105;7821715.328;-9744.759766;250;0.673095026 550926.8105;7819200.148;-9547.620117;250;0.474930029 549476.8105;7818036.41;-9709.790039;250;0.800414388 549151.8105;7818918.598;-9716.629883;250;0.998683792 550051.8105;7819031.219;-9608.080078;250;0.442547785 549964.3105;7818242.879;-9695.200195;250;0.998153001 551151.8105;7816816.359;-9593.150391;250;0.941137869 549264.3105;7817510.848;-9477.160156;250;0.729620979 549914.3105;7817923.789;-9712.019531;250;0.324916596 549489.3105;7818149.027;-9714.019531;250;0.239188329 551876.8105;7817754.859;-9567.769531;250;0.108763468 551714.3105;7817980.098;-9556.370117;250;0.17520116 550401.8105;7817417;-9640.419922;250;0.781384316 550014.3105;7818749.668;-9624.980469;250;0.06883749 549239.3105;7819838.328;-9730.030273;250;0.617870813 549951.8105;7820232.5;-9546.339844;250;0.379425378 549201.8105;7817210.527;-9518.919922;250;0.037514614 551714.3105;7816853.898;-9572.339844;250;0.061683185 549226.8105;7816722.508;-9695.320313;250;0.143329125 550951.8105;7820626.668;-9588.110352;250;0.168827399 548976.8105;7817004.059;-9666.339844;250;0.696546849 550664.3105;7818224.109;-9658.740234;250;0.511137102 551201.8105;7821077.148;-9701.179688;250;0.240175157 548964.3105;7819237.688;-9730.320313;250;0.431713504 549514.3105;7817623.469;-9561.589844;250;0.758296618 550901.8105;7821602.711;-9708.459961;250;0.549346422 550264.3105;7819913.41;-9474.299805;250;0.448644537 549276.8105;7819894.641;-9732.839844;250;0.363543791 549151.8105;7820870.68;-9745.55957;250;0.010656273 549789.3105;7821020.84;-9734.879883;250;0.447522235 549976.8105;7818899.828;-9610.910156;250;0.434340563 549151.8105;7816722.508;-9687.389648;250;0.589879193 549701.8105;7820945.758;-9737.120117;250;0.18285738 550276.8105;7820138.648;-9405.19043;250;0.618828497 551126.8105;7817191.758;-9583.429688;250;0.109574485 549326.8105;7817529.617;-9481.950195;250;0.331146037 549689.3105;7819087.527;-9626.339844;250;0.890726897 549751.8105;7820026.027;-9612.209961;250;0.734665589 549551.8105;7819012.449;-9627.009766;250;0.686496492 549301.8105;7816741.277;-9682.5;250;0.084195514 550064.3105;7819387.852;-9580.419922;250;0.143031392 549051.8105;7818749.668;-9722;250;0.945143201 549039.3105;7820814.371;-9756.490234;250;0.873250554 551226.8105;7816816.359;-9587.919922;250;0.716010187 550451.8105;7818749.668;-9621.719727;250;0.239676748 548889.3105;7820870.68;-9766.679688;250;0.423523893 550801.8105;7820833.141;-9594.379883;250;0.79879718 550189.3105;7820288.809;-9432.780273;250;0.002929475 549126.8105;7818561.969;-9714.879883;250;0.351316454 550926.8105;7818693.359;-9645.75;250;0.91784252 551139.3105;7821677.789;-9692.700195;250;0.994199169 550664.3105;7818280.418;-9669.290039;250;0.469426326 549476.8105;7819500.469;-9697.55957;250;0.116621714 550989.3105;7818881.059;-9612.820313;250;0.780520886 549589.3105;7817679.777;-9608.19043;250;0.228364613 549226.8105;7817754.859;-9614.049805;250;0.64478742 551039.3105;7818881.059;-9615.259766;250;0.115922492 549989.3105;7818618.281;-9618.419922;250;0.425285316 549614.3105;7819068.758;-9629.219727;250;0.525671104 551814.3105;7817116.68;-9556.669922;250;0.031269237 550051.8105;7821171;-9734.080078;250;0.285099964 550614.3105;7820908.219;-9609.799805;250;0.066557029 550239.3105;7819125.07;-9543.459961;250;0.69567422 549039.3105;7821377.469;-9766.55957;250;0.362311752 550101.8105;7817379.461;-9616.919922;250;0.141389494 550664.3105;7821189.77;-9691.139648;250;0.241260013 549676.8105;7820138.648;-9649.070313;250;0.967538591 550739.3105;7821283.617;-9712.540039;250;0.294070268 549189.3105;7816666.199;-9687.700195;250;0.096018198 550776.8105;7817285.609;-9613.429688;250;0.063872985 551626.8105;7818111.488;-9545.320313;250;0.688241241 550776.8105;7818261.648;-9645.540039;250;0.696182295 549651.8105;7819331.539;-9642.469727;250;0.47679236 549051.8105;7819406.617;-9739.349609;250;0.288372309 550026.8105;7821264.848;-9747.120117;250;0.722667512 549289.3105;7819200.148;-9717.219727;250;0.187473876 549714.3105;7821339.93;-9749.879883;250;0.790634157 551939.3105;7817736.09;-9568.320313;250;0.266518883 549051.8105;7818824.75;-9719.889648;250;0.219979666 552289.3105;7821246.078;-9610.709961;250;0.748498737 551089.3105;7818674.59;-9602.679688;250;0.912430253 550389.3105;7816684.969;-9618.679688;250;0.583426076 550701.8105;7816703.738;-9650.759766;250;0.929442404 549751.8105;7820345.121;-9652.379883;250;0.461103985 550076.8105;7818749.668;-9645.370117;250;0.612961765 549626.8105;7819425.391;-9658.639648;250;0.557552151 549826.8105;7819894.641;-9600.589844;250;0.404002887 550951.8105;7821339.93;-9707.69043;250;0.68692415 550739.3105;7818824.75;-9593.450195;250;0.001411821 551701.8105;7817229.301;-9558.769531;250;0.017472283 551614.3105;7817867.48;-9577.450195;250;0.456473746 550251.8105;7819857.098;-9499.580078;250;0.357074747 549126.8105;7820908.219;-9753.769531;250;0.461003998 549076.8105;7816666.199;-9682.089844;250;0.735437896 551514.3105;7817229.301;-9575.019531;250;0.10008864 550126.8105;7819106.301;-9582.160156;250;0.989453223 552076.8105;7817041.598;-9543.80957;250;0.830315453 549914.3105;7817266.84;-9633.769531;250;0.522558312 549876.8105;7820251.27;-9591.040039;250;0.639961294 551564.3105;7817172.988;-9565.150391;250;0.75753787 548976.8105;7817135.449;-9628.040039;250;0.788950949 549514.3105;7821508.859;-9742.839844;250;0.316508737 549051.8105;7818787.207;-9720.490234;250;0.609707791 551001.8105;7821077.148;-9699.240234;250;0.016735351 550776.8105;7820401.43;-9482.80957;250;0.942916472 551664.3105;7817754.859;-9574.830078;250;0.23014696 550639.3105;7821133.457;-9679.94043;250;0.106618401 549464.3105;7821771.641;-9731.070313;250;0.217076813 549739.3105;7817229.301;-9633.830078;250;0.398015323 549401.8105;7818543.199;-9629;250;0.698813636 550389.3105;7820776.828;-9570.200195;250;0.663081992 552151.8105;7817004.059;-9523.429688;250;0.435792463 550901.8105;7817886.25;-9592.549805;250;0.131019838 551664.3105;7817867.48;-9572.099609;250;0.631534699 549101.8105;7820420.199;-9737.150391;250;0.812387982 550426.8105;7820926.988;-9619.679688;250;0.858551308 550439.3105;7821640.25;-9737.230469;250;0.593559064 551176.8105;7821433.781;-9688.730469;250;0.522656712 549926.8105;7818843.52;-9592.389648;250;0.732277861 550314.3105;7821508.859;-9740.269531;250;0.812141934 552364.3105;7816891.438;-9445.669922;250;0.969364392 549051.8105;7818712.129;-9723.530273;250;0.984252088 550626.8105;7818430.578;-9682.120117;250;0.608476221 550914.3105;7819369.078;-9518.610352;250;0.811509623 549676.8105;7819218.918;-9625.929688;250;0.525363369 549214.3105;7818974.91;-9711.110352;250;0.702026379 549026.8105;7819331.539;-9737.209961;250;0.907329773 549501.8105;7820101.109;-9699.730469;250;0.034931227 549251.8105;7821715.328;-9763.55957;250;0.63042091 549826.8105;7819594.32;-9643.30957;250;0.077380292 552214.3105;7816760.051;-9511.110352;250;0.438712468 549489.3105;7821827.949;-9733.330078;250;0.754402499 552176.8105;7817285.609;-9501.040039;250;0.918386945 551964.3105;7817548.387;-9562.320313;250;0.731440552 551251.8105;7817398.227;-9588.129883;250;0.907298149 550164.3105;7819125.07;-9567.540039;250;0.712766629 550201.8105;7820157.418;-9416.049805;250;0.052002549 550139.3105;7819369.078;-9562.889648;250;0.903246264 552364.3105;7816760.051;-9457.349609;250;0.03917255 549601.8105;7819594.32;-9678.44043;250;0.585533945 551689.3105;7817116.68;-9558.370117;250;0.726280983 551626.8105;7817135.449;-9559.200195;250;0.796120816 550351.8105;7819350.309;-9486.629883;250;0.576267221 550389.3105;7819519.238;-9528.419922;250;0.620508215 549364.3105;7819237.688;-9710.669922;250;0.899628923 550164.3105;7818449.348;-9676.25;250;0.492130152 549389.3105;7817529.617;-9492.030273;250;0.804721668 550914.3105;7821827.949;-9713.049805;250;0.239477232 550326.8105;7819012.449;-9550.360352;250;0.292727608 550314.3105;7819200.148;-9501.799805;250;0.874564489 550001.8105;7820908.219;-9690.150391;250;0.366406519 549726.8105;7819613.09;-9667.540039;250;0.626533181 550864.3105;7820758.059;-9593.639648;250;0.397685693 550839.3105;7817905.02;-9599.370117;250;0.47602581 549051.8105;7818843.52;-9720.259766;250;0.511375262 550514.3105;7816722.508;-9634.160156;250;0.389604756 550189.3105;7818580.738;-9660.509766;250;0.276600148 549001.8105;7816928.98;-9671.580078;250;0.752536098 549751.8105;7818036.41;-9701.259766;250;0.776063952 550126.8105;7819425.391;-9569.389648;250;0.237632273 550689.3105;7818974.91;-9525.919922;250;0.646835948 549326.8105;7817360.688;-9438.879883;250;0.412781207 551101.8105;7818524.43;-9575.69043;250;0.032842423 549464.3105;7818224.109;-9712.969727;250;0.885983864 550114.3105;7821302.391;-9747.200195;250;0.004828721 549351.8105;7820908.219;-9737.450195;250;0.048751768 549226.8105;7820701.75;-9734.69043;250;0.144033835 549164.3105;7817154.219;-9553.589844;250;0.41265049 550939.3105;7820720.52;-9615.259766;250;0.914439606 549939.3105;7819049.988;-9601.44043;250;0.017787386 550251.8105;7818524.43;-9670.209961;250;0.360771568 551039.3105;7816666.199;-9613.080078;250;0.8901123 550014.3105;7819894.641;-9543.179688;250;0.136647744 550089.3105;7818374.27;-9686.839844;250;0.108450413 549889.3105;7820138.648;-9556.69043;250;0.640665466 550026.8105;7820589.129;-9592.009766;250;0.196069471 551276.8105;7821246.078;-9697.759766;250;0.724653641 551414.3105;7818092.719;-9538.049805;250;0.4524014 550314.3105;7818655.82;-9652.429688;250;0.438746448 550276.8105;7819256.457;-9512.219727;250;0.468008448 549964.3105;7819519.238;-9607.089844;250;0.127081071 550126.8105;7818599.508;-9656.040039;250;0.8847056 548951.8105;7818092.719;-9711.209961;250;0.774598136 549926.8105;7819950.949;-9554.120117;250;0.960252011 549726.8105;7816872.668;-9652.049805;250;0.383016112 550839.3105;7817417;-9598.700195;250;0.723911743 550151.8105;7819875.867;-9524.269531;250;0.481583789 550089.3105;7820495.281;-9542.950195;250;0.05541842 551614.3105;7817811.168;-9578.05957;250;0.566871182 551189.3105;7821640.25;-9678.910156;250;0.610470402 549526.8105;7817886.25;-9672.330078;250;0.166665809 550789.3105;7819782.02;-9558.019531;250;0.749677278 551776.8105;7817266.84;-9559.089844;250;0.355706727 552101.8105;7817886.25;-9569.080078;250;0.456982506 550889.3105;7818749.668;-9640.799805;250;0.338902553 550701.8105;7819613.09;-9533.740234;250;0.634894063 548889.3105;7819162.609;-9730.990234;250;0.88753709 549964.3105;7819462.93;-9598.870117;250;0.705814018 550751.8105;7821621.48;-9733.200195;250;0.625960505 550239.3105;7820645.438;-9538.469727;250;0.3897802 550801.8105;7819444.16;-9500.200195;250;0.752056306 549051.8105;7818017.637;-9695.540039;250;0.995086471 549164.3105;7817754.859;-9622.150391;250;0.084637188 550276.8105;7819125.07;-9530.889648;250;0.274750497 550651.8105;7821396.238;-9728.19043;250;0.889306436 552001.8105;7817754.859;-9571.580078;250;0.362179959 551414.3105;7817961.328;-9557.490234;250;0.208555644 552076.8105;7817079.141;-9542.589844;250;0.088231718 549376.8105;7820082.34;-9718.339844;250;0.45695618 549801.8105;7818355.5;-9646.339844;250;0.159398261 550376.8105;7818036.41;-9670.629883;250;0.03082357 551801.8105;7818055.18;-9553.509766;250;0.703834471 549639.3105;7818374.27;-9636.160156;250;0.881405655 549889.3105;7819556.777;-9628.80957;250;0.147920826 550214.3105;7820063.57;-9436.179688;250;0.216054609 551614.3105;7816722.508;-9577.990234;250;0.097420426 549914.3105;7820401.43;-9594.660156;250;0.37285348 551764.3105;7816816.359;-9573.320313;250;0.642391185 549939.3105;7820270.039;-9564.339844;250;0.176676848 550214.3105;7819706.938;-9559.719727;250;0.950424367 552226.8105;7817323.148;-9493.219727;250;0.670367884 549801.8105;7818055.18;-9702.360352;250;0.858761338 551951.8105;7817773.629;-9571.75;250;0.555557755 551301.8105;7817867.48;-9562.009766;250;0.419501581 549064.3105;7818111.488;-9706.759766;250;0.884862534 549351.8105;7818130.258;-9709.169922;250;0.590803254 550201.8105;7820382.66;-9465.280273;250;0.754578978 551326.8105;7821077.148;-9677.450195;250;0.896780447 548951.8105;7818580.738;-9726.599609;250;0.405707408 551114.3105;7816760.051;-9598.169922;250;0.138360934 552114.3105;7817942.559;-9574.55957;250;0.153903931 550201.8105;7820532.82;-9511.610352;250;0.372743412 552289.3105;7816684.969;-9496.299805;250;0.099144225 550814.3105;7818937.367;-9564.150391;250;0.77152486 551751.8105;7817923.789;-9559.200195;250;0.833911657 551476.8105;7817961.328;-9566.459961;250;0.483028622 550214.3105;7819275.23;-9538.980469;250;0.052067425 550276.8105;7819669.398;-9563.849609;250;0.254816908 551689.3105;7817698.547;-9576.860352;250;0.500082343 548939.3105;7820758.059;-9762.030273;250;0.402174877 549814.3105;7818561.969;-9580.410156;250;0.902960281 550489.3105;7818974.91;-9521.879883;250;0.865630111 550226.8105;7820026.027;-9443.030273;250;0.090478145 550976.8105;7816778.816;-9626.370117;250;0.086084898 550426.8105;7820701.75;-9531.549805;250;0.92717677 549876.8105;7819162.609;-9618.480469;250;0.986782775 548914.3105;7817341.918;-9590.900391;250;0.776706656 550964.3105;7817041.598;-9608.5;250;0.78578414 550176.8105;7819838.328;-9527.19043;250;0.602140454 549476.8105;7821077.148;-9743.080078;250;0.875515905 550189.3105;7819519.238;-9563.919922;250;0.51799939 550351.8105;7817961.328;-9672.839844;250;0.1097397 549976.8105;7820063.57;-9516.610352;250;0.171201424 550139.3105;7820720.52;-9585.849609;250;0.737869114 550839.3105;7819800.789;-9557.219727;250;0.633843612 549901.8105;7819500.469;-9620.280273;250;0.237088256 550201.8105;7818393.039;-9686.589844;250;0.977832986 548989.3105;7817717.32;-9627.209961;250;0.547985087 550664.3105;7821640.25;-9730.889648;250;0.845831221 548876.8105;7820908.219;-9766.910156;250;0.294713454 551301.8105;7816853.898;-9588.879883;250;0.615076607 550114.3105;7819819.559;-9550.709961;250;0.018015549 549939.3105;7821133.457;-9739.030273;250;0.909777615 550701.8105;7821827.949;-9724.099609;250;0.05430179 550426.8105;7818130.258;-9672.339844;250;0.097329424 550739.3105;7819106.301;-9503.040039;250;0.015303128 550326.8105;7817905.02;-9678.709961;250;0.698872479 552226.8105;7817567.16;-9548.429688;250;0.905957233 550451.8105;7819106.301;-9482.129883;250;0.20546003 550376.8105;7819275.23;-9472.349609;250;0.074745553 551589.3105;7817304.379;-9572.259766;250;0.450581847 549726.8105;7819275.23;-9617.280273;250;0.923458877 549989.3105;7820382.66;-9560.099609;250;0.118415354 551589.3105;7821490.09;-9661.070313;250;0.311865038 549251.8105;7820401.43;-9735.070313;250;0.028130156 550614.3105;7821546.398;-9738.410156;250;0.715105455 549114.3105;7817604.699;-9564.290039;250;0.965896716 549739.3105;7819068.758;-9622.610352;250;0.7009143 549239.3105;7820438.969;-9736.55957;250;0.396419942 550051.8105;7819725.711;-9586.469727;250;0.079283239 549376.8105;7820870.68;-9735.549805;250;0.148368206 551489.3105;7817360.688;-9588.370117;250;0.482565078 549014.3105;7819087.527;-9732.509766;250;0.862754262 550889.3105;7818055.18;-9609.55957;250;0.757703524 548951.8105;7818637.047;-9725.040039;250;0.390654919 551051.8105;7818561.969;-9599.870117;250;0.903285586 549814.3105;7818637.047;-9558.839844;250;0.542096171 552289.3105;7817004.059;-9481.75;250;0.082410219 550014.3105;7818149.027;-9710.580078;250;0.308143178 551326.8105;7818317.957;-9511.75;250;0.14772766 549664.3105;7820232.5;-9667.419922;250;0.21123037 549301.8105;7818355.5;-9691.919922;250;0.8961271 550276.8105;7821471.32;-9743.05957;250;0.648403788 550001.8105;7820157.418;-9499.820313;250;0.606993172 550301.8105;7818130.258;-9689.240234;250;0.389230218 551889.3105;7817529.617;-9562.860352;250;0.909746847 549126.8105;7817661.008;-9585.219727;250;0.237898173 550089.3105;7819275.23;-9576.94043;250;0.245440536 550176.8105;7818524.43;-9665.969727;250;0.000478051 549439.3105;7818186.57;-9717.980469;250;0.844583687 549326.8105;7819444.16;-9724.879883;250;0.994015264 552339.3105;7816778.816;-9463.679688;250;0.193282551 549914.3105;7819763.25;-9617.160156;250;0.543691552 550039.3105;7819800.789;-9570.549805;250;0.232093718 552289.3105;7816835.129;-9482.990234;250;0.649113727 551876.8105;7817698.547;-9566.370117;250;0.383622934 549126.8105;7818036.41;-9694.509766;250;0.939580982 550614.3105;7820026.027;-9474.040039;250;0.696453028 548939.3105;7820870.68;-9765.870117;250;0.066668464 548939.3105;7820476.508;-9742.629883;250;0.304619347 550001.8105;7820288.809;-9530.860352;250;0.430419081 549626.8105;7820326.348;-9688.790039;250;0.246344002 549601.8105;7820232.5;-9685.549805;250;0.953163828 550814.3105;7818993.68;-9546.400391;250;0.38893716 551426.8105;7817923.789;-9565.570313;250;0.564716745 550089.3105;7819706.938;-9582.009766;250;0.164887131 550101.8105;7816835.129;-9591;250;0.648710849 551176.8105;7816966.52;-9578.919922;250;0.799124522 550901.8105;7820232.5;-9542.599609;250;0.554052137 549939.3105;7819613.09;-9620.05957;250;0.99533881 551001.8105;7817079.141;-9602.740234;250;0.768160898 549839.3105;7819012.449;-9592.299805;250;0.451626872 550489.3105;7820438.969;-9376.200195;250;0.984833796 550114.3105;7820007.258;-9490.099609;250;0.736072318 549926.8105;7821095.918;-9734.55957;250;0.182108508 548889.3105;7820626.668;-9759.969727;250;0.926132222 550326.8105;7820795.598;-9585.299805;250;0.364405764 551676.8105;7818055.18;-9551.429688;250;0.025306712 549926.8105;7819350.309;-9597.389648;250;0.448838812 550826.8105;7821039.609;-9672.740234;250;0.450525663 551989.3105;7817717.32;-9567.910156;250;0.480795749 550239.3105;7819575.551;-9565.339844;250;0.466822564 550226.8105;7821583.941;-9743.94043;250;0.155630689 550976.8105;7820532.82;-9580.230469;250;0.530054526 551964.3105;7817998.871;-9567.660156;250;0.304993786 550889.3105;7821771.641;-9715.480469;250;0.773805847 551939.3105;7817923.789;-9564.44043;250;0.621116479 550964.3105;7820682.98;-9610.049805;250;0.256231725 550051.8105;7819763.25;-9577.799805;250;0.403548672 550201.8105;7820401.43;-9472.589844;250;0.79755614 552289.3105;7821771.641;-9533.360352;250;0.316425092 550914.3105;7818280.418;-9615.25;250;0.157541701 551451.8105;7818167.797;-9532.629883;250;0.352901289 549576.8105;7819143.84;-9646.490234;250;0.907404311 551964.3105;7817811.168;-9572.320313;250;0.132886019 549414.3105;7819556.777;-9715.69043;250;0.371428829 549726.8105;7821602.711;-9747.509766;250;0.89888444 550614.3105;7821077.148;-9666.919922;250;0.005090335 549814.3105;7818299.188;-9666.700195;250;0.37469773 550139.3105;7818355.5;-9692.80957;250;0.943292549 549326.8105;7820401.43;-9735.969727;250;0.190685387 551101.8105;7817548.387;-9584.509766;250;0.343069601 549839.3105;7819049.988;-9604.820313;250;0.758791841 549026.8105;7819106.301;-9731.570313;250;0.355818856 549426.8105;7818824.75;-9642.929688;250;0.480505623 549326.8105;7819481.699;-9728.009766;250;0.377466663 550064.3105;7818205.34;-9708.099609;250;0.912934663 550901.8105;7818092.719;-9613.519531;250;0.753367984 550189.3105;7818505.66;-9669.19043;250;0.896775893 548901.8105;7817642.238;-9638.929688;250;0.460950167 550264.3105;7818374.27;-9686.459961;250;0.152722436 549214.3105;7819725.711;-9731.120117;250;0.113931162 549651.8105;7818299.188;-9660.299805;250;0.520472378 551014.3105;7817417;-9591.900391;250;0.391690486 551926.8105;7821452.551;-9649.759766;250;0.486945896 549151.8105;7819538.008;-9745.620117;250;0.335707422 549501.8105;7821358.699;-9753.759766;250;0.46742387 550214.3105;7819331.539;-9538.280273;250;0.471323664 550451.8105;7818824.75;-9587.44043;250;0.496886027 549451.8105;7818374.27;-9669.799805;250;0.295718429 551651.8105;7817229.301;-9562.44043;250;0.98062066 549576.8105;7821752.867;-9738.209961;250;0.461808972 551776.8105;7817773.629;-9569.929688;250;0.623456422 549926.8105;7819688.168;-9622.269531;250;0.331567633 549726.8105;7821734.102;-9744.709961;250;0.941577967 552101.8105;7816666.199;-9533.230469;250;0.874196475 549714.3105;7818017.637;-9700.990234;250;0.108896919 551539.3105;7817754.859;-9582.429688;250;0.170699078 550039.3105;7820908.219;-9681.150391;250;0.035005521 549664.3105;7820420.199;-9680.94043;250;0.182929764 549801.8105;7818036.41;-9702.790039;250;0.748099372 550351.8105;7818430.578;-9682.669922;250;0.416202677 552101.8105;7817341.918;-9523.469727;250;0.067046857 551301.8105;7817492.078;-9587.799805;250;0.794108398 549789.3105;7820401.43;-9640.379883;250;0.636634087 549801.8105;7820964.531;-9732.139648;250;0.978095264 549476.8105;7819950.949;-9711.150391;250;0.448387757 549801.8105;7819312.77;-9616.990234;250;0.348262528 550301.8105;7817980.098;-9682.769531;250;0.401703636 550489.3105;7817698.547;-9645.790039;250;0.444227991 549901.8105;7819444.16;-9611.400391;250;0.31124127 548964.3105;7818674.59;-9725.580078;250;0.610987592 551039.3105;7818524.43;-9598.360352;250;0.00657016 549939.3105;7819181.379;-9608.219727;250;0.392296978 549814.3105;7818618.281;-9563.719727;250;0.396736192 551551.8105;7817811.168;-9582.429688;250;0.230258046 552239.3105;7817379.461;-9504.089844;250;0.759380653 550064.3105;7818149.027;-9711.290039;250;0.474407564 550789.3105;7821790.41;-9719;250;0.531787131 549864.3105;7819256.457;-9618.379883;250;0.230658175 551239.3105;7821039.609;-9692.719727;250;0.507807833 549551.8105;7819763.25;-9685.160156;250;0.985370395 550301.8105;7820514.051;-9478.419922;250;0.707899231 549301.8105;7817229.301;-9486.509766;250;0.06185442 551814.3105;7817905.02;-9561.620117;250;0.088142359 549626.8105;7821002.07;-9738.480469;250;0.861677807 549089.3105;7819838.328;-9729.94043;250;0.87784089 551289.3105;7818017.637;-9538.650391;250;0.106304677 549514.3105;7818524.43;-9599.55957;250;0.102203778 550839.3105;7819143.84;-9529.919922;250;0.300502394 549076.8105;7818655.82;-9722.75;250;0.0225998 550039.3105;7820776.828;-9642.5;250;0.260033912 550289.3105;7821077.148;-9675.080078;250;0.706724052 552289.3105;7817191.758;-9461.879883;250;0.820195931 550164.3105;7818956.141;-9621.05957;250;0.97050713 551251.8105;7821321.16;-9689.179688;250;0.086009956 549551.8105;7818805.98;-9601.44043;250;0.745632258 549289.3105;7819725.711;-9728.290039;250;0.891227462 550751.8105;7820607.898;-9509.530273;250;0.834064864 548889.3105;7819462.93;-9733.660156;250;0.960013604 550726.8105;7820720.52;-9536.910156;250;0.791336523 551289.3105;7816666.199;-9592.839844;250;0.577387254 549814.3105;7820251.27;-9618.209961;250;0.751564701 548964.3105;7819031.219;-9736.099609;250;0.831316071 550089.3105;7817886.25;-9705.44043;250;0.863377308 549101.8105;7818956.141;-9724.540039;250;0.534596024 549151.8105;7819162.609;-9720.759766;250;0.370184599 549526.8105;7819706.938;-9690.780273;250;0.635402087 549751.8105;7818468.117;-9603.599609;250;0.103266046 549551.8105;7818655.82;-9579.339844;250;0.487195987 548889.3105;7819294;-9730.219727;250;0.594178273 551801.8105;7817417;-9565.969727;250;0.145782099 549226.8105;7820270.039;-9734.509766;250;0.864837807 550214.3105;7820926.988;-9640;250;0.541970268 549676.8105;7819594.32;-9674.519531;250;0.503720455 549489.3105;7818730.898;-9613.639648;250;0.878853004 550726.8105;7819294;-9459.94043;250;0.682801447 549601.8105;7818468.117;-9607.900391;250;0.00266254 550001.8105;7818242.879;-9699.620117;250;0.794565612 549151.8105;7820288.809;-9732.650391;250;0.441520021 549089.3105;7819125.07;-9726.780273;250;0.601082372 549601.8105;7817172.988;-9601.44043;250;0.452488417 552114.3105;7817661.008;-9562.25;250;0.206075804 550276.8105;7821152.23;-9696.25;250;0.941201419 550414.3105;7819950.949;-9464.620117;250;0.721389166 549026.8105;7819256.457;-9733.299805;250;0.632364885 549376.8105;7817417;-9458.259766;250;0.485571296 549501.8105;7818787.207;-9614.419922;250;0.663633887 549014.3105;7818655.82;-9725.629883;250;0.773707503 552289.3105;7817698.547;-9536.009766;250;0.914193744 550376.8105;7820814.371;-9586;250;0.545440275 549089.3105;7819031.219;-9729.280273;250;0.722463437 549751.8105;7820945.758;-9735.589844;250;0.930859954 551139.3105;7821377.469;-9694.730469;250;0.884684713 550851.8105;7819200.148;-9520.94043;250;0.370654639 551576.8105;7817717.32;-9579.360352;250;0.044704113 549876.8105;7818899.828;-9568.469727;250;0.041543233 548926.8105;7818730.898;-9727.110352;250;0.120408279 549089.3105;7819932.18;-9722.709961;250;0.042107032 549026.8105;7818993.68;-9732.120117;250;0.922944918 549239.3105;7818449.348;-9682.349609;250;0.491450059 549651.8105;7819932.18;-9649.370117;250;0.998659895 549476.8105;7819594.32;-9702.480469;250;0.700922267 549214.3105;7819594.32;-9738.780273;250;0.667313509 552351.8105;7817698.547;-9520.400391;250;0.744771164 551464.3105;7817266.84;-9580.990234;250;0.288827655 549351.8105;7819725.711;-9722.94043;250;0.360436634 550089.3105;7819538.008;-9592.80957;250;0.975427461 549564.3105;7820776.828;-9732.480469;250;0.347423747 550301.8105;7818317.957;-9688.769531;250;0.046995331 551214.3105;7821771.641;-9675.509766;250;0.904105256 549539.3105;7818749.668;-9598.139648;250;0.856094403 549876.8105;7818730.898;-9568.639648;250;0.13916296 549089.3105;7819237.688;-9728.94043;250;0.173109178 549151.8105;7818805.98;-9710.009766;250;0.701903548 549451.8105;7818449.348;-9639.139648;250;0.920660033 549226.8105;7819444.16;-9737.780273;250;0.927794682 549051.8105;7819613.09;-9738.80957;250;0.832790144 551351.8105;7817980.098;-9546.19043;250;0.554536159 551226.8105;7817773.629;-9569.099609;250;0.880087818 549326.8105;7819125.07;-9700.679688;250;0.828857321 548889.3105;7819538.008;-9738.589844;250;0.769334584 551064.3105;7817060.367;-9595.509766;250;0.994565313 549089.3105;7819575.551;-9741.830078;250;0.176564427 549264.3105;7820870.68;-9737.959961;250;0.597647342 549489.3105;7817398.227;-9510.44043;250;0.517926149 550201.8105;7816684.969;-9611.30957;250;0.583625052 549251.8105;7817473.309;-9462.650391;250;0.652711003 550201.8105;7819725.711;-9556.429688;250;0.156122157 549814.3105;7818974.91;-9579.400391;250;0.507066789 549601.8105;7821039.609;-9739.400391;250;0.008781992 549514.3105;7818486.891;-9613.049805;250;0.844154313 552289.3105;7817229.301;-9460.69043;250;0.881988208 549814.3105;7820288.809;-9626.120117;250;0.946498255 550114.3105;7818149.027;-9709.370117;250;0.226709243 550676.8105;7819068.758;-9491.230469;250;0.304789899 550776.8105;7819294;-9476.070313;250;0.964735419 550701.8105;7821114.691;-9677.719727;250;0.289264076 551339.3105;7817698.547;-9579.259766;250;0.196217557 551576.8105;7817661.008;-9578.830078;250;0.722685825 549801.8105;7819969.719;-9589.950195;250;0.688277846 549864.3105;7820232.5;-9591.320313;250;0.372250563 552426.8105;7817360.688;-9437.030273;250;0.188575956 549739.3105;7818843.52;-9560.580078;250;0.248621668 550301.8105;7818299.188;-9690.099609;250;0.044022635 549526.8105;7818224.109;-9702.400391;250;0.08972763 552176.8105;7817604.699;-9556.679688;250;0.559568445 550751.8105;7819782.02;-9551.950195;250;0.047681977 549189.3105;7817473.309;-9477;250;0.722304895 550651.8105;7819031.219;-9498.110352;250;0.258195999 549226.8105;7818899.828;-9703.330078;250;0.210710102 551301.8105;7817698.547;-9578.080078;250;0.46322 549501.8105;7821002.07;-9743.349609;250;0.487285846 551364.3105;7817867.48;-9565.509766;250;0.929852283 549539.3105;7819631.859;-9686.980469;250;0.756108285 549226.8105;7818862.289;-9701.320313;250;0.571481156 550764.3105;7819725.711;-9554.05957;250;0.290186552 551601.8105;7821095.918;-9671.629883;250;0.920380009 550814.3105;7819744.48;-9559.780273;250;0.960009829 551589.3105;7821133.457;-9672.650391;250;0.607783975 551001.8105;7818449.348;-9596.280273;250;0.359751329 549676.8105;7818974.91;-9611.959961;250;0.737774167 549989.3105;7821752.867;-9743.429688;250;0.080121024 549476.8105;7820776.828;-9732.80957;250;0.151689068 550914.3105;7816853.898;-9632.089844;250;0.169254297 548889.3105;7820063.57;-9720.120117;250;0.372005524 551851.8105;7817848.711;-9567.769531;250;0.397963945 552414.3105;7817191.758;-9399.740234;250;0.767517573 551039.3105;7818468.117;-9587.169922;250;0.09000272 549826.8105;7820457.738;-9627.650391;250;0.763778196 550114.3105;7817754.859;-9696.150391;250;0.93062906 551201.8105;7817116.68;-9578.980469;250;0.994464355 550264.3105;7818918.598;-9606.05957;250;0.927297648 548951.8105;7819763.25;-9733.799805;250;0.245960135 551414.3105;7821002.07;-9663.719727;250;0.10597579 549614.3105;7818956.141;-9613.240234;250;0.456049939 551626.8105;7821546.398;-9647.650391;250;0.036239237 549214.3105;7820044.801;-9722.700195;250;0.063784422 550976.8105;7820589.129;-9589.55957;250;0.964762954 549251.8105;7819125.07;-9710.990234;250;0.108524391 549289.3105;7818862.289;-9686.040039;250;0.399922483 549164.3105;7817942.559;-9678.389648;250;0.006780706 549889.3105;7816985.289;-9601.509766;250;0.813303919 549964.3105;7821734.102;-9742.370117;250;0.027743026 549139.3105;7819875.867;-9726.540039;250;0.021155991 549651.8105;7817717.32;-9642.049805;250;0.692809583 550926.8105;7816910.207;-9624.969727;250;0.758083281 549676.8105;7818881.059;-9588.549805;250;0.737872373 549764.3105;7819932.18;-9609.980469;250;0.015414665 549464.3105;7819688.168;-9706.290039;250;0.040893013 550076.8105;7817473.309;-9644.379883;250;0.799250417 551639.3105;7817454.539;-9563.990234;250;0.466572537 550489.3105;7820044.801;-9448.679688;250;0.527856523 549189.3105;7820889.449;-9741.709961;250;0.326141902 550201.8105;7821302.391;-9738.740234;250;0.642450391 549276.8105;7819049.988;-9700.780273;250;0.55521154 548889.3105;7820007.258;-9719.679688;250;0.191772274 549576.8105;7818355.5;-9659.429688;250;0.634358973 549389.3105;7819125.07;-9688.139648;250;0.530770293 549576.8105;7818299.188;-9675.549805;250;0.589646577 549339.3105;7818524.43;-9644.55957;250;0.666806046 548889.3105;7818618.281;-9725.469727;250;0.535265565 549151.8105;7819369.078;-9738.900391;250;0.612306123 550114.3105;7820889.449;-9650.459961;250;0.411133614 550239.3105;7819519.238;-9555.030273;250;0.084155269 548889.3105;7821114.691;-9771.389648;250;0.84312422 551839.3105;7817792.398;-9569.19043;250;0.746588573 550301.8105;7821677.789;-9742.80957;250;0.000965172 552451.8105;7817172.988;-9387.049805;250;0.645632643 549151.8105;7820964.531;-9754.889648;250;0.033826511 549576.8105;7816647.43;-9657.709961;250;0.666379431 549764.3105;7817341.918;-9636.769531;250;0.783223046 548976.8105;7821471.32;-9752.629883;250;0.720383381 549739.3105;7819162.609;-9624;250;0.48636056 551076.8105;7820701.75;-9646.259766;250;0.580207226 551239.3105;7817867.48;-9564.290039;250;0.505672253 549864.3105;7820438.969;-9613.009766;250;0.452641467 549989.3105;7817754.859;-9699.540039;250;0.629688643 551426.8105;7821677.789;-9647.339844;250;0.033298164 549864.3105;7821790.41;-9740.129883;250;0.503649976 549214.3105;7820101.109;-9720.849609;250;0.58564761 549451.8105;7820063.57;-9711.200195;250;0.651455037 550326.8105;7817548.387;-9664.879883;250;0.707206269 550814.3105;7817623.469;-9588.650391;250;0.583483459 550126.8105;7817248.07;-9590.290039;250;0.006616063 550114.3105;7817792.398;-9698.839844;250;0.4628056 550139.3105;7817529.617;-9661.580078;250;0.76754917 548951.8105;7819800.789;-9732.990234;250;0.743970477 551164.3105;7818580.738;-9568.25;250;0.647207209 551376.8105;7820983.297;-9664.730469;250;0.095550358 550489.3105;7821058.379;-9665.780273;250;0.363326391 549651.8105;7819725.711;-9673;250;0.910300361 549314.3105;7820645.438;-9737.610352;250;0.747457544 549614.3105;7818918.598;-9607.599609;250;0.479953791 549226.8105;7818693.359;-9695.879883;250;0.971315866 551664.3105;7821546.398;-9644.509766;250;0.027247001 552376.8105;7817323.148;-9442.5;250;0.525674111 549701.8105;7817492.078;-9607.790039;250;0.129314706 549214.3105;7820007.258;-9725.400391;250;0.046111102 550251.8105;7817341.918;-9609.570313;250;0.507961496 549301.8105;7820570.359;-9738;250;0.475887775 549414.3105;7819181.379;-9692.830078;250;0.226795567 551001.8105;7820551.59;-9592.80957;250;0.207839021 549289.3105;7820926.988;-9739.540039;250;0.07210811 549589.3105;7819950.949;-9675.200195;250;0.542331792 549326.8105;7816797.59;-9680.240234;250;0.685867929 549314.3105;7821020.84;-9743.25;250;0.636896529 549276.8105;7819106.301;-9706.110352;250;0.472887937 549839.3105;7817867.48;-9704.80957;250;0.857169132 548889.3105;7818017.637;-9709.740234;250;0.722019805 549676.8105;7817848.711;-9680.820313;250;0.556137564 549576.8105;7820288.809;-9700.650391;250;0.316770122 551001.8105;7821452.551;-9700.700195;250;0.873124692 549289.3105;7818899.828;-9686.179688;250;0.821496862 549151.8105;7819275.23;-9730.700195;250;0.053361183 550789.3105;7821583.941;-9729.75;250;0.49181826 549714.3105;7820157.418;-9637.480469;250;0.599168844 552414.3105;7817492.078;-9482.269531;250;0.591169465 549126.8105;7816966.52;-9643.320313;250;0.899983904 552426.8105;7817736.09;-9511.610352;250;0.316713846 549664.3105;7818730.898;-9553.549805;250;0.428856868 549164.3105;7819894.641;-9726.330078;250;0.327299507 549651.8105;7820701.75;-9719.900391;250;0.72150751 549651.8105;7821602.711;-9748.740234;250;0.790383893 550026.8105;7817661.008;-9688.860352;250;0.480310771 550326.8105;7821095.918;-9676.759766;250;0.82097643 549901.8105;7817097.91;-9613.339844;250;0.403630498 550501.8105;7817285.609;-9617.410156;250;0.956473103 549864.3105;7817041.598;-9612.049805;250;0.86336881 550389.3105;7821790.41;-9733.459961;250;0.163574192 550301.8105;7817829.938;-9684.230469;250;0.851365448 549551.8105;7819200.148;-9660.179688;250;0.584804776 551376.8105;7816703.738;-9591.620117;250;0.452995993 549676.8105;7818843.52;-9578.969727;250;0.081517124 549289.3105;7820307.578;-9735.709961;250;0.240697777 549151.8105;7816778.816;-9690.990234;250;0.096783908 548901.8105;7819706.938;-9737.700195;250;0.42587824 549276.8105;7820983.297;-9743.360352;250;0.233156125 549751.8105;7819969.719;-9610.929688;250;0.224479825 549214.3105;7820851.91;-9738.25;250;0.027548402 549076.8105;7817679.777;-9597;250;0.190489452 551114.3105;7817285.609;-9590.129883;250;0.229535751 549214.3105;7817942.559;-9674.089844;250;0.796454593 549401.8105;7817210.527;-9508.620117;250;0.716413712 549301.8105;7817998.871;-9685.759766;250;0.174673864 550064.3105;7817435.77;-9633.959961;250;0.803618093 549451.8105;7817661.008;-9564.480469;250;0.402676508 551264.3105;7820983.297;-9683.169922;250;0.958117705 549539.3105;7816835.129;-9663.110352;250;0.875308326 550126.8105;7820776.828;-9609.459961;250;0.528876167 550464.3105;7820063.57;-9437.929688;250;0.543959697 549564.3105;7820983.297;-9741.19043;250;0.450337929 549576.8105;7816741.277;-9662.910156;250;0.438627596 549201.8105;7820664.211;-9730.990234;250;0.362288186 549576.8105;7819387.852;-9667.330078;250;0.296111572 549501.8105;7817604.699;-9551.519531;250;0.256054386 549976.8105;7818430.578;-9651.870117;250;0.456009149 549914.3105;7818111.488;-9706.410156;250;0.039779086 549714.3105;7820194.961;-9643.200195;250;0.74741372 550201.8105;7821358.699;-9743.879883;250;0.225450718 549326.8105;7820851.91;-9736.419922;250;0.776093509 551326.8105;7820964.531;-9670.110352;250;0.227491408 550726.8105;7818524.43;-9664.049805;250;0.964257872 549489.3105;7820626.668;-9732.490234;250;0.541926681 549276.8105;7819012.449;-9697.080078;250;0.019136906 552239.3105;7817754.859;-9549.070313;250;0.32409394 551439.3105;7817510.848;-9589.019531;250;0.867007434 549576.8105;7818393.039;-9645.450195;250;0.450769323 549389.3105;7819087.527;-9680.169922;250;0.652008347 551351.8105;7818092.719;-9527.389648;250;0.663257831 551214.3105;7817698.547;-9576.769531;250;0.875158663 549401.8105;7817060.367;-9583.339844;250;0.494789967 549326.8105;7818486.891;-9653.379883;250;0.552953572 551464.3105;7817886.25;-9574.200195;250;0.704904089 549376.8105;7820157.418;-9714.969727;250;0.317145232 549739.3105;7819500.469;-9640.860352;250;0.984882746 550151.8105;7821339.93;-9749.040039;250;0.152582167 549551.8105;7819500.469;-9678.599609;250;0.395773698 550151.8105;7821020.84;-9687.599609;250;0.304006786 549151.8105;7819406.617;-9741.469727;250;0.53061466 549689.3105;7820570.359;-9691.049805;250;0.589956311 549489.3105;7817529.617;-9524.830078;250;0.566563145 550126.8105;7820851.91;-9633.860352;250;0.189592871 549201.8105;7818749.668;-9702.950195;250;0.050746329 550339.3105;7820889.449;-9609.110352;250;0.684527308 550264.3105;7819481.699;-9541.860352;250;0.054568086 550264.3105;7820945.758;-9638;250;0.163292308 548889.3105;7821077.148;-9771.769531;250;0.46905597 549551.8105;7820720.52;-9726.94043;250;0.181334372 549401.8105;7819857.098;-9717.540039;250;0.091532693 550251.8105;7817510.848;-9654.639648;250;0.484243061 550039.3105;7820044.801;-9492.320313;250;0.415082625 549401.8105;7820701.75;-9736.480469;250;0.076839258 549251.8105;7817135.449;-9542.389648;250;0.730901115 552151.8105;7816872.668;-9527.910156;250;0.120861163 550739.3105;7817210.527;-9619.320313;250;0.300425505 550501.8105;7817905.02;-9639.030273;250;0.145859815 549214.3105;7818787.207;-9701;250;0.594638384 550676.8105;7819237.688;-9456.509766;250;0.035082915 550001.8105;7817792.398;-9703.25;250;0.868669913 549626.8105;7818524.43;-9584.379883;250;0.28467375 549564.3105;7820607.898;-9724.469727;250;0.330757105 549576.8105;7820945.758;-9743.070313;250;0.37500757 550889.3105;7817642.238;-9583.669922;250;0.077061767 551014.3105;7817567.16;-9587.259766;250;0.623642027 550164.3105;7817905.02;-9699.759766;250;0.304895095 549614.3105;7818092.719;-9702.040039;250;0.09427913 549464.3105;7820401.43;-9724.009766;250;0.269971107 548901.8105;7817717.32;-9654.530273;250;0.278690647 549826.8105;7816872.668;-9634.070313;250;0.035725593 549151.8105;7817510.848;-9510.639648;250;0.649545465 549289.3105;7818993.68;-9691.69043;250;0.151441268 550876.8105;7819312.77;-9508.049805;250;0.431771665 550076.8105;7820870.68;-9659.230469;250;0.029769682 550164.3105;7820626.668;-9550.540039;250;0.508234636 549626.8105;7817079.141;-9621.209961;250;0.501734232 550051.8105;7817567.16;-9671.160156;250;0.256126602 549851.8105;7817454.539;-9644.459961;250;0.117092483 550864.3105;7819556.777;-9537.370117;250;0.562631671 549626.8105;7820495.281;-9702.110352;250;0.349990734 549826.8105;7817510.848;-9647.219727;250;0.111229788 549401.8105;7819913.41;-9722.910156;250;0.236796819 549201.8105;7820739.289;-9736.75;250;0.786460276 550089.3105;7818036.41;-9709.860352;250;0.05875232 550439.3105;7817323.148;-9622.139648;250;0.876601011 551189.3105;7817191.758;-9579.459961;250;0.213674328 549964.3105;7817172.988;-9611.849609;250;0.781750734 550351.8105;7817642.238;-9668.730469;250;0.367966417 550239.3105;7817417;-9628.410156;250;0.619527717 550089.3105;7821358.699;-9754.650391;250;0.278346291 550964.3105;7820814.371;-9646.099609;250;0.916846006 549189.3105;7818393.039;-9700.620117;250;0.381729502 551739.3105;7821734.102;-9570.509766;250;0.502220238 549576.8105;7817811.168;-9653.799805;250;0.445371369 549551.8105;7816891.438;-9655.429688;250;0.948965847 552151.8105;7816928.98;-9522.580078;250;0.648406172 549376.8105;7817754.859;-9603.330078;250;0.607052011 549839.3105;7817379.461;-9643.169922;250;0.073438438 550039.3105;7818092.719;-9712.269531;250;0.361452673 550751.8105;7820776.828;-9564.019531;250;0.807218885 551114.3105;7821133.457;-9702.929688;250;0.388025789 549914.3105;7817492.078;-9652.879883;250;0.598930525 549039.3105;7821058.379;-9765.110352;250;0.624661836 551264.3105;7817229.301;-9578.269531;250;0.023769361 550351.8105;7820044.801;-9428.490234;250;0.563788369 551426.8105;7817829.938;-9574.299805;250;0.140057825 549214.3105;7818824.75;-9702.080078;250;0.317360921 548951.8105;7820232.5;-9722.820313;250;0.615270032 549576.8105;7818486.891;-9604.209961;250;0.785153565 549439.3105;7817905.02;-9674.719727;250;0.595375024 549714.3105;7817754.859;-9671.330078;250;0.964899135 548951.8105;7817548.387;-9608.240234;250;0.284355869 549551.8105;7819462.93;-9675.94043;250;0.64626171 550601.8105;7816891.438;-9631.089844;250;0.905400511 549551.8105;7820851.91;-9742.370117;250;0.606171832 550426.8105;7821715.328;-9736.070313;250;0.752997074 551351.8105;7818055.18;-9532.19043;250;0.60362908 549564.3105;7819425.391;-9671.160156;250;0.326878783 549764.3105;7820776.828;-9718.650391;250;0.657771767 551239.3105;7818073.949;-9537.019531;250;0.374875546 549589.3105;7816778.816;-9665.299805;250;0.419626954 551589.3105;7817961.328;-9570.360352;250;0.413479131 550876.8105;7817360.688;-9601.900391;250;0.526811097 548939.3105;7820288.809;-9725.25;250;0.812312491 549389.3105;7818505.66;-9635.849609;250;0.58772155 551139.3105;7817041.598;-9586.019531;250;0.722389055 549176.8105;7818599.508;-9704.629883;250;0.182741032 549639.3105;7817848.711;-9675.240234;250;0.749272322 550614.3105;7817248.07;-9619.530273;250;0.617745348 552289.3105;7817116.68;-9471.030273;250;0.962267244 550089.3105;7820682.98;-9588.280273;250;0.579274235 552426.8105;7817754.859;-9516.089844;250;0.25529079 549201.8105;7817661.008;-9577.839844;250;0.058901898 549964.3105;7818299.188;-9683.700195;250;0.879105277 549714.3105;7817604.699;-9638.19043;250;0.02444322 549414.3105;7818899.828;-9647.599609;250;0.744532001 550751.8105;7821246.078;-9710.259766;250;0.365806323 549451.8105;7819143.84;-9675.530273;250;0.455053066 551314.3105;7816928.98;-9581.870117;250;0.720423356 549376.8105;7818055.18;-9710.219727;250;0.355865896 549226.8105;7819218.918;-9722.459961;250;0.726199631 549739.3105;7819125.07;-9625.070313;250;0.555033838 549189.3105;7818524.43;-9696.950195;250;0.043442962 549976.8105;7819819.559;-9580.820313;250;0.533311824 551376.8105;7821677.789;-9652.299805;250;0.465472815 549589.3105;7817341.918;-9564.269531;250;0.756109476 549139.3105;7820514.051;-9738.599609;250;0.249856873 549376.8105;7817323.148;-9463.889648;250;0.939781642 550264.3105;7817998.871;-9689.540039;250;0.220285282 550176.8105;7819969.719;-9481.900391;250;0.290458172 549301.8105;7820795.598;-9738.19043;250;0.090592921 549714.3105;7819725.711;-9667.820313;250;0.306552973 549689.3105;7821752.867;-9739.849609;250;0.990413553 549664.3105;7819275.23;-9633.330078;250;0.871956437 549614.3105;7819519.238;-9672.929688;250;0.339887935 550651.8105;7820739.289;-9542.790039;250;0.541245391 549726.8105;7818749.668;-9550.419922;250;0.18874422 549001.8105;7817041.598;-9649.910156;250;0.676494323 549526.8105;7821095.918;-9741.160156;250;0.610989541 550176.8105;7820870.68;-9625.160156;250;0.12713389 549376.8105;7821039.609;-9743.540039;250;0.292083814 550014.3105;7817191.758;-9604.099609;250;0.239638928 549926.8105;7820908.219;-9708.580078;250;0.787849554 549664.3105;7821133.457;-9743.360352;250;0.214407349 549501.8105;7817435.77;-9516.730469;250;0.398843609 550714.3105;7819331.539;-9459.129883;250;0.896393082 549376.8105;7819387.852;-9713.709961;250;0.657388052 549626.8105;7819462.93;-9663.530273;250;0.130849697 549914.3105;7818355.5;-9660.290039;250;0.900971349 549276.8105;7819631.859;-9733.80957;250;0.839251147 549589.3105;7817285.609;-9570.730469;250;0.005141796 549076.8105;7820551.59;-9735.549805;250;0.833245515 550489.3105;7817811.168;-9637.580078;250;0.674697357 550189.3105;7820720.52;-9574.349609;250;0.982555916 549526.8105;7817848.711;-9660.070313;250;0.019133206 549014.3105;7820438.969;-9737.089844;250;0.200267925 549539.3105;7819613.09;-9686.780273;250;0.190223353 549739.3105;7818805.98;-9556.530273;250;0.86439404 550164.3105;7819631.859;-9576.759766;250;0.484174511 549764.3105;7820119.879;-9613.879883;250;0.730706287 549914.3105;7818055.18;-9708.620117;250;0.049194969 550489.3105;7819763.25;-9530.69043;250;0.800510301 549239.3105;7820814.371;-9737.740234;250;0.790513927 550276.8105;7816666.199;-9615.349609;250;0.346696708 549139.3105;7819688.168;-9734.019531;250;0.617212718 549201.8105;7817867.48;-9656.169922;250;0.24910825 549301.8105;7818674.59;-9670.860352;250;0.852946581 549914.3105;7817679.777;-9687.540039;250;0.531486261 550176.8105;7820326.348;-9452;250;0.56154385 551301.8105;7821114.691;-9687.209961;250;0.831659151 549914.3105;7819425.391;-9605.120117;250;0.387564079 549876.8105;7817736.09;-9697.269531;250;0.316795401 549439.3105;7817454.539;-9490.780273;250;0.49239133 551126.8105;7820908.219;-9680.030273;250;0.625403003 548951.8105;7819312.77;-9733.030273;250;0.094467274 549439.3105;7818730.898;-9628.040039;250;0.679195656 549189.3105;7820420.199;-9736.639648;250;0.607682816 550214.3105;7817717.32;-9689.849609;250;0.036160796 549289.3105;7820701.75;-9738.410156;250;0.255670742 549526.8105;7820495.281;-9719.610352;250;0.453981342 549589.3105;7820739.289;-9726.790039;250;0.309594316 550089.3105;7818824.75;-9645.360352;250;0.279025024 549001.8105;7821602.711;-9752.219727;250;0.997094188 551376.8105;7817698.547;-9579.769531;250;0.552890646 549926.8105;7818730.898;-9587.709961;250;0.345632861 550039.3105;7820964.531;-9693.070313;250;0.741239319 549501.8105;7819256.457;-9678.5;250;0.173214513 550301.8105;7820833.141;-9598.019531;250;0.978271977 549964.3105;7819162.609;-9605.419922;250;0.59145049 549351.8105;7817604.699;-9524.259766;250;0.610580365 549051.8105;7820438.969;-9736.950195;250;0.877310089 550476.8105;7821715.328;-9735.280273;250;0.227132711 549826.8105;7819538.008;-9633.94043;250;0.53234465 551026.8105;7820589.129;-9607.519531;250;0.906360359 550926.8105;7818355.5;-9609.230469;250;0.351739265 550689.3105;7818092.719;-9625.69043;250;0.581025901 550314.3105;7819913.41;-9469.540039;250;0.24269341 551364.3105;7817923.789;-9558.290039;250;0.934441407 552114.3105;7817642.238;-9559.990234;250;0.609358026 549701.8105;7819387.852;-9629.040039;250;0.497061817 549039.3105;7819838.328;-9731.19043;250;0.007469144 550101.8105;7818693.359;-9653.769531;250;0.166053136 549451.8105;7818505.66;-9621.94043;250;0.431714158 552289.3105;7817642.238;-9536.469727;250;0.74093715 549739.3105;7817004.059;-9632.339844;250;0.095981458 551201.8105;7817248.07;-9580.799805;250;0.805713579 550239.3105;7820833.141;-9602.980469;250;0.743772512 549914.3105;7820720.52;-9668.370117;250;0.53534137 549889.3105;7820176.188;-9564.169922;250;0.398382888 550914.3105;7821696.559;-9709.610352;250;0.23421343 549364.3105;7820288.809;-9734.570313;250;0.568844095 549551.8105;7817585.93;-9563.419922;250;0.06598607 549539.3105;7817435.77;-9534.230469;250;0.763278489 549114.3105;7817379.461;-9494.05957;250;0.478680873 549601.8105;7818430.578;-9623.610352;250;0.609845219 550176.8105;7817604.699;-9679.209961;250;0.386272971 549876.8105;7820851.91;-9708.19043;250;0.433636081 549014.3105;7819763.25;-9732.959961;250;0.382035622 549826.8105;7817736.09;-9694.349609;250;0.538590817 549139.3105;7821002.07;-9759.219727;250;0.389097192 552276.8105;7817379.461;-9494.669922;250;0.798443179 549151.8105;7817060.367;-9595.490234;250;0.502619266 549389.3105;7819049.988;-9672.120117;250;0.596670579 550026.8105;7817492.078;-9651.740234;250;0.383686389 550864.3105;7818655.82;-9647.490234;250;0.469474229 550339.3105;7820758.059;-9571.230469;250;0.565465277 549701.8105;7817961.328;-9697.969727;250;0.608751905 549476.8105;7818899.828;-9628.469727;250;0.795589155 550414.3105;7820044.801;-9433.269531;250;0.130229998 551076.8105;7821039.609;-9700.799805;250;0.401612588 549139.3105;7821677.789;-9761.389648;250;0.396236759 551001.8105;7817961.328;-9591.730469;250;0.667279036 550689.3105;7820964.531;-9629.339844;250;0.847998577 549276.8105;7820063.57;-9723.980469;250;0.192895629 549639.3105;7818224.109;-9682.360352;250;0.65964984 548964.3105;7821077.148;-9770.299805;250;0.894172432 550051.8105;7817060.367;-9579.709961;250;0.918098243 550626.8105;7819218.918;-9446.429688;250;0.750988646 549426.8105;7817154.219;-9540.889648;250;0.322405251 549314.3105;7821264.848;-9748.780273;250;0.684138238 550351.8105;7817473.309;-9655.44043;250;0.150114664 549526.8105;7819782.02;-9690.639648;250;0.961011392 549089.3105;7821227.309;-9763.070313;250;0.472101633 549689.3105;7818149.027;-9695.040039;250;0.91932965 552151.8105;7817154.219;-9517.620117;250;0.817309796 549789.3105;7817886.25;-9698;250;0.010999698 551026.8105;7820701.75;-9635.629883;250;0.699969106 549239.3105;7819312.77;-9731.860352;250;0.812512187 550301.8105;7817642.238;-9675.580078;250;0.727583377 550339.3105;7820101.109;-9413.099609;250;0.096848253 549801.8105;7819256.457;-9621.80957;250;0.392524726 551114.3105;7817004.059;-9590.480469;250;0.640378502 549876.8105;7819218.918;-9618.530273;250;0.189081837 552051.8105;7817398.227;-9540.19043;250;0.082875272 550289.3105;7817210.527;-9586.040039;250;0.199140591 551251.8105;7821020.84;-9688.830078;250;0.625336488 548951.8105;7819462.93;-9735.959961;250;0.469431606 549189.3105;7818017.637;-9691.709961;250;0.538596659 548951.8105;7819932.18;-9724.120117;250;0.747783991 551001.8105;7818355.5;-9584.709961;250;0.311902666 549476.8105;7818073.949;-9713.990234;250;0.831173169 551064.3105;7817248.07;-9594.360352;250;0.279065788 549189.3105;7820232.5;-9729.25;250;0.725589887 549926.8105;7818505.66;-9617.139648;250;0.513397526 549701.8105;7816684.969;-9668.339844;250;0.036454927 549739.3105;7820682.98;-9706.05957;250;0.829820349 550126.8105;7821377.469;-9753.929688;250;0.352785513 552164.3105;7817567.16;-9551.429688;250;0.670471673 549414.3105;7820232.5;-9723.660156;250;0.331514361 552239.3105;7817604.699;-9550.55957;250;0.339505887 551101.8105;7818017.637;-9577.219727;250;0.324828463 549489.3105;7819425.391;-9690.94043;250;0.651278995 549289.3105;7819575.551;-9735.450195;250;0.522381531 551539.3105;7817304.379;-9578.639648;250;0.922947463 549301.8105;7818768.438;-9679.419922;250;0.557261952 550089.3105;7821715.328;-9745.580078;250;0.678420258 552076.8105;7817191.758;-9528.860352;250;0.717231519 549114.3105;7816872.668;-9676.269531;250;0.080095396 550276.8105;7818186.57;-9695.330078;250;0.023894752 549039.3105;7821020.84;-9765.450195;250;0.386209556 549826.8105;7820758.059;-9699.889648;250;0.414517361 551989.3105;7817398.227;-9551.269531;250;0.210334019 550764.3105;7819387.852;-9478.879883;250;0.123964297 549364.3105;7818730.898;-9654.070313;250;0.387190433 549764.3105;7821677.789;-9746.519531;250;0.395149902 551264.3105;7817585.93;-9585.150391;250;0.398401272 550264.3105;7821677.789;-9743.610352;250;0.03257722 550164.3105;7817773.629;-9695.5;250;0.988358284 548876.8105;7819913.41;-9723.790039;250;0.226839531 550114.3105;7821640.25;-9745.839844;250;0.04146613 549614.3105;7818674.59;-9556.629883;250;0.336819607 550851.8105;7819594.32;-9545.089844;250;0.746416421 549839.3105;7819425.391;-9619.570313;250;0.909389473 550926.8105;7820851.91;-9640.120117;250;0.699084907 550701.8105;7821752.867;-9723.05957;250;0.131632766 549151.8105;7820063.57;-9722.240234;250;0.935918586 549014.3105;7818862.289;-9724.450195;250;0.387347249 549401.8105;7820570.359;-9737.200195;250;0.270810031 549289.3105;7817905.02;-9662.160156;250;0.401070095 549289.3105;7818149.027;-9705.049805;250;0.634955802 550239.3105;7818299.188;-9697.580078;250;0.835658092 550314.3105;7820213.73;-9384.360352;250;0.677795749 548976.8105;7817661.008;-9617.549805;250;0.69930041 549551.8105;7818974.91;-9620.280273;250;0.632820366 549176.8105;7818561.969;-9702.709961;250;0.104400657 552076.8105;7817304.379;-9525.629883;250;0.291495874 548889.3105;7818561.969;-9727.370117;250;0.54025332 550026.8105;7817886.25;-9708.75;250;0.920780361 549651.8105;7816666.199;-9665.25;250;0.601865049 549151.8105;7816910.207;-9665.139648;250;0.401079296 549414.3105;7817266.84;-9495.030273;250;0.527293849 549689.3105;7821020.84;-9739.950195;250;0.404702306 551464.3105;7817623.469;-9584.25;250;0.329545836 549501.8105;7817248.07;-9542.200195;250;0.107320775 549576.8105;7818261.648;-9684.540039;250;0.679202904 551876.8105;7817417;-9563.900391;250;0.062215231 549239.3105;7818299.188;-9705.400391;250;0.832007429 549289.3105;7819819.559;-9728.290039;250;0.531041062 551189.3105;7818374.27;-9528.269531;250;0.04260407 550626.8105;7819162.609;-9453.480469;250;0.354341468 549151.8105;7821058.379;-9758.009766;250;0.050099556 549976.8105;7817510.848;-9658.129883;250;0.030200227 549151.8105;7819125.07;-9720.679688;250;0.617213943 550076.8105;7821452.551;-9754;250;0.479950271 549601.8105;7819669.398;-9677.25;250;0.177958129 549764.3105;7821752.867;-9743.259766;250;0.500647961 548889.3105;7819800.789;-9732.639648;250;0.031107084 549151.8105;7818993.68;-9722.669922;250;0.214841947 549676.8105;7821208.539;-9741.290039;250;0.059936664 549339.3105;7817773.629;-9612.519531;250;0.1601755 549089.3105;7817022.828;-9628.769531;250;0.81213053 551814.3105;7817454.539;-9564.05957;250;0.946420178 550901.8105;7818787.207;-9631.490234;250;0.936935361 549964.3105;7819782.02;-9596.290039;250;0.946867485 549214.3105;7820983.297;-9747.820313;250;0.264355818 550764.3105;7817585.93;-9594.75;250;0.862519736 550139.3105;7817154.219;-9583.620117;250;0.702729367 550726.8105;7818374.27;-9670.25;250;0.446475567 548951.8105;7818918.598;-9735.379883;250;0.425960499 549626.8105;7817548.387;-9588.209961;250;0.921354609 552214.3105;7817079.141;-9505.429688;250;0.621645607 550426.8105;7817961.328;-9657.580078;250;0.151449658 549489.3105;7821396.238;-9754.780273;250;0.356977203 552139.3105;7817792.398;-9564.419922;250;0.460169296 549701.8105;7818242.879;-9676.379883;250;0.229602413 551939.3105;7817454.539;-9560.05957;250;0.864497432 551339.3105;7818242.879;-9512.669922;250;0.707442865 549264.3105;7820363.887;-9734.580078;250;0.030715669 551226.8105;7817454.539;-9586.969727;250;0.013894575 550014.3105;7819312.77;-9589.089844;250;0.024918711 549489.3105;7819706.938;-9700.410156;250;0.109765503 550389.3105;7820908.219;-9611.759766;250;0.048303401 550651.8105;7818730.898;-9622.980469;250;0.298213908 550889.3105;7821227.309;-9709.780273;250;0.124957693 551351.8105;7817473.309;-9588.700195;250;0.328644463 550976.8105;7820495.281;-9575.330078;250;0.331009298 548901.8105;7819068.758;-9736.69043;250;0.551586368 548901.8105;7818130.258;-9720.240234;250;0.324981016 549189.3105;7818073.949;-9699.44043;250;0.809283054 550414.3105;7819369.078;-9475.919922;250;0.267161232 551726.8105;7818017.637;-9553.19043;250;0.124496114 549776.8105;7819819.559;-9636.230469;250;0.931807441 549689.3105;7818430.578;-9611.230469;250;0.021157177 551339.3105;7817567.16;-9586.580078;250;0.672626389 551526.8105;7817492.078;-9581.410156;250;0.468598246 549551.8105;7820382.66;-9706.910156;250;0.245049329 550439.3105;7817736.09;-9650.790039;250;0.939018083 549476.8105;7819894.641;-9705.879883;250;0.355233537 549426.8105;7818787.207;-9639.290039;250;0.180206756 550314.3105;7818355.5;-9685.519531;250;0.643250398 549639.3105;7817661.008;-9624.599609;250;0.145460669 550639.3105;7819556.777;-9521.879883;250;0.841818492 549739.3105;7818092.719;-9699.959961;250;0.597172616 550814.3105;7817172.988;-9620.959961;250;0.145229167 550614.3105;7821734.102;-9731.570313;250;0.897425805 549314.3105;7817417;-9439.280273;250;0.183596885 549351.8105;7820363.887;-9735.25;250;0.405556762 550839.3105;7818543.199;-9645.480469;250;0.311972137 551026.8105;7820814.371;-9660.240234;250;0.807009745 549801.8105;7820026.027;-9587.980469;250;0.475685794 550601.8105;7817341.918;-9628.740234;250;0.229512706 551001.8105;7817398.227;-9594.450195;250;0.867982114 548889.3105;7818899.828;-9737.80957;250;0.983278144 550789.3105;7817097.91;-9622.200195;250;0.944289934 552176.8105;7817698.547;-9559.919922;250;0.592584642 549314.3105;7817285.609;-9457.839844;250;0.414654743 549739.3105;7817905.02;-9695.629883;250;0.079473686 552339.3105;7817642.238;-9520.25;250;0.244411154 550164.3105;7818017.637;-9703.179688;250;0.706536873 549551.8105;7818130.258;-9704.650391;250;0.136383959 550464.3105;7819481.699;-9507.429688;250;0.512724058 549126.8105;7821339.93;-9762.929688;250;0.938845692 549051.8105;7817961.328;-9686.980469;250;0.714832284 549989.3105;7818561.969;-9624.839844;250;0.358934561 549351.8105;7819857.098;-9724.780273;250;0.723119866 550901.8105;7820401.43;-9534.019531;250;0.652019758 550276.8105;7819331.539;-9513.400391;250;0.249738987 550726.8105;7818186.57;-9640.480469;250;0.580749157 549151.8105;7819087.527;-9721.69043;250;0.709405065 549864.3105;7818167.797;-9699.360352;250;0.997666143 548939.3105;7820589.129;-9748.889648;250;0.426509022 550351.8105;7820476.508;-9425.299805;250;0.000443207 551439.3105;7817736.09;-9579.639648;250;0.137944124 550214.3105;7820420.199;-9475.169922;250;0.572955399 549414.3105;7819631.859;-9716.629883;250;0.453919654 549526.8105;7818374.27;-9662.80957;250;0.201393465 550401.8105;7819444.16;-9499.030273;250;0.053639942 551814.3105;7817191.758;-9554.950195;250;0.193075927 549139.3105;7819613.09;-9738.709961;250;0.057468107 549926.8105;7818468.117;-9626.639648;250;0.585120572 549876.8105;7820720.52;-9679.5;250;0.641594398 549514.3105;7820326.348;-9717.370117;250;0.461360233 549026.8105;7819538.008;-9742.929688;250;0.203131631 551251.8105;7821827.949;-9662.410156;250;0.692530417 549864.3105;7818505.66;-9603.709961;250;0.672278728 549351.8105;7818862.289;-9667.540039;250;0.228885227 549876.8105;7818937.367;-9573.349609;250;0.850892546 550301.8105;7819575.551;-9559.709961;250;0.343138219 549689.3105;7816910.207;-9648.25;250;0.405472119 549514.3105;7819125.07;-9656.879883;250;0.628684457 550726.8105;7819538.008;-9515.429688;250;0.150069795 549489.3105;7820176.188;-9701.219727;250;0.082255959 549051.8105;7819631.859;-9737.269531;250;0.286982372 550776.8105;7818712.129;-9633.320313;250;0.459036736 551926.8105;7817642.238;-9564.700195;250;0.728195071 550726.8105;7818768.438;-9612.759766;250;0.332250213 552014.3105;7817980.098;-9569.620117;250;0.717527186 549689.3105;7818092.719;-9700.209961;250;0.827618752 549101.8105;7817961.328;-9685.040039;250;0.003585892 549414.3105;7819725.711;-9714.75;250;0.178577177 549664.3105;7817754.859;-9655.629883;250;0.841901883 550639.3105;7820626.668;-9489.740234;250;0.282469031 550951.8105;7817585.93;-9585.299805;250;0.900640376 549014.3105;7821452.551;-9756.929688;250;0.064542345 550901.8105;7816816.359;-9636.099609;250;0.289790759 550751.8105;7819200.148;-9485.230469;250;0.754268213 549714.3105;7819894.641;-9632.570313;250;0.016031278 549601.8105;7819838.328;-9671.389648;250;0.254583265 550839.3105;7821339.93;-9718.549805;250;0.460486065 549026.8105;7819556.777;-9742.780273;250;0.3297588 549039.3105;7820495.281;-9737.240234;250;0.521634586 549089.3105;7819312.77;-9735.530273;250;0.948416414 550126.8105;7818956.141;-9623.379883;250;0.993853917 551301.8105;7817942.559;-9551.719727;250;0.453096868 549751.8105;7818974.91;-9592.55957;250;0.738804543 549389.3105;7818637.047;-9635.360352;250;0.393627599 549251.8105;7817886.25;-9657.05957;250;0.295340368 550939.3105;7819049.988;-9577.540039;250;0.056249728 551489.3105;7818092.719;-9549.360352;250;0.026838718 551176.8105;7816891.438;-9584.759766;250;0.73403552 552451.8105;7817341.918;-9425.509766;250;0.295789702 549089.3105;7819800.789;-9732.55957;250;0.139795176 551764.3105;7817492.078;-9560.429688;250;0.532429531 551289.3105;7817980.098;-9545.55957;250;0.940379336 549751.8105;7818524.43;-9587.950195;250;0.353059324 549001.8105;7820345.121;-9730.759766;250;0.795451165 550739.3105;7820495.281;-9484.830078;250;0.500384844 552089.3105;7817792.398;-9570.839844;250;0.590596667 549039.3105;7817022.828;-9643.089844;250;0.453062449 549689.3105;7820345.121;-9670.419922;250;0.848498905 549114.3105;7818674.59;-9718.410156;250;0.088800851 549164.3105;7819969.719;-9724.230469;250;0.668216596 549876.8105;7819087.527;-9609.370117;250;0.368064253 550014.3105;7820758.059;-9643.089844;250;0.350500155 550951.8105;7821508.859;-9702.889648;250;0.521483009 550251.8105;7821039.609;-9670.709961;250;0.200506816 548876.8105;7819688.168;-9739.25;250;0.03243365 550251.8105;7820307.578;-9412.280273;250;0.164807722 549076.8105;7819444.16;-9742.070313;250;0.358720371 550889.3105;7819875.867;-9554.900391;250;0.32578584 549551.8105;7818843.52;-9605.30957;250;0.177141526 551939.3105;7817229.301;-9547.040039;250;0.003382547 549801.8105;7820326.348;-9635.169922;250;0.596839563 549864.3105;7818411.809;-9633.719727;250;0.176969289 552414.3105;7817529.617;-9486.280273;250;0.096170009 550051.8105;7820363.887;-9524.799805;250;0.152505472 549289.3105;7819688.168;-9729.540039;250;0.73692014 552389.3105;7817642.238;-9504.820313;250;0.460883503 549401.8105;7820964.531;-9741.610352;250;0.705652746 548889.3105;7819500.469;-9735.730469;250;0.225219158 550401.8105;7818768.438;-9615.139648;250;0.271192922 550026.8105;7820720.52;-9625.419922;250;0.89896196 549676.8105;7819012.449;-9620.410156;250;0.572102009 552214.3105;7816872.668;-9510.959961;250;0.475808988 550401.8105;7819049.988;-9513.339844;250;0.330876878 551326.8105;7816666.199;-9595.700195;250;0.306731338 550189.3105;7819932.18;-9489.589844;250;0.503942339 548964.3105;7818993.68;-9736.860352;250;0.255913215 550076.8105;7817848.711;-9704.240234;250;0.174084642 549151.8105;7819031.219;-9723.259766;250;0.794172161 549014.3105;7819894.641;-9727.139648;250;0.686193943 552451.8105;7817585.93;-9483.25;250;0.227620125 550076.8105;7820157.418;-9459.330078;250;0.303817683 550289.3105;7818956.141;-9584.25;250;0.944864881 549876.8105;7819125.07;-9614.650391;250;0.157215209 549164.3105;7819631.859;-9737.179688;250;0.052952737 550701.8105;7820776.828;-9556.620117;250;0.123860979 551764.3105;7817360.688;-9565.969727;250;0.738014621 549414.3105;7820926.988;-9739.55957;250;0.085022604 549076.8105;7818937.367;-9724.620117;250;0.979244537 551789.3105;7817623.469;-9569.570313;250;0.288527259 549251.8105;7817642.238;-9558.830078;250;0.049293931 549176.8105;7819181.379;-9720.049805;250;0.529277655 549551.8105;7819688.168;-9684.150391;250;0.271273774 549314.3105;7819406.617;-9724.169922;250;0.074942774 549751.8105;7818430.578;-9614.700195;250;0.228003071 552176.8105;7817642.238;-9559.870117;250;0.61888248 549551.8105;7818674.59;-9581.589844;250;0.853781235 549676.8105;7819162.609;-9626.120117;250;0.753284603 550714.3105;7818149.027;-9634.320313;250;0.357829284 549826.8105;7819969.719;-9580.709961;250;0.975615041 548889.3105;7819331.539;-9730.990234;250;0.424485942 550101.8105;7818543.199;-9654.879883;250;0.566069687 549901.8105;7820457.738;-9603.660156;250;0.35091126 549814.3105;7818937.367;-9565.700195;250;0.176484871 549476.8105;7819838.328;-9702.299805;250;0.398476911 551564.3105;7816910.207;-9573.200195;250;0.122136484 549239.3105;7820232.5;-9731.660156;250;0.331254023 550364.3105;7819631.859;-9561.30957;250;0.045266089 550464.3105;7816666.199;-9631.530273;250;0.257312542 549001.8105;7819462.93;-9739.370117;250;0.280129546 548914.3105;7820157.418;-9719.429688;250;0.412265565 549764.3105;7818261.648;-9672.969727;250;0.19324861 550226.8105;7820889.449;-9623.650391;250;0.467004488 550726.8105;7817417;-9613.610352;250;0.897504547 550851.8105;7817473.309;-9593.870117;250;0.089895813 549376.8105;7817454.539;-9464.379883;250;0.469057035 550014.3105;7818899.828;-9623.330078;250;0.309183002 549001.8105;7819706.938;-9734.30957;250;0.022085807 549489.3105;7818693.359;-9608.950195;250;0.32597807 549801.8105;7818449.348;-9614.589844;250;0.0126345 549701.8105;7819969.719;-9631.089844;250;0.81556988 549289.3105;7818130.258;-9703.139648;250;0.412485403 549564.3105;7820082.34;-9687.110352;250;0.488213253 549601.8105;7818449.348;-9615.55957;250;0.814039445 549789.3105;7819894.641;-9610.44043;250;0.103505486 549351.8105;7819331.539;-9716.040039;250;0.275011568 549426.8105;7819275.23;-9700.089844;250;0.107649047 549776.8105;7821077.148;-9737.719727;250;0.458795194 550064.3105;7818261.648;-9701.929688;250;0.489770732 550089.3105;7818881.059;-9639.540039;250;0.867850043 549139.3105;7820326.348;-9734.860352;250;0.139039091 549539.3105;7821058.379;-9739.320313;250;0.368461024 550626.8105;7818524.43;-9672.839844;250;0.324627008 549089.3105;7819087.527;-9728.030273;250;0.781859889 549289.3105;7819331.539;-9726.19043;250;0.498097931 549626.8105;7816741.277;-9666.280273;250;0.048525865 550739.3105;7821790.41;-9720.049805;250;0.845730434 550126.8105;7820232.5;-9443.169922;250;0.551667598 549026.8105;7817829.938;-9657.379883;250;0.615463061 550264.3105;7821189.77;-9705.910156;250;0.572452053 549514.3105;7818449.348;-9629.379883;250;0.745334395 549364.3105;7817079.141;-9571.419922;250;0.449109997 550426.8105;7819988.488;-9454.200195;250;0.345280241 549501.8105;7818242.879;-9705.019531;250;0.906480953 549964.3105;7821846.719;-9743.230469;250;0.880584782 550014.3105;7820514.051;-9582.410156;250;0.135323738 549026.8105;7819218.918;-9730.80957;250;0.507707681 548951.8105;7819725.711;-9735.389648;250;0.91314383 549814.3105;7821827.949;-9739.480469;250;0.223446351 549614.3105;7818730.898;-9564.780273;250;0.893691978 548876.8105;7819631.859;-9742.040039;250;0.650931501 552089.3105;7817848.711;-9568.580078;250;0.332439458 552026.8105;7817304.379;-9536.919922;250;0.020535362 549289.3105;7819538.008;-9735.969727;250;0.361839797 549476.8105;7818805.98;-9623.429688;250;0.209478875 549039.3105;7818674.59;-9724.94043;250;0.566419581 549651.8105;7819875.867;-9652.860352;250;0.073113213 552301.8105;7817736.09;-9535.549805;250;0.015344261 549439.3105;7820138.648;-9706.480469;250;0.877233097 549751.8105;7818299.188;-9660.580078;250;0.068471477 549539.3105;7819575.551;-9685.530273;250;0.419010465 549626.8105;7820363.887;-9688.709961;250;0.209222876 549089.3105;7819706.938;-9733.769531;250;0.58364678 549864.3105;7820213.73;-9585.889648;250;0.779393044 552239.3105;7817661.008;-9549.769531;250;0.262148938 549089.3105;7818993.68;-9728.269531;250;0.170089864 549751.8105;7821002.07;-9736.730469;250;0.258619958 549814.3105;7821152.23;-9741.669922;250;0.730498382 549114.3105;7817717.32;-9609.080078;250;0.920926174 551089.3105;7821396.238;-9695.070313;250;0.115687411 548926.8105;7818805.98;-9727.589844;250;0.216487598 550639.3105;7821490.09;-9738.849609;250;0.480685475 550201.8105;7817998.871;-9698.139648;250;0.412445693 549976.8105;7818843.52;-9613.830078;250;0.203157311 548926.8105;7819425.391;-9733.259766;250;0.129687953 549601.8105;7820401.43;-9695.719727;250;0.595032645 549876.8105;7818843.52;-9569.610352;250;0.781199954 550889.3105;7821171;-9707.69043;250;0.888808238 548926.8105;7818768.438;-9727.049805;250;0.152379874 549614.3105;7818768.438;-9575.419922;250;0.129337863 548926.8105;7819387.852;-9732.870117;250;0.721032046 549626.8105;7820795.598;-9737.599609;250;0.700515681 551101.8105;7821471.32;-9689.009766;250;0.912265942 549514.3105;7818411.809;-9647.089844;250;0.070644987 548926.8105;7818787.207;-9727.110352;250;0.422652946 549751.8105;7821133.457;-9740.610352;250;0.31314879 549739.3105;7821171;-9741.269531;250;0.183142522 549151.8105;7818768.438;-9711.089844;250;0.188331134 549351.8105;7819613.09;-9727.730469;250;0.778076546 549414.3105;7818862.289;-9648.519531;250;0.346057684 549751.8105;7820251.27;-9640.419922;250;0.63587957 550314.3105;7819950.949;-9455.200195;250;0.717458476 549101.8105;7820476.508;-9737.419922;250;0.561232292 550964.3105;7819312.77;-9543.040039;250;0.41739564 549351.8105;7819782.02;-9721.589844;250;0.868019846 550051.8105;7818899.828;-9631.780273;250;0.903770142 549389.3105;7817923.789;-9680.139648;250;0.434371534 549089.3105;7819969.719;-9721.759766;250;0.107731643 548876.8105;7817604.699;-9637.099609;250;0.642413019 549476.8105;7819857.098;-9702.969727;250;0.596352272 550489.3105;7817529.617;-9647.110352;250;0.707135728 549026.8105;7819031.219;-9733.049805;250;0.236862108 550676.8105;7816666.199;-9652.570313;250;0.454195494 549414.3105;7817585.93;-9523.75;250;0.325224014 550326.8105;7818580.738;-9664.429688;250;0.687770824 549214.3105;7819331.539;-9734.120117;250;0.23619428 548926.8105;7818824.75;-9728.700195;250;0.380481301 550126.8105;7818111.488;-9708.339844;250;0.805408146 551976.8105;7817360.688;-9550.910156;250;0.01936381 549801.8105;7820363.887;-9635.889648;250;0.410291763 549251.8105;7818486.891;-9675.259766;250;0.973623937 549101.8105;7819200.148;-9725.580078;250;0.575845301 548926.8105;7819369.078;-9732.769531;250;0.197396159 549539.3105;7819988.488;-9696.570313;250;0.153160273 549814.3105;7819068.758;-9612.719727;250;0.069236912 552401.8105;7817604.699;-9497.009766;250;0.301739055 549651.8105;7819969.719;-9650.480469;250;0.031285546 549751.8105;7818393.039;-9627.629883;250;0.689557518 549476.8105;7819631.859;-9703.150391;250;0.39936389 550201.8105;7818824.75;-9645.980469;250;0.940991895 550151.8105;7819256.457;-9561.169922;250;0.879177431 548951.8105;7819500.469;-9738.280273;250;0.17677263 551001.8105;7818712.129;-9627.75;250;0.856720993 549139.3105;7819950.949;-9723.169922;250;0.533061612 550314.3105;7820664.211;-9535.089844;250;0.119248509 549214.3105;7819631.859;-9735.780273;250;0.646881774 549776.8105;7819425.391;-9618.019531;250;0.972765024 549001.8105;7820307.578;-9727.650391;250;0.530505423 551226.8105;7816872.668;-9585.290039;250;0.782741829 550801.8105;7817341.918;-9606.450195;250;0.254312099 550164.3105;7818768.438;-9657.490234;250;0.963591774 549364.3105;7818655.82;-9645.55957;250;0.849705437 552339.3105;7817736.09;-9527.629883;250;0.412097057 549551.8105;7819031.219;-9631.179688;250;0.104142821 550026.8105;7819237.688;-9592.269531;250;0.35521744 550476.8105;7816741.277;-9627.599609;250;0.45104049 551614.3105;7818036.41;-9557.230469;250;0.847052406 549351.8105;7819688.168;-9724.620117;250;0.878865522 551101.8105;7817154.219;-9586.360352;250;0.57998659 550089.3105;7819575.551;-9595.5;250;0.526381222 550201.8105;7820776.828;-9589.919922;250;0.150593115 551151.8105;7818468.117;-9549.129883;250;0.938962775 549826.8105;7821734.102;-9742.540039;250;0.914310097 552151.8105;7817829.938;-9564.25;250;0.379885381 549464.3105;7817998.871;-9703.860352;250;0.706626368 549151.8105;7818956.141;-9720.169922;250;0.17483787 552214.3105;7817154.219;-9497.330078;250;0.039561792 551264.3105;7821771.641;-9660.110352;250;0.021186034 549914.3105;7818242.879;-9690.209961;250;0.857127571 549189.3105;7816741.277;-9693.110352;250;0.979479888 549501.8105;7818186.57;-9710.269531;250;0.471483261 549239.3105;7818956.141;-9704.019531;250;0.184038399 550014.3105;7818693.359;-9625.009766;250;0.49501056 549564.3105;7818730.898;-9585.129883;250;0.293809626 552364.3105;7816947.75;-9445.990234;250;0.542398233 549939.3105;7820194.961;-9543.320313;250;0.240955173 550914.3105;7820607.898;-9569.200195;250;0.568987446 552114.3105;7816985.289;-9532.80957;250;0.767801503 550614.3105;7818224.109;-9665.30957;250;0.938257249 548951.8105;7819688.168;-9738.44043;250;0.631763059 549089.3105;7819275.23;-9732.19043;250;0.46550168 549514.3105;7817679.777;-9583.719727;250;0.510736219 550876.8105;7821640.25;-9714.089844;250;0.010828366 549164.3105;7820814.371;-9740.570313;250;0.099287856 549101.8105;7816722.508;-9684.889648;250;0.117673173 549689.3105;7820983.297;-9738.580078;250;0.455837002 549301.8105;7817510.848;-9472.299805;250;0.122252355 549664.3105;7819068.758;-9626.469727;250;0.733794459 549739.3105;7820063.57;-9620.730469;250;0.556852039 548926.8105;7818749.668;-9727.139648;250;0.170805699 550939.3105;7818749.668;-9638.19043;250;0.781058977 549214.3105;7817717.32;-9599.990234;250;0.600547451 550114.3105;7819500.469;-9582.019531;250;0.107485411 549639.3105;7819350.309;-9647.910156;250;0.684193958 552001.8105;7816853.898;-9555.080078;250;0.095297257 548926.8105;7819406.617;-9732.980469;250;0.762021104 551926.8105;7817698.547;-9565.990234;250;0.132983579 549751.8105;7820288.809;-9647.05957;250;0.023834589 549651.8105;7819406.617;-9649.030273;250;0.386603082 550739.3105;7818862.289;-9578.469727;250;0.646853296 549051.8105;7819594.32;-9740.230469;250;0.374692823 549026.8105;7817135.449;-9612.709961;250;0.423824821 549351.8105;7819556.777;-9727.830078;250;0.760709656 550976.8105;7821039.609;-9693.25;250;0.211289006 550614.3105;7821152.23;-9689.080078;250;0.994569843 551351.8105;7818017.637;-9538.839844;250;0.331003698 549689.3105;7817229.301;-9617.419922;250;0.427326157 549401.8105;7818599.508;-9629.339844;250;0.094655342 551239.3105;7817811.168;-9566.650391;250;0.986542327 551689.3105;7817867.48;-9568.830078;250;0.070335691 550476.8105;7821640.25;-9736.839844;250;0.974356267 549026.8105;7816666.199;-9687.709961;250;0.7696462 548926.8105;7818712.129;-9726.849609;250;0.859928005 550951.8105;7819369.078;-9532.549805;250;0.89449406 549326.8105;7819087.527;-9694.419922;250;0.513962152 549226.8105;7819481.699;-9740.169922;250;0.715973397 549514.3105;7820063.57;-9701.629883;250;0.95587884 549789.3105;7819594.32;-9651.070313;250;0.509893175 548889.3105;7819575.551;-9741.139648;250;0.523830104 550051.8105;7817398.227;-9625.490234;250;0.847630227 551101.8105;7817060.367;-9590.889648;250;0.412124987 549601.8105;7819631.859;-9678.530273;250;0.673810968 549639.3105;7816778.816;-9667.450195;250;0.281021001 549451.8105;7818411.809;-9653.349609;250;0.377919393 552064.3105;7817492.078;-9549.790039;250;0.240364029 549601.8105;7818411.809;-9631.30957;250;0.534120424 549726.8105;7819650.629;-9669.599609;250;0.740211084 549151.8105;7818824.75;-9709.959961;250;0.706986633 548926.8105;7818843.52;-9730.30957;250;0.049925017 548951.8105;7816928.98;-9683.080078;250;0.023940461 548926.8105;7817923.789;-9693.379883;250;0.91382934 549926.8105;7818899.828;-9589.410156;250;0.583358777 549276.8105;7817360.688;-9434.780273;250;0.60201662 549089.3105;7819538.008;-9744.55957;250;0.775024867 549426.8105;7818242.879;-9711.599609;250;0.776949096 552351.8105;7817604.699;-9515.870117;250;0.139597686 551476.8105;7817529.617;-9586.919922;250;0.159571319 549239.3105;7820908.219;-9739.929688;250;0.09823905 549551.8105;7818167.797;-9703.389648;250;0.520203024 548964.3105;7816966.52;-9675.910156;250;0.055380843 549114.3105;7821302.391;-9762.400391;250;0.35558856 549039.3105;7817942.559;-9684.459961;250;0.120763396 549289.3105;7819857.098;-9730.629883;250;0.094536442 549214.3105;7819819.559;-9729.099609;250;0.572126075 549589.3105;7821077.148;-9741.030273;250;0.531462855 548951.8105;7820551.59;-9744.740234;250;0.144801839 549414.3105;7819594.32;-9716.469727;250;0.647254551 551701.8105;7817942.559;-9561.049805;250;0.658174247 549501.8105;7818355.5;-9673.900391;250;0.202375645 549501.8105;7820363.887;-9718.339844;250;0.302187678 551214.3105;7821827.949;-9675.870117;250;0.250584368 549351.8105;7818899.828;-9666.879883;250;0.149714155 549876.8105;7818974.91;-9580.459961;250;0.60756827 550176.8105;7816666.199;-9616.370117;250;0.29423142 549501.8105;7819162.609;-9664.730469;250;0.779855287 550976.8105;7819200.148;-9564.589844;250;0.312945314 549489.3105;7820138.648;-9699.259766;250;0.007763623 549051.8105;7819650.629;-9735.759766;250;0.922466683 549676.8105;7818130.258;-9697.780273;250;0.748079571 548889.3105;7818655.82;-9726.179688;250;0.723810232 549414.3105;7819669.398;-9716.19043;250;0.970930061 550976.8105;7817604.699;-9585.089844;250;0.10567888 549714.3105;7819857.098;-9640.509766;250;0.900921447 549339.3105;7818937.367;-9671.94043;250;0.654399513 549589.3105;7819894.641;-9673.240234;250;0.76310207 549801.8105;7818787.207;-9552.349609;250;0.355369656 549014.3105;7820532.82;-9737.44043;250;0.15635462 549089.3105;7819331.539;-9736.820313;250;0.018854911 551301.8105;7817905.02;-9557.75;250;0.411487252 549751.8105;7818937.367;-9578.570313;250;0.172761264 550689.3105;7820457.738;-9456.799805;250;0.829408509 550664.3105;7820514.051;-9461.269531;250;0.342478305 549064.3105;7817116.68;-9605.969727;250;0.762776864 551626.8105;7817417;-9566.75;250;0.382415901 550626.8105;7819350.309;-9462.919922;250;0.530890006 550114.3105;7816741.277;-9612.269531;250;0.970994065 552339.3105;7817210.527;-9437.110352;250;0.117660509 549601.8105;7817736.09;-9630.709961;250;0.365645344 549501.8105;7820814.371;-9734.94043;250;0.436072508 549676.8105;7820101.109;-9647.040039;250;0.278114485 548926.8105;7817210.527;-9615.860352;250;0.128092593 549251.8105;7818205.34;-9709.679688;250;0.227926544 549301.8105;7817661.008;-9560;250;0.414891361 549889.3105;7819594.32;-9631.400391;250;0.269948601 549801.8105;7817642.238;-9668.830078;250;0.789803606 550989.3105;7817473.309;-9589.330078;250;0.593646562 550814.3105;7821189.77;-9707.429688;250;0.887733232 550814.3105;7818655.82;-9644.990234;250;0.216396675 550264.3105;7820720.52;-9564.25;250;0.562176948 549989.3105;7819481.699;-9597.700195;250;0.287285419 549539.3105;7819857.098;-9688.530273;250;0.865823804 549126.8105;7818111.488;-9702.400391;250;0.536606201 549201.8105;7817154.219;-9540.860352;250;0.543600493 550039.3105;7818393.039;-9677.110352;250;0.627029476 549776.8105;7816891.438;-9641.620117;250;0.727371654 551839.3105;7817567.16;-9563.599609;250;0.153529622 550851.8105;7819462.93;-9512.969727;250;0.105787544 549901.8105;7819538.008;-9624.55957;250;0.595582531 552126.8105;7817717.32;-9565.839844;250;0.982112348 550339.3105;7819462.93;-9517.400391;250;0.233942128 549051.8105;7820720.52;-9738.889648;250;0.882764731 549889.3105;7819181.379;-9616.860352;250;0.820661742 549426.8105;7821058.379;-9745.150391;250;0.718944216 551551.8105;7821490.09;-9666.080078;250;0.979773164 549989.3105;7820326.348;-9548.139648;250;0.849938225 549964.3105;7817229.301;-9618.980469;250;0.399381206 549289.3105;7818393.039;-9684.129883;250;0.996091203 550239.3105;7818637.047;-9656.160156;250;0.908591569 549614.3105;7819143.84;-9637.530273;250;0.984099668 550276.8105;7818411.809;-9682.040039;250;0.657376104 549739.3105;7816816.359;-9659.759766;250;0.533320231 552051.8105;7817567.16;-9555.230469;250;0.823195476 552226.8105;7817773.629;-9552.030273;250;0.938106791 550814.3105;7819406.617;-9494.660156;250;0.223234969 550301.8105;7821264.848;-9716.889648;250;0.501150948 552439.3105;7817679.777;-9498.900391;250;0.58233789 551014.3105;7816966.52;-9609.110352;250;0.761147696 551889.3105;7817304.379;-9558.330078;250;0.016099929 550851.8105;7819857.098;-9551.150391;250;0.970352054 550614.3105;7821246.078;-9709.129883;250;0.529851925 551026.8105;7821715.328;-9698.719727;250;0.693895428 550014.3105;7819031.219;-9608.019531;250;0.191726257 549501.8105;7817567.16;-9539.339844;250;0.900519239 548876.8105;7820964.531;-9768.049805;250;0.16176432 549839.3105;7819838.328;-9615.830078;250;0.467972773 550189.3105;7818261.648;-9701.269531;250;0.071325617 550439.3105;7817548.387;-9657.469727;250;0.687934113 549539.3105;7820157.418;-9689.679688;250;0.039290875 549726.8105;7818637.047;-9552.459961;250;0.482040557 550851.8105;7821752.867;-9720.290039;250;0.775147216 550664.3105;7817829.938;-9607.959961;250;0.094108584 550851.8105;7817679.777;-9586.370117;250;0.611234091 550739.3105;7818561.969;-9657.679688;250;0.814042881 550389.3105;7821114.691;-9683.160156;250;0.660275286 549264.3105;7820739.289;-9738.639648;250;0.962049046 549351.8105;7820251.27;-9731.330078;250;0.145224465 548876.8105;7817341.918;-9601.330078;250;0.655073831 549601.8105;7820908.219;-9742.929688;250;0.944551408 549276.8105;7818749.668;-9685.25;250;0.371848664 550614.3105;7819125.07;-9460.240234;250;0.225620468 551101.8105;7818055.18;-9577.19043;250;0.646081618 550864.3105;7819350.309;-9502.259766;250;0.220835694 550089.3105;7820833.141;-9643.160156;250;0.949178146 548951.8105;7820983.297;-9767.620117;250;0.299563231 551226.8105;7817266.84;-9582.099609;250;0.232022789 549664.3105;7820514.051;-9693.44043;250;0.739608611 550439.3105;7817360.688;-9629.799805;250;0.410491201 550339.3105;7817604.699;-9668.269531;250;0.705155164 550926.8105;7820795.598;-9629.360352;250;0.438523238 549551.8105;7817773.629;-9633.700195;250;0.621456802 549601.8105;7816872.668;-9658.339844;250;0.572382581 549114.3105;7817529.617;-9535.429688;250;0.153840241 549026.8105;7821095.918;-9766;250;0.187458163 552214.3105;7817848.711;-9563.549805;250;0.32280061 551239.3105;7817191.758;-9577.849609;250;0.259655549 549451.8105;7817942.559;-9688.889648;250;0.219834197 550889.3105;7819200.148;-9534.19043;250;0.42508546 550626.8105;7816872.668;-9635.089844;250;0.074169338 548939.3105;7820270.039;-9724.05957;250;0.690727507 550851.8105;7817360.688;-9602.980469;250;0.192149782 549451.8105;7818524.43;-9618.620117;250;0.990934655 550076.8105;7818336.73;-9692.410156;250;0.453631544 549164.3105;7818637.047;-9709.110352;250;0.315443853 550651.8105;7817248.07;-9619.299805;250;0.109494064 550964.3105;7818355.5;-9597.799805;250;0.442230723 550089.3105;7820701.75;-9594.719727;250;0.169073115 549164.3105;7817661.008;-9582.379883;250;0.030228846 549576.8105;7817867.48;-9672.570313;250;0.994193537 549064.3105;7820382.66;-9735.179688;250;0.837534522 551339.3105;7816985.289;-9577.620117;250;0.197536569 551426.8105;7817548.387;-9587.230469;250;0.572134686 549351.8105;7818017.637;-9699.339844;250;0.130789734 549551.8105;7817341.918;-9545.400391;250;0.512604263 549126.8105;7820551.59;-9736.25;250;0.909928686 549364.3105;7817360.688;-9452.410156;250;0.796545178 550264.3105;7818036.41;-9691.030273;250;0.021698284 550164.3105;7820026.027;-9466.889648;250;0.656758938 549276.8105;7820833.141;-9737.410156;250;0.014859578 549714.3105;7819688.168;-9670.839844;250;0.997722698 549626.8105;7819275.23;-9647.669922;250;0.555428523 550614.3105;7820758.059;-9555.589844;250;0.52420815 549189.3105;7820795.598;-9738.509766;250;0.774720013 549676.8105;7818749.668;-9556.389648;250;0.931980942 548964.3105;7817041.598;-9661.44043;250;0.852356337 549576.8105;7821114.691;-9743.089844;250;0.677052961 549389.3105;7821002.07;-9743.290039;250;0.267146286 550026.8105;7817248.07;-9607.330078;250;0.949131086 549514.3105;7817811.168;-9644.049805;250;0.542629829 550764.3105;7819350.309;-9473.75;250;0.124624668 549426.8105;7819462.93;-9708.339844;250;0.014560836 549614.3105;7819500.469;-9670.740234;250;0.424135725 549939.3105;7818374.27;-9658.780273;250;0.608739673 549539.3105;7817285.609;-9549.349609;250;0.7682976 549089.3105;7820495.281;-9737.040039;250;0.990761592 549951.8105;7818055.18;-9710.75;250;0.05084026 550239.3105;7816666.199;-9615.490234;250;0.626540578 549189.3105;7817811.168;-9639.509766;250;0.150836963 551914.3105;7817341.918;-9558.740234;250;0.902364173 549901.8105;7817642.238;-9679.769531;250;0.190985957 549889.3105;7817792.398;-9707.669922;250;0.529029597 551089.3105;7820908.219;-9678.230469;250;0.857440435 549189.3105;7820382.66;-9735.950195;250;0.772795073 550226.8105;7817754.859;-9690.730469;250;0.613112983 549564.3105;7820514.051;-9717.830078;250;0.950513701 550126.8105;7818824.75;-9649.070313;250;0.017955665 548964.3105;7821602.711;-9753.820313;250;0.586431459 551426.8105;7817698.547;-9581;250;0.413282903 549964.3105;7818730.898;-9603.910156;250;0.491341355 550001.8105;7820964.531;-9700.599609;250;0.569226462 550276.8105;7820870.68;-9611.700195;250;0.422603749 549326.8105;7817585.93;-9513.610352;250;0.993225535 549839.3105;7819519.238;-9630.540039;250;0.122722709 551026.8105;7820626.668;-9614.69043;250;0.077422311 550714.3105;7818111.488;-9626.740234;250;0.551214895 551364.3105;7817942.559;-9555.049805;250;0.477226753 550964.3105;7818787.207;-9626.919922;250;0.104473938 549701.8105;7819350.309;-9624.769531;250;0.257876151 549001.8105;7819838.328;-9731.450195;250;0.419421779 550064.3105;7818693.359;-9643.410156;250;0.892804451 552301.8105;7817604.699;-9534.269531;250;0.982370304 549514.3105;7817079.141;-9593.179688;250;0.823083644 550626.8105;7819800.789;-9533.129883;250;0.923701143 549251.8105;7820514.051;-9739.410156;250;0.645920096 550801.8105;7818224.109;-9637.339844;250;0.647168878 549326.8105;7817811.168;-9630.120117;250;0.191937866 549526.8105;7819331.539;-9679.120117;250;0.507410894 550064.3105;7817229.301;-9596.879883;250;0.720634427 549476.8105;7817736.09;-9604.700195;250;0.999872104 551351.8105;7817079.141;-9575.44043;250;0.153292562 549789.3105;7817379.461;-9637.790039;250;0.243321156 549376.8105;7817135.449;-9538.700195;250;0.687513339 548939.3105;7821471.32;-9753.639648;250;0.091196755 550039.3105;7817998.871;-9711.660156;250;0.611202832 550801.8105;7816647.43;-9647.910156;250;0.584455708 549964.3105;7821659.02;-9740.580078;250;0.688019107 550789.3105;7820776.828;-9572.709961;250;0.957422328 550151.8105;7817323.148;-9599.530273;250;0.843357771 549126.8105;7821602.711;-9760.280273;250;0.014516242 550889.3105;7816778.816;-9639.339844;250;0.369614821 549026.8105;7817304.379;-9548.860352;250;0.500840183 552426.8105;7821452.551;-9588.870117;250;0.690307196 551326.8105;7821602.711;-9663.910156;250;0.357200705 548951.8105;7816816.359;-9694.919922;250;0.166004303 550489.3105;7820382.66;-9370.379883;250;0.487580988 551214.3105;7817886.25;-9565.669922;250;0.520222763 551539.3105;7821039.609;-9665.009766;250;0.214764432 548914.3105;7820438.969;-9740.929688;250;0.448969089 549076.8105;7821565.168;-9755.860352;250;0.587816002 549364.3105;7818430.578;-9661.900391;250;0.102101211 550839.3105;7817022.828;-9621.879883;250;0.514677206 549676.8105;7817792.398;-9668.030273;250;0.694692692 549851.8105;7817661.008;-9679.480469;250;0.607182118 550189.3105;7817848.711;-9696.490234;250;0.989394766 549876.8105;7821752.867;-9741.55957;250;0.996698606 550126.8105;7817623.469;-9682.099609;250;0.853294575 548889.3105;7818355.5;-9739.650391;250;0.932883995 550864.3105;7819669.398;-9554.389648;250;0.193311946 550026.8105;7821396.238;-9756.419922;250;0.785631363 550214.3105;7817360.688;-9610.55957;250;0.25988225 549214.3105;7820119.879;-9721.169922;250;0.359335628 551351.8105;7821283.617;-9690.950195;250;0.749699506 551414.3105;7821527.629;-9676.419922;250;0.06009201 552251.8105;7817417;-9510.30957;250;0.006916627 551014.3105;7820908.219;-9672.110352;250;0.57753055 550114.3105;7817980.098;-9707.209961;250;0.576942483 552414.3105;7821227.309;-9604.629883;250;0.061713101 549726.8105;7817172.988;-9629.110352;250;0.060927327 550139.3105;7817492.078;-9650.570313;250;0.30186559 549514.3105;7818618.281;-9591.709961;250;0.961644483 548889.3105;7817567.16;-9628.480469;250;0.583291836 549651.8105;7816910.207;-9650.200195;250;0.432369936 549801.8105;7818730.898;-9550.379883;250;0.373868724 548889.3105;7820101.109;-9719.980469;250;0.311892196 551539.3105;7816872.668;-9576.790039;250;0.545488861 549889.3105;7816835.129;-9624.919922;250;0.168579826 551139.3105;7818561.969;-9571.05957;250;0.150144131 549114.3105;7821189.77;-9760.780273;250;0.264595266 551451.8105;7821734.102;-9633.950195;250;0.143074835 549876.8105;7818561.969;-9591;250;0.035244961 549451.8105;7820814.371;-9733.839844;250;0.74237135 549626.8105;7818561.969;-9571.589844;250;0.165263556 548914.3105;7820401.43;-9736.469727;250;0.133265049 550901.8105;7817473.309;-9592.889648;250;0.619913228 548939.3105;7817304.379;-9582.69043;250;0.767318661 550614.3105;7818167.797;-9653.25;250;0.430424183 550301.8105;7817154.219;-9576.280273;250;0.18265352 549376.8105;7817886.25;-9663.990234;250;0.127049471 549351.8105;7816722.508;-9667.280273;250;0.529139431 549514.3105;7817323.148;-9530.19043;250;0.534957143 549764.3105;7816928.98;-9637.379883;250;0.383091656 549339.3105;7820626.668;-9737.919922;250;0.233758631 548989.3105;7816872.668;-9682.55957;250;0.183077755 550151.8105;7817848.711;-9699.389648;250;0.722903682 549926.8105;7818787.207;-9591.049805;250;0.522033615 549189.3105;7820532.82;-9738.719727;250;0.43637033 549139.3105;7818449.348;-9710.05957;250;0.363674015 550014.3105;7817304.379;-9617.179688;250;0.228684448 549764.3105;7816966.52;-9632.599609;250;0.656775826 548889.3105;7816891.438;-9692.25;250;0.235731717 550701.8105;7817022.828;-9619.80957;250;0.743210896 550314.3105;7820926.988;-9621.879883;250;0.229339096 551239.3105;7821659.02;-9668.410156;250;0.964171053 550851.8105;7819744.48;-9558.740234;250;0.348722197 548889.3105;7816684.969;-9698.330078;250;0.570273262 549089.3105;7820983.297;-9765.450195;250;0.187920454 549864.3105;7817942.559;-9706.339844;250;0.251661475 550901.8105;7821020.84;-9679.209961;250;0.246388861 549526.8105;7818881.059;-9613.55957;250;0.002855018 549264.3105;7821452.551;-9754.820313;250;0.449476115 552376.8105;7817379.461;-9465.080078;250;0.921618553 549376.8105;7818768.438;-9654.629883;250;0.550081089 549714.3105;7817454.539;-9611.429688;250;0.658677882 549964.3105;7818149.027;-9707.099609;250;0.048572193 549089.3105;7820664.211;-9731.650391;250;0.751274349 551151.8105;7817942.559;-9569.900391;250;0.922391266 548989.3105;7816760.051;-9695.719727;250;0.353048233 549176.8105;7821527.629;-9767.759766;250;0.173942695 550739.3105;7817754.859;-9603.969727;250;0.223857103 550251.8105;7817304.379;-9601.049805;250;0.705321277 548964.3105;7821640.25;-9755.259766;250;0.282374771 551451.8105;7817773.629;-9578.820313;250;0.001909386 549514.3105;7817980.098;-9695.009766;250;0.719242407 549314.3105;7820532.82;-9738.870117;250;0.833440202 549439.3105;7819200.148;-9689.089844;250;0.999587506 549214.3105;7819068.758;-9713.610352;250;0.447048925 549314.3105;7820889.449;-9737.450195;250;0.486508285 549589.3105;7819932.18;-9674.150391;250;0.014578446 549289.3105;7816797.59;-9690.580078;250;0.817283999 549889.3105;7817848.711;-9711.389648;250;0.384586716 549614.3105;7818036.41;-9702.089844;250;0.990895941 549589.3105;7820251.27;-9692.070313;250;0.683347913 550976.8105;7821471.32;-9702.639648;250;0.257041337 550901.8105;7817679.777;-9582.830078;250;0.11703951 550751.8105;7821565.168;-9733.080078;250;0.029263664 549726.8105;7820119.879;-9629.80957;250;0.577583975 549539.3105;7820645.438;-9728.099609;250;0.988361519 548889.3105;7818881.059;-9736.049805;250;0.163632499 550739.3105;7820664.211;-9519.990234;250;0.694444048 551064.3105;7820833.141;-9666.950195;250;0.866605386 549664.3105;7818674.59;-9548.129883;250;0.799395219 549689.3105;7820664.211;-9708.80957;250;0.840303256 550001.8105;7817623.469;-9682.69043;250;0.617807517 550476.8105;7820758.059;-9553.730469;250;0.100772143 550401.8105;7821659.02;-9737.889648;250;0.288985952 550301.8105;7821133.457;-9689.980469;250;0.443858952 549864.3105;7817097.91;-9620.830078;250;0.23880495 550464.3105;7817285.609;-9615.030273;250;0.02314861 549314.3105;7820213.73;-9727.530273;250;0.142256074 549426.8105;7820664.211;-9736.379883;250;0.794816408 549901.8105;7817041.598;-9603.459961;250;0.237801532 550239.3105;7817454.539;-9639.070313;250;0.214360806 551726.8105;7821377.469;-9672.099609;250;0.602383233 550414.3105;7821771.641;-9733.650391;250;0.120226899 550451.8105;7817773.629;-9646.719727;250;0.431438448 550289.3105;7817792.398;-9685.290039;250;0.297366157 549589.3105;7819200.148;-9651.80957;250;0.228442857 549689.3105;7818486.891;-9592.719727;250;0.880439035 548951.8105;7818956.141;-9737.5;250;0.90079451 549289.3105;7820270.039;-9734.919922;250;0.423816855 551051.8105;7817792.398;-9576.219727;250;0.36310308 549114.3105;7816778.816;-9688.599609;250;0.88681678 549264.3105;7820964.531;-9742.990234;250;0.356836295 549439.3105;7820176.188;-9708.969727;250;0.800481335 548901.8105;7817754.859;-9663.900391;250;0.832517769 551376.8105;7817510.848;-9588.650391;250;0.470095273 549064.3105;7817642.238;-9587.30957;250;0.757159245 551139.3105;7817248.07;-9584.530273;250;0.815384037 551476.8105;7821640.25;-9655.139648;250;0.637176244 549214.3105;7820607.898;-9733.070313;250;0.199598248 549364.3105;7817210.527;-9497.070313;250;0.27261156 551314.3105;7818261.648;-9511.179688;250;0.207130063 549464.3105;7817679.777;-9575.089844;250;0.544856503 551289.3105;7820945.758;-9675.179688;250;0.082163769 549851.8105;7819369.078;-9614.160156;250;0.243657304 550151.8105;7820795.598;-9606.80957;250;0.905426538 550639.3105;7817567.16;-9624.799805;250;0.033496593 549689.3105;7816778.816;-9667.769531;250;0.261270877 549551.8105;7821020.84;-9739.530273;250;0.033565465 549576.8105;7816835.129;-9663.009766;250;0.912368314 549651.8105;7819669.398;-9676;250;0.089069453 549214.3105;7817905.02;-9664.55957;250;0.696165966 549451.8105;7817604.699;-9540.099609;250;0.930345061 549226.8105;7820945.758;-9743.589844;250;0.367932691 550451.8105;7821058.379;-9668.280273;250;0.660256781 549951.8105;7818111.488;-9708.540039;250;0.197007312 549714.3105;7820251.27;-9653.209961;250;0.26136051 549339.3105;7820814.371;-9736.669922;250;0.965881398 551326.8105;7821002.07;-9671.860352;250;0.011951404 549501.8105;7820589.129;-9729.959961;250;0.311299512 550701.8105;7821302.391;-9712.19043;250;0.502859255 549326.8105;7820983.297;-9742.269531;250;0.980749076 551239.3105;7817097.91;-9576.070313;250;0.936443917 550839.3105;7817642.238;-9586.339844;250;0.930616432 549214.3105;7819125.07;-9714.650391;250;0.101763494 551401.8105;7817473.309;-9590.349609;250;0.12032276 549001.8105;7820251.27;-9724.019531;250;0.065730139 549839.3105;7820701.75;-9685.580078;250;0.422451981 549526.8105;7820270.039;-9710.169922;250;0.60301663 550139.3105;7817285.609;-9593.55957;250;0.834771492 552414.3105;7816985.289;-9415.160156;250;0.430644736 551251.8105;7818374.27;-9521.450195;250;0.719767027 551226.8105;7817736.09;-9572.919922;250;0.051025432 549439.3105;7817060.367;-9587.370117;250;0.282471878 549976.8105;7817698.547;-9693.049805;250;0.985465752 550301.8105;7817529.617;-9661.049805;250;0.928033627 551464.3105;7817829.938;-9577.980469;250;0.81907035 549776.8105;7819519.238;-9636.459961;250;0.67398979 549651.8105;7817229.301;-9604.820313;250;0.238574544 549851.8105;7816985.289;-9611.879883;250;0.879995193 551214.3105;7817154.219;-9578.700195;250;0.677384839 550189.3105;7821039.609;-9685.790039;250;0.4724874 549976.8105;7817905.02;-9713.839844;250;0.825319542 549426.8105;7820758.059;-9734.80957;250;0.581714526 549451.8105;7820983.297;-9744.360352;250;0.298907752 549726.8105;7820589.129;-9682.719727;250;0.915669718 549439.3105;7820101.109;-9708.459961;250;0.6738239 549001.8105;7817623.469;-9601.290039;250;0.913823581 549826.8105;7818468.117;-9610.629883;250;0.642990847 549239.3105;7818749.668;-9694.730469;250;0.965854611 550351.8105;7820851.91;-9598.709961;250;0.107775152 549026.8105;7816722.508;-9688.889648;250;0.789959084 550276.8105;7820889.449;-9617.599609;250;0.806783527 549514.3105;7820739.289;-9730.469727;250;0.591173404 550114.3105;7817079.141;-9574.219727;250;0.064930609 549426.8105;7819857.098;-9713.099609;250;0.336796594 549801.8105;7818824.75;-9551.759766;250;0.294821515 549601.8105;7818655.82;-9559.799805;250;0.414247315 548876.8105;7816722.508;-9697.410156;250;0.265647431 549289.3105;7817135.449;-9540.129883;250;0.441712105 551489.3105;7817567.16;-9584.650391;250;0.194006497 550739.3105;7817248.07;-9617.639648;250;0.396676105 549176.8105;7819763.25;-9731.469727;250;0.63602928 551114.3105;7820851.91;-9673.25;250;0.281480745 550451.8105;7817923.789;-9651.370117;250;0.466667352 549526.8105;7817097.91;-9591.660156;250;0.456435305 551251.8105;7821734.102;-9664.900391;250;0.091517166 549789.3105;7817604.699;-9656.349609;250;0.782883587 549276.8105;7820495.281;-9738.980469;250;0.442947918 550826.8105;7818205.34;-9632.709961;250;0.907177762 549251.8105;7821490.09;-9758.209961;250;0.021806019 549289.3105;7817811.168;-9630.589844;250;0.111576545 550414.3105;7817717.32;-9657.299805;250;0.272962361 549214.3105;7818205.34;-9710.75;250;0.347994069 550026.8105;7817698.547;-9693.490234;250;0.527655867 549489.3105;7819331.539;-9688.950195;250;0.027025255 550064.3105;7817172.988;-9592.839844;250;0.947045041 549526.8105;7820814.371;-9735.820313;250;0.149663755 549414.3105;7819331.539;-9704.900391;250;0.891124749 551339.3105;7817041.598;-9575.879883;250;0.284906896 549226.8105;7817961.328;-9677.839844;250;0.701399488 549339.3105;7817116.68;-9548.820313;250;0.7390092 550001.8105;7817998.871;-9713.129883;250;0.957643852 550864.3105;7816647.43;-9642.219727;250;0.79185093 549989.3105;7821677.789;-9740.169922;250;0.025558517 549451.8105;7819331.539;-9697.519531;250;0.18412832 549576.8105;7816684.969;-9659.519531;250;0.667309918 551339.3105;7817304.379;-9581.070313;250;0.845949901 550164.3105;7817360.688;-9609.030273;250;0.876883357 549139.3105;7821565.168;-9763.089844;250;0.765644208 549176.8105;7820926.988;-9747.139648;250;0.163366103 550051.8105;7817717.32;-9694.919922;250;0.503541383 548989.3105;7817304.379;-9561.629883;250;0.065105412 552439.3105;7821415.008;-9591.040039;250;0.416531423 551239.3105;7821696.559;-9667.730469;250;0.008543714 549289.3105;7821490.09;-9749.169922;250;0.786431202 551364.3105;7821621.48;-9659.05957;250;0.029476528 548989.3105;7816816.359;-9690.919922;250;0.309448844 550451.8105;7820363.887;-9371.959961;250;0.712753976 551514.3105;7821077.148;-9664.570313;250;0.075841794 548914.3105;7820420.199;-9738.700195;250;0.853935065 549039.3105;7821565.168;-9752.910156;250;0.039092042 551151.8105;7817886.25;-9572.280273;250;0.897669121 549139.3105;7819763.25;-9733.05957;250;0.150689863 549351.8105;7818374.27;-9682.490234;250;0.608036706 548914.3105;7816722.508;-9699.400391;250;0.817950038 550476.8105;7821677.789;-9736.290039;250;0.143234803 549601.8105;7818805.98;-9588.94043;250;0.3095375 549864.3105;7817698.547;-9689.160156;250;0.509600946 550176.8105;7817811.168;-9696.240234;250;0.6351521 549964.3105;7820908.219;-9698.919922;250;0.954540358 550701.8105;7821508.859;-9734.019531;250;0.329215653 552139.3105;7817248.07;-9511.25;250;0.315266506 550089.3105;7817079.141;-9577.339844;250;0.901128449 550114.3105;7817585.93;-9674.799805;250;0.450711772 548901.8105;7818317.957;-9735.450195;250;0.650972983 550876.8105;7819706.938;-9556.650391;250;0.254444304 550051.8105;7821396.238;-9755.94043;250;0.812846656 549414.3105;7818712.129;-9634.129883;250;0.755432935 550201.8105;7817323.148;-9600.620117;250;0.325487945 551314.3105;7821283.617;-9694.610352;250;0.844771596 551626.8105;7817661.008;-9578.610352;250;0.769665357 549301.8105;7818712.129;-9674.839844;250;0.327027346 551451.8105;7821527.629;-9676.480469;250;0.721691124 552264.3105;7817473.309;-9524.610352;250;0.437545312 551064.3105;7820889.449;-9673.790039;250;0.187405897 550464.3105;7819744.48;-9536.05957;250;0.831826644 549976.8105;7817867.48;-9711.94043;250;0.849028321 550076.8105;7817980.098;-9709.339844;250;0.924299885 551976.8105;7817623.469;-9562.139648;250;0.196638973 549064.3105;7816722.508;-9685.080078;250;0.037890509 552451.8105;7821227.309;-9605.299805;250;0.752364791 549689.3105;7817172.988;-9621.400391;250;0.149236992 549614.3105;7817229.301;-9592.110352;250;0.673129027 549914.3105;7820964.531;-9719.969727;250;0.305853321 549526.8105;7818580.738;-9585.790039;250;0.942641553 548901.8105;7817529.617;-9620.469727;250;0.859209509 549801.8105;7818749.668;-9551.549805;250;0.330905948 550164.3105;7820908.219;-9641.889648;250;0.570308312 551239.3105;7820926.988;-9682.150391;250;0.24126918 548889.3105;7820119.879;-9719.679688;250;0.928062151 551576.8105;7816872.668;-9572.549805;250;0.274268452 550476.8105;7821208.539;-9713.790039;250;0.044241881 552451.8105;7816985.289;-9401.980469;250;0.696770094 549626.8105;7818824.75;-9586.830078;250;0.516340762 549889.3105;7816853.898;-9620.610352;250;0.332407647 550076.8105;7819181.379;-9585.980469;250;0.308161195 549026.8105;7820270.039;-9724.599609;250;0.069137996 551489.3105;7821734.102;-9631.700195;250;0.661431718 549401.8105;7820776.828;-9734.94043;250;0.868918358 549664.3105;7820176.188;-9657.620117;250;0.463609741 551264.3105;7817135.449;-9575.969727;250;0.959389559 549626.8105;7818618.281;-9555.929688;250;0.685430581 548914.3105;7820382.66;-9734.269531;250;0.548641952 549251.8105;7820664.211;-9734.05957;250;0.714004059 550939.3105;7817473.309;-9591.709961;250;0.942790238 548889.3105;7817285.609;-9604.679688;250;0.597827689 550651.8105;7818167.797;-9647.679688;250;0.037611341 549714.3105;7817623.469;-9643.879883;250;0.524622043 550301.8105;7817135.449;-9572.709961;250;0.036667494 549364.3105;7817848.711;-9647.459961;250;0.444348074 549389.3105;7816703.738;-9662.509766;250;0.497035661 549489.3105;7817360.688;-9513.120117;250;0.939432489 549764.3105;7816910.207;-9640.469727;250;0.066120672 551176.8105;7817867.48;-9569.980469;250;0.429756996 550814.3105;7816985.289;-9623.990234;250;0.78253279 551151.8105;7817079.141;-9583.879883;250;0.582841664 548951.8105;7816872.668;-9688.150391;250;0.188253959 550126.8105;7817829.938;-9700.339844;250;0.335722959 550601.8105;7817567.16;-9630.620117;250;0.859432504 549726.8105;7820776.828;-9726.75;250;0.438947525 549514.3105;7817698.547;-9592;250;0.883084653 549964.3105;7818787.207;-9606.849609;250;0.721369019 549176.8105;7820570.359;-9735.349609;250;0.763114238 549714.3105;7817811.168;-9679.879883;250;0.702150759 549101.8105;7818449.348;-9717.540039;250;0.8853931 550039.3105;7817285.609;-9608.570313;250;0.599972455 549526.8105;7819969.719;-9699.400391;250;0.464256337 549764.3105;7816947.75;-9634.679688;250;0.991789682 548901.8105;7816853.898;-9693.459961;250;0.562631365 550676.8105;7816985.289;-9623.030273;250;0.020524357 551514.3105;7821640.25;-9651.200195;250;0.076636439 549464.3105;7817154.219;-9553.540039;250;0.131391407 550301.8105;7820964.531;-9636.200195;250;0.697288668 551276.8105;7821659.02;-9662.280273;250;0.629336192 550889.3105;7819744.48;-9558.349609;250;0.80306239 549826.8105;7817548.387;-9652.44043;250;0.014429411 548876.8105;7817773.629;-9671.129883;250;0.806682379 548901.8105;7816647.43;-9697.929688;250;0.928220409 549051.8105;7820964.531;-9766.580078;250;0.968542966 550189.3105;7820626.668;-9543.700195;250;0.911057689 549851.8105;7817905.02;-9705.860352;250;0.523530287 551064.3105;7817829.938;-9577.580078;250;0.84948871 550914.3105;7820983.297;-9673.089844;250;0.257578436 549064.3105;7820701.75;-9735.700195;250;0.683374802 549564.3105;7818881.059;-9606.540039;250;0.407386666 549276.8105;7821415.008;-9752.209961;250;0.698321124 549426.8105;7816910.207;-9651.469727;250;0.905535905 549389.3105;7820007.258;-9726.759766;250;0.245247751 549339.3105;7818768.438;-9667.580078;250;0.986400326 549251.8105;7818055.18;-9694.089844;250;0.155546495 549976.8105;7818186.57;-9704.459961;250;0.780783689 549876.8105;7821095.918;-9734.950195;250;0.4448466 551764.3105;7821377.469;-9669.30957;250;0.091010236 549051.8105;7820645.438;-9733.69043;250;0.057646076 550964.3105;7817360.688;-9599.169922;250;0.350726163 549289.3105;7818205.34;-9707.650391;250;0.697458211 551189.3105;7817942.559;-9564.900391;250;0.962940748 548951.8105;7816760.051;-9699.780273;250;0.000305497 549289.3105;7820194.961;-9726.469727;250;0.873614722 549214.3105;7821527.629;-9764.709961;250;0.729823234 550701.8105;7817754.859;-9608.849609;250;0.400413111 550364.3105;7821696.559;-9740.280273;250;0.816581314 548951.8105;7821677.789;-9758.269531;250;0.900029105 550739.3105;7818224.109;-9646.44043;250;0.991461187 549351.8105;7820194.961;-9722.349609;250;0.306092472 549539.3105;7818017.637;-9699.980469;250;0.406522229 550214.3105;7821809.18;-9743.150391;250;0.848726748 550876.8105;7818599.508;-9646.160156;250;0.658718897 550214.3105;7821846.719;-9741.980469;250;0.544620439 550789.3105;7819481.699;-9509.19043;250;0.70390857 550089.3105;7818974.91;-9618.280273;250;0.632195802 551501.8105;7818167.797;-9534.089844;250;0.79469664 550751.8105;7818411.809;-9665.769531;250;0.300340133 550001.8105;7821621.48;-9739.299805;250;0.98858418 551851.8105;7817398.227;-9565.379883;250;0.559104562 551776.8105;7817548.387;-9561.900391;250;0.605776834 550689.3105;7818824.75;-9588.5;250;0.531731467 550289.3105;7821415.008;-9740.019531;250;0.27240993 548889.3105;7820363.887;-9731.769531;250;0.58393645 551564.3105;7817848.711;-9581.080078;250;0.294411354 551464.3105;7818017.637;-9556.629883;250;0.782582021 551026.8105;7821039.609;-9697.419922;250;0.871180179 552139.3105;7817454.539;-9536.070313;250;0.514903529 549414.3105;7818167.797;-9718.629883;250;0.331375929 549626.8105;7820138.648;-9665.589844;250;0.64318266 550389.3105;7820101.109;-9413.94043;250;0.508674712 549789.3105;7818881.059;-9554.580078;250;0.429433639 549389.3105;7820833.141;-9734.660156;250;0.904591154 549101.8105;7820945.758;-9763.030273;250;0.592849292 551226.8105;7818486.891;-9539.160156;250;0.374101682 550264.3105;7819782.02;-9532.94043;250;0.04456324 551064.3105;7820776.828;-9661.129883;250;0.66463277 549889.3105;7821039.609;-9730.75;250;0.93154638 549676.8105;7819744.48;-9669.389648;250;0.374403233 551326.8105;7817792.398;-9569.679688;250;0.895374945 549814.3105;7818393.039;-9634.860352;250;0.917086398 550701.8105;7817867.48;-9609.580078;250;0.03876092 551951.8105;7817961.328;-9564.490234;250;0.489460749 550789.3105;7818317.957;-9649.490234;250;0.182242731 550089.3105;7820082.34;-9467.55957;250;0.742516901 549601.8105;7819763.25;-9674.740234;250;0.864885476 550464.3105;7818242.879;-9676.379883;250;0.831804111 550764.3105;7818993.68;-9533.849609;250;0.714032527 549826.8105;7821114.691;-9739.080078;250;0.64488305 549489.3105;7820870.68;-9739.759766;250;0.732182567 550739.3105;7818618.281;-9649.620117;250;0.250366763 551714.3105;7817736.09;-9573.150391;250;0.901366165 550151.8105;7820420.199;-9494.80957;250;0.657616305 551014.3105;7821621.48;-9696.110352;250;0.056481906 549826.8105;7821020.84;-9733.870117;250;0.440160479 551376.8105;7817285.609;-9578.929688;250;0.822037904 550851.8105;7818486.891;-9641.080078;250;0.458732326 550714.3105;7819068.758;-9502.049805;250;0.323355172 551589.3105;7817567.16;-9574.490234;250;0.916691298 550001.8105;7820232.5;-9515.379883;250;0.474971199 550314.3105;7819875.867;-9486.679688;250;0.225954717 550839.3105;7819950.949;-9535.830078;250;0.250347976 551564.3105;7817642.238;-9579.030273;250;0.225581752 549864.3105;7818374.27;-9647.549805;250;0.342945125 551264.3105;7818205.34;-9513.490234;250;0.577890723 551514.3105;7817867.48;-9580.120117;250;0.398597188 549851.8105;7820044.801;-9566.629883;250;0.163541876 550076.8105;7819462.93;-9585.070313;250;0.149936167 549439.3105;7821339.93;-9751.219727;250;0.727210715 549676.8105;7818618.281;-9554.669922;250;0.409098621 552439.3105;7817886.25;-9544.5;250;0.040878514 549476.8105;7820007.258;-9712.889648;250;0.255892373 549701.8105;7819819.559;-9651.889648;250;0.66340603 549676.8105;7820363.887;-9674.25;250;0.84081652 549001.8105;7818036.41;-9700.030273;250;0.55988586 549739.3105;7819237.688;-9618.549805;250;0.041635273 551726.8105;7817829.938;-9567.830078;250;0.197324087 549914.3105;7820795.598;-9685.94043;250;0.069986497 551064.3105;7821583.941;-9693.570313;250;0.5500382 549401.8105;7820270.039;-9731.030273;250;0.819026413 549726.8105;7820870.68;-9732.620117;250;0.887261048 550714.3105;7817961.328;-9613.620117;250;0.201352933 549014.3105;7821189.77;-9769.120117;250;0.990153982 552439.3105;7817548.387;-9480.320313;250;0.129721905 548876.8105;7820270.039;-9721.110352;250;0.924783377 549426.8105;7817811.168;-9634.009766;250;0.559829355 549464.3105;7820307.578;-9726.55957;250;0.800165963 549989.3105;7818393.039;-9666.110352;250;0.641226547 551051.8105;7821546.398;-9695.080078;250;0.336693628 550989.3105;7816910.207;-9619.25;250;0.514841991 551539.3105;7817961.328;-9571.820313;250;0.994604741 549014.3105;7820964.531;-9766.019531;250;0.013540778 550414.3105;7817454.539;-9647.110352;250;0.930569918 549414.3105;7817360.688;-9476.679688;250;0.671064993 550726.8105;7818280.418;-9659.030273;250;0.630902887 550639.3105;7820288.809;-9437.009766;250;0.018803666 548989.3105;7817473.309;-9579.700195;250;0.276518185 550876.8105;7816910.207;-9628.669922;250;0.146944393 549826.8105;7816797.59;-9647.860352;250;0.038184814 550064.3105;7820213.73;-9472.75;250;0.098875677 550664.3105;7819294;-9453.799805;250;0.620470329 549001.8105;7821114.691;-9768.620117;250;0.374467477 550226.8105;7821659.02;-9744.349609;250;0.814731507 549464.3105;7817867.48;-9661.320313;250;0.597467943 549526.8105;7818073.949;-9705.660156;250;0.034318559 549501.8105;7817754.859;-9616.75;250;0.968114762 550101.8105;7818092.719;-9709.730469;250;0.40828281 549151.8105;7820438.969;-9738.139648;250;0.503409996 550039.3105;7820438.969;-9552.349609;250;0.294206727 549301.8105;7818618.281;-9663.55957;250;0.022161999 551151.8105;7817435.77;-9585.200195;250;0.087055983 549489.3105;7821039.609;-9742.339844;250;0.109562751 549976.8105;7820739.289;-9650.69043;250;0.865391172 549551.8105;7817548.387;-9553.209961;250;0.947152027 549076.8105;7817398.227;-9515.669922;250;0.461695282 550164.3105;7817567.16;-9671.419922;250;0.792453927 549864.3105;7820795.598;-9697.389648;250;0.651891029 549189.3105;7817041.598;-9595.679688;250;0.896920074 550014.3105;7817454.539;-9642.320313;250;0.79889825 550414.3105;7820026.027;-9439.330078;250;0.099999219 549139.3105;7821640.25;-9761.169922;250;0.647121504 551001.8105;7817923.789;-9588.089844;250;0.808098458 550739.3105;7820945.758;-9627.870117;250;0.708460345 551251.8105;7816966.52;-9575.950195;250;0.643258057 548964.3105;7821039.609;-9769.089844;250;0.409307671 550039.3105;7817079.141;-9584.429688;250;0.214143239 550614.3105;7819256.457;-9444.019531;250;0.310631313 548901.8105;7819894.641;-9725.69043;250;0.263840233 549789.3105;7817829.938;-9695.480469;250;0.519229472 550276.8105;7817604.699;-9673.669922;250;0.569467512 549489.3105;7818111.488;-9713.919922;250;0.057567526 549164.3105;7820270.039;-9731.509766;250;0.128061864 549676.8105;7816666.199;-9666.889648;250;0.047516749 550051.8105;7821752.867;-9744.360352;250;0.580591583 549164.3105;7816872.668;-9677.889648;250;0.954016177 549076.8105;7821039.609;-9764.30957;250;0.152566776 549876.8105;7820776.828;-9690.980469;250;0.71745696 549364.3105;7818693.359;-9649.69043;250;0.741321023 549776.8105;7821621.48;-9743.469727;250;0.043072064 551251.8105;7817642.238;-9582.110352;250;0.976491574 550114.3105;7821602.711;-9745.179688;250;0.706270198 550901.8105;7819613.09;-9548.580078;250;0.567160941 550901.8105;7820889.449;-9641.639648;250;0.614924472 549439.3105;7820570.359;-9733.80957;250;0.313580568 549564.3105;7818937.367;-9613.160156;250;0.25131921 550014.3105;7817848.711;-9707.200195;250;0.353631211 549614.3105;7816684.969;-9662.769531;250;0.348821369 549139.3105;7816928.98;-9657.959961;250;0.431829427 551501.8105;7817623.469;-9582.910156;250;0.423558175 549451.8105;7817248.07;-9518.839844;250;0.878063578 549239.3105;7818336.73;-9699.969727;250;0.788209833 549114.3105;7821039.609;-9762.639648;250;0.170212943 549964.3105;7817454.539;-9645.679688;250;0.060499078 549589.3105;7819725.711;-9677.459961;250;0.825644974 548951.8105;7819819.559;-9732.150391;250;0.827730188 549289.3105;7817754.859;-9608.730469;250;0.154677451 549601.8105;7817567.16;-9581.570313;250;0.118151023 552151.8105;7817942.559;-9576.839844;250;0.550789722 549701.8105;7820026.027;-9634.799805;250;0.46312659 550164.3105;7821677.789;-9746.419922;250;0.427858155 549751.8105;7816684.969;-9666.450195;250;0.318960992 549864.3105;7820945.758;-9725.379883;250;0.438558241 549701.8105;7818336.73;-9646.19043;250;0.778958148 549964.3105;7820870.68;-9691.599609;250;0.51841055 550889.3105;7819782.02;-9559.080078;250;0.498944029 550739.3105;7821677.789;-9728.299805;250;0.519470252 549501.8105;7818993.68;-9632.580078;250;0.317759209 549126.8105;7820138.648;-9720.990234;250;0.673213685 551151.8105;7817323.148;-9588.110352;250;0.819668471 552014.3105;7817848.711;-9568.910156;250;0.192777863 550914.3105;7820194.961;-9549.80957;250;0.08704705 551739.3105;7817661.008;-9576.110352;250;0.985554654 549151.8105;7820007.258;-9723.360352;250;0.268949019 550889.3105;7819481.699;-9522.730469;250;0.024233932 552064.3105;7817754.859;-9571.929688;250;0.846689899 550489.3105;7820495.281;-9392.990234;250;0.789495153 550164.3105;7817736.09;-9693.639648;250;0.789571356 549376.8105;7818111.488;-9713.179688;250;0.062284332 549351.8105;7820945.758;-9739.639648;250;0.412910519 550714.3105;7819387.852;-9469.05957;250;0.173658601 550051.8105;7817360.688;-9617.580078;250;0.48264188 550676.8105;7819200.148;-9461.459961;250;0.652643857 549639.3105;7818486.891;-9595.669922;250;0.610031747 551051.8105;7817567.16;-9586.450195;250;0.55541602 549801.8105;7820701.75;-9695.429688;250;0.303979103 550101.8105;7817135.449;-9584.400391;250;0.02057036 550126.8105;7817905.02;-9703.740234;250;0.75585317 549464.3105;7820457.738;-9724.459961;250;0.081497694 551039.3105;7818355.5;-9571.150391;250;0.937480648 548876.8105;7817679.777;-9650.099609;250;0.234379002 549839.3105;7816816.359;-9641.910156;250;0.10549979 549289.3105;7818956.141;-9688.69043;250;0.719545486 549264.3105;7821264.848;-9751.209961;250;0.709158284 549314.3105;7816684.969;-9671.169922;250;0.106447128 549264.3105;7820007.258;-9728.589844;250;0.179321143 550339.3105;7820119.879;-9406.530273;250;0.372953014 549589.3105;7817060.367;-9616.5;250;0.449789209 550014.3105;7817585.93;-9675.80957;250;0.184311331 549901.8105;7817435.77;-9645.629883;250;0.492717322 548951.8105;7819969.719;-9722.070313;250;0.178918311 551014.3105;7817736.09;-9574.94043;250;0.825098093 550914.3105;7819575.551;-9544.889648;250;0.89981718 549701.8105;7816985.289;-9635.459961;250;0.292923096 550289.3105;7817266.84;-9596.160156;250;0.440586507 549176.8105;7821020.84;-9754.19043;250;0.298046618 549426.8105;7819932.18;-9720.330078;250;0.186137743 550226.8105;7820720.52;-9568.929688;250;0.881462217 549251.8105;7820776.828;-9738.370117;250;0.010873893 549539.3105;7817379.461;-9536.780273;250;0.624941464 550126.8105;7818017.637;-9706.780273;250;0.598521123 551164.3105;7817210.527;-9580.530273;250;0.430401808 549951.8105;7817135.449;-9608.629883;250;0.768378059 549826.8105;7817773.629;-9699.790039;250;0.822298952 550214.3105;7817379.461;-9616;250;0.590323385 550051.8105;7821339.93;-9754.259766;250;0.143072065 549001.8105;7817548.387;-9591.269531;250;0.326133072 550751.8105;7819594.32;-9534.259766;250;0.16385904 550051.8105;7818055.18;-9711.860352;250;0.236510584 549189.3105;7818411.809;-9699.110352;250;0.596070997 551689.3105;7821752.867;-9572.469727;250;0.236880821 549764.3105;7818674.59;-9547.349609;250;0.977573269 551414.3105;7817867.48;-9570.389648;250;0.45032643 549651.8105;7820908.219;-9737.660156;250;0.653758477 549426.8105;7817736.09;-9598.969727;250;0.840641549 550664.3105;7819875.867;-9525.389648;250;0.697403893 549639.3105;7818186.57;-9690.709961;250;0.705098502 549826.8105;7817341.918;-9645.019531;250;0.630871561 549939.3105;7817792.398;-9706.280273;250;0.155409542 549939.3105;7817510.848;-9657.55957;250;0.886548051 549489.3105;7817492.078;-9516.959961;250;0.958541285 549164.3105;7816966.52;-9639.490234;250;0.970245537 549664.3105;7817998.871;-9700.549805;250;0.970416005 549314.3105;7820138.648;-9719.969727;250;0.189874368 550176.8105;7821302.391;-9741.860352;250;0.535436311 550351.8105;7820007.258;-9439.05957;250;0.766848003 549576.8105;7818524.43;-9589.580078;250;0.222703212 551114.3105;7816853.898;-9597.769531;250;0.439092348 549889.3105;7818693.359;-9573.129883;250;0.120378026 549351.8105;7818993.68;-9672.650391;250;0.401242252 549564.3105;7820814.371;-9738.129883;250;0.188840339 550776.8105;7821696.559;-9727.959961;250;0.125770253 550776.8105;7821227.309;-9711.700195;250;0.818637614 550389.3105;7821734.102;-9736.790039;250;0.977548375 550351.8105;7817435.77;-9646.370117;250;0.57325508 549626.8105;7821602.711;-9746.040039;250;0.557020577 549339.3105;7820307.578;-9735.450195;250;0.772130178 550514.3105;7818881.059;-9559.839844;250;0.146773931 551201.8105;7818055.18;-9549.769531;250;0.48082585 549514.3105;7816666.199;-9654.780273;250;0.114867337 549764.3105;7820908.219;-9732.019531;250;0.86273224 549314.3105;7820758.059;-9738.620117;250;0.035719601 549551.8105;7817473.309;-9540.429688;250;0.18663365 550176.8105;7818317.957;-9698.160156;250;0.744168724 549526.8105;7816985.289;-9627.679688;250;0.836214445 551101.8105;7817116.68;-9587.849609;250;0.191673606 551164.3105;7817792.398;-9571.299805;250;0.64275611 549601.8105;7820007.258;-9673.509766;250;0.709862584 549051.8105;7816853.898;-9678.799805;250;0.636576424 550476.8105;7817980.098;-9647.610352;250;0.239895317 551726.8105;7817585.93;-9566.580078;250;0.430289161 550189.3105;7817679.777;-9688.629883;250;0.351190273 550489.3105;7819631.859;-9535.379883;250;0.809153149 549076.8105;7820270.039;-9725.330078;250;0.211261707 551051.8105;7817679.777;-9579.179688;250;0.59449988 550476.8105;7821846.719;-9730.05957;250;0.67351503 551126.8105;7821621.48;-9689.769531;250;0.508456346 549589.3105;7820420.199;-9699.969727;250;0.399673592 549914.3105;7817886.25;-9713.219727;250;0.986864099 549276.8105;7819913.41;-9733.549805;250;0.545707397 550101.8105;7817341.918;-9606.990234;250;0.590562538 549164.3105;7820607.898;-9731.80957;250;0.673063313 551039.3105;7821133.457;-9704.730469;250;0.554576974 550351.8105;7820307.578;-9376.429688;250;0.965996197 550751.8105;7821827.949;-9719.179688;250;0.319249158 549439.3105;7816722.508;-9662.040039;250;0.413806384 550276.8105;7817736.09;-9684.820313;250;0.244176598 551089.3105;7818561.969;-9586.299805;250;0.742194041 550226.8105;7817585.93;-9673.379883;250;0.528610398 551114.3105;7817811.168;-9574.290039;250;0.071758849 550601.8105;7819575.551;-9522.990234;250;0.203282689 550589.3105;7817736.09;-9617.599609;250;0.395777684 550514.3105;7819087.527;-9477.790039;250;0.699794478 550601.8105;7818486.891;-9678.5;250;0.432711496 ================================================ FILE: examples/data/input_data/Claudius/DPoints.csv ================================================ X;Y;Z;Strati;Cutoff 550914.3105;7819594.32;-10263.5;330;0.432785006 550176.8105;7819706.938;-10137.7002;330;0.858020738 548889.3105;7818092.719;-10408.90039;330;0.843451889 550814.3105;7821827.949;-10568.40039;330;0.997586887 549789.3105;7821114.691;-10433;330;0.026997915 549276.8105;7818543.199;-10320;330;0.816032599 550101.8105;7818055.18;-10418.59961;330;0.664539148 550926.8105;7821827.949;-10563.79981;330;0.756953068 551514.3105;7821283.617;-10425.90039;330;0.110287031 549676.8105;7819481.699;-10223.29981;330;0.561481426 550414.3105;7817135.449;-10055.09961;330;0.802812788 549151.8105;7818336.73;-10448.09961;330;0.203601954 552201.8105;7817229.301;-9926.889648;330;0.148178051 549826.8105;7821621.48;-10421.59961;330;0.967518443 549626.8105;7817398.227;-9975.120117;330;0.091281897 549114.3105;7816760.051;-10506;330;0.102388058 551489.3105;7819782.02;-10385.7002;330;0.375659722 550739.3105;7821677.789;-10567.59961;330;0.135456971 549626.8105;7817867.48;-10339.5;330;0.796356897 551964.3105;7821527.629;-10397;330;0.669719439 550501.8105;7817248.07;-10193.29981;330;0.674934441 552001.8105;7821058.379;-10546.90039;330;0.625141179 550214.3105;7821058.379;-10438.2002;330;0.859962849 550714.3105;7821583.941;-10579.40039;330;0.544222789 550451.8105;7821058.379;-10356.59961;330;0.537608965 550051.8105;7819857.098;-9981.709961;330;0.914025713 550851.8105;7819913.41;-10114.40039;330;0.777963946 552114.3105;7821077.148;-10548;330;0.629103776 549839.3105;7817285.609;-10307.79981;330;0.771988515 552064.3105;7821095.918;-10545.5;330;0.638547721 552439.3105;7817548.387;-9835.44043;330;0.870141297 552376.8105;7817661.008;-9933.330078;330;0.269315931 552251.8105;7820420.199;-10036.29981;330;0.441238311 549951.8105;7820288.809;-9867.549805;330;0.246290274 551951.8105;7821039.609;-10544.40039;330;0.234144949 552426.8105;7820664.211;-10419.29981;330;0.730315944 549814.3105;7818524.43;-9947.040039;330;0.174240777 549501.8105;7817923.789;-10329.5;330;0.590696136 549926.8105;7817492.078;-10313.90039;330;0.89361478 550939.3105;7820720.52;-10313.59961;330;0.045366267 549351.8105;7819763.25;-10471.40039;330;0.350904098 552176.8105;7821002.07;-10546.29981;330;0.58276993 551926.8105;7818149.027;-10053.79981;330;0.769206136 551539.3105;7820119.879;-10150.40039;330;0.459792766 549789.3105;7821771.641;-10418;330;0.041341409 550826.8105;7820194.961;-9926.129883;330;0.72767306 549451.8105;7817360.688;-9700.389648;330;0.378450351 549801.8105;7821283.617;-10440.5;330;0.054559746 550326.8105;7818468.117;-10346.7002;330;0.543269914 552214.3105;7816853.898;-9949.629883;330;0.169316151 550364.3105;7820382.66;-9692.450195;330;0.028008179 552076.8105;7821321.16;-10494.40039;330;0.347972924 550976.8105;7820795.598;-10411.79981;330;0.136500684 549851.8105;7821358.699;-10454.79981;330;0.102603302 551551.8105;7817379.461;-10082.09961;330;0.138794043 550976.8105;7819744.48;-10328.59961;330;0.519220913 552189.3105;7821396.238;-10387.79981;330;0.788357697 549939.3105;7818336.73;-10346;330;0.020811345 549939.3105;7818036.41;-10423.90039;330;0.284108417 549726.8105;7819969.719;-10196.7002;330;0.154098619 549864.3105;7819350.309;-10140;330;0.43304611 551489.3105;7817398.227;-10085.59961;330;0.215537934 551276.8105;7817792.398;-10233.29981;330;0.572137946 549326.8105;7819425.391;-10468.79981;330;0.645206158 549726.8105;7818411.809;-10149.5;330;0.028514678 549551.8105;7819631.859;-10442;330;0.048780485 552326.8105;7817435.77;-9870.509766;330;0.717769106 549064.3105;7816778.816;-10515.79981;330;0.003762375 549639.3105;7820007.258;-10286.40039;330;0.083645332 550876.8105;7821133.457;-10557.90039;330;0.086885888 552339.3105;7817360.688;-9817.629883;330;0.428727203 551226.8105;7821433.781;-10469.59961;330;0.373623806 552301.8105;7817773.629;-10019.79981;330;0.822042098 549014.3105;7818449.348;-10418.09961;330;0.328630633 551776.8105;7816835.129;-10122.40039;330;0.412988818 550726.8105;7820457.738;-9733.349609;330;0.533257898 550039.3105;7820270.039;-9756.519531;330;0.303946849 549664.3105;7820363.887;-10338.2002;330;0.725235184 549826.8105;7818280.418;-10360.40039;330;0.115792479 550989.3105;7821527.629;-10551.29981;330;0.859772521 552089.3105;7818411.809;-10014.2002;330;0.830387273 548964.3105;7818336.73;-10414;330;0.899340872 549614.3105;7819106.301;-10234.90039;330;0.622765693 550839.3105;7821358.699;-10637.59961;330;0.479058652 552076.8105;7817754.859;-10055.40039;330;0.993167767 549326.8105;7821471.32;-10362.79981;330;0.893298103 549101.8105;7818092.719;-10455.5;330;0.92521354 549989.3105;7821415.008;-10461.7002;330;0.933936141 551926.8105;7821321.16;-10502.29981;330;0.93274437 549276.8105;7820926.988;-10368.09961;330;0.16202125 551239.3105;7820026.027;-10360.09961;330;0.253213411 552326.8105;7817529.617;-9915.719727;330;0.759660388 552389.3105;7816797.59;-9730.269531;330;0.615504252 549539.3105;7819143.84;-10325.79981;330;0.132795297 549126.8105;7818468.117;-10424.29981;330;0.266627847 549539.3105;7817266.84;-9868.820313;330;0.074817636 550826.8105;7816947.75;-10274.09961;330;0.927191589 550701.8105;7818411.809;-10381.79981;330;0.372384157 551989.3105;7820983.297;-10561.7002;330;0.26744193 549564.3105;7820082.34;-10355.7002;330;0.696433732 551539.3105;7821114.691;-10430.7002;330;0.905882864 552014.3105;7821171;-10540.2002;330;0.503766311 549789.3105;7820194.961;-10071;330;0.815235118 550664.3105;7821415.008;-10590;330;0.139342004 549201.8105;7818073.949;-10469;330;0.962608817 550764.3105;7819631.859;-10079.59961;330;0.845516569 549814.3105;7820007.258;-10029.5;330;0.539425627 551714.3105;7818637.047;-10202.90039;330;0.429650824 549264.3105;7820983.297;-10363.29981;330;0.715290762 550864.3105;7817060.367;-10266.79981;330;0.533915443 551476.8105;7817248.07;-10111;330;0.42527947 549864.3105;7821020.84;-10465.29981;330;0.407450663 550664.3105;7821283.617;-10569.40039;330;0.270499624 550064.3105;7821227.309;-10486;330;0.428629894 551264.3105;7821058.379;-10499.40039;330;0.723447677 551289.3105;7819181.379;-10371.79981;330;0.110315137 549876.8105;7820270.039;-9970.009766;330;0.087351221 551851.8105;7818580.738;-10010.40039;330;0.866907102 551976.8105;7818393.039;-10010;330;0.854029747 552089.3105;7819444.16;-10160.5;330;0.482547618 550689.3105;7820701.75;-9836.620117;330;0.830871638 551251.8105;7821809.18;-10436.7002;330;0.72569399 550139.3105;7817341.918;-10205.09961;330;0.614135545 550151.8105;7817829.938;-10386.5;330;0.827606972 551189.3105;7820664.211;-10394.79981;330;0.245668362 549726.8105;7821264.848;-10418.7002;330;0.398215035 549789.3105;7817867.48;-10385.79981;330;0.864544473 552189.3105;7821752.867;-10117.90039;330;0.351399116 551514.3105;7821302.391;-10425.5;330;0.459516075 552214.3105;7817060.367;-9913.209961;330;0.497743966 550226.8105;7821002.07;-10378.29981;330;0.390903175 551726.8105;7821246.078;-10490.29981;330;0.562357091 549701.8105;7819369.078;-10169.5;330;0.54873658 550139.3105;7818224.109;-10408.79981;330;0.353187182 550976.8105;7821246.078;-10616;330;0.542779944 549526.8105;7817980.098;-10363.79981;330;0.674468989 549201.8105;7817717.32;-9980.969727;330;0.467854477 552201.8105;7821114.691;-10525.90039;330;0.909702403 551339.3105;7819237.688;-10347.5;330;0.493502627 552126.8105;7821246.078;-10507.09961;330;0.144649904 550089.3105;7821171;-10498.90039;330;0.486302657 550601.8105;7820176.188;-9641.139648;330;0.404418747 551314.3105;7820983.297;-10488.5;330;0.484370389 551039.3105;7817529.617;-10220.5;330;0.65759204 551089.3105;7819857.098;-10358;330;0.680645555 550014.3105;7821734.102;-10456.2002;330;0.75827972 550864.3105;7818299.188;-10339.59961;330;0.47925599 551264.3105;7821527.629;-10461.29981;330;0.69464506 549851.8105;7819162.609;-10235.5;330;0.098604637 551476.8105;7821039.609;-10435.5;330;0.897529503 549801.8105;7820307.578;-10092.59961;330;0.139836077 551314.3105;7821077.148;-10496.40039;330;0.232422342 549851.8105;7821095.918;-10456.09961;330;0.581876816 550614.3105;7821508.859;-10578;330;0.169273366 552239.3105;7820532.82;-10189.5;330;0.451532898 552276.8105;7821020.84;-10512.2002;330;0.674469484 550139.3105;7817886.25;-10395.40039;330;0.696165439 551926.8105;7821377.469;-10479;330;0.210429315 549351.8105;7819594.32;-10480.7002;330;0.751002603 551026.8105;7820851.91;-10486.5;330;0.454342358 551064.3105;7817341.918;-10162.5;330;0.69561374 550776.8105;7821358.699;-10606.2002;330;0.514052569 550989.3105;7820270.039;-10234.90039;330;0.217923502 551089.3105;7821095.918;-10560.40039;330;0.232722533 549401.8105;7817435.77;-9630.959961;330;0.361091422 551401.8105;7820983.297;-10468.79981;330;0.474731968 551089.3105;7816797.59;-10273.79981;330;0.424160571 550976.8105;7817004.059;-10254.09961;330;0.464293088 551339.3105;7821677.789;-10415.2002;330;0.093438531 549914.3105;7818561.969;-10039.7002;330;0.340352226 552039.3105;7817492.078;-10043.7002;330;0.430760064 551076.8105;7816928.98;-10249;330;0.935459052 550889.3105;7821415.008;-10625.7002;330;0.802052179 552151.8105;7821508.859;-10381.2002;330;0.968930222 551426.8105;7821358.699;-10478.90039;330;0.734395355 549439.3105;7818468.117;-10177.79981;330;0.646932834 551451.8105;7820739.289;-10475.59961;330;0.373204292 549826.8105;7821171;-10445.59961;330;0.798215137 549364.3105;7821095.918;-10368.40039;330;0.406823026 551189.3105;7820739.289;-10432.40039;330;0.473767963 551626.8105;7819125.07;-10302;330;0.995832115 552226.8105;7821020.84;-10532.29981;330;0.122560702 548889.3105;7817942.559;-10405.5;330;0.37273407 549314.3105;7818637.047;-10214.5;330;0.445756499 549951.8105;7819143.84;-10290;330;0.319063819 551226.8105;7821452.551;-10468.09961;330;0.149651711 550651.8105;7819763.25;-10062.29981;330;0.203244339 550376.8105;7821246.078;-10516.79981;330;0.352556242 550889.3105;7817661.008;-10155.59961;330;0.717199238 550464.3105;7819894.641;-9867.389648;330;0.985986901 552039.3105;7819857.098;-9899.05957;330;0.6377079 551864.3105;7821133.457;-10518.29981;330;0.377238859 550614.3105;7821433.781;-10582.40039;330;0.433100013 551151.8105;7819782.02;-10391.2002;330;0.527545951 549864.3105;7821396.238;-10452.5;330;0.770146327 549464.3105;7819481.699;-10408.5;330;0.963967491 552164.3105;7817417;-9989.320313;330;0.799917256 550176.8105;7817661.008;-10361.2002;330;0.964633365 549376.8105;7820701.75;-10398.59961;330;0.352516252 550251.8105;7821640.25;-10503;330;0.85786168 550739.3105;7821640.25;-10571.40039;330;0.585193288 549476.8105;7820401.43;-10432.29981;330;0.653720739 549101.8105;7818167.797;-10454.09961;330;0.828713804 552201.8105;7817285.609;-9935.790039;330;0.09874114 551376.8105;7821377.469;-10487.5;330;0.163321344 550389.3105;7821095.918;-10425.7002;330;0.256839784 550051.8105;7818036.41;-10423.5;330;0.158675931 549514.3105;7817736.09;-10184.09961;330;0.515090578 550289.3105;7819875.867;-9951.790039;330;0.97202149 550189.3105;7821827.949;-10483;330;0.275735418 549389.3105;7818186.57;-10430.5;330;0.218288024 551314.3105;7821752.867;-10392.29981;330;0.481128023 551226.8105;7820194.961;-10339.40039;330;0.617952468 551489.3105;7820194.961;-10245.29981;330;0.498438778 551339.3105;7817248.07;-10111.7002;330;0.233021627 549551.8105;7819049.988;-10261.59961;330;0.027881935 550101.8105;7818449.348;-10371.29981;330;0.90140304 551889.3105;7821058.379;-10529.79981;330;0.744638441 551314.3105;7821508.859;-10465.79981;330;0.555535525 551551.8105;7820851.91;-10506.90039;330;0.609392476 550676.8105;7820119.879;-9728.769531;330;0.221905095 551826.8105;7820758.059;-10476;330;0.387566859 551626.8105;7818580.738;-10146.40039;330;0.639666476 551364.3105;7820157.418;-10360.29981;330;0.191449099 550089.3105;7821039.609;-10477.29981;330;0.244639051 550676.8105;7820063.57;-9764.669922;330;0.115608088 551989.3105;7819237.688;-10189;330;0.141592642 550764.3105;7821565.168;-10582.79981;330;0.359715012 552389.3105;7817304.379;-9723.459961;330;0.751840145 550401.8105;7818599.508;-10351.90039;330;0.019687987 551901.8105;7816741.277;-10073.09961;330;0.152918498 551689.3105;7819012.449;-10297.29981;330;0.795225219 551964.3105;7820138.648;-9567.160156;330;0.53605886 551114.3105;7820795.598;-10467.79981;330;0.056681312 550289.3105;7820776.828;-9971.120117;330;0.949733986 550089.3105;7817210.527;-10061.5;330;0.560111995 551339.3105;7816966.52;-10118.7002;330;0.030470326 549039.3105;7818393.039;-10421;330;0.88063248 549364.3105;7819538.008;-10478.09961;330;0.194325387 548914.3105;7818317.957;-10408.7002;330;0.499967606 549526.8105;7817886.25;-10310.5;330;0.506125198 549914.3105;7820270.039;-9912.129883;330;0.924552811 551764.3105;7818524.43;-10083;330;0.777752261 551101.8105;7820851.91;-10501.7002;330;0.169766403 549464.3105;7819143.84;-10390;330;0.153184167 551339.3105;7820551.59;-10388.29981;330;0.869475587 552276.8105;7820082.34;-9973.280273;330;0.236216017 552226.8105;7820945.758;-10539.09961;330;0.445787435 551301.8105;7821827.949;-10381;330;0.92725873 549839.3105;7818017.637;-10411.29981;330;0.428892823 552226.8105;7817492.078;-9989.230469;330;0.254857328 550201.8105;7819331.539;-10012.59961;330;0.098569102 552176.8105;7820213.73;-9788.5;330;0.76239942 550089.3105;7818899.828;-10367.7002;330;0.467243268 549551.8105;7819369.078;-10286;330;0.31544046 552414.3105;7817191.758;-9639.990234;330;0.526780723 552151.8105;7821827.949;-9992.19043;330;0.248713085 548889.3105;7818149.027;-10406.5;330;0.920007523 551926.8105;7819087.527;-10194.09961;330;0.363681213 551101.8105;7819763.25;-10385.2002;330;0.039756798 549401.8105;7818092.719;-10466.09961;330;0.033091873 551051.8105;7819594.32;-10378.2002;330;0.585796062 549951.8105;7819744.48;-10163.5;330;0.309130519 551489.3105;7817323.148;-10111.59961;330;0.638843776 551139.3105;7818017.637;-10242.40039;330;0.10994263 550639.3105;7818561.969;-10362.7002;330;0.321246182 550426.8105;7821002.07;-10286.29981;330;0.341632134 549939.3105;7821471.32;-10450.7002;330;0.47334219 551089.3105;7821677.789;-10514.40039;330;0.822810944 550326.8105;7817473.309;-10277.79981;330;0.364287448 549389.3105;7819706.938;-10478.59961;330;0.991382653 550139.3105;7820176.188;-9631.679688;330;0.997329494 551439.3105;7817604.699;-10086.2002;330;0.994853147 549626.8105;7819350.309;-10199;330;0.082506362 549264.3105;7817848.711;-10180.5;330;0.78515794 550751.8105;7819763.25;-10076.59961;330;0.864544399 551039.3105;7819838.328;-10331.40039;330;0.603404643 550914.3105;7817022.828;-10263.79981;330;0.635840168 551126.8105;7817417;-10166.29981;330;0.164074736 549726.8105;7818843.52;-9835.469727;330;0.918423568 550589.3105;7817004.059;-10270.29981;330;0.327681036 550151.8105;7819519.238;-10212.2002;330;0.017186836 552414.3105;7817229.301;-9648.540039;330;0.889579741 549789.3105;7819125.07;-10214.40039;330;0.537349441 549776.8105;7821339.93;-10432;330;0.384459369 550876.8105;7820739.289;-10222;330;0.220732932 550201.8105;7819068.758;-10071.2002;330;0.365848193 552101.8105;7817492.078;-10027.7002;330;0.754298811 550789.3105;7820007.258;-9978.330078;330;0.488254154 549726.8105;7818768.438;-9773.150391;330;0.789260453 551964.3105;7821189.77;-10536.2002;330;0.213209989 549789.3105;7819650.629;-10342.2002;330;0.224906155 550351.8105;7817792.398;-10340.5;330;0.566028389 550026.8105;7820101.109;-9739.080078;330;0.371233043 552351.8105;7820194.961;-10073.09961;330;0.154269096 551701.8105;7819331.539;-10305.5;330;0.095566949 552414.3105;7820833.141;-10440.29981;330;0.425002134 550189.3105;7821077.148;-10463.79981;330;0.159262231 550464.3105;7817116.68;-10123.5;330;0.01445418 552176.8105;7817604.699;-10028.90039;330;0.54502353 550189.3105;7820363.887;-9667.80957;330;0.752457932 550701.8105;7817004.059;-10282.29981;330;0.49158491 550026.8105;7818730.898;-10327.2002;330;0.192959954 549339.3105;7821227.309;-10359.90039;330;0.794503738 549701.8105;7818092.719;-10385.29981;330;0.414981848 550064.3105;7818130.258;-10423.59961;330;0.357226298 549414.3105;7821565.168;-10372.59961;330;0.864430589 552101.8105;7821433.781;-10439.79981;330;0.500859997 550951.8105;7817661.008;-10182.29981;330;0.181258901 551064.3105;7821415.008;-10556;330;0.228970051 550139.3105;7816966.52;-9865.740234;330;0.972986256 550914.3105;7817417;-10244;330;0.977258995 550776.8105;7819913.41;-10031;330;0.038884622 552001.8105;7818730.898;-10017.40039;330;0.193908952 550926.8105;7820776.828;-10341.7002;330;0.707910308 551901.8105;7816816.359;-10056.29981;330;0.102764619 549439.3105;7817323.148;-9700.389648;330;0.983857898 550739.3105;7820157.418;-9791.450195;330;0.332385896 549801.8105;7817642.238;-10330.2002;330;0.535322719 552151.8105;7820514.051;-10105.40039;330;0.669244513 550064.3105;7818505.66;-10333.7002;330;0.92925179 551514.3105;7820495.281;-10364.40039;330;0.983726548 550001.8105;7820176.188;-9750.929688;330;0.675573126 552076.8105;7821246.078;-10522.09961;330;0.896269547 550664.3105;7821490.09;-10586;330;0.768340415 549251.8105;7818618.281;-10325.59961;330;0.753959282 551514.3105;7821527.629;-10369.29981;330;0.004822711 549701.8105;7819556.777;-10266.09961;330;0.999007913 549901.8105;7817942.559;-10410.7002;330;0.757209473 550939.3105;7818036.41;-10217.29981;330;0.692113862 551776.8105;7817454.539;-10070.29981;330;0.532990804 549789.3105;7817585.93;-10300.79981;330;0.036155424 552039.3105;7821490.09;-10418.5;330;0.951700765 551539.3105;7821827.949;-10202.29981;330;0.840029314 551564.3105;7819969.719;-10178.5;330;0.228117501 552339.3105;7820814.371;-10489.7002;330;0.98483692 550314.3105;7819706.938;-10139.40039;330;0.389974952 551814.3105;7820251.27;-9635.629883;330;0.57027107 551076.8105;7821583.941;-10515.59961;330;0.154429471 550914.3105;7820082.34;-10153.2002;330;0.636722895 549526.8105;7818749.668;-9889.200195;330;0.967221878 551839.3105;7819988.488;-9660.790039;330;0.679834941 549001.8105;7818242.879;-10422.2002;330;0.722825069 549601.8105;7818224.109;-10341.90039;330;0.968336344 550439.3105;7821189.77;-10496.09961;330;0.060308565 550626.8105;7817172.988;-10277.79981;330;0.01378551 549776.8105;7820270.039;-10117.5;330;0.442431992 550939.3105;7821020.84;-10528.09961;330;0.240398636 551376.8105;7821433.781;-10485.79981;330;0.149346618 551739.3105;7818862.289;-10293.09961;330;0.651191436 551951.8105;7818430.578;-10006.5;330;0.418357703 550126.8105;7816797.59;-10071.5;330;0.731535766 549626.8105;7819406.617;-10219.59961;330;0.993802384 550776.8105;7820082.34;-9900.080078;330;0.555191336 550676.8105;7819894.641;-9972.620117;330;0.63301099 549389.3105;7818411.809;-10328.7002;330;0.750239329 551476.8105;7818805.98;-10354.29981;330;0.070801215 550751.8105;7821246.078;-10568.7002;330;0.70037277 549326.8105;7818355.5;-10426.79981;330;0.136053652 549401.8105;7819481.699;-10447.59961;330;0.531225519 549139.3105;7817998.871;-10452.2002;330;0.681351323 550314.3105;7820551.59;-9718.400391;330;0.449688153 550501.8105;7821039.609;-10315.5;330;0.157552219 549326.8105;7820720.52;-10386.7002;330;0.159745513 550489.3105;7819706.938;-10132.5;330;0.735613603 552389.3105;7817041.598;-9676.919922;330;0.740783529 551939.3105;7818993.68;-10127.09961;330;0.298540052 549776.8105;7821715.328;-10417.79981;330;0.30921948 551014.3105;7819688.168;-10334.40039;330;0.735002634 551439.3105;7821433.781;-10472.40039;330;0.362559924 551539.3105;7821358.699;-10425.29981;330;0.989482518 552139.3105;7817717.32;-10047.59961;330;0.860049272 549939.3105;7817717.32;-10387.40039;330;0.155633226 550839.3105;7817004.059;-10267.90039;330;0.669282007 549389.3105;7819162.609;-10429.79981;330;0.236267755 549264.3105;7821283.617;-10348.79981;330;0.412604554 549589.3105;7821659.02;-10388.7002;330;0.969038953 550339.3105;7816835.129;-10010.29981;330;0.762889367 550226.8105;7819725.711;-10125.09961;330;0.617747572 550714.3105;7821734.102;-10563.59961;330;0.378973649 551026.8105;7817942.559;-10305.09961;330;0.889087852 549776.8105;7817248.07;-10274.2002;330;0.320949737 551876.8105;7818036.41;-10061.79981;330;0.129144858 551539.3105;7817154.219;-10107.7002;330;0.724136435 551589.3105;7816985.289;-10131.59961;330;0.6589026 549664.3105;7817229.301;-10132.2002;330;0.66662809 550964.3105;7819125.07;-10151.40039;330;0.33256602 550989.3105;7821189.77;-10606.2002;330;0.510060511 550651.8105;7821565.168;-10576.29981;330;0.153495051 550126.8105;7816741.277;-10130.79981;330;0.52564913 550326.8105;7817210.527;-10038.7002;330;0.351251299 552026.8105;7820157.418;-9611.799805;330;0.098513924 552339.3105;7821283.617;-10296.29981;330;0.075655338 550626.8105;7817116.68;-10317.29981;330;0.222728573 549514.3105;7818092.719;-10372.40039;330;0.159879233 550864.3105;7819800.789;-10178.7002;330;0.54931726 550501.8105;7821189.77;-10495.5;330;0.046496382 550151.8105;7819143.84;-10120.79981;330;0.106669336 549401.8105;7819650.629;-10478.09961;330;0.857279137 549876.8105;7819706.938;-10283.59961;330;0.197902097 551426.8105;7820908.219;-10462.09961;330;0.126817022 551989.3105;7820288.809;-9633.150391;330;0.708034521 550251.8105;7817492.078;-10322.7002;330;0.276860668 549864.3105;7819613.09;-10273.29981;330;0.798537451 552201.8105;7817792.398;-10042.7002;330;0.401928404 550814.3105;7820101.109;-9946.320313;330;0.422970605 551601.8105;7821058.379;-10456.59961;330;0.407919179 549339.3105;7819631.859;-10478;330;0.222829775 551526.8105;7820363.887;-10252.59961;330;0.324706911 551489.3105;7821377.469;-10432.7002;330;0.207292507 550226.8105;7817661.008;-10355.09961;330;0.939146752 551251.8105;7819950.949;-10378.2002;330;0.373979986 549951.8105;7817285.609;-10277;330;0.918529312 549689.3105;7821396.238;-10405.40039;330;0.205440434 550364.3105;7817754.859;-10333.79981;330;0.192702928 549301.8105;7817492.078;-9630.730469;330;0.719097409 550664.3105;7821002.07;-10284.79981;330;0.577265413 549301.8105;7821790.41;-10359.7002;330;0.987655164 551264.3105;7821734.102;-10426.5;330;0.26552973 551364.3105;7817304.379;-10106.59961;330;0.400331544 551726.8105;7819669.398;-10281;330;0.886209252 549501.8105;7820176.188;-10405.79981;330;0.082370737 550864.3105;7820194.961;-10000.59961;330;0.520791892 552214.3105;7820345.121;-9915.410156;330;0.401113592 550626.8105;7818899.828;-10035.29981;330;0.040561337 551651.8105;7819200.148;-10327.79981;330;0.260523693 552314.3105;7817661.008;-9979.120117;330;0.055165889 552201.8105;7821490.09;-10348.79981;330;0.204511969 550351.8105;7820682.98;-9787.429688;330;0.990109117 551314.3105;7820739.289;-10439.90039;330;0.209642279 550064.3105;7820795.598;-10216.90039;330;0.655467682 548914.3105;7820758.059;-10326.59961;330;0.673305294 550376.8105;7821039.609;-10366.79981;330;0.216273529 550489.3105;7819613.09;-10121.40039;330;0.634730038 550014.3105;7819256.457;-10233;330;0.423712301 551064.3105;7819425.391;-10297.79981;330;0.2959712 551826.8105;7820514.051;-9981.610352;330;0.53612982 551814.3105;7820908.219;-10561.09961;330;0.890625568 549976.8105;7817567.16;-10341;330;0.212691008 550451.8105;7816985.289;-10089.79981;330;0.006257002 548901.8105;7817886.25;-10393.7002;330;0.467800569 552226.8105;7820870.68;-10545.79981;330;0.781340606 549439.3105;7821396.238;-10374.90039;330;0.955714669 549539.3105;7821377.469;-10384.29981;330;0.322865029 551201.8105;7819613.09;-10442.40039;330;0.389391078 549114.3105;7817623.469;-9890.240234;330;0.03563173 549601.8105;7819950.949;-10345.79981;330;0.497587669 551576.8105;7821790.41;-10171.5;330;0.185560137 549389.3105;7819406.617;-10428.59961;330;0.957290248 550701.8105;7818130.258;-10290.40039;330;0.364686881 551201.8105;7819369.078;-10461.29981;330;0.934337067 549764.3105;7820345.121;-10177.59961;330;0.487022083 552301.8105;7819857.098;-10103.40039;330;0.7569527 550451.8105;7818055.18;-10330.5;330;0.000191591 552214.3105;7816985.289;-9920.660156;330;0.181045547 550264.3105;7821152.23;-10489.29981;330;0.733087915 549201.8105;7818149.027;-10471.90039;330;0.798101655 552264.3105;7819800.789;-10111.59961;330;0.865482241 549451.8105;7820758.059;-10408.09961;330;0.079864834 549551.8105;7819312.77;-10277.2002;330;0.851197758 552076.8105;7821827.949;-9921.469727;330;0.441621974 550376.8105;7816928.98;-9994.070313;330;0.108425881 551201.8105;7821208.539;-10514.29981;330;0.422704843 551376.8105;7820889.449;-10473.29981;330;0.598805922 549051.8105;7817398.227;-9741.219727;330;0.884901249 551964.3105;7819049.988;-10131.59961;330;0.308088089 551064.3105;7820720.52;-10412.79981;330;0.442395775 550839.3105;7820964.531;-10388.2002;330;0.005447029 549801.8105;7820758.059;-10418.79981;330;0.075235679 551376.8105;7817717.32;-10100;330;0.009532703 550314.3105;7818580.738;-10370.90039;330;0.112414109 551164.3105;7818899.828;-10485.2002;330;0.244687502 550964.3105;7820420.199;-10211.59961;330;0.352369278 551401.8105;7820964.531;-10465.7002;330;0.918552083 549376.8105;7821452.551;-10371.90039;330;0.631270589 551714.3105;7820964.531;-10513.2002;330;0.399337951 552301.8105;7820194.961;-10000.79981;330;0.238230719 549989.3105;7818055.18;-10427.7002;330;0.217219337 549589.3105;7818355.5;-10257.59961;330;0.340952088 549539.3105;7818280.418;-10323.29981;330;0.004251432 552339.3105;7821602.711;-10233.79981;330;0.800911416 552051.8105;7819256.457;-10108;330;0.122151564 550951.8105;7821189.77;-10605.2002;330;0.105228007 550939.3105;7818937.367;-10308.5;330;0.53135352 550101.8105;7819988.488;-9760.969727;330;0.838830639 549164.3105;7818468.117;-10426.59961;330;0.241452186 549764.3105;7821508.859;-10416.79981;330;0.241014962 549476.8105;7820532.82;-10422.7002;330;0.437715847 551064.3105;7817604.699;-10218.2002;330;0.11313954 552439.3105;7817679.777;-9898.540039;330;0.876378049 550964.3105;7819875.867;-10241.7002;330;0.447659208 550289.3105;7817191.758;-9989.160156;330;0.606428921 550101.8105;7821227.309;-10494;330;0.461775133 549964.3105;7819688.168;-10230.29981;330;0.640742873 549426.8105;7819594.32;-10471.2002;330;0.497134923 552389.3105;7821583.941;-10220.59961;330;0.948297499 552164.3105;7819819.559;-10082.7002;330;0.293360841 551151.8105;7819181.379;-10388.40039;330;0.457377878 549451.8105;7818167.797;-10396.79981;330;0.618388091 549376.8105;7820645.438;-10403.79981;330;0.348733874 549376.8105;7821321.16;-10358.59961;330;0.348017374 549564.3105;7819106.301;-10289;330;0.386183429 551776.8105;7820983.297;-10524;330;0.813420518 551451.8105;7819106.301;-10201.09961;330;0.16669433 552076.8105;7818637.047;-10010.79981;330;0.844754621 550451.8105;7819631.859;-10127.40039;330;0.759543456 549514.3105;7820814.371;-10416.7002;330;0.242299119 551101.8105;7819331.539;-10349;330;0.263957398 551051.8105;7821508.859;-10536;330;0.720492352 551151.8105;7821809.18;-10513.5;330;0.233841665 550214.3105;7820194.961;-9597.610352;330;0.699295576 550739.3105;7820776.828;-9999.759766;330;0.24740185 552439.3105;7818092.719;-10059.79981;330;0.539532064 552376.8105;7817604.699;-9905.360352;330;0.621839343 550626.8105;7820589.129;-9704.639648;330;0.777382791 549914.3105;7818224.109;-10405.29981;330;0.757731326 549664.3105;7821189.77;-10415.5;330;0.296928734 551714.3105;7818749.668;-10288.59961;330;0.46324411 549626.8105;7821339.93;-10399;330;0.596882418 550201.8105;7817060.367;-9826.719727;330;0.553404923 551951.8105;7820345.121;-9670.509766;330;0.307537934 549626.8105;7817304.379;-10000.5;330;0.616678832 552264.3105;7820739.289;-10478;330;0.283937563 549501.8105;7819538.008;-10425.09961;330;0.570557628 550201.8105;7821339.93;-10507.29981;330;0.676730308 552239.3105;7819932.18;-10035.7002;330;0.907732337 549539.3105;7821321.16;-10385.29981;330;0.412728088 551389.3105;7821771.641;-10353.90039;330;0.926228539 549489.3105;7821546.398;-10375.5;330;0.147757113 549576.8105;7818055.18;-10367.7002;330;0.216153458 549614.3105;7818130.258;-10367.40039;330;0.740511759 550926.8105;7819200.148;-10035.7002;330;0.65226262 551001.8105;7820514.051;-10276.5;330;0.881792205 550276.8105;7818449.348;-10365.29981;330;0.50549677 550239.3105;7821809.18;-10493.59961;330;0.039836854 549414.3105;7821039.609;-10379.40039;330;0.979481927 549714.3105;7817210.527;-10235.59961;330;0.320880176 549601.8105;7818280.418;-10322.29981;330;0.440778705 551376.8105;7819106.301;-10261.40039;330;0.49940243 551051.8105;7818937.367;-10388.79981;330;0.942599342 551851.8105;7818862.289;-10162.2002;330;0.284582243 551589.3105;7821208.539;-10448.5;330;0.250317518 549539.3105;7820701.75;-10424.29981;330;0.658829748 549589.3105;7821283.617;-10396.79981;330;0.393480368 550726.8105;7817229.301;-10249.29981;330;0.664414574 550814.3105;7820514.051;-9888.089844;330;0.623046476 549026.8105;7818580.738;-10437.2002;330;0.720320261 550639.3105;7818430.578;-10373.29981;330;0.628816548 552364.3105;7820664.211;-10428.40039;330;0.29386194 550114.3105;7819031.219;-10260;330;0.133680051 549039.3105;7818017.637;-10437.7002;330;0.620866239 550201.8105;7818674.59;-10434.40039;330;0.810956055 550826.8105;7821058.379;-10461.09961;330;0.374888558 548889.3105;7819950.949;-10406.59961;330;0.729327963 550789.3105;7820964.531;-10344.29981;330;0.506728994 550214.3105;7820570.359;-9769.870117;330;0.265559303 551351.8105;7817679.777;-10103;330;0.74197773 552001.8105;7821114.691;-10540.79981;330;0.586009595 550351.8105;7818317.957;-10372;330;0.450567907 549389.3105;7820758.059;-10395.5;330;0.947188629 550489.3105;7818299.188;-10369.79981;330;0.350682789 551739.3105;7819744.48;-10221.5;330;0.898037113 550464.3105;7820664.211;-9745.549805;330;0.850729527 549364.3105;7821377.469;-10364.90039;330;0.210656995 551976.8105;7818543.199;-10003.59961;330;0.032394755 549026.8105;7821002.07;-10334.7002;330;0.918164117 549951.8105;7821321.16;-10470.40039;330;0.052174009 551826.8105;7818468.117;-10014.29981;330;0.802214752 549701.8105;7821565.168;-10401.59961;330;0.449867833 551839.3105;7821264.848;-10512.7002;330;0.017976544 550614.3105;7818618.281;-10353.29981;330;0.816954215 551664.3105;7821790.41;-10107.90039;330;0.059738452 550239.3105;7817285.609;-10073.90039;330;0.607137254 551864.3105;7818149.027;-10064.40039;330;0.910869143 552364.3105;7816741.277;-9799.610352;330;0.915675475 549639.3105;7817473.309;-10030.7002;330;0.639563874 551614.3105;7820194.961;-9961;330;0.171044202 551651.8105;7820926.988;-10513.79981;330;0.707674581 550851.8105;7817191.758;-10251.2002;330;0.59403762 548914.3105;7819800.789;-10415.79981;330;0.08535552 549914.3105;7818130.258;-10420.09961;330;0.952742202 550101.8105;7817097.91;-9912.360352;330;0.509564893 552176.8105;7820007.258;-9884.919922;330;0.391099203 549926.8105;7817661.008;-10371.40039;330;0.021958237 551201.8105;7820983.297;-10502.5;330;0.054354873 550939.3105;7817604.699;-10198.09961;330;0.264699086 552101.8105;7820945.758;-10571.2002;330;0.499026385 552251.8105;7818092.719;-10063.79981;330;0.660763884 550714.3105;7820607.898;-9784;330;0.605458928 550701.8105;7818336.73;-10383.40039;330;0.717173021 548901.8105;7817792.398;-10375.59961;330;0.491679055 551901.8105;7818956.141;-10156.90039;330;0.031889278 549901.8105;7817285.609;-10303.29981;330;0.43479013 549976.8105;7818655.82;-10140.59961;330;0.945609755 551889.3105;7821471.32;-10424.40039;330;0.916182626 551789.3105;7819256.457;-10254.7002;330;0.60295587 550226.8105;7817585.93;-10343.2002;330;0.312315562 551089.3105;7821527.629;-10516.90039;330;0.025926471 549201.8105;7821152.23;-10344;330;0.7491441 550326.8105;7817041.598;-9898.450195;330;0.111419594 550751.8105;7818299.188;-10373.09961;330;0.429041605 551314.3105;7821283.617;-10477.09961;330;0.478959003 549939.3105;7820063.57;-9839.790039;330;0.400933059 550464.3105;7820438.969;-9706.320313;330;0.564020411 549364.3105;7819969.719;-10473;330;0.638665239 551064.3105;7818862.289;-10392.2002;330;0.040039716 549464.3105;7820664.211;-10414;330;0.39007312 549614.3105;7821189.77;-10406.90039;330;0.703760688 550889.3105;7818130.258;-10261.79981;330;0.875603 550026.8105;7820007.258;-9808.769531;330;0.666446662 550451.8105;7819744.48;-10128.59961;330;0.41279652 549501.8105;7818430.578;-10182.5;330;0.501829393 549664.3105;7818224.109;-10352.29981;330;0.361550782 550789.3105;7818749.668;-10305.90039;330;0.295374586 552401.8105;7821771.641;-10126.40039;330;0.179025478 549301.8105;7821734.102;-10360.40039;330;0.150337249 551851.8105;7821508.859;-10401.90039;330;0.769988198 552439.3105;7821058.379;-10426.29981;330;0.463227759 550626.8105;7820551.59;-9681.650391;330;0.91614051 550151.8105;7819575.551;-10206.79981;330;0.568187554 551801.8105;7821734.102;-10060.09961;330;0.361112216 552076.8105;7817642.238;-10048.90039;330;0.241232297 549339.3105;7818280.418;-10440.40039;330;0.205496919 552326.8105;7817585.93;-9940.580078;330;0.937742559 550739.3105;7821002.07;-10353.90039;330;0.47704171 552201.8105;7821171;-10508.90039;330;0.964613392 549751.8105;7820457.738;-10296;330;0.39127639 551864.3105;7821734.102;-10038.2002;330;0.009407304 549364.3105;7818730.898;-10110.2002;330;0.012675492 550314.3105;7821077.148;-10427.59961;330;0.197655909 552439.3105;7820795.598;-10433.90039;330;0.638547949 550814.3105;7821734.102;-10565.29981;330;0.829358177 551026.8105;7819425.391;-10232.29981;330;0.432393379 552114.3105;7820720.52;-10464;330;0.016406569 549239.3105;7821734.102;-10361.2002;330;0.305809794 551351.8105;7821827.949;-10355.2002;330;0.629868733 550814.3105;7820551.59;-9912;330;0.683522728 550139.3105;7820457.738;-9759.900391;330;0.58266399 548889.3105;7819838.328;-10413.5;330;0.774479003 550776.8105;7818374.27;-10385.79981;330;0.252129046 549276.8105;7818317.957;-10458.29981;330;0.582049517 551814.3105;7817717.32;-10083.09961;330;0.813528949 551739.3105;7820926.988;-10538.59961;330;0.404461266 549839.3105;7819706.938;-10334.09961;330;0.925291439 551439.3105;7817661.008;-10092.2002;330;0.904549452 552389.3105;7817135.449;-9680.389648;330;0.83890004 551801.8105;7820307.578;-9689.459961;330;0.570465202 552314.3105;7819932.18;-10087.40039;330;0.934392557 551214.3105;7819087.527;-10391.40039;330;0.770603715 551739.3105;7820251.27;-9690.980469;330;0.566381005 549789.3105;7817510.848;-10281.90039;330;0.059066445 550739.3105;7819988.488;-9930.700195;330;0.862937026 550726.8105;7821433.781;-10592.09961;330;0.061812414 550464.3105;7819950.949;-9777.929688;330;0.802304764 550914.3105;7820307.578;-10103.79981;330;0.865744624 549414.3105;7818899.828;-10145;330;0.578999606 549851.8105;7819406.617;-10147.40039;330;0.918102809 550276.8105;7816853.898;-9951.269531;330;0.778481445 552389.3105;7821077.148;-10444.59961;330;0.144746749 549076.8105;7817792.398;-10182.90039;330;0.62957732 552364.3105;7821452.551;-10231;330;0.620369413 550676.8105;7821058.379;-10365.5;330;0.057756745 550989.3105;7821752.867;-10544.79981;330;0.556381202 550664.3105;7817041.598;-10299.29981;330;0.376984766 551689.3105;7820532.82;-10146.59961;330;0.823084866 550614.3105;7817060.367;-10313.90039;330;0.673258293 550776.8105;7821433.781;-10603.59961;330;0.678393444 550239.3105;7819650.629;-10165.79981;330;0.385990978 550176.8105;7820851.91;-10241.2002;330;0.036419886 550064.3105;7819012.449;-10311.2002;330;0.051135466 552439.3105;7820607.898;-10389.90039;330;0.748105746 551426.8105;7821039.609;-10459.09961;330;0.797088325 550064.3105;7820345.121;-9776.94043;330;0.010155758 551076.8105;7821452.551;-10539.90039;330;0.812272975 552151.8105;7820701.75;-10441.79981;330;0.803377338 551101.8105;7816666.199;-10281.7002;330;0.571853328 551626.8105;7819406.617;-10355.29981;330;0.085180755 550714.3105;7816835.129;-10336.5;330;0.615833124 551914.3105;7820026.027;-9608.919922;330;0.721486621 551189.3105;7821827.949;-10474.09961;330;0.149608559 549264.3105;7818712.129;-10305.59961;330;0.448435054 551776.8105;7821039.609;-10506.79981;330;0.150804497 549326.8105;7819875.867;-10466.90039;330;0.109162322 549439.3105;7818261.648;-10414.5;330;0.941047319 550264.3105;7817022.828;-9841.080078;330;0.939872619 551764.3105;7820814.371;-10552.5;330;0.108531033 550376.8105;7819631.859;-10135.7002;330;0.788161808 548951.8105;7817454.539;-9939.740234;330;0.244532025 551651.8105;7821189.77;-10467.2002;330;0.016367493 550751.8105;7816703.738;-10298.7002;330;0.120588397 551439.3105;7821133.457;-10454.29981;330;0.01974713 550614.3105;7818486.891;-10367.90039;330;0.824711595 550301.8105;7818730.898;-10384.59961;330;0.758585234 551414.3105;7821696.559;-10369.2002;330;0.763999041 549539.3105;7820157.418;-10383.2002;330;0.946271356 550339.3105;7821002.07;-10312.29981;330;0.599262256 551139.3105;7821527.629;-10493.5;330;0.44100551 551401.8105;7821302.391;-10483;330;0.407041217 551239.3105;7817736.09;-10199.59961;330;0.195899163 550401.8105;7818224.109;-10369.7002;330;0.703249119 551414.3105;7820138.648;-10321.09961;330;0.979931512 549026.8105;7817905.02;-10405.40039;330;0.854426432 550739.3105;7819688.168;-10086.59961;330;0.081705355 550701.8105;7817717.32;-10050.90039;330;0.680864207 548889.3105;7820570.359;-10334.90039;330;0.432704573 551814.3105;7820833.141;-10544.29981;330;0.227390292 550301.8105;7821809.18;-10507.09961;330;0.755395306 549989.3105;7820082.34;-9783.580078;330;0.728601719 550126.8105;7818280.418;-10407.2002;330;0.21559749 552289.3105;7820945.758;-10506.59961;330;0.48810072 552251.8105;7821696.559;-10206.29981;330;0.213898446 550626.8105;7818336.73;-10378;330;0.073455148 551614.3105;7820851.91;-10532.90039;330;0.111005755 551801.8105;7818881.059;-10237.90039;330;0.198675297 550876.8105;7821039.609;-10491;330;0.793427967 552164.3105;7817548.387;-10020.59961;330;0.835152563 551889.3105;7819012.449;-10204;330;0.904955122 552251.8105;7817698.547;-10017.2002;330;0.818029485 551414.3105;7818824.75;-10354.79981;330;0.375716554 550664.3105;7821752.867;-10558.09961;330;0.316905475 552264.3105;7817623.469;-9996.080078;330;0.986200564 550739.3105;7819913.41;-9994.120117;330;0.633615717 550001.8105;7820326.348;-9823.139648;330;0.062471605 551514.3105;7819162.609;-10269.09961;330;0.133092456 552339.3105;7820945.758;-10480.90039;330;0.406820927 552326.8105;7817942.559;-10048.2002;330;0.879009312 549789.3105;7819218.918;-10185.29981;330;0.43819266 549014.3105;7816797.59;-10516.59961;330;0.213306241 550939.3105;7820176.188;-10178;330;0.113884814 551064.3105;7816872.668;-10265;330;0.269785584 551939.3105;7818524.43;-10001.40039;330;0.298703414 550439.3105;7818355.5;-10366.5;330;0.540046283 551789.3105;7820345.121;-9738.650391;330;0.803742528 551426.8105;7819875.867;-10382.90039;330;0.503772243 549189.3105;7817848.711;-10194.40039;330;0.294278993 550464.3105;7816816.359;-10240.59961;330;0.678143202 551089.3105;7816703.738;-10281.40039;330;0.347156326 551164.3105;7820345.121;-10296;330;0.149008307 549876.8105;7817154.219;-10264.40039;330;0.209889075 551476.8105;7819331.539;-10414.79981;330;0.078474345 551401.8105;7821752.867;-10355.5;330;0.339788819 549539.3105;7818224.109;-10340.7002;330;0.197065478 549801.8105;7817004.059;-10242.7002;330;0.141683827 550601.8105;7821734.102;-10553;330;0.38646515 549726.8105;7817679.777;-10304;330;0.224515403 550851.8105;7821189.77;-10582;330;0.008375383 551264.3105;7817661.008;-10139.40039;330;0.901581913 548901.8105;7818411.809;-10417.40039;330;0.744375769 550776.8105;7820176.188;-9845.679688;330;0.030910836 549151.8105;7818149.027;-10465.79981;330;0.197439172 549601.8105;7821490.09;-10386.29981;330;0.083152389 550489.3105;7821790.41;-10536.5;330;0.021814826 551189.3105;7818937.367;-10457.79981;330;0.207090578 552151.8105;7817360.688;-9987.419922;330;0.436080027 550664.3105;7821339.93;-10584.7002;330;0.515973206 551664.3105;7819932.18;-9976.030273;330;0.736624981 549914.3105;7819181.379;-10259.5;330;0.893810968 550501.8105;7821752.867;-10544.90039;330;0.506224634 551539.3105;7820194.961;-10154.2002;330;0.834494349 551851.8105;7818430.578;-10009.90039;330;0.185980118 549489.3105;7821415.008;-10378.59961;330;0.340483409 550439.3105;7821114.691;-10426.29981;330;0.39665981 549539.3105;7819425.391;-10327.59961;330;0.698911827 551501.8105;7819087.527;-10238.79981;330;0.311692123 550726.8105;7821077.148;-10412.59961;330;0.38538223 551076.8105;7821621.48;-10514.7002;330;0.674919104 549801.8105;7818468.117;-10061.79981;330;0.71380983 551489.3105;7819725.711;-10423.90039;330;0.139252556 552014.3105;7819406.617;-10221.59961;330;0.411190668 552189.3105;7820063.57;-9848.099609;330;0.740401579 550526.8105;7816928.98;-10238.7002;330;0.833804851 551951.8105;7818486.891;-10004.2002;330;0.302905252 552051.8105;7820945.758;-10576.29981;330;0.023507944 550776.8105;7818073.949;-10227.90039;330;0.887333538 548976.8105;7820908.219;-10329;330;0.562126094 548876.8105;7821095.918;-10306.59961;330;0.911336338 550876.8105;7816666.199;-10290.2002;330;0.239492348 551951.8105;7821471.32;-10427.29981;330;0.183725782 550476.8105;7818693.359;-10325.90039;330;0.889723118 552239.3105;7820063.57;-9926.200195;330;0.312365642 550001.8105;7816835.129;-10120.5;330;0.028051117 549476.8105;7821471.32;-10375.90039;330;0.792969584 550889.3105;7818036.41;-10201.09961;330;0.742104575 549889.3105;7818993.68;-10263.90039;330;0.564509119 551601.8105;7819688.168;-10379.29981;330;0.917874419 550501.8105;7817717.32;-10250.40039;330;0.616071421 550051.8105;7821415.008;-10469.7002;330;0.196346134 552414.3105;7820870.68;-10436.09961;330;0.084166434 549339.3105;7819481.699;-10472.09961;330;0.520818696 550151.8105;7821339.93;-10499.2002;330;0.780514785 549314.3105;7818749.668;-10224.09961;330;0.28114938 550001.8105;7817717.32;-10385.09961;330;0.016433268 550139.3105;7817079.141;-9869.480469;330;0.22245727 552389.3105;7816872.668;-9700.589844;330;0.267997253 549826.8105;7818674.59;-9833.200195;330;0.347785801 550351.8105;7820476.508;-9714.129883;330;0.842417197 551201.8105;7820851.91;-10483.09961;330;0.64981951 549714.3105;7821321.16;-10411.5;330;0.035326175 550976.8105;7821283.617;-10618.2002;330;0.369583293 549214.3105;7821283.617;-10344.7002;330;0.210748537 550801.8105;7820664.211;-9986.349609;330;0.215719343 549851.8105;7818599.508;-9894.030273;330;0.508253727 548889.3105;7818655.82;-10449;330;0.216925946 551514.3105;7821565.168;-10347.90039;330;0.646825404 549951.8105;7818580.738;-10096.29981;330;0.761507331 552339.3105;7816910.207;-9765.5;330;0.939839673 550076.8105;7818336.73;-10392.29981;330;0.332375778 550614.3105;7817623.469;-10215.40039;330;0.005669791 550626.8105;7820626.668;-9727.679688;330;0.2767247 549701.8105;7817323.148;-10162.90039;330;0.689160869 550126.8105;7817548.387;-10332.79981;330;0.788823245 551051.8105;7818993.68;-10373;330;0.567829899 549639.3105;7819312.77;-10190.5;330;0.819495963 550839.3105;7820288.809;-9928.290039;330;0.223306514 551989.3105;7820101.109;-9590.860352;330;0.896833021 550851.8105;7818468.117;-10370.59961;330;0.130624483 551226.8105;7819312.77;-10476.40039;330;0.159476217 551414.3105;7820063.57;-10322.59961;330;0.787557791 549376.8105;7818543.199;-10166.40039;330;0.872547776 552251.8105;7820476.508;-10114.59961;330;0.586856342 549214.3105;7818561.969;-10380;330;0.405520979 549726.8105;7820251.27;-10209.40039;330;0.578117245 551751.8105;7821827.949;-9966.089844;330;0.06964611 550614.3105;7821339.93;-10573.09961;330;0.725125755 552151.8105;7821415.008;-10418.7002;330;0.496490199 548901.8105;7820795.598;-10321.7002;330;0.599064633 549551.8105;7819538.008;-10379.09961;330;0.840527464 551901.8105;7821189.77;-10527.79981;330;0.235059158 551476.8105;7817097.91;-10117.09961;330;0.23434545 550639.3105;7821696.559;-10563.40039;330;0.821263834 550614.3105;7820101.109;-9705.05957;330;0.948950425 550976.8105;7818918.598;-10347.79981;330;0.941980184 552439.3105;7821302.391;-10286.29981;330;0.447891282 550026.8105;7816778.816;-10146.29981;330;0.861150859 550664.3105;7821827.949;-10548.2002;330;0.360652373 549226.8105;7819049.988;-10458.5;330;0.456574671 549426.8105;7821471.32;-10375.7002;330;0.129155828 549314.3105;7821696.559;-10360.59961;330;0.794026248 550776.8105;7820607.898;-9881.950195;330;0.421919977 548989.3105;7820964.531;-10328.5;330;0.988393906 550651.8105;7817773.629;-10071.29981;330;0.401948621 549364.3105;7821415.008;-10367.90039;330;0.802359611 552114.3105;7819744.48;-10136.90039;330;0.095355373 549939.3105;7817229.301;-10254.7002;330;0.923159171 549339.3105;7820889.449;-10378.2002;330;0.299605812 551014.3105;7819519.238;-10284.2002;330;0.288839429 551476.8105;7821771.641;-10272.29981;330;0.052581832 551114.3105;7821283.617;-10549.7002;330;0.261113848 549626.8105;7820682.98;-10430.2002;330;0.283481513 549276.8105;7821227.309;-10351.79981;330;0.56438319 551101.8105;7819256.457;-10338.59961;330;0.474825344 549239.3105;7818468.117;-10407.59961;330;0.446291942 550989.3105;7820570.359;-10285.2002;330;0.643489913 552326.8105;7817285.609;-9796.610352;330;0.234926281 550701.8105;7817792.398;-10014.59961;330;0.578748134 552376.8105;7816666.199;-9814.75;330;0.048095139 550389.3105;7818355.5;-10364.7002;330;0.835637535 551989.3105;7821396.238;-10472.09961;330;0.583419392 551789.3105;7818355.5;-10054.7002;330;0.661125236 550889.3105;7816760.051;-10286.29981;330;0.419743803 551526.8105;7821752.867;-10231.2002;330;0.921226734 549839.3105;7818149.027;-10409.7002;330;0.183059499 550189.3105;7816910.207;-9882.629883;330;0.213669567 550451.8105;7820213.73;-9621.349609;330;0.78545436 551064.3105;7819500.469;-10339.59961;330;0.014481648 552276.8105;7820570.359;-10267.29981;330;0.627013315 549226.8105;7821790.41;-10360.5;330;0.877534996 552114.3105;7817905.02;-10064.59961;330;0.668930825 551389.3105;7820664.211;-10409.09961;330;0.842267501 552364.3105;7817792.398;-9994.280273;330;0.220348653 550414.3105;7818167.797;-10365;330;0.852895572 551064.3105;7819331.539;-10278.79981;330;0.195132836 551889.3105;7820363.887;-9708.269531;330;0.483108259 550464.3105;7820363.887;-9655.669922;330;0.695108437 550326.8105;7820307.578;-9628.80957;330;0.91892216 549826.8105;7819875.867;-10133.5;330;0.540099529 550164.3105;7818637.047;-10416.79981;330;0.748145364 550151.8105;7818730.898;-10435.7002;330;0.06609488 550489.3105;7818618.281;-10347.5;330;0.213026426 551426.8105;7817773.629;-10107.59961;330;0.716048388 549689.3105;7820420.199;-10338.79981;330;0.154611572 549689.3105;7820626.668;-10410.59961;330;0.392474909 552051.8105;7820251.27;-9637.799805;330;0.121463881 550789.3105;7821133.457;-10507.2002;330;0.711748137 549326.8105;7819162.609;-10458.79981;330;0.528918268 552301.8105;7818092.719;-10066.5;330;0.358369847 549639.3105;7821264.848;-10407;330;0.349127505 549264.3105;7818017.637;-10472.29981;330;0.832984766 551576.8105;7819275.23;-10285.40039;330;0.242414285 551614.3105;7821452.551;-10416;330;0.73172257 551851.8105;7818712.129;-10070.2002;330;0.638192336 549089.3105;7821095.918;-10335.29981;330;0.610576945 550064.3105;7820401.43;-9803;330;0.385880687 550326.8105;7816947.75;-9911.959961;330;0.30824602 550914.3105;7820495.281;-10125.2002;330;0.420647247 552064.3105;7818730.898;-10019.90039;330;0.470527431 551551.8105;7820908.219;-10486.90039;330;0.269238124 551601.8105;7820983.297;-10470.90039;330;0.570315568 550651.8105;7816778.816;-10346.29981;330;0.614152755 550751.8105;7821283.617;-10583.40039;330;0.311463751 550351.8105;7820645.438;-9757.69043;330;0.567225504 550139.3105;7818599.508;-10399.90039;330;0.067396675 550926.8105;7819875.867;-10196.2002;330;0.317123807 549314.3105;7819125.07;-10453.09961;330;0.374798331 551389.3105;7820758.059;-10451;330;0.611539361 549639.3105;7820476.508;-10398.09961;330;0.469012968 550401.8105;7819800.789;-10036.09961;330;0.597654119 550276.8105;7820251.27;-9595.419922;330;0.494628041 549164.3105;7819049.988;-10464.40039;330;0.620409073 551889.3105;7820044.801;-9588.320313;330;0.264085416 549676.8105;7820232.5;-10259.40039;330;0.805323374 550601.8105;7817454.539;-10262;330;0.038694424 550001.8105;7821339.93;-10472.09961;330;0.528683702 549576.8105;7820138.648;-10348;330;0.904057256 548901.8105;7820664.211;-10329.40039;330;0.376994777 550676.8105;7818486.891;-10370.7002;330;0.631692601 549351.8105;7818862.289;-10241.09961;330;0.736684967 550951.8105;7817398.227;-10237.29981;330;0.919403608 549451.8105;7817585.93;-9831.230469;330;0.981833299 552351.8105;7817867.48;-10023.7002;330;0.508474064 549851.8105;7816891.438;-10216.90039;330;0.882441281 551714.3105;7817060.367;-10088.5;330;0.650117744 550489.3105;7817417;-10271.90039;330;0.036763632 552026.8105;7819049.988;-10034.40039;330;0.508688158 551864.3105;7821546.398;-10384.09961;330;0.379422005 550276.8105;7819688.168;-10149.09961;330;0.316701799 549901.8105;7820701.75;-10308.7002;330;0.504691712 551226.8105;7819181.379;-10415.29981;330;0.495139514 551476.8105;7818918.598;-10274.09961;330;0.752588675 550664.3105;7816741.277;-10346.59961;330;0.522974996 552001.8105;7818317.957;-10020.29981;330;0.240459556 550426.8105;7820251.27;-9615.139648;330;0.47976726 549876.8105;7818674.59;-9919.339844;330;0.875305088 549476.8105;7820213.73;-10424.29981;330;0.397941978 550739.3105;7816666.199;-10306.7002;330;0.849969304 551989.3105;7821452.551;-10441.79981;330;0.67654455 551639.3105;7819068.758;-10296.79981;330;0.996519892 550814.3105;7817266.84;-10265.7002;330;0.887972643 552439.3105;7820720.52;-10438.2002;330;0.80269069 550289.3105;7820345.121;-9630.759766;330;0.684003562 550126.8105;7818712.129;-10420.40039;330;0.019597353 550876.8105;7821752.867;-10568.5;330;0.43284114 549726.8105;7819125.07;-10205;330;0.79409463 549726.8105;7817417;-10198.7002;330;0.94241747 549864.3105;7819782.02;-10233.59961;330;0.426528467 549414.3105;7820157.418;-10429;330;0.459465232 551639.3105;7817905.02;-10130.29981;330;0.476108892 550989.3105;7817398.227;-10229.7002;330;0.358981009 550464.3105;7816891.438;-10178.59961;330;0.978984026 551739.3105;7820889.449;-10553.59961;330;0.748048081 551664.3105;7821433.781;-10432.90039;330;0.463846824 548889.3105;7820701.75;-10326.2002;330;0.734638419 550714.3105;7816947.75;-10308.29981;330;0.631610183 550514.3105;7818486.891;-10362;330;0.500136049 550389.3105;7818430.578;-10346;330;0.123704224 550239.3105;7818599.508;-10396.90039;330;0.503621622 549539.3105;7821433.781;-10382.59961;330;0.663900417 550789.3105;7820739.289;-10042.40039;330;0.195306517 550339.3105;7816985.289;-9909.459961;330;0.611335605 549739.3105;7820495.281;-10324.5;330;0.523800211 550139.3105;7817154.219;-9944.849609;330;0.409677069 550014.3105;7817285.609;-10233.2002;330;0.886106999 550464.3105;7819800.789;-10024.90039;330;0.090538283 550739.3105;7818505.66;-10373.40039;330;0.291526912 549464.3105;7819913.41;-10450.5;330;0.917263065 552126.8105;7821659.02;-10257.29981;330;0.230370329 550351.8105;7821734.102;-10526.29981;330;0.849552071 549364.3105;7820026.027;-10474.40039;330;0.847425297 550151.8105;7820889.449;-10312;330;0.335171597 551726.8105;7820288.809;-9758.339844;330;0.752004975 551376.8105;7817623.469;-10082.29981;330;0.52921789 550501.8105;7817041.598;-10188.29981;330;0.999661572 549739.3105;7818299.188;-10343.5;330;0.685138864 552026.8105;7817435.77;-10042.79981;330;0.393446553 551076.8105;7817867.48;-10315.40039;330;0.909885674 549564.3105;7818411.809;-10191.7002;330;0.097022947 549514.3105;7818036.41;-10375.59961;330;0.841074965 551939.3105;7818599.508;-10021.40039;330;0.38403578 549114.3105;7821189.77;-10333.29981;330;0.425479694 550989.3105;7818768.438;-10326.79981;330;0.049963787 549539.3105;7821546.398;-10379;330;0.058384236 549764.3105;7817004.059;-10260.7002;330;0.591489331 550664.3105;7816835.129;-10344.7002;330;0.718780517 550914.3105;7819519.238;-10148.2002;330;0.5390448 551926.8105;7820194.961;-9563.589844;330;0.494130141 552314.3105;7816966.52;-9791.69043;330;0.854937405 551664.3105;7820983.297;-10490.09961;330;0.97925796 549476.8105;7821339.93;-10378;330;0.714198484 551676.8105;7818580.738;-10164.59961;330;0.524758087 549214.3105;7819312.77;-10456.59961;330;0.286921136 550814.3105;7817323.148;-10275.7002;330;0.938897525 550601.8105;7819800.789;-10045;330;0.535241402 551376.8105;7819369.078;-10439.29981;330;0.247392238 552226.8105;7820589.129;-10258.5;330;0.769454656 550189.3105;7820682.98;-9904.790039;330;0.523444953 551701.8105;7818805.98;-10305.7002;330;0.270918606 549901.8105;7817229.301;-10277.59961;330;0.77934791 551551.8105;7818730.898;-10316.09961;330;0.342754917 550614.3105;7817567.16;-10242.40039;330;0.783944402 551276.8105;7819237.688;-10404.59961;330;0.13461853 550939.3105;7820570.359;-10211;330;0.078558646 549164.3105;7819106.301;-10459.59961;330;0.612498324 549714.3105;7817135.449;-10262.79981;330;0.895559623 550826.8105;7820438.969;-9886.900391;330;0.13665206 550851.8105;7820382.66;-9942.540039;330;0.879660878 550501.8105;7817585.93;-10287.79981;330;0.630915422 550251.8105;7820851.91;-10144.59961;330;0.320214446 549389.3105;7821283.617;-10364;330;0.021662909 551601.8105;7820101.109;-10018.5;330;0.172153885 550614.3105;7816853.898;-10329.40039;330;0.471583144 550614.3105;7820326.348;-9630.349609;330;0.286013606 549201.8105;7818017.637;-10464.79981;330;0.233201507 549689.3105;7817923.789;-10371;330;0.953028187 550864.3105;7820814.371;-10282.40039;330;0.782564893 549976.8105;7818505.66;-10226.59961;330;0.03496961 549839.3105;7817229.301;-10289.7002;330;0.238352447 550189.3105;7819143.84;-10055.09961;330;0.394738191 550001.8105;7820814.371;-10309.2002;330;0.909929577 548989.3105;7817567.16;-9939.610352;330;0.47115915 551326.8105;7820776.828;-10453.90039;330;0.744511508 550664.3105;7820382.66;-9641.169922;330;0.714181767 550076.8105;7818956.141;-10334.40039;330;0.433406728 550226.8105;7820964.531;-10335.09961;330;0.664391923 552214.3105;7817341.918;-9939.730469;330;0.158929071 550614.3105;7819988.488;-9807.450195;330;0.537147501 549389.3105;7818336.73;-10414.59961;330;0.773632688 551526.8105;7821508.859;-10379.5;330;0.359279469 549901.8105;7819932.18;-10005.40039;330;0.130923726 550876.8105;7820964.531;-10429.79981;330;0.677639961 549789.3105;7818149.027;-10402.09961;330;0.726202306 550839.3105;7818693.359;-10331.79981;330;0.417478525 552264.3105;7817304.379;-9884.129883;330;0.981854387 551289.3105;7818899.828;-10385.59961;330;0.605600932 549951.8105;7820514.051;-10053.79981;330;0.935419993 550439.3105;7820307.578;-9627.740234;330;0.958345402 551139.3105;7819237.688;-10387;330;0.086565119 549939.3105;7818674.59;-10046.7002;330;0.230282406 549326.8105;7819688.168;-10473.40039;330;0.241358343 551151.8105;7821377.469;-10511.29981;330;0.054780926 550064.3105;7820870.68;-10318.09961;330;0.005045692 550714.3105;7818224.109;-10334.29981;330;0.436237804 550689.3105;7818543.199;-10364.7002;330;0.078418139 551389.3105;7821264.848;-10481;330;0.770697761 550339.3105;7820232.5;-9624.900391;330;0.506008401 552451.8105;7821715.328;-10156.7002;330;0.717679427 552164.3105;7820438.969;-9970.780273;330;0.346246106 549801.8105;7818017.637;-10405.40039;330;0.687826438 551026.8105;7819331.539;-10202;330;0.381931673 550676.8105;7819950.949;-9904.540039;330;0.810039114 552076.8105;7818768.438;-10020.5;330;0.703417467 550239.3105;7818017.637;-10394.79981;330;0.673667037 552126.8105;7819688.168;-10166.5;330;0.268750629 551126.8105;7819519.238;-10419.7002;330;0.789402844 550326.8105;7820026.027;-9702.490234;330;0.24097416 552439.3105;7821002.07;-10437.29981;330;0.188246096 552389.3105;7817529.617;-9855.269531;330;0.383847526 551626.8105;7819594.32;-10442.5;330;0.039644427 549976.8105;7817792.398;-10396.29981;330;0.637846282 549539.3105;7821490.09;-10379.59961;330;0.392318526 551214.3105;7817792.398;-10265.90039;330;0.521612648 551814.3105;7817998.871;-10078.40039;330;0.963934519 550501.8105;7818261.648;-10367.7002;330;0.712288047 549426.8105;7817923.789;-10352.2002;330;0.809447613 549264.3105;7818411.809;-10429.90039;330;0.151894268 549464.3105;7818486.891;-10109;330;0.815427228 549839.3105;7819218.918;-10212.79981;330;0.673977269 551376.8105;7818881.059;-10351;330;0.317564325 551101.8105;7819406.617;-10351.2002;330;0.278848794 550764.3105;7819575.551;-10004;330;0.595435798 550664.3105;7818299.188;-10377.29981;330;0.13045181 551826.8105;7821471.32;-10421.59961;330;0.246178492 552314.3105;7817867.48;-10036.29981;330;0.237093474 552126.8105;7820645.438;-10361.90039;330;0.246598313 550776.8105;7820889.449;-10240.59961;330;0.115904731 551176.8105;7819143.84;-10395;330;0.636904405 551601.8105;7821264.848;-10455.2002;330;0.767588963 551139.3105;7821208.539;-10536.09961;330;0.380123462 549501.8105;7817679.777;-10090.5;330;0.052066982 549139.3105;7818393.039;-10435.79981;330;0.723440469 550401.8105;7816891.438;-10070.90039;330;0.581734798 549476.8105;7821208.539;-10382.7002;330;0.323379449 551501.8105;7817604.699;-10091.79981;330;0.05617986 552351.8105;7817736.09;-9983.549805;330;0.822607712 550951.8105;7819556.777;-10238.40039;330;0.869590543 550701.8105;7819782.02;-10044.90039;330;0.639280774 550476.8105;7819857.098;-9950.929688;330;0.488266232 552314.3105;7821752.867;-10151.7002;330;0.695296298 549751.8105;7820401.43;-10245.09961;330;0.175236283 550751.8105;7816947.75;-10300.59961;330;0.650277516 549951.8105;7820645.438;-10186.2002;330;0.291083416 551526.8105;7819218.918;-10267.5;330;0.233981258 548926.8105;7821095.918;-10309;330;0.885552936 551064.3105;7821264.848;-10581.09961;330;0.710182318 549401.8105;7821246.078;-10367.40039;330;0.699233188 550126.8105;7820776.828;-10168;330;0.139555001 550289.3105;7817097.91;-9899.799805;330;0.37976071 551414.3105;7821677.789;-10379.40039;330;0.514738424 549464.3105;7818036.41;-10417.40039;330;0.918382173 552051.8105;7818899.828;-10014.2002;330;0.975750048 550014.3105;7820926.988;-10431.7002;330;0.327041204 548889.3105;7820889.449;-10311;330;0.748458407 549964.3105;7816872.668;-10115.79981;330;0.673519918 551014.3105;7817623.469;-10210.7002;330;0.345236439 549851.8105;7818205.34;-10400.79981;330;0.630653533 549951.8105;7818280.418;-10385.79981;330;0.802335472 551901.8105;7820307.578;-9643.549805;330;0.402223096 549464.3105;7818712.129;-9965.080078;330;0.888974259 549226.8105;7820870.68;-10366.2002;330;0.338117167 552089.3105;7821583.941;-10344.7002;330;0.525406133 551414.3105;7821827.949;-10321.40039;330;0.148985259 549101.8105;7819068.758;-10455.59961;330;0.570606346 551089.3105;7821752.867;-10524.90039;330;0.273389401 552389.3105;7820589.129;-10366.40039;330;0.880824158 549389.3105;7818449.348;-10278.09961;330;0.418525192 552439.3105;7817829.938;-9974.349609;330;0.145822659 550951.8105;7820645.438;-10279.7002;330;0.891391394 549789.3105;7818768.438;-9816.759766;330;0.549859469 551489.3105;7820908.219;-10464.59961;330;0.461815829 551689.3105;7818693.359;-10260;330;0.610948028 549339.3105;7819819.559;-10468.40039;330;0.706934281 550239.3105;7818730.898;-10449.59961;330;0.537293221 549789.3105;7818317.957;-10332.59961;330;0.967382982 550614.3105;7820044.801;-9751.580078;330;0.747986893 551839.3105;7820420.199;-9799.410156;330;0.18458469 551964.3105;7816741.277;-10032.90039;330;0.193094268 552439.3105;7820945.758;-10431.7002;330;0.451792073 549889.3105;7820363.887;-9963.269531;330;0.373217695 550414.3105;7818655.82;-10332.79981;330;0.200279917 550914.3105;7820251.27;-10113.5;330;0.889850391 550776.8105;7817698.547;-10076.2002;330;0.509283072 549489.3105;7819049.988;-10296.09961;330;0.650112445 552389.3105;7820945.758;-10455;330;0.323398733 551151.8105;7821659.02;-10493.90039;330;0.165998994 552089.3105;7818468.117;-10008.40039;330;0.296620347 551476.8105;7819031.219;-10227;330;0.367512524 550851.8105;7819950.949;-10107.7002;330;0.585312784 550839.3105;7820720.52;-10122.40039;330;0.167169603 550401.8105;7816741.277;-10281.7002;330;0.70597833 550464.3105;7820589.129;-9720.639648;330;0.414933639 550001.8105;7819650.629;-10237.40039;330;0.384590631 550989.3105;7817060.367;-10240;330;0.162660505 550226.8105;7819538.008;-10171.2002;330;0.48323131 549339.3105;7818167.797;-10454;330;0.326464053 552276.8105;7818186.57;-10059.5;330;0.988861327 550976.8105;7820926.988;-10499.29981;330;0.959134305 549451.8105;7819087.527;-10367.7002;330;0.820048245 550314.3105;7820607.898;-9744.799805;330;0.085735258 549226.8105;7821583.941;-10350.5;330;0.345049726 551526.8105;7820438.969;-10305.40039;330;0.055792606 549501.8105;7818355.5;-10300.5;330;0.725192579 550201.8105;7820026.027;-9712.240234;330;0.818211021 550826.8105;7821508.859;-10591.79981;330;0.818567236 549026.8105;7817567.16;-9872.009766;330;0.232223227 551114.3105;7816835.129;-10262.09961;330;0.507171627 550989.3105;7819819.559;-10281.90039;330;0.035232478 550001.8105;7818092.719;-10428.59961;330;0.325066079 549914.3105;7818374.27;-10301.59961;330;0.516389604 551501.8105;7820288.809;-10254.29981;330;0.971784356 550151.8105;7819650.629;-10173.40039;330;0.320243489 549126.8105;7817473.309;-9687.80957;330;0.637169038 551726.8105;7818937.367;-10291.59961;330;0.077046852 552264.3105;7818524.43;-10023.09961;330;0.700897313 550464.3105;7821640.25;-10547.40039;330;0.46437102 552026.8105;7819594.32;-10252.7002;330;0.279729471 550601.8105;7821809.18;-10536.2002;330;0.129043845 551826.8105;7820044.801;-9609.759766;330;0.533534134 549476.8105;7819950.949;-10430.2002;330;0.971481592 550801.8105;7817379.461;-10277;330;0.969452565 552026.8105;7820476.508;-9854.889648;330;0.026913739 552089.3105;7818524.43;-10005.79981;330;0.199099146 552301.8105;7821827.949;-10111.5;330;0.074372575 550664.3105;7821114.691;-10418.40039;330;0.557345931 552101.8105;7820307.578;-9725.589844;330;0.483243102 550114.3105;7819613.09;-10206.2002;330;0.993166185 550776.8105;7817867.48;-9994.419922;330;0.416987662 549801.8105;7819068.758;-10215;330;0.499590081 550639.3105;7818167.797;-10330.29981;330;0.438405675 549439.3105;7819406.617;-10389.79981;330;0.846906019 551339.3105;7819312.77;-10412.09961;330;0.420678305 549801.8105;7817435.77;-10308.7002;330;0.037008813 552426.8105;7818768.438;-10024.79981;330;0.332620435 551664.3105;7820213.73;-9835.599609;330;0.967845809 548889.3105;7818280.418;-10405.79981;330;0.703430513 552101.8105;7818092.719;-10056.40039;330;0.497292231 550664.3105;7820664.211;-9773.230469;330;0.497102232 550776.8105;7821058.379;-10423.90039;330;0.521388682 551751.8105;7819988.488;-9742.129883;330;0.255635078 550376.8105;7820814.371;-9926.830078;330;0.079700814 549614.3105;7819462.93;-10261;330;0.072525436 549401.8105;7821827.949;-10359.7002;330;0.165501028 550364.3105;7818712.129;-10332.90039;330;0.053120006 549851.8105;7817417;-10342.40039;330;0.72103967 549739.3105;7819162.609;-10201.29981;330;0.082691065 551989.3105;7818599.508;-10009.90039;330;0.274896015 550926.8105;7818768.438;-10329.2002;330;0.995301722 549301.8105;7819763.25;-10466;330;0.610648681 552289.3105;7820664.211;-10427.29981;330;0.371754415 550064.3105;7819387.852;-10218.5;330;0.951225186 552214.3105;7819725.711;-10123.7002;330;0.352871215 552114.3105;7820251.27;-9704.339844;330;0.039175618 551951.8105;7819575.551;-10259;330;0.812567433 551726.8105;7821321.16;-10479.5;330;0.381145964 551751.8105;7820420.199;-9854.990234;330;0.564523092 548889.3105;7819538.008;-10419.59961;330;0.159284398 552039.3105;7819932.18;-9816.490234;330;0.907390512 552289.3105;7821302.391;-10306.59961;330;0.513428987 551864.3105;7820401.43;-9757.900391;330;0.141237871 552076.8105;7821189.77;-10536.79981;330;0.29269135 550101.8105;7819932.18;-9835.049805;330;0.127560879 552139.3105;7819782.02;-10112.59961;330;0.881383424 549914.3105;7820119.879;-9856.900391;330;0.282048847 549339.3105;7820833.141;-10380.79981;330;0.386059988 550739.3105;7821133.457;-10481.90039;330;0.625831463 551389.3105;7817060.367;-10110.59961;330;0.94144445 552164.3105;7819950.949;-9936.830078;330;0.439546605 550889.3105;7818768.438;-10330.5;330;0.667632671 551051.8105;7819068.758;-10327;330;0.503717994 552439.3105;7816666.199;-9743.879883;330;0.814817923 551714.3105;7819913.41;-9851.55957;330;0.366520444 549914.3105;7821227.309;-10471;330;0.105242004 549451.8105;7820701.75;-10411.40039;330;0.325132471 551101.8105;7816985.289;-10225.59961;330;0.093252217 552339.3105;7818017.637;-10059;330;0.586276871 550739.3105;7819838.328;-10034.59961;330;0.269335003 551989.3105;7821583.941;-10367.09961;330;0.249195035 550076.8105;7820758.059;-10178.09961;330;0.841342838 549614.3105;7821377.469;-10394.90039;330;0.154034899 552251.8105;7821471.32;-10303.7002;330;0.321304907 549026.8105;7818073.949;-10434.2002;330;0.054205047 551651.8105;7819706.938;-10312.29981;330;0.83089217 551976.8105;7818899.828;-10036.90039;330;0.000666914 551526.8105;7817060.367;-10123;330;0.819043815 548976.8105;7818637.047;-10463.90039;330;0.662338641 552376.8105;7817942.559;-10037.40039;330;0.828783503 552001.8105;7820213.73;-9606.469727;330;0.922092425 550064.3105;7819087.527;-10280;330;0.488077151 549489.3105;7820645.438;-10417.59961;330;0.437339274 551864.3105;7821827.949;-9886.049805;330;0.397173255 549539.3105;7821659.02;-10382.79981;330;0.498938028 551339.3105;7819031.219;-10277.09961;330;0.793531921 550226.8105;7818055.18;-10398.2002;330;0.403069402 548939.3105;7817510.848;-10001;330;0.745254802 552426.8105;7817417;-9756.610352;330;0.782846306 552339.3105;7820288.809;-10073.09961;330;0.925868278 549926.8105;7819706.938;-10241;330;0.256467745 549226.8105;7821846.719;-10356.90039;330;0.949697329 550814.3105;7817510.848;-10246.09961;330;0.370363559 550739.3105;7816760.051;-10308.7002;330;0.862786668 550951.8105;7820495.281;-10207.40039;330;0.067101722 549276.8105;7818374.27;-10440.79981;330;0.267178284 549289.3105;7819350.309;-10463;330;0.246803514 550189.3105;7817548.387;-10332.90039;330;0.2755165 552301.8105;7817717.32;-10003.90039;330;0.710717931 549064.3105;7821039.609;-10337.79981;330;0.076982802 551389.3105;7821490.09;-10480.7002;330;0.682019388 550376.8105;7819688.168;-10135.79981;330;0.071279324 549726.8105;7819913.41;-10211.09961;330;0.949283246 549401.8105;7820814.371;-10392.5;330;0.010759872 549476.8105;7818280.418;-10376.5;330;0.021733575 549176.8105;7821302.391;-10341.40039;330;0.831978576 550026.8105;7818824.75;-10353.7002;330;0.064749874 550676.8105;7817341.918;-10271;330;0.480167029 550514.3105;7821659.02;-10554;330;0.5096252 550301.8105;7821020.84;-10351.2002;330;0.996358221 551864.3105;7818486.891;-10003.09961;330;0.084420136 551151.8105;7817905.02;-10306;330;0.869952233 551776.8105;7820382.66;-9792.179688;330;0.927893486 549926.8105;7817154.219;-10225.29981;330;0.993323775 551726.8105;7817567.16;-10093.59961;330;0.253219583 551614.3105;7819988.488;-10072.79981;330;0.841690095 550489.3105;7821846.719;-10527.90039;330;0.949625222 548889.3105;7817829.938;-10382;330;0.031234483 551526.8105;7821415.008;-10413.5;330;0.367109704 549101.8105;7817923.789;-10389.7002;330;0.201470937 551101.8105;7817961.328;-10281.79981;330;0.527675325 550076.8105;7817567.16;-10340;330;0.359588661 552364.3105;7819932.18;-10098.59961;330;0.012883285 552151.8105;7821339.93;-10447.40039;330;0.509101736 550389.3105;7820739.289;-9829.129883;330;0.734478524 550414.3105;7818036.41;-10342.79981;330;0.902744218 552414.3105;7817773.629;-9958.019531;330;0.348874235 551151.8105;7817248.07;-10163.59961;330;0.170353089 550951.8105;7821339.93;-10620.40039;330;0.561770045 550876.8105;7820495.281;-10032.79981;330;0.959610299 550901.8105;7818449.348;-10345.59961;330;0.864804137 549614.3105;7820438.969;-10404.40039;330;0.504579352 552376.8105;7818374.27;-10049;330;0.485596394 551601.8105;7819049.988;-10282.59961;330;0.145005378 552039.3105;7818393.039;-10013.90039;330;0.239766595 551526.8105;7818918.598;-10270.5;330;0.043360228 549501.8105;7819256.457;-10353.5;330;0.759219701 550514.3105;7821583.941;-10556.59961;330;0.978601638 551064.3105;7817811.168;-10261.29981;330;0.254045999 550901.8105;7817773.629;-10127.40039;330;0.076308376 550489.3105;7821715.328;-10550.2002;330;0.822990362 550476.8105;7820889.449;-10042.29981;330;0.813068392 549651.8105;7821302.391;-10405.7002;330;0.518124571 549614.3105;7820851.91;-10428.79981;330;0.693723877 550814.3105;7819782.02;-10136.90039;330;0.211496443 550514.3105;7817097.91;-10220.7002;330;0.754719884 550501.8105;7818561.969;-10356.79981;330;0.734642539 552039.3105;7820307.578;-9663.849609;330;0.599108725 550064.3105;7820926.988;-10396;330;0.129237048 550101.8105;7819481.699;-10239.40039;330;0.462654295 552176.8105;7818524.43;-10014.59961;330;0.722945196 551189.3105;7817754.859;-10232.7002;330;0.079712269 552376.8105;7820720.52;-10454.09961;330;0.41505877 550464.3105;7821565.168;-10546.90039;330;0.35348888 550489.3105;7818205.34;-10360.29981;330;0.772533294 550726.8105;7817135.449;-10240.90039;330;0.167320785 550614.3105;7819875.867;-9959.790039;330;0.3992053 551651.8105;7820251.27;-9871.620117;330;0.497993993 551939.3105;7821114.691;-10533.7002;330;0.17344967 549614.3105;7819181.379;-10228.09961;330;0.21500724 551276.8105;7820814.371;-10467.59961;330;0.145136221 550689.3105;7817304.379;-10267;330;0.898284046 552101.8105;7818073.949;-10058.7002;330;0.426971095 549726.8105;7821659.02;-10410.79981;330;0.80453292 549239.3105;7819143.84;-10469.09961;330;0.047815556 550901.8105;7820345.121;-10075.40039;330;0.840591444 552189.3105;7819950.949;-9969.129883;330;0.33051246 552026.8105;7816928.98;-10032.59961;330;0.770607188 551076.8105;7817492.078;-10207.7002;330;0.487417479 550076.8105;7817341.918;-10218.7002;330;0.402064119 549801.8105;7818580.738;-9846.620117;330;0.065747406 549339.3105;7819932.18;-10469.90039;330;0.765838941 551351.8105;7817867.48;-10235.40039;330;0.966843119 549814.3105;7817097.91;-10268;330;0.080119049 551139.3105;7817548.387;-10170;330;0.526545434 550951.8105;7818186.57;-10263.7002;330;0.113688099 550751.8105;7817473.309;-10260.7002;330;0.993455304 549776.8105;7818092.719;-10403.29981;330;0.016166877 550326.8105;7817829.938;-10353.29981;330;0.164208791 551164.3105;7817492.078;-10179.7002;330;0.414954031 552426.8105;7816722.508;-9728.799805;330;0.974191232 550301.8105;7818374.27;-10371;330;0.864512846 550239.3105;7819800.789;-10075.7002;330;0.645038796 549189.3105;7817417;-9604.959961;330;0.890817499 550701.8105;7818805.98;-10284.09961;330;0.642226867 549664.3105;7818862.289;-9848.080078;330;0.149315562 551764.3105;7816741.277;-10146.09961;330;0.02807059 552239.3105;7818730.898;-10011;330;0.570097822 549726.8105;7821396.238;-10414.7002;330;0.721769036 552214.3105;7821827.949;-10046.29981;330;0.671157692 551714.3105;7820345.121;-9825.839844;330;0.080354152 549889.3105;7820889.449;-10457.5;330;0.470784255 552364.3105;7821227.309;-10318.90039;330;0.969363137 551376.8105;7817754.859;-10119;330;0.487139549 550214.3105;7820889.449;-10249.59961;330;0.999856236 551164.3105;7817717.32;-10177.59961;330;0.114943322 548876.8105;7820157.418;-10401.29981;330;0.049157929 550139.3105;7819312.77;-10103.5;330;0.3260266 550901.8105;7818618.281;-10344.5;330;0.243650098 550914.3105;7820401.43;-10105.2002;330;0.901181074 549176.8105;7816760.051;-10489.09961;330;0.350061637 551851.8105;7818374.27;-10019.79981;330;0.049613978 549239.3105;7818505.66;-10386.2002;330;0.680190914 550426.8105;7820739.289;-9815.719727;330;0.506262019 549339.3105;7821527.629;-10365;330;0.87625483 550439.3105;7819688.168;-10136.90039;330;0.263114351 549464.3105;7819181.379;-10393.40039;330;0.415565813 552364.3105;7818824.75;-9974.959961;330;0.219667753 552214.3105;7818580.738;-10014.2002;330;0.29575641 549764.3105;7817079.141;-10271.2002;330;0.985051109 551314.3105;7817323.148;-10107.2002;330;0.879185438 552339.3105;7821095.918;-10464.7002;330;0.60329176 551526.8105;7821452.551;-10402;330;0.646681493 550676.8105;7818749.668;-10295.29981;330;0.378293723 551901.8105;7819462.93;-10235.29981;330;0.975002 551326.8105;7817867.48;-10291.7002;330;0.412244357 552001.8105;7819875.867;-9841.459961;330;0.791334996 551976.8105;7820833.141;-10579.79981;330;0.744341473 550776.8105;7817811.168;-9996.019531;330;0.264053535 551614.3105;7819331.539;-10319.90039;330;0.495312896 551151.8105;7819312.77;-10420.59961;330;0.871831869 550101.8105;7816947.75;-9912.849609;330;0.300067228 551501.8105;7816666.199;-10134.29981;330;0.191383413 550751.8105;7817417;-10274.2002;330;0.77884064 551764.3105;7818637.047;-10140.90039;330;0.571480723 550639.3105;7820514.051;-9666.099609;330;0.094502692 549976.8105;7817642.238;-10366.29981;330;0.596019819 551576.8105;7816778.816;-10140.79981;330;0.868677454 551789.3105;7819613.09;-10257.90039;330;0.915634648 550851.8105;7820589.129;-10026.59961;330;0.569471094 550064.3105;7819575.551;-10244.2002;330;0.056391703 552039.3105;7818580.738;-10005.90039;330;0.812002336 550926.8105;7819125.07;-10071.2002;330;0.686271377 551276.8105;7819031.219;-10343.7002;330;0.510935421 549839.3105;7820063.57;-9967.240234;330;0.959330731 551376.8105;7820814.371;-10465.29981;330;0.777064764 550189.3105;7817210.527;-10010.7002;330;0.966343799 549401.8105;7819875.867;-10471;330;0.052472922 549151.8105;7821114.691;-10347.5;330;0.403888911 550164.3105;7817022.828;-9833.820313;330;0.725381472 550301.8105;7820720.52;-9865.370117;330;0.624064407 550489.3105;7821283.617;-10536.7002;330;0.802103254 552076.8105;7820176.188;-9657.209961;330;0.193261382 549901.8105;7819444.16;-10182.5;330;0.258670297 551889.3105;7820457.738;-9838.69043;330;0.85443509 552014.3105;7817923.789;-10062.90039;330;0.873715215 549626.8105;7817811.168;-10322.5;330;0.386135075 552189.3105;7818317.957;-10031.2002;330;0.913639774 552151.8105;7820551.59;-10171.90039;330;0.381733069 551026.8105;7821734.102;-10532.7002;330;0.094359299 551901.8105;7816910.207;-10038;330;0.169515477 549739.3105;7817998.871;-10393.09961;330;0.81246877 549739.3105;7819819.559;-10348.7002;330;0.460221895 550476.8105;7820758.059;-9831.820313;330;0.309498433 548989.3105;7821077.148;-10320.2002;330;0.822342469 550264.3105;7820926.988;-10235.79981;330;0.103437806 552114.3105;7818862.289;-9989.839844;330;0.072743181 551914.3105;7818712.129;-10017.2002;330;0.514015361 550076.8105;7817004.059;-9916.990234;330;0.315418666 552151.8105;7818768.438;-10006.59961;330;0.169692757 549414.3105;7821621.48;-10371.40039;330;0.074107388 549901.8105;7818092.719;-10421.79981;330;0.437269054 549926.8105;7821189.77;-10472.29981;330;0.471413754 548964.3105;7821002.07;-10319.2002;330;0.313021704 550214.3105;7820626.668;-9815.259766;330;0.705259616 551114.3105;7818937.367;-10454.09961;330;0.53703433 549864.3105;7817642.238;-10356.40039;330;0.112190457 551614.3105;7820514.051;-10203;330;0.356496154 550689.3105;7817435.77;-10272.2002;330;0.897363676 550301.8105;7820926.988;-10203.2002;330;0.657148253 550064.3105;7819913.41;-9878.719727;330;0.541517261 551051.8105;7820589.129;-10326.40039;330;0.399185161 549726.8105;7819744.48;-10443.29981;330;0.366949723 550251.8105;7817172.988;-9953.290039;330;0.05621377 550464.3105;7821508.859;-10551;330;0.748060867 551464.3105;7819950.949;-10304.09961;330;0.599380964 549451.8105;7821302.391;-10374.29981;330;0.066975964 552026.8105;7817585.93;-10042.09961;330;0.625488692 549089.3105;7821171;-10330.2002;330;0.384747019 549901.8105;7818618.281;-9984.240234;330;0.13570218 551476.8105;7821827.949;-10268.79981;330;0.528352837 549189.3105;7817379.461;-9601.389648;330;0.05937835 550514.3105;7821490.09;-10564.7002;330;0.528020797 552226.8105;7817886.25;-10054.09961;330;0.388577265 550876.8105;7820007.258;-10124.40039;330;0.266077096 550976.8105;7818149.027;-10246.5;330;0.877288372 549189.3105;7816703.738;-10491.2002;330;0.452320661 550851.8105;7817829.938;-10059.29981;330;0.671684796 552314.3105;7818843.52;-9963.429688;330;0.267419058 551726.8105;7821114.691;-10483.90039;330;0.587127909 550426.8105;7817060.367;-10034.7002;330;0.607713559 550764.3105;7818561.969;-10361.09961;330;0.094461517 550489.3105;7818186.57;-10356.59961;330;0.883453843 549251.8105;7819181.379;-10469.79981;330;0.597310804 549689.3105;7821659.02;-10405.59961;330;0.659582442 551989.3105;7820514.051;-9913.80957;330;0.252729225 549689.3105;7820682.98;-10427.29981;330;0.364745008 549176.8105;7821002.07;-10351.2002;330;0.416209052 549851.8105;7817097.91;-10258.40039;330;0.568800569 548889.3105;7820420.199;-10392.59961;330;0.667504678 551576.8105;7819181.379;-10290.09961;330;0.231923888 549951.8105;7820213.73;-9829.660156;330;0.890090323 550014.3105;7820514.051;-9913.620117;330;0.500989992 549089.3105;7817548.387;-9793.719727;330;0.770757556 549751.8105;7820701.75;-10418;330;0.460837758 548914.3105;7821020.84;-10307.7002;330;0.542642993 549426.8105;7821152.23;-10376.7002;330;0.498942561 551151.8105;7817848.711;-10312;330;0.302730863 550714.3105;7818186.57;-10321.90039;330;0.721711979 548876.8105;7820251.27;-10403.90039;330;0.592793697 550101.8105;7818637.047;-10380.79981;330;0.904869351 552301.8105;7821527.629;-10258.29981;330;0.501544316 550826.8105;7819031.219;-9961.219727;330;0.95637349 551851.8105;7819331.539;-10235.79981;330;0.915453822 551176.8105;7817097.91;-10177.79981;330;0.718743541 551539.3105;7820288.809;-10182.5;330;0.914170032 550064.3105;7817266.84;-10153.7002;330;0.87448237 550789.3105;7818505.66;-10375.5;330;0.566815057 550664.3105;7816891.438;-10332.90039;330;0.573290504 550076.8105;7821602.711;-10457.90039;330;0.336226112 551714.3105;7816928.98;-10120.2002;330;0.328729275 552214.3105;7820739.289;-10492.09961;330;0.921754075 549526.8105;7818618.281;-9889.589844;330;0.555258183 550239.3105;7818411.809;-10375.79981;330;0.419843231 549339.3105;7817398.227;-9579.389648;330;0.884372235 549701.8105;7818055.18;-10385.90039;330;0.666949447 550839.3105;7818749.668;-10316.7002;330;0.856683694 549351.8105;7818805.98;-10194.40039;330;0.88924934 551539.3105;7819462.93;-10449.7002;330;0.965471727 549351.8105;7821809.18;-10354.7002;330;0.413835149 550764.3105;7817773.629;-10004.29981;330;0.84207492 550289.3105;7819763.25;-10109.09961;330;0.464606278 550976.8105;7819481.699;-10187.59961;330;0.324642885 552264.3105;7817923.789;-10055.2002;330;0.921876869 549764.3105;7821433.781;-10423.79981;330;0.545416814 551326.8105;7820326.348;-10382.90039;330;0.626159648 550426.8105;7821433.781;-10543.40039;330;0.00437231 549201.8105;7818411.809;-10439.40039;330;0.047999555 549914.3105;7820758.059;-10355.79981;330;0.82639994 551339.3105;7819669.398;-10433.40039;330;0.751355226 549101.8105;7817886.25;-10334.09961;330;0.326109129 549276.8105;7817341.918;-9570.849609;330;0.122233973 549801.8105;7820119.879;-10022.2002;330;0.048524213 550176.8105;7819012.449;-10179.29981;330;0.8856215 551001.8105;7819575.551;-10312.40039;330;0.845890681 549664.3105;7817679.777;-10273.59961;330;0.105903246 549651.8105;7821133.457;-10415.79981;330;0.140134157 550439.3105;7817848.711;-10284.29981;330;0.040176715 551064.3105;7817998.871;-10279.59961;330;0.820651149 549526.8105;7819763.25;-10470.79981;330;0.385484783 550501.8105;7821114.691;-10410.40039;330;0.555703805 550676.8105;7817248.07;-10250.2002;330;0.39349965 549726.8105;7821471.32;-10410.7002;330;0.718834332 549551.8105;7819969.719;-10387.7002;330;0.00044877 549289.3105;7817435.77;-9581.919922;330;0.224402065 551101.8105;7818881.059;-10451.29981;330;0.598639916 551814.3105;7818805.98;-10167.09961;330;0.118609565 550814.3105;7818374.27;-10379.59961;330;0.775128963 551564.3105;7819331.539;-10314.40039;330;0.557510214 550114.3105;7820382.66;-9747.679688;330;0.830311931 551751.8105;7821377.469;-10466.29981;330;0.593308695 551526.8105;7820607.898;-10472.90039;330;0.927100553 548989.3105;7818411.809;-10417.90039;330;0.158474698 549526.8105;7820363.887;-10428.79981;330;0.897239184 550951.8105;7821565.168;-10555.90039;330;0.911571517 550864.3105;7818805.98;-10322.40039;330;0.200146006 552076.8105;7819613.09;-10229;330;0.659150422 549626.8105;7819256.457;-10200.2002;330;0.036319683 550651.8105;7818843.52;-10193;330;0.573330794 549676.8105;7817060.367;-10251.29981;330;0.851422862 550389.3105;7817848.711;-10321.90039;330;0.499198906 549276.8105;7818956.141;-10395.40039;330;0.89341008 550976.8105;7819387.852;-10123.59961;330;0.817081444 549339.3105;7820795.598;-10383;330;0.287893848 551276.8105;7819744.48;-10409.40039;330;0.375330932 551501.8105;7817661.008;-10098.40039;330;0.318370168 552126.8105;7818712.129;-10012.2002;330;0.971887103 550264.3105;7818224.109;-10392.29981;330;0.482383369 549676.8105;7821452.551;-10399.79981;330;0.713968732 552339.3105;7820870.68;-10488.09961;330;0.362640165 552389.3105;7820345.121;-10179.79981;330;0.093389559 551139.3105;7816947.75;-10225.2002;330;0.579663864 552126.8105;7820082.34;-9749.570313;330;0.876258934 548926.8105;7820926.988;-10314.40039;330;0.737688967 549839.3105;7818824.75;-9892.69043;330;0.822853172 552014.3105;7817398.227;-10045.59961;330;0.515930949 548951.8105;7819312.77;-10422;330;0.225642952 551151.8105;7819950.949;-10351.29981;330;0.057234275 551114.3105;7820063.57;-10305.59961;330;0.453750274 551776.8105;7819725.711;-10189.59961;330;0.434915714 550826.8105;7817773.629;-10046.7002;330;0.918624783 548926.8105;7817604.699;-10052.5;330;0.213113051 552201.8105;7819650.629;-10120.59961;330;0.228668348 552389.3105;7818299.188;-10055.5;330;0.52755663 550901.8105;7818242.879;-10303;330;0.197695884 551576.8105;7820457.738;-10240.2002;330;0.963142845 550076.8105;7818749.668;-10384.90039;330;0.892105734 551226.8105;7820119.879;-10345.29981;330;0.618246948 550414.3105;7817435.77;-10284.09961;330;0.026441111 551451.8105;7819631.859;-10484.79981;330;0.133955487 549726.8105;7818580.738;-9799.980469;330;0.765069482 552276.8105;7816910.207;-9866.669922;330;0.199379304 551126.8105;7816872.668;-10249.7002;330;0.685614887 549426.8105;7820213.73;-10427.29981;330;0.525382633 550351.8105;7819782.02;-10087.7002;330;0.282906271 549226.8105;7817510.848;-9647.570313;330;0.664878529 551039.3105;7819782.02;-10337.7002;330;0.927842009 549814.3105;7820626.668;-10355.5;330;0.575536343 549989.3105;7817229.301;-10211.40039;330;0.705700952 552101.8105;7820119.879;-9694.219727;330;0.68342144 550226.8105;7820814.371;-10118.40039;330;0.723306065 549689.3105;7817454.539;-10137;330;0.8051697 550664.3105;7817210.527;-10233.09961;330;0.354959076 550939.3105;7818242.879;-10278.7002;330;0.986758045 550414.3105;7820457.738;-9722.230469;330;0.657272791 550026.8105;7819519.238;-10256.5;330;0.891604864 550114.3105;7817961.328;-10407.09961;330;0.706076054 549564.3105;7820363.887;-10415.79981;330;0.008046798 549464.3105;7821039.609;-10388.5;330;0.403541752 552189.3105;7821696.559;-10206.90039;330;0.439650693 550289.3105;7818637.047;-10390.90039;330;0.801153667 549289.3105;7820776.828;-10376.5;330;0.453557794 551026.8105;7816666.199;-10282;330;0.171882131 552289.3105;7820870.68;-10513;330;0.208470936 551026.8105;7817172.988;-10177.09961;330;0.213281471 552389.3105;7818317.957;-10054.40039;330;0.784793039 548901.8105;7817567.16;-10067.7002;330;0.438408069 550726.8105;7818449.348;-10379;330;0.519397326 551864.3105;7819894.641;-9785.429688;330;0.92805648 550414.3105;7820420.199;-9715.589844;330;0.888762855 552264.3105;7817961.328;-10058.7002;330;0.765410237 552164.3105;7818149.027;-10056.90039;330;0.257099349 551926.8105;7818749.668;-10017;330;0.228537952 550101.8105;7820851.91;-10271.29981;330;0.298189512 552214.3105;7819857.098;-10083.40039;330;0.891366509 551089.3105;7817923.789;-10297.40039;330;0.821139323 550739.3105;7816797.59;-10318.29981;330;0.306083914 550726.8105;7818730.898;-10304.79981;330;0.700723171 549339.3105;7818036.41;-10477.90039;330;0.621078446 549664.3105;7817567.16;-10183.29981;330;0.400683546 552026.8105;7817060.367;-10025.7002;330;0.69111947 551214.3105;7819237.688;-10444.09961;330;0.306307402 551314.3105;7819369.078;-10437.09961;330;0.919386835 550039.3105;7819143.84;-10276.5;330;0.158162757 550164.3105;7819950.949;-9802.280273;330;0.157227004 551939.3105;7818055.18;-10059.2002;330;0.172820473 551689.3105;7820194.961;-9777.400391;330;0.957331955 551764.3105;7819087.527;-10266.79981;330;0.702577098 552189.3105;7818167.797;-10058;330;0.646216637 550751.8105;7817323.148;-10269.29981;330;0.36816556 551939.3105;7818787.207;-10020.7002;330;0.813288804 552276.8105;7821771.641;-10128.59961;330;0.250839563 549476.8105;7821264.848;-10379.79981;330;0.217972721 551601.8105;7820044.801;-10060.90039;330;0.697508826 549426.8105;7817980.098;-10417.2002;330;0.733418222 550776.8105;7819519.238;-9931.459961;330;0.192997362 550964.3105;7817905.02;-10234.59961;330;0.431659736 549026.8105;7821095.918;-10326.29981;330;0.547889029 552151.8105;7821640.25;-10279.90039;330;0.430931693 551826.8105;7818730.898;-10116.29981;330;0.499251974 550989.3105;7816947.75;-10262.29981;330;0.106650162 549651.8105;7821546.398;-10390.40039;330;0.999847694 551239.3105;7819125.07;-10389.09961;330;0.249375651 551701.8105;7821827.949;-10034.7002;330;0.797051239 550689.3105;7817679.777;-10123.79981;330;0.198080034 548976.8105;7818167.797;-10419.40039;330;0.964626504 550176.8105;7819237.688;-10054.90039;330;0.666885711 550264.3105;7816891.438;-9912.839844;330;0.869245241 551989.3105;7818655.82;-10010.79981;330;0.088726428 550451.8105;7819763.25;-10079.79981;330;0.957012799 551914.3105;7820851.91;-10589.90039;330;0.01741307 550776.8105;7817172.988;-10247.59961;330;0.988621696 550814.3105;7816666.199;-10292.40039;330;0.142349763 551876.8105;7819106.301;-10247.40039;330;0.95819094 551651.8105;7819256.457;-10332;330;0.389309071 549301.8105;7821827.949;-10359.2002;330;0.843005447 550726.8105;7820082.34;-9814.450195;330;0.762876496 552051.8105;7821433.781;-10450.59961;330;0.322009675 551364.3105;7820251.27;-10365.59961;330;0.431028701 552301.8105;7820288.809;-10016.79981;330;0.112670745 552001.8105;7818787.207;-10019.59961;330;0.590896313 550464.3105;7820851.91;-9949.429688;330;0.776486719 549414.3105;7821114.691;-10376.2002;330;0.560931561 550814.3105;7820908.219;-10309.09961;330;0.462906849 551326.8105;7817792.398;-10203.09961;330;0.647056215 551776.8105;7816778.816;-10142.7002;330;0.79694886 550976.8105;7820363.887;-10220.7002;330;0.435628954 549989.3105;7820232.5;-9788.629883;330;0.878432123 550901.8105;7820570.359;-10127.5;330;0.215675771 550976.8105;7821377.469;-10597.40039;330;0.594834522 552239.3105;7821415.008;-10325.7002;330;0.676570528 551826.8105;7818993.68;-10243.79981;330;0.811341319 550314.3105;7819969.719;-9782.990234;330;0.276712867 549664.3105;7819594.32;-10347.5;330;0.352822287 550014.3105;7818561.969;-10234.90039;330;0.57371618 552151.8105;7819594.32;-10149.2002;330;0.744451234 549726.8105;7820194.961;-10171.2002;330;0.273108381 550339.3105;7819913.41;-9886.049805;330;0.83137744 550289.3105;7817661.008;-10348.7002;330;0.409357072 551851.8105;7820213.73;-9584.030273;330;0.028125793 551889.3105;7819406.617;-10233.2002;330;0.368455422 549214.3105;7817454.539;-9602.929688;330;0.920059206 551064.3105;7819988.488;-10295.79981;330;0.629267392 552376.8105;7820270.039;-10124.09961;330;0.108068618 549889.3105;7819838.328;-10121.2002;330;0.500130197 550601.8105;7820232.5;-9617.580078;330;0.629102848 550051.8105;7818881.059;-10361.40039;330;0.499798077 551376.8105;7821527.629;-10471.5;330;0.447847198 551089.3105;7817172.988;-10149.79981;330;0.739656672 551914.3105;7818092.719;-10058.29981;330;0.695558868 551839.3105;7817229.301;-10045.79981;330;0.457320489 549964.3105;7817435.77;-10340.79981;330;0.538313182 552039.3105;7819181.379;-10080.2002;330;0.730373061 551889.3105;7819331.539;-10236.2002;330;0.341994505 552039.3105;7818824.75;-10024.5;330;0.071396395 550226.8105;7820138.648;-9608.719727;330;0.197443113 552151.8105;7817886.25;-10059.79981;330;0.205058504 552001.8105;7819556.777;-10266;330;0.22956025 550139.3105;7818918.598;-10346.59961;330;0.710082685 550364.3105;7818017.637;-10362;330;0.422350378 550951.8105;7818393.039;-10296.40039;330;0.84958773 552339.3105;7816835.129;-9787.919922;330;0.248658634 550251.8105;7818355.5;-10386.09961;330;0.203263819 552089.3105;7819800.789;-10041.79981;330;0.404883893 551326.8105;7819800.789;-10426.29981;330;0.354078503 549451.8105;7819237.688;-10389.40039;330;0.888949191 549826.8105;7818073.949;-10411.79981;330;0.575405568 550326.8105;7817135.449;-9961.040039;330;0.700686844 549639.3105;7817942.559;-10365.79981;330;0.178492402 549626.8105;7820626.668;-10421.59961;330;0.350899491 550489.3105;7818355.5;-10369.2002;330;0.098034842 550139.3105;7819744.48;-10124.59961;330;0.431634271 550764.3105;7817004.059;-10269.29981;330;0.566976371 549589.3105;7818655.82;-9812.509766;330;0.937084013 550001.8105;7820645.438;-10154.90039;330;0.378652645 552226.8105;7821358.699;-10353.29981;330;0.917962533 551564.3105;7820307.578;-10130.2002;330;0.104993733 551326.8105;7819500.469;-10421.7002;330;0.664109744 550151.8105;7820026.027;-9699.139648;330;0.318964345 551901.8105;7817191.758;-10042.7002;330;0.341302229 549101.8105;7817360.688;-9678.820313;330;0.384525843 550226.8105;7816910.207;-9883.120117;330;0.384903903 550851.8105;7818411.809;-10386;330;0.531986645 549739.3105;7820795.598;-10436.79981;330;0.01421685 549651.8105;7819950.949;-10291.2002;330;0.858681284 552176.8105;7818674.59;-10009.40039;330;0.104546188 548889.3105;7818974.91;-10436.2002;330;0.890779615 550714.3105;7817829.938;-10004.2002;330;0.248296907 550351.8105;7816666.199;-10348.5;330;0.167123433 551951.8105;7819387.852;-10233.5;330;0.765279307 549376.8105;7820082.34;-10463.7002;330;0.853236945 550726.8105;7818843.52;-10288.40039;330;0.61690674 550439.3105;7818130.258;-10354.59961;330;0.218006852 549189.3105;7820926.988;-10358.2002;330;0.873686909 548989.3105;7818824.75;-10458.5;330;0.876745786 549576.8105;7821790.41;-10383.7002;330;0.557300666 551514.3105;7819500.469;-10472.29981;330;0.601585416 550464.3105;7820157.418;-9636.490234;330;0.334742783 549964.3105;7820157.418;-9790.709961;330;0.015847094 550214.3105;7820288.809;-9625.450195;330;0.37166591 551451.8105;7819538.008;-10472.29981;330;0.769348881 551939.3105;7817867.48;-10050.09961;330;0.156785591 549276.8105;7821452.551;-10353;330;0.970693812 550476.8105;7821433.781;-10556.2002;330;0.981114627 550626.8105;7819650.629;-10097.5;330;0.452355331 551626.8105;7821715.328;-10188.5;330;0.202213477 549639.3105;7821790.41;-10390.7002;330;0.432929883 551864.3105;7820908.219;-10579.29981;330;0.404771165 549189.3105;7821058.379;-10348.2002;330;0.240913755 549089.3105;7818674.59;-10442.29981;330;0.250767574 551914.3105;7818843.52;-10054.29981;330;0.932329787 552176.8105;7821227.309;-10492;330;0.597398896 550914.3105;7818299.188;-10305.90039;330;0.620796201 551514.3105;7817754.859;-10098.40039;330;0.556602481 549089.3105;7818374.27;-10428.40039;330;0.807525729 551389.3105;7819538.008;-10437.59961;330;0.564343272 549326.8105;7819256.457;-10454.7002;330;0.153979539 550039.3105;7819631.859;-10231.2002;330;0.614595212 549901.8105;7820176.188;-9893.200195;330;0.166169359 552289.3105;7817360.688;-9880.55957;330;0.34109432 551189.3105;7817661.008;-10168.09961;330;0.479739616 551639.3105;7816910.207;-10136.29981;330;0.904659925 551389.3105;7821602.711;-10441.5;330;0.606774906 549026.8105;7819312.77;-10431.2002;330;0.39373672 551339.3105;7820607.898;-10392.7002;330;0.867071656 549564.3105;7820570.359;-10423.29981;330;0.260497304 550126.8105;7818130.258;-10416.59961;330;0.075096386 552089.3105;7819669.398;-10195.5;330;0.460110827 550601.8105;7817717.32;-10158.59961;330;0.512200088 552276.8105;7816853.898;-9881.349609;330;0.878405451 550601.8105;7820457.738;-9652.080078;330;0.279755031 549114.3105;7821058.379;-10340.79981;330;0.901651769 550501.8105;7821246.078;-10526.59961;330;0.34537905 550076.8105;7819669.398;-10190.59961;330;0.082049898 552389.3105;7818280.418;-10056.5;330;0.048494374 550864.3105;7818355.5;-10354.59961;330;0.936419429 551626.8105;7816703.738;-10144.40039;330;0.924100034 550001.8105;7819425.391;-10230.09961;330;0.386096025 551689.3105;7819613.09;-10383.7002;330;0.989681405 548889.3105;7817510.848;-10055.90039;330;0.608741576 551964.3105;7820401.43;-9722.339844;330;0.205119251 552039.3105;7819725.711;-10152.7002;330;0.37251621 550801.8105;7818881.059;-10192.5;330;0.721965959 551801.8105;7817642.238;-10088.2002;330;0.543157273 550139.3105;7818355.5;-10395.59961;330;0.926560486 550789.3105;7818449.348;-10382.29981;330;0.124499727 550689.3105;7818036.41;-10218.09961;330;0.393790088 550739.3105;7817923.789;-10062.2002;330;0.127996831 552401.8105;7820063.57;-10106.79981;330;0.306955016 550251.8105;7820532.82;-9715.849609;330;0.700742421 550689.3105;7818618.281;-10339.90039;330;0.976683514 549989.3105;7820701.75;-10182;330;0.736870026 550064.3105;7816835.129;-10068.29981;330;0.311690838 550114.3105;7819688.168;-10163.29981;330;0.823839895 549939.3105;7819988.488;-9909.650391;330;0.134233032 549851.8105;7819462.93;-10175.09961;330;0.798000167 549551.8105;7820664.211;-10424.7002;330;0.920750782 551514.3105;7817848.711;-10122.7002;330;0.94048933 549414.3105;7820870.68;-10390.40039;330;0.570486906 549589.3105;7820795.598;-10430.29981;330;0.393205062 549226.8105;7817792.398;-10112.2002;330;0.861268186 552014.3105;7818205.34;-10039.59961;330;0.957975771 551664.3105;7816891.438;-10138.90039;330;0.724585967 549751.8105;7819049.988;-10203.59961;330;0.51200773 551801.8105;7819857.098;-9927.410156;330;0.105261411 550214.3105;7818486.891;-10384.5;330;0.687461947 550089.3105;7819331.539;-10182.79981;330;0.24073209 550089.3105;7819538.008;-10245.29981;330;0.724199007 550251.8105;7821302.391;-10514.90039;330;0.223771432 552401.8105;7818824.75;-9994.950195;330;0.339074673 549076.8105;7818430.578;-10421.40039;330;0.234086704 549576.8105;7820626.668;-10424.2002;330;0.691378739 551764.3105;7821433.781;-10441.90039;330;0.506558663 549714.3105;7817604.699;-10266.59961;330;0.767224706 551526.8105;7816778.816;-10137;330;0.660284886 551776.8105;7819913.41;-9804.040039;330;0.65396255 549201.8105;7818918.598;-10431.29981;330;0.61076857 549526.8105;7821227.309;-10389.90039;330;0.298010144 551014.3105;7820420.199;-10261.90039;330;0.061647424 550264.3105;7818674.59;-10413.2002;330;0.7686619 551639.3105;7819331.539;-10335;330;0.154532496 550426.8105;7817004.059;-10022.29981;330;0.059136314 550951.8105;7819444.16;-10127.29981;330;0.398062978 551614.3105;7820908.219;-10511.09961;330;0.627846572 550064.3105;7818224.109;-10415.79981;330;0.105578639 551451.8105;7816760.051;-10132.2002;330;0.717790285 552389.3105;7818261.648;-10057.59961;330;0.532991233 551026.8105;7817886.25;-10291.90039;330;0.289224136 549764.3105;7821208.539;-10428.09961;330;0.09691778 550889.3105;7821508.859;-10580.59961;330;0.254900526 552089.3105;7820363.887;-9744.889648;330;0.37162911 549701.8105;7819782.02;-10413.29981;330;0.026391544 549876.8105;7820101.109;-9912.700195;330;0.703005643 551576.8105;7817717.32;-10097.40039;330;0.78325843 552076.8105;7819538.008;-10220.59961;330;0.864299073 552264.3105;7821546.398;-10282.59961;330;0.302078829 549764.3105;7820664.211;-10397.40039;330;0.086406023 550189.3105;7818130.258;-10405.09961;330;0.205494907 549664.3105;7821490.09;-10395;330;0.315382991 549289.3105;7818149.027;-10476.79981;330;0.678192756 551101.8105;7817116.68;-10165.79981;330;0.906532284 551801.8105;7820682.98;-10369.09961;330;0.680125454 548889.3105;7820007.258;-10402.09961;330;0.866221205 550201.8105;7818449.348;-10386.5;330;0.928053359 549676.8105;7820307.578;-10293.09961;330;0.467182223 550201.8105;7818561.969;-10384.09961;330;0.996304656 549439.3105;7818937.367;-10151.40039;330;0.165753272 551514.3105;7821621.48;-10309.90039;330;0.410801529 549689.3105;7821039.609;-10425.09961;330;0.844938236 549814.3105;7819782.02;-10297.29981;330;0.948615829 549639.3105;7820232.5;-10306.2002;330;0.543467026 550826.8105;7821640.25;-10564.2002;330;0.866208324 551076.8105;7818073.949;-10236.09961;330;0.654471414 549651.8105;7818580.738;-9786.349609;330;0.982617154 551601.8105;7820682.98;-10535;330;0.831546615 550076.8105;7817135.449;-9969.480469;330;0.82752213 549664.3105;7819143.84;-10210.79981;330;0.076549167 550801.8105;7820814.371;-10171.2002;330;0.048351103 552139.3105;7818393.039;-10019.09961;330;0.073438859 549801.8105;7819950.949;-10098.79981;330;0.740563609 550914.3105;7818524.43;-10340.29981;330;0.316034785 549076.8105;7818899.828;-10464.40039;330;0.277500492 551514.3105;7817698.547;-10098.79981;330;0.933570792 549476.8105;7818768.438;-9967.410156;330;0.873453448 550226.8105;7819913.41;-9878.450195;330;0.201095838 549389.3105;7821752.867;-10361.59961;330;0.021869385 549739.3105;7820739.289;-10430.90039;330;0.463331651 549176.8105;7819181.379;-10458.09961;330;0.297627666 549601.8105;7817998.871;-10366.59961;330;0.602607449 550126.8105;7818167.797;-10415.09961;330;0.393609752 549189.3105;7821227.309;-10342.59961;330;0.071130037 551926.8105;7819312.77;-10237;330;0.402020468 548889.3105;7820476.508;-10370;330;0.620197057 548964.3105;7820870.68;-10328.79981;330;0.22624111 550901.8105;7820682.98;-10215.40039;330;0.858859519 551651.8105;7818881.059;-10308.59961;330;0.287650889 552439.3105;7818149.027;-10062.90039;330;0.134732398 550251.8105;7819500.469;-10115.40039;330;0.10887259 551964.3105;7817154.219;-10038.29981;330;0.709590279 550776.8105;7818693.359;-10313.29981;330;0.43051293 550839.3105;7816778.816;-10284.90039;330;0.230745964 549914.3105;7818468.117;-10163.09961;330;0.293158364 550276.8105;7818505.66;-10370.5;330;0.747466085 550801.8105;7818637.047;-10348.2002;330;0.644770011 550339.3105;7818411.809;-10348.40039;330;0.986724508 552214.3105;7820795.598;-10526;330;0.801708835 549614.3105;7820382.66;-10389.29981;330;0.655972281 552314.3105;7818430.578;-10038.29981;330;0.22062852 551801.8105;7819481.699;-10255;330;0.400263366 549989.3105;7819350.309;-10213.5;330;0.064928601 549689.3105;7819256.457;-10180.5;330;0.413457047 549814.3105;7820851.91;-10443.29981;330;0.128691009 551976.8105;7817980.098;-10060.90039;330;0.566943881 551951.8105;7818205.34;-10041.40039;330;0.675056197 551214.3105;7819782.02;-10400.5;330;0.244159154 550489.3105;7821358.699;-10551.90039;330;0.956289924 552414.3105;7817905.02;-10012.09961;330;0.524983587 552176.8105;7818017.637;-10061.59961;330;0.395930544 550676.8105;7816684.969;-10342.40039;330;0.540005469 549589.3105;7821602.711;-10385;330;0.925833936 551851.8105;7819275.23;-10245.40039;330;0.012133176 551814.3105;7819725.711;-10196.79981;330;0.026343215 551551.8105;7819087.527;-10267.90039;330;0.292726303 552176.8105;7819688.168;-10138.5;330;0.745478988 550789.3105;7817229.301;-10259.40039;330;0.676403042 551026.8105;7817304.379;-10172.7002;330;0.352200022 552439.3105;7818055.18;-10054.7002;330;0.861579191 551664.3105;7821583.941;-10365.2002;330;0.009403011 550001.8105;7818993.68;-10317.5;330;0.509254142 551264.3105;7820119.879;-10363.7002;330;0.760158554 549889.3105;7821715.328;-10436.59961;330;0.07753756 551339.3105;7821565.168;-10455.79981;330;0.401805683 549264.3105;7818205.34;-10475.2002;330;0.487218976 549514.3105;7818993.68;-10175.79981;330;0.716045653 551801.8105;7820194.961;-9616.509766;330;0.03382543 549576.8105;7817229.301;-9955.980469;330;0.329848765 550064.3105;7820514.051;-9853.379883;330;0.588029824 552026.8105;7817097.91;-10023.7002;330;0.860582812 550051.8105;7820682.98;-10126.5;330;0.757624141 550901.8105;7819462.93;-10043.5;330;0.60175254 551639.3105;7819819.559;-10202.7002;330;0.840894237 549301.8105;7819087.527;-10444.7002;330;0.437102105 550651.8105;7821640.25;-10570.5;330;0.525990298 551726.8105;7819594.32;-10339.2002;330;0.249490321 552226.8105;7817435.77;-9960.790039;330;0.118722201 552114.3105;7820814.371;-10558.40039;330;0.178366624 552164.3105;7817473.309;-10001.09961;330;0.087902915 550714.3105;7820288.809;-9722.669922;330;0.919916155 550301.8105;7818280.418;-10383.7002;330;0.218277612 550176.8105;7819894.641;-9910.849609;330;0.981892242 551326.8105;7819462.93;-10434.59961;330;0.419271196 550301.8105;7820401.43;-9657.849609;330;0.001640466 549501.8105;7818805.98;-9964.139648;330;0.524618012 550476.8105;7817304.379;-10224.59961;330;0.062387135 551801.8105;7819312.77;-10246.7002;330;0.932861561 549501.8105;7821602.711;-10384.90039;330;0.199478753 550376.8105;7817567.16;-10317.7002;330;0.82044164 549914.3105;7820514.051;-10120.09961;330;0.335775528 551101.8105;7820270.039;-10268.59961;330;0.637836504 552089.3105;7817585.93;-10039.7002;330;0.004932944 550951.8105;7817811.168;-10187.09961;330;0.490288235 551926.8105;7817998.871;-10057.59961;330;0.512898114 549651.8105;7819706.938;-10450.09961;330;0.55045016 549314.3105;7821283.617;-10354.59961;330;0.429333533 550089.3105;7819162.609;-10218.5;330;0.742193653 550026.8105;7819200.148;-10256;330;0.765538676 552226.8105;7817154.219;-9899.070313;330;0.539420866 551451.8105;7820420.199;-10366.79981;330;0.268118581 549164.3105;7818224.109;-10463.40039;330;0.652428679 551826.8105;7819049.988;-10249.29981;330;0.859636153 550914.3105;7816910.207;-10270.79981;330;0.816506388 552039.3105;7820082.34;-9635.469727;330;0.110495457 551676.8105;7817604.699;-10108.2002;330;0.203418441 549739.3105;7818130.258;-10392;330;0.083117386 551801.8105;7821358.699;-10478.40039;330;0.596677895 549714.3105;7820026.027;-10204.2002;330;0.771674093 550476.8105;7820082.34;-9669.299805;330;0.019216926 549939.3105;7820363.887;-9898.30957;330;0.328475524 551489.3105;7820044.801;-10246.09961;330;0.65768082 549976.8105;7818130.258;-10425.40039;330;0.229606311 552264.3105;7818843.52;-9967.919922;330;0.707382708 552364.3105;7818768.438;-9997.950195;330;0.244073737 549176.8105;7819237.688;-10455.2002;330;0.206602102 549239.3105;7817679.777;-9912.910156;330;0.087555625 551551.8105;7819819.559;-10294.90039;330;0.878162263 551914.3105;7820758.059;-10520.09961;330;0.98164898 551464.3105;7816947.75;-10122.7002;330;0.55359521 551151.8105;7820401.43;-10290.2002;330;0.358988175 552039.3105;7818092.719;-10057.5;330;0.256798672 550951.8105;7819012.449;-10240.09961;330;0.774418335 550926.8105;7818693.359;-10335.09961;330;0.358858281 551576.8105;7816928.98;-10132.7002;330;0.319103266 550376.8105;7817022.828;-9951.849609;330;0.441218548 550751.8105;7817285.609;-10263.7002;330;0.505272759 552439.3105;7817060.367;-9607.370117;330;0.830483837 549851.8105;7820645.438;-10327.79981;330;0.05991457 550101.8105;7817698.547;-10373.29981;330;0.116537469 550464.3105;7818655.82;-10340.40039;330;0.48994454 551839.3105;7819556.777;-10247.90039;330;0.693057591 551564.3105;7819894.641;-10222.2002;330;0.679322342 552364.3105;7821508.859;-10225;330;0.99136912 550939.3105;7818580.738;-10329.29981;330;0.298653569 549676.8105;7817529.617;-10167.29981;330;0.698844668 551839.3105;7817398.227;-10067.59961;330;0.671484044 549901.8105;7817341.918;-10330.59961;330;0.752092877 548951.8105;7818956.141;-10447.5;330;0.615420758 548889.3105;7818787.207;-10442.5;330;0.056054547 551701.8105;7816816.359;-10145.40039;330;0.667146867 552164.3105;7816703.738;-10007;330;0.670072319 549964.3105;7816985.289;-10082.79981;330;0.44901507 551589.3105;7817398.227;-10065.59961;330;0.985872597 551751.8105;7817661.008;-10104.90039;330;0.151434669 552114.3105;7820851.91;-10573.40039;330;0.068021743 551639.3105;7817773.629;-10090.5;330;0.650545591 549526.8105;7820739.289;-10422.59961;330;0.900618996 550814.3105;7818130.258;-10272.40039;330;0.911802747 551539.3105;7817323.148;-10096.79981;330;0.371501747 551376.8105;7817454.539;-10051.7002;330;0.789484012 551451.8105;7819594.32;-10485.09961;330;0.544684816 552039.3105;7819763.25;-10089.79981;330;0.809792244 551389.3105;7819631.859;-10461.40039;330;0.761774552 549951.8105;7821640.25;-10445.7002;330;0.922153586 551614.3105;7817623.469;-10107.29981;330;0.897844588 550626.8105;7818393.039;-10375.40039;330;0.716083304 550814.3105;7818036.41;-10194.40039;330;0.448276239 549276.8105;7821039.609;-10360.90039;330;0.91355511 550164.3105;7816835.129;-9995.009766;330;0.061952331 548939.3105;7818693.359;-10458.7002;330;0.708128084 551339.3105;7820438.969;-10386.7002;330;0.706973614 550014.3105;7818167.797;-10421.59961;330;0.068412593 549126.8105;7818805.98;-10441.09961;330;0.342495148 550364.3105;7821302.391;-10524.40039;330;0.936238483 552139.3105;7820382.66;-9825.969727;330;0.935690114 550026.8105;7820720.52;-10172.09961;330;0.6159533 550251.8105;7821508.859;-10504.29981;330;0.360727638 550464.3105;7817886.25;-10269.59961;330;0.970826394 551614.3105;7817454.539;-10058;330;0.707116776 551701.8105;7818524.43;-10143.5;330;0.953589452 552151.8105;7817961.328;-10063.5;330;0.082364943 550776.8105;7818186.57;-10314;330;0.280951646 549489.3105;7820945.758;-10400.09961;330;0.193206638 549914.3105;7821020.84;-10473;330;0.739007021 550001.8105;7819369.078;-10212.79981;330;0.877810164 550076.8105;7819800.789;-10066;330;0.882651257 552439.3105;7820044.801;-10115.90039;330;0.295009563 549426.8105;7820908.219;-10389.90039;330;0.779671153 548914.3105;7819331.539;-10394.59961;330;0.225246744 549526.8105;7820551.59;-10424.2002;330;0.072073413 552351.8105;7818655.82;-10025.90039;330;0.738232944 549264.3105;7817398.227;-9571.870117;330;0.996924578 551776.8105;7820138.648;-9631.530273;330;0.871818899 551114.3105;7818993.68;-10425.09961;330;0.873597979 551989.3105;7821809.18;-9881.139648;330;0.870908514 550814.3105;7819650.629;-10169.09961;330;0.683574226 551401.8105;7820363.887;-10374.90039;330;0.82563317 549164.3105;7821189.77;-10339.29981;330;0.282976362 550876.8105;7819556.777;-10162.90039;330;0.539425264 550164.3105;7818299.188;-10403.2002;330;0.359184967 552389.3105;7818543.199;-10040.29981;330;0.066976525 552401.8105;7820457.738;-10281;330;0.465467935 552439.3105;7816797.59;-9670.55957;330;0.216101166 548926.8105;7819650.629;-10421.09961;330;0.076426232 549239.3105;7821339.93;-10346.2002;330;0.119180111 552114.3105;7820194.961;-9700.959961;330;0.233017961 552339.3105;7818242.879;-10054.7002;330;0.740999392 550651.8105;7817548.387;-10238;330;0.159378915 552439.3105;7818017.637;-10046.09961;330;0.188851496 550414.3105;7821752.867;-10533;330;0.491919141 552439.3105;7818393.039;-10049.90039;330;0.021137234 548939.3105;7819106.301;-10429.40039;330;0.027077377 550951.8105;7816797.59;-10279.79981;330;0.870143386 552364.3105;7818599.508;-10031.09961;330;0.220974597 551051.8105;7817736.09;-10211.2002;330;0.211727765 551876.8105;7817980.098;-10062.79981;330;0.530454388 549789.3105;7818712.129;-9785.759766;330;0.860073812 549376.8105;7818599.508;-10133.59961;330;0.163300856 550076.8105;7819744.48;-10138.7002;330;0.429460625 549926.8105;7821152.23;-10472.2002;330;0.815564826 549976.8105;7821095.918;-10479;330;0.665358018 552351.8105;7818712.129;-10012.79981;330;0.416511688 550676.8105;7820326.348;-9673.30957;330;0.923289833 549901.8105;7818167.797;-10414.29981;330;0.06248423 550451.8105;7817980.098;-10305.40039;330;0.053463518 549939.3105;7819256.457;-10225.59961;330;0.826336312 549139.3105;7818055.18;-10460.79981;330;0.670978392 551764.3105;7820101.109;-9652.639648;330;0.648676356 552076.8105;7818693.359;-10015.5;330;0.728991016 549726.8105;7817266.84;-10225;330;0.97526743 549614.3105;7819894.641;-10364.2002;330;0.291927297 551701.8105;7816722.508;-10147.5;330;0.00882764 549564.3105;7818111.488;-10367.09961;330;0.947704705 549764.3105;7821846.719;-10410.09961;330;0.581362299 551089.3105;7821020.84;-10554.40039;330;0.088261874 550814.3105;7817097.91;-10260.7002;330;0.183052061 552101.8105;7821490.09;-10412.09961;330;0.673961554 550814.3105;7817886.25;-10038.59961;330;0.108218796 552064.3105;7819312.77;-10112.90039;330;0.473880436 552276.8105;7816703.738;-9916.200195;330;0.789074762 549989.3105;7821039.609;-10478.59961;330;0.079995078 552039.3105;7821565.168;-10368.7002;330;0.598584876 550501.8105;7817942.559;-10256.79981;330;0.033387934 551514.3105;7819631.859;-10471.79981;330;0.422679308 548889.3105;7820607.898;-10331.7002;330;0.200825805 550701.8105;7819650.629;-10072.7002;330;0.441377712 552426.8105;7820382.66;-10239.5;330;0.339676602 552039.3105;7818524.43;-10003.2002;330;0.966862716 550251.8105;7817792.398;-10366.7002;330;0.632917508 550901.8105;7820889.449;-10398.5;330;0.576357467 549514.3105;7821827.949;-10373.40039;330;0.180510334 549076.8105;7819218.918;-10437.2002;330;0.835127965 551051.8105;7821020.84;-10560.40039;330;0.379157823 550414.3105;7818280.418;-10369.09961;330;0.067324492 551001.8105;7817736.09;-10197.7002;330;0.78579377 550989.3105;7821114.691;-10584.79981;330;0.568436228 550851.8105;7816910.207;-10273.09961;330;0.994092306 550726.8105;7820401.43;-9727.110352;330;0.167618109 550414.3105;7820082.34;-9654.070313;330;0.435318078 549164.3105;7818261.648;-10459.90039;330;0.119744976 552039.3105;7818336.73;-10022.40039;330;0.998825507 550476.8105;7818449.348;-10358.29981;330;0.389032768 551814.3105;7820457.738;-9886.80957;330;0.037525536 549626.8105;7820795.598;-10434.09961;330;0.533748621 551664.3105;7817567.16;-10096.09961;330;0.421199688 550501.8105;7817642.238;-10277.40039;330;0.866689215 549726.8105;7817923.789;-10380.7002;330;0.212402787 550164.3105;7820232.5;-9629.240234;330;0.325678025 551314.3105;7820926.988;-10481.7002;330;0.421170129 551839.3105;7819462.93;-10239.40039;330;0.487871599 552039.3105;7820795.598;-10568.90039;330;0.796459624 552114.3105;7819481.699;-10153.59961;330;0.932428707 551364.3105;7821039.609;-10489.40039;330;0.926387675 550126.8105;7819369.078;-10131.40039;330;0.298088716 552189.3105;7820270.039;-9827.570313;330;0.144959468 551514.3105;7819894.641;-10281.79981;330;0.456684749 551976.8105;7818843.52;-10023.40039;330;0.940782593 550501.8105;7818749.668;-10297.5;330;0.889616852 549639.3105;7821827.949;-10389;330;0.477841965 551889.3105;7821771.641;-9957.150391;330;0.687221967 549851.8105;7820157.418;-9965.450195;330;0.629853148 549639.3105;7821734.102;-10395.09961;330;0.853826808 552439.3105;7818543.199;-10044.7002;330;0.581880665 549001.8105;7818862.289;-10459.29981;330;0.073770881 552089.3105;7817154.219;-10004;330;0.000631163 552014.3105;7817154.219;-10026.90039;330;0.768840556 552014.3105;7819631.859;-10240.5;330;0.682754614 552151.8105;7816778.816;-10004.09961;330;0.226402052 551964.3105;7819425.391;-10230.59961;330;0.924430302 551626.8105;7818637.047;-10209.59961;330;0.595594715 549189.3105;7820945.758;-10356.79981;330;0.49012068 550951.8105;7819049.988;-10198.5;330;0.473215551 549801.8105;7817679.777;-10343.2002;330;0.229051687 549589.3105;7818693.359;-9806.669922;330;0.103942791 548939.3105;7818186.57;-10411.59961;330;0.395205893 550014.3105;7820983.297;-10464.2002;330;0.22495949 548889.3105;7819763.25;-10414.7002;330;0.158967534 549901.8105;7817097.91;-10222.09961;330;0.56375658 549251.8105;7821171;-10349.90039;330;0.029818513 551001.8105;7818993.68;-10319.79981;330;0.384320037 550039.3105;7821508.859;-10458.5;330;0.243016079 551526.8105;7820044.801;-10196.29981;330;0.809540573 549926.8105;7816985.289;-10131.09961;330;0.450969223 549526.8105;7820514.051;-10426.40039;330;0.232720818 550076.8105;7818824.75;-10380.7002;330;0.384250705 550514.3105;7816741.277;-10332.09961;330;0.2502184 550189.3105;7818186.57;-10403.29981;330;0.706591482 550489.3105;7817379.461;-10260.79981;330;0.35789432 550214.3105;7818317.957;-10395.5;330;0.215269257 551451.8105;7816666.199;-10132.79981;330;0.907457944 550401.8105;7817229.301;-10112.5;330;0.663109326 551026.8105;7821189.77;-10599.09961;330;0.104093918 550214.3105;7820251.27;-9610.839844;330;0.788954361 551739.3105;7819481.699;-10304.40039;330;0.599867018 551989.3105;7818092.719;-10058.79981;330;0.410085411 551626.8105;7819500.469;-10429.09961;330;0.911871257 550714.3105;7821790.41;-10556.90039;330;0.527762251 551026.8105;7819237.688;-10210.09961;330;0.56411312 550039.3105;7817135.449;-10027.29981;330;0.872600912 552076.8105;7818336.73;-10026;330;0.564868521 552264.3105;7817022.828;-9855.429688;330;0.132890833 552151.8105;7818805.98;-9997.450195;330;0.133092563 549001.8105;7816647.43;-10512.90039;330;0.865844284 549826.8105;7820870.68;-10448.90039;330;0.252123506 551689.3105;7818881.059;-10308;330;0.204161138 550051.8105;7820213.73;-9714.320313;330;0.855118707 551339.3105;7820645.438;-10400.5;330;0.638770329 552314.3105;7818599.508;-10022.90039;330;0.053986789 549389.3105;7819275.23;-10410.59961;330;0.749271506 552364.3105;7818430.578;-10044.29981;330;0.070003624 552226.8105;7817116.68;-9898.639648;330;0.833130537 549276.8105;7819237.688;-10467.90039;330;0.659006777 551726.8105;7817116.68;-10083.29981;330;0.456384082 552114.3105;7816684.969;-10027.09961;330;0.115846402 550051.8105;7817022.828;-9944.589844;330;0.056259545 548964.3105;7818130.258;-10418.40039;330;0.773569337 550626.8105;7819706.938;-10097;330;0.537151234 551151.8105;7819087.527;-10390.29981;330;0.644768719 550614.3105;7817398.227;-10260.90039;330;0.356296773 550314.3105;7821339.93;-10520.40039;330;0.422452204 550151.8105;7820401.43;-9713.730469;330;0.108755861 550039.3105;7818299.188;-10396.79981;330;0.87496037 551214.3105;7819650.629;-10427.40039;330;0.48730765 550776.8105;7817567.16;-10211.90039;330;0.367893652 549651.8105;7817998.871;-10373.09961;330;0.678196021 549126.8105;7817848.711;-10246;330;0.380620461 549414.3105;7821527.629;-10373.59961;330;0.200521706 550039.3105;7817210.527;-10153.79981;330;0.290723125 551714.3105;7817285.609;-10056.59961;330;0.124316081 552114.3105;7818224.109;-10049.40039;330;0.269251214 551114.3105;7820607.898;-10343.90039;330;0.417409937 550901.8105;7816722.508;-10289.2002;330;0.567202107 550514.3105;7821415.008;-10563.09961;330;0.731040601 550976.8105;7818824.75;-10349;330;0.877416038 550764.3105;7820345.121;-9783.839844;330;0.257018331 551564.3105;7819519.238;-10470.5;330;0.243674469 549751.8105;7820870.68;-10439.79981;330;0.385187772 549614.3105;7819650.629;-10455.09961;330;0.32786531 549389.3105;7817510.848;-9659.490234;330;0.39941031 551964.3105;7817116.68;-10032.5;330;0.956254886 551551.8105;7817548.387;-10080.59961;330;0.30726672 551126.8105;7820532.82;-10308.90039;330;0.757543757 552289.3105;7817998.871;-10060.2002;330;0.717341758 551914.3105;7817585.93;-10063.40039;330;0.380554067 551176.8105;7817942.559;-10299.79981;330;0.486963916 548939.3105;7818749.668;-10454;330;0.604566701 552139.3105;7818655.82;-10009.79981;330;0.159700745 551901.8105;7817229.301;-10045.79981;330;0.616195992 551326.8105;7819538.008;-10414.29981;330;0.969191643 548901.8105;7818017.637;-10411.59961;330;0.959221775 552226.8105;7821302.391;-10378.79981;330;0.329125904 551251.8105;7819425.391;-10443.90039;330;0.666486922 551289.3105;7820157.418;-10371.7002;330;0.570862479 551589.3105;7821321.16;-10446;330;0.659024008 550889.3105;7818693.359;-10337.40039;330;0.527595606 549814.3105;7820926.988;-10455.79981;330;0.891148975 552114.3105;7818280.418;-10038.5;330;0.719745368 549314.3105;7819312.77;-10457.5;330;0.509617523 550326.8105;7819819.559;-10052.2002;330;0.840248819 551389.3105;7819763.25;-10448.7002;330;0.97765331 550976.8105;7821452.551;-10566.90039;330;0.289158371 552114.3105;7817248.07;-9998.799805;330;0.504964879 549651.8105;7820119.879;-10261.7002;330;0.336158201 551389.3105;7820345.121;-10374.7002;330;0.272049164 551151.8105;7820438.969;-10293.59961;330;0.245391091 550501.8105;7821339.93;-10550.79981;330;0.221587389 552014.3105;7820026.027;-9672.759766;330;0.547634402 551326.8105;7820833.141;-10471.40039;330;0.024788609 548876.8105;7819650.629;-10416.79981;330;0.83134423 549089.3105;7818974.91;-10464.7002;330;0.337908421 552026.8105;7817285.609;-10032.59961;330;0.767972358 549076.8105;7819256.457;-10436.5;330;0.843687072 549964.3105;7817135.449;-10162.40039;330;0.064078568 552214.3105;7818843.52;-9971.44043;330;0.857509772 551014.3105;7817792.398;-10228.09961;330;0.695209981 551651.8105;7820476.508;-10140.59961;330;0.807858933 549514.3105;7820044.801;-10394.29981;330;0.370498279 551214.3105;7821734.102;-10462.5;330;0.050355896 551776.8105;7819425.391;-10265;330;0.655038526 552226.8105;7818655.82;-10011.2002;330;0.295465511 552214.3105;7818092.719;-10061.29981;330;0.473678206 550901.8105;7816966.52;-10268.29981;330;0.616268674 551989.3105;7820889.449;-10591.7002;330;0.693894662 549876.8105;7820926.988;-10465;330;0.864050465 550451.8105;7817942.559;-10293.59961;330;0.990476637 550189.3105;7818261.648;-10402.5;330;0.193568134 549889.3105;7821152.23;-10464.90039;330;0.097608586 551451.8105;7820044.801;-10285.79981;330;0.933973009 549114.3105;7819200.148;-10444.2002;330;0.660696958 550001.8105;7819932.18;-9914.179688;330;0.809268571 551901.8105;7817923.789;-10056.59961;330;0.08148166 550001.8105;7819312.77;-10217;330;0.72636947 552001.8105;7818974.91;-10038.79981;330;0.395666518 550101.8105;7819106.301;-10205.5;330;0.839773553 552214.3105;7818524.43;-10018.29981;330;0.720669563 549739.3105;7819256.457;-10160.40039;330;0.592658677 549439.3105;7821827.949;-10361.79981;330;0.84465583 550451.8105;7817773.629;-10275.7002;330;0.316700319 552301.8105;7818768.438;-9992.299805;330;0.243311663 551164.3105;7820194.961;-10307.09961;330;0.801061967 552439.3105;7818355.5;-10053.90039;330;0.897498246 552101.8105;7818130.258;-10052.29981;330;0.118724194 551489.3105;7821152.23;-10427;330;0.823140073 551976.8105;7816985.289;-10035.79981;330;0.165382492 552351.8105;7818205.34;-10059.7002;330;0.43790997 551101.8105;7817717.32;-10203.2002;330;0.560632567 550351.8105;7820945.758;-10235.79981;330;0.011834599 550964.3105;7816760.051;-10283;330;0.697277649 549076.8105;7819237.688;-10436.79981;330;0.704698068 550039.3105;7819725.711;-10163.59961;330;0.593948299 552026.8105;7817980.098;-10067.09961;330;0.179635143 549351.8105;7818655.82;-10132.09961;330;0.054898091 549176.8105;7817679.777;-9943.419922;330;0.760569033 552089.3105;7817548.387;-10033.29981;330;0.731786462 552314.3105;7818712.129;-10011.09961;330;0.857795882 552164.3105;7820776.828;-10521;330;0.875424549 552389.3105;7818092.719;-10064;330;0.836862448 549039.3105;7819049.988;-10451.09961;330;0.240938734 550314.3105;7820851.91;-10077.7002;330;0.721028041 551039.3105;7817116.68;-10187.5;330;0.771044325 549464.3105;7818824.75;-10013.40039;330;0.262640485 552451.8105;7820457.738;-10293.2002;330;0.063930805 552064.3105;7816835.129;-10021.7002;330;0.41945692 551964.3105;7816947.75;-10039.79981;330;0.027334657 549864.3105;7817717.32;-10376.7002;330;0.236242992 549626.8105;7821002.07;-10417;330;0.826296816 549914.3105;7821058.379;-10472.59961;330;0.732812854 552451.8105;7817923.789;-10012;330;0.595666972 551989.3105;7821771.641;-9870.290039;330;0.757700818 549714.3105;7821715.328;-10408.90039;330;0.186433772 550639.3105;7820251.27;-9633.719727;330;0.399044113 551676.8105;7820326.348;-9867.549805;330;0.608019168 550264.3105;7819969.719;-9794.700195;330;0.692909517 552214.3105;7818036.41;-10061.79981;330;0.78902396 550639.3105;7818130.258;-10308.09961;330;0.387625058 549226.8105;7817623.469;-9853.009766;330;0.248134242 550664.3105;7816666.199;-10354.90039;330;0.93712352 549589.3105;7821546.398;-10382.5;330;0.566621293 551776.8105;7819538.008;-10276.2002;330;0.920705333 552301.8105;7818655.82;-10020;330;0.7716472 552051.8105;7817229.301;-10020.7002;330;0.099815637 551564.3105;7819594.32;-10472.7002;330;0.073471762 550289.3105;7818317.957;-10381.09961;330;0.372671546 552276.8105;7821095.918;-10494.79981;330;0.249282894 550101.8105;7819838.328;-10004.5;330;0.311611515 551651.8105;7816966.52;-10125.90039;330;0.608983602 551451.8105;7816985.289;-10120;330;0.574923908 549214.3105;7818956.141;-10436.5;330;0.58666669 551551.8105;7817454.539;-10063.40039;330;0.589405785 550164.3105;7818430.578;-10388;330;0.27356031 550126.8105;7819782.02;-10089.7002;330;0.084050666 552076.8105;7818580.738;-10006.90039;330;0.472800735 549326.8105;7819218.918;-10459.7002;330;0.170265432 551301.8105;7820082.34;-10375;330;0.129771016 551464.3105;7820270.039;-10293.09961;330;0.436908494 549689.3105;7820851.91;-10434.5;330;0.040200128 551764.3105;7817905.02;-10080.40039;330;0.97416488 551864.3105;7819237.688;-10249.29981;330;0.206231302 550814.3105;7816816.359;-10287.40039;330;0.947896205 549226.8105;7817341.918;-9585.129883;330;0.447766781 551439.3105;7819387.852;-10435.29981;330;0.727392644 551101.8105;7817079.141;-10181.5;330;0.44585024 549114.3105;7817417;-9678.44043;330;0.964955591 549601.8105;7820213.73;-10343.09961;330;0.860525933 549101.8105;7816666.199;-10509;330;0.853314807 549964.3105;7819500.469;-10229.2002;330;0.995308156 549339.3105;7819012.449;-10385.40039;330;0.219969211 549676.8105;7820795.598;-10437.59961;330;0.492383095 551039.3105;7817679.777;-10205.59961;330;0.688564879 550701.8105;7817492.078;-10253.90039;330;0.018199088 548889.3105;7818937.367;-10437.7002;330;0.44688677 550426.8105;7816666.199;-10350.59961;330;0.715893805 550776.8105;7817041.598;-10268.79981;330;0.400958362 551314.3105;7819950.949;-10392.7002;330;0.720383243 550951.8105;7818317.957;-10276.7002;330;0.861210976 550776.8105;7818824.75;-10280.09961;330;0.482021058 550651.8105;7817848.711;-10071.5;330;0.095144775 550389.3105;7818111.488;-10365.59961;330;0.359589791 551389.3105;7819406.617;-10439;330;0.373362007 549926.8105;7818505.66;-10124.2002;330;0.283410164 549039.3105;7819162.609;-10436.09961;330;0.97736949 551714.3105;7821527.629;-10395.5;330;0.865347331 551014.3105;7816816.359;-10275.40039;330;0.602857552 551651.8105;7817360.688;-10056;330;0.114969315 551826.8105;7816684.969;-10139.2002;330;0.447698902 552426.8105;7818186.57;-10063.40039;330;0.143587988 549576.8105;7821827.949;-10382.5;330;0.141619386 551514.3105;7819538.008;-10486.09961;330;0.049730154 549714.3105;7820345.121;-10260.79981;330;0.623277295 550614.3105;7817304.379;-10246;330;0.628756191 551889.3105;7820176.188;-9555.889648;330;0.2277221 551651.8105;7820739.289;-10548.90039;330;0.552391155 548889.3105;7820514.051;-10353.7002;330;0.462974022 551451.8105;7819500.469;-10459.09961;330;0.95382917 549014.3105;7818299.188;-10422.40039;330;0.050306412 549689.3105;7820739.289;-10436.90039;330;0.250531918 549714.3105;7820063.57;-10191.7002;330;0.370073923 549189.3105;7819162.609;-10461.79981;330;0.775793402 549251.8105;7821433.781;-10349.59961;330;0.80731987 550101.8105;7820720.52;-10123.79981;330;0.174965894 550364.3105;7818073.949;-10369;330;0.038227119 549426.8105;7820119.879;-10428;330;0.928092631 551989.3105;7818036.41;-10063.29981;330;0.503417862 552339.3105;7817191.758;-9761.110352;330;0.490218238 551464.3105;7818974.91;-10246.2002;330;0.900489781 549889.3105;7820833.141;-10428.09961;330;0.285620129 550276.8105;7819913.41;-9881.30957;330;0.500819962 552039.3105;7818261.648;-10033.2002;330;0.272907808 549776.8105;7819932.18;-10145.59961;330;0.229582409 550951.8105;7818524.43;-10315;330;0.978296004 549501.8105;7819369.078;-10356.5;330;0.667797082 551051.8105;7820157.418;-10259.09961;330;0.244556991 551464.3105;7820138.648;-10267.2002;330;0.103708914 551939.3105;7819350.309;-10234.09961;330;0.725883207 549964.3105;7818186.57;-10416.5;330;0.304253691 552101.8105;7820138.648;-9688.209961;330;0.715536635 552101.8105;7817079.141;-10001.59961;330;0.724509025 551389.3105;7820401.43;-10389.5;330;0.469231104 550201.8105;7817135.449;-9903.540039;330;0.852995473 551714.3105;7816966.52;-10105.2002;330;0.26769954 550189.3105;7818374.27;-10392.59961;330;0.760061424 552451.8105;7816853.898;-9636.80957;330;0.281562654 552339.3105;7818355.5;-10046.79981;330;0.952242161 551939.3105;7820420.199;-9764.910156;330;0.076048484 549426.8105;7818787.207;-10033.7002;330;0.672511284 550876.8105;7820645.438;-10127.79981;330;0.72459869 551051.8105;7818036.41;-10264.59961;330;0.929804892 550201.8105;7819237.688;-10013.59961;330;0.815109733 548939.3105;7818843.52;-10447;330;0.461313858 549501.8105;7819669.398;-10447.09961;330;0.344420788 549089.3105;7818937.367;-10465.09961;330;0.834177612 551114.3105;7820026.027;-10316.7002;330;0.449397801 551939.3105;7819275.23;-10232.5;330;0.871663606 552001.8105;7820345.121;-9670.19043;330;0.03995815 549689.3105;7819200.148;-10196.2002;330;0.572355536 549076.8105;7819275.23;-10436.59961;330;0.908826254 548889.3105;7821002.07;-10304.79981;330;0.091147869 550289.3105;7820664.211;-9803;330;0.012547548 549401.8105;7819012.449;-10332.59961;330;0.260968185 552026.8105;7816797.59;-10026.2002;330;0.598500633 549364.3105;7819049.988;-10397.5;330;0.537000468 551651.8105;7820119.879;-9855.669922;330;0.271127415 548889.3105;7818843.52;-10439.40039;330;0.711304958 551926.8105;7820889.449;-10594.40039;330;0.112910546 548889.3105;7820363.887;-10405;330;0.597557776 551739.3105;7820044.801;-9714.459961;330;0.81005274 550076.8105;7818674.59;-10363.29981;330;0.009110511 551776.8105;7817191.758;-10052.29981;330;0.877239931 552364.3105;7817998.871;-10053.09961;330;0.427829657 552139.3105;7818543.199;-10009.7002;330;0.285611672 549214.3105;7821020.84;-10354.7002;330;0.207421649 551901.8105;7818637.047;-10009.29981;330;0.478929768 551101.8105;7820232.5;-10268.79981;330;0.90138203 549189.3105;7819256.457;-10456.29981;330;0.482146501 548939.3105;7819125.07;-10427.29981;330;0.51585173 549414.3105;7818599.508;-10052.79981;330;0.781398173 551939.3105;7818317.957;-10014.29981;330;0.100372066 550151.8105;7817754.859;-10377.79981;330;0.553005249 549464.3105;7821715.328;-10370.7002;330;0.97685467 549451.8105;7820363.887;-10433.29981;330;0.206359573 550189.3105;7819782.02;-10089.09961;330;0.681878583 551589.3105;7816910.207;-10134.40039;330;0.858457588 550426.8105;7818505.66;-10336.40039;330;0.653499355 551614.3105;7821771.641;-10145.40039;330;0.633048087 549401.8105;7818730.898;-10044.59961;330;0.019257954 550126.8105;7818862.289;-10384.90039;330;0.440310312 551964.3105;7817492.078;-10056.09961;330;0.411994307 549776.8105;7818824.75;-9848.639648;330;0.007908903 549226.8105;7819087.527;-10464.59961;330;0.884350396 551751.8105;7818712.129;-10225.2002;330;0.684543293 551639.3105;7820307.578;-9931.589844;330;0.473259726 549176.8105;7821077.148;-10345;330;0.913509769 552264.3105;7818299.188;-10039.59961;330;0.420013673 549951.8105;7819875.867;-10022.90039;330;0.979490436 550301.8105;7818224.109;-10386.40039;330;0.997100045 549064.3105;7818805.98;-10461.59961;330;0.515537723 550364.3105;7818637.047;-10342.7002;330;0.046101659 548876.8105;7819312.77;-10381.59961;330;0.984009137 549464.3105;7820044.801;-10409.90039;330;0.845110684 549639.3105;7820063.57;-10276.40039;330;0.09866148 550626.8105;7818073.949;-10271.40039;330;0.311211783 552151.8105;7820607.898;-10278.2002;330;0.15561432 550839.3105;7820664.211;-10064;330;0.274608118 551601.8105;7820345.121;-10044.2002;330;0.747172515 552214.3105;7821790.41;-10078.40039;330;0.706053156 551389.3105;7819500.469;-10432.09961;330;0.4898896 552039.3105;7820870.68;-10585.7002;330;0.945166346 550414.3105;7820645.438;-9743.530273;330;0.846066244 550139.3105;7818974.91;-10293.59961;330;0.939464719 550864.3105;7818618.281;-10350.79981;330;0.731192209 552289.3105;7817116.68;-9823.759766;330;0.696312192 549626.8105;7820570.359;-10413.90039;330;0.230379625 549839.3105;7818768.438;-9873.700195;330;0.144282451 551776.8105;7818918.598;-10264.7002;330;0.553548879 550001.8105;7817041.598;-10026;330;0.209534671 550764.3105;7817529.617;-10235.29981;330;0.137984758 549589.3105;7820739.289;-10431.40039;330;0.332827919 551714.3105;7817905.02;-10100.2002;330;0.074515797 549739.3105;7821602.711;-10409.59961;330;0.40392759 550401.8105;7820138.648;-9633.980469;330;0.011947481 549014.3105;7818918.598;-10460;330;0.678120013 550301.8105;7818017.637;-10383.2002;330;0.777303325 549789.3105;7817473.309;-10287;330;0.526929453 550301.8105;7818073.949;-10385.7002;330;0.453490823 549426.8105;7820570.359;-10416.2002;330;0.751176272 550001.8105;7819556.777;-10255.2002;330;0.398534309 549514.3105;7820776.828;-10419.09961;330;0.258892967 550364.3105;7819725.711;-10128.59961;330;0.763101568 551764.3105;7817961.328;-10090.79981;330;0.261128028 551889.3105;7817886.25;-10057.2002;330;0.599471701 550989.3105;7818712.129;-10318;330;0.953089197 548976.8105;7818055.18;-10423.09961;330;0.890714898 552264.3105;7818261.648;-10045.7002;330;0.135741137 551976.8105;7817661.008;-10051.5;330;0.299245155 552426.8105;7821640.25;-10194.79981;330;0.566481929 549539.3105;7818918.598;-10023;330;0.661062243 552326.8105;7820382.66;-10121.40039;330;0.048738553 550614.3105;7819932.18;-9882.769531;330;0.721256018 549389.3105;7819106.301;-10417.79981;330;0.986718012 549451.8105;7817848.711;-10258.7002;330;0.909612466 551851.8105;7820101.109;-9568.55957;330;0.22555664 550751.8105;7816891.438;-10318.7002;330;0.412731784 551039.3105;7818749.668;-10312.59961;330;0.785107538 552089.3105;7818843.52;-10005.90039;330;0.116970236 551414.3105;7819950.949;-10355.90039;330;0.563108481 551614.3105;7821583.941;-10352.5;330;0.445942519 551676.8105;7816684.969;-10146.90039;330;0.649165143 551701.8105;7820119.879;-9746.730469;330;0.320821739 549414.3105;7820607.898;-10411.7002;330;0.792030621 552126.8105;7818017.637;-10063.09961;330;0.001447162 552401.8105;7817848.711;-9993.030273;330;0.074748308 551651.8105;7816853.898;-10141.59961;330;0.021627449 548889.3105;7819068.758;-10428.09961;330;0.752770502 549476.8105;7821827.949;-10367.09961;330;0.199653939 549176.8105;7818543.199;-10409.7002;330;0.220473267 549151.8105;7819312.77;-10448.40039;330;0.323379994 550976.8105;7817248.07;-10180.7002;330;0.637791732 549476.8105;7819857.098;-10466.90039;330;0.170342373 549851.8105;7820795.598;-10419.5;330;0.709343859 551976.8105;7818956.141;-10056.59961;330;0.516167821 550751.8105;7818787.207;-10299.29981;330;0.015436567 550951.8105;7818449.348;-10307.7002;330;0.078290388 551001.8105;7820101.109;-10241;330;0.956229774 551476.8105;7820645.438;-10492.29981;330;0.936820863 552151.8105;7821302.391;-10464.7002;330;0.893322435 549901.8105;7818712.129;-9950.769531;330;0.568139211 551689.3105;7818956.141;-10300.5;330;0.431161678 551726.8105;7818468.117;-10099.7002;330;0.21265356 551989.3105;7819519.238;-10264.5;330;0.467175439 549239.3105;7819256.457;-10463.59961;330;0.400500317 551864.3105;7817604.699;-10072.79981;330;0.437824536 550039.3105;7819462.93;-10251.09961;330;0.404573827 551826.8105;7819425.391;-10244.29981;330;0.486589293 548876.8105;7820307.578;-10405.29981;330;0.677388085 550864.3105;7820119.879;-10031.29981;330;0.463460089 551939.3105;7819969.719;-9688.450195;330;0.379067233 550239.3105;7818280.418;-10393.79981;330;0.773078467 549626.8105;7820157.418;-10297.2002;330;0.546829706 551126.8105;7817773.629;-10250.40039;330;0.634879751 550351.8105;7820758.059;-9875.019531;330;0.78573678 551689.3105;7819988.488;-9860.009766;330;0.094980625 552264.3105;7818655.82;-10014.79981;330;0.777134415 549601.8105;7819744.48;-10468.90039;330;0.564053242 548914.3105;7819406.617;-10398.90039;330;0.026127522 549039.3105;7819200.148;-10433.7002;330;0.23440869 551901.8105;7818674.59;-10016.40039;330;0.29044089 552039.3105;7820438.969;-9802.349609;330;0.504128381 550326.8105;7819631.859;-10155.29981;330;0.025177076 552076.8105;7821715.328;-10201.7002;330;0.142390474 549451.8105;7821659.02;-10373.29981;330;0.915089893 549176.8105;7817341.918;-9616.139648;330;0.0623202 552164.3105;7818092.719;-10058.59961;330;0.804374595 550126.8105;7819256.457;-10127.29981;330;0.353832828 550251.8105;7820645.438;-9801.860352;330;0.727528059 551789.3105;7821565.168;-10371.5;330;0.879735556 551039.3105;7817079.141;-10203.40039;330;0.14876164 550614.3105;7817792.398;-10118.09961;330;0.349817728 549139.3105;7818580.738;-10418.90039;330;0.564359964 552389.3105;7820532.82;-10323.2002;330;0.11449072 550451.8105;7818561.969;-10340.2002;330;0.063669161 551926.8105;7820251.27;-9605.320313;330;0.211796168 551014.3105;7818862.289;-10349.2002;330;0.562432896 548939.3105;7820833.141;-10326.2002;330;0.666955136 550614.3105;7816684.969;-10375.2002;330;0.202698879 549026.8105;7818993.68;-10456.79981;330;0.913636239 550076.8105;7820645.438;-10027.29981;330;0.330895056 551876.8105;7819631.859;-10239.7002;330;0.371431512 551801.8105;7821827.949;-9900.030273;330;0.208166677 550939.3105;7819650.629;-10312.5;330;0.888736029 551564.3105;7816647.43;-10137.09961;330;0.57342502 550439.3105;7817717.32;-10291.59961;330;0.907545216 549489.3105;7820851.91;-10408.09961;330;0.180879329 550464.3105;7820007.258;-9708.769531;330;0.124580321 550864.3105;7819706.938;-10242;330;0.405482843 549039.3105;7819068.758;-10448.40039;330;0.046989094 549339.3105;7821020.84;-10369.2002;330;0.92481139 549651.8105;7821602.711;-10394;330;0.163827291 549039.3105;7818111.488;-10436.2002;330;0.734904621 550301.8105;7820138.648;-9631.400391;330;0.119721088 549064.3105;7817492.078;-9786.730469;330;0.450288383 551214.3105;7820363.887;-10322.90039;330;0.006965148 549076.8105;7817998.871;-10442.29981;330;0.894091265 549551.8105;7820438.969;-10427;330;0.124087065 549401.8105;7818055.18;-10476.2002;330;0.852971779 552276.8105;7818468.117;-10029.79981;330;0.110711545 549526.8105;7819706.938;-10468.29981;330;0.759524905 551864.3105;7819200.148;-10250;330;0.919667752 550376.8105;7821208.539;-10505.09961;330;0.254090303 551439.3105;7820570.359;-10449.29981;330;0.901210539 549114.3105;7818768.438;-10442.40039;330;0.749081564 550676.8105;7819725.711;-10070.29981;330;0.901531586 550814.3105;7816741.277;-10288.59961;330;0.340406087 550501.8105;7816647.43;-10365.90039;330;0.140278759 551589.3105;7817041.598;-10126.90039;330;0.997211364 551864.3105;7821696.559;-10113.29981;330;0.302109538 551151.8105;7820270.039;-10291.2002;330;0.227529512 551701.8105;7821377.469;-10460;330;0.831277019 552164.3105;7817829.938;-10052.40039;330;0.49547008 549951.8105;7817961.328;-10415.79981;330;0.538947729 549451.8105;7819350.309;-10378.09961;330;0.671685075 551264.3105;7819875.867;-10398.09961;330;0.043785919 549476.8105;7817811.168;-10241.2002;330;0.848867387 552089.3105;7817379.461;-10024.2002;330;0.154313354 549939.3105;7818956.141;-10284.90039;330;0.342688786 549739.3105;7817492.078;-10221.7002;330;0.350417 549901.8105;7820044.801;-9895.370117;330;0.989379375 549701.8105;7820119.879;-10197.5;330;0.262171788 551664.3105;7817079.141;-10114.5;330;0.562849634 552076.8105;7816985.289;-10019.59961;330;0.092727227 550876.8105;7818956.141;-10198.40039;330;0.917605889 549776.8105;7818618.281;-9786.719727;330;0.925063165 551064.3105;7821171;-10579.79981;330;0.587694799 550914.3105;7818824.75;-10332.90039;330;0.516083846 549564.3105;7820983.297;-10410.40039;330;0.301841773 551214.3105;7819913.41;-10377;330;0.083627243 551376.8105;7819857.098;-10418.7002;330;0.828974751 552276.8105;7817398.227;-9910.230469;330;0.663434322 550039.3105;7816947.75;-9973.259766;330;0.051333794 551264.3105;7820889.449;-10484.09961;330;0.690374792 551726.8105;7819387.852;-10287.2002;330;0.476212411 551489.3105;7821696.559;-10281;330;0.709073493 549289.3105;7821377.469;-10351.5;330;0.487446868 550489.3105;7817773.629;-10246.29981;330;0.361401977 550251.8105;7821377.469;-10511.09961;330;0.871255507 551264.3105;7819500.469;-10430.59961;330;0.848149231 550826.8105;7818956.141;-10103.90039;330;0.399329417 551939.3105;7817454.539;-10058.79981;330;0.697259428 551001.8105;7821565.168;-10543.09961;330;0.0128558 551889.3105;7819950.949;-9671.639648;330;0.47769102 550264.3105;7817867.48;-10375;330;0.737328207 549801.8105;7821565.168;-10418.7002;330;0.298615352 549751.8105;7820157.418;-10116.90039;330;0.478642646 549389.3105;7820945.758;-10381;330;0.419668748 551751.8105;7818974.91;-10276.09961;330;0.677359281 549789.3105;7818242.879;-10377.79981;330;0.795127802 550964.3105;7816703.738;-10287.59961;330;0.460076679 551589.3105;7821415.008;-10424.7002;330;0.413552412 550114.3105;7819444.16;-10223.90039;330;0.76347511 552214.3105;7816797.59;-9957.75;330;0.53996967 550814.3105;7817642.238;-10144.5;330;0.024617108 550939.3105;7817736.09;-10166.7002;330;0.611463118 550926.8105;7819387.852;-10028.09961;330;0.816006311 550176.8105;7819857.098;-9978.200195;330;0.304343319 549801.8105;7821002.07;-10452.29981;330;0.285012428 551151.8105;7817004.059;-10206.40039;330;0.776320317 551689.3105;7817736.09;-10098.79981;330;0.966767961 549651.8105;7818787.207;-9803.049805;330;0.416595314 551639.3105;7818993.68;-10293.59961;330;0.027935886 550751.8105;7820495.281;-9774.849609;330;0.234907215 549351.8105;7819369.078;-10452.2002;330;0.986418916 551951.8105;7817341.918;-10050.09961;330;0.14263549 552151.8105;7817304.379;-9979.870117;330;0.076257421 550026.8105;7817398.227;-10298.90039;330;0.398298004 552401.8105;7818599.508;-10038;330;0.197084391 551476.8105;7820814.371;-10489.59961;330;0.812334248 552139.3105;7818468.117;-10013.29981;330;0.608037442 551514.3105;7820964.531;-10451.90039;330;0.915159439 552339.3105;7816985.289;-9751.980469;330;0.984741987 550139.3105;7820082.34;-9656.070313;330;0.894033863 550051.8105;7820026.027;-9762.549805;330;0.065589558 549701.8105;7818205.34;-10371.40039;330;0.834973402 549851.8105;7820720.52;-10375.29981;330;0.592108743 548939.3105;7819575.551;-10424;330;0.51282477 550301.8105;7821677.789;-10516.29981;330;0.485068923 550689.3105;7818693.359;-10312.40039;330;0.323065313 552289.3105;7821415.008;-10282.79981;330;0.211063583 549701.8105;7817022.828;-10264.59961;330;0.442937703 551226.8105;7820889.449;-10488.2002;330;0.403168951 550439.3105;7818411.809;-10361.5;330;0.394421985 550176.8105;7817961.328;-10398.90039;330;0.974098465 552451.8105;7821171;-10349.7002;330;0.055354007 552389.3105;7817360.688;-9756.700195;330;0.903429199 552376.8105;7818149.027;-10064.40039;330;0.430251536 549514.3105;7817548.387;-9847.980469;330;0.653406808 551851.8105;7819706.938;-10178.59961;330;0.604004611 549589.3105;7817492.078;-9930.129883;330;0.979832097 550701.8105;7818261.648;-10363.79981;330;0.793134413 551289.3105;7820026.027;-10376.29981;330;0.306110398 549526.8105;7821077.148;-10396.29981;330;0.926927358 550476.8105;7816928.98;-10153.40039;330;0.084417326 551776.8105;7817323.148;-10059.2002;330;0.453280848 552339.3105;7820026.027;-10069.2002;330;0.125413833 549589.3105;7821114.691;-10404.59961;330;0.506644271 549739.3105;7817811.168;-10354.5;330;0.848167325 551989.3105;7819312.77;-10208.7002;330;0.823077799 551576.8105;7818937.367;-10276.90039;330;0.863622339 551526.8105;7821696.559;-10257.7002;330;0.926089341 549426.8105;7820983.297;-10384.7002;330;0.264497306 552439.3105;7820251.27;-10177.40039;330;0.43540099 551676.8105;7819125.07;-10303.79981;330;0.63749344 551201.8105;7818974.91;-10427.2002;330;0.128093044 552026.8105;7816666.199;-10033.90039;330;0.657405663 551701.8105;7820795.598;-10563.79981;330;0.445164619 551189.3105;7820007.258;-10347.2002;330;0.575894244 550914.3105;7817510.848;-10230.5;330;0.427990235 549776.8105;7819763.25;-10380.59961;330;0.772340701 551039.3105;7819162.609;-10257.09961;330;0.296286545 549476.8105;7819744.48;-10480;330;0.945431219 551589.3105;7817829.938;-10101.5;330;0.793791426 550251.8105;7818167.797;-10394;330;0.670940558 552364.3105;7818486.891;-10040.79981;330;0.158070679 550989.3105;7817116.68;-10216.90039;330;0.101493249 550714.3105;7817567.16;-10219.29981;330;0.607132427 551414.3105;7817022.828;-10114.5;330;0.775158853 549239.3105;7818862.289;-10380.7002;330;0.176764708 549314.3105;7817323.148;-9576.019531;330;0.692543348 552164.3105;7818862.289;-9971.990234;330;0.03014863 551814.3105;7817773.629;-10073.90039;330;0.336936492 550014.3105;7817942.559;-10411.79981;330;0.299550411 551776.8105;7821508.859;-10401.79981;330;0.564429914 549501.8105;7820457.738;-10428.2002;330;0.00496657 552226.8105;7818712.129;-10011.29981;330;0.268987976 550326.8105;7817867.48;-10366.40039;330;0.378751884 552189.3105;7818355.5;-10025.59961;330;0.762651932 549776.8105;7821396.238;-10430.5;330;0.597955068 551526.8105;7820551.59;-10427.79981;330;0.791589073 551439.3105;7820833.141;-10477.2002;330;0.777502069 550001.8105;7821677.789;-10453.7002;330;0.844302229 549214.3105;7818693.359;-10358.09961;330;0.984169319 549114.3105;7818299.188;-10445.09961;330;0.432704169 549714.3105;7819068.758;-10203.7002;330;0.095295845 550289.3105;7817285.609;-10053.40039;330;0.559652677 550726.8105;7818599.508;-10355.90039;330;0.571953506 550039.3105;7821621.48;-10454.79981;330;0.649019005 552451.8105;7818843.52;-10008.7002;330;0.010185906 552451.8105;7821227.309;-10310.59961;330;0.385289134 552189.3105;7820157.418;-9806.339844;330;0.028141929 549401.8105;7818805.98;-10092.5;330;0.68055464 550226.8105;7818205.34;-10397.09961;330;0.072058107 550076.8105;7820476.508;-9828;330;0.806835985 550889.3105;7819087.527;-10009.09961;330;0.21268402 549576.8105;7821208.539;-10398.90039;330;0.952780821 552001.8105;7818674.59;-10014.09961;330;0.991281114 550201.8105;7817886.25;-10386.79981;330;0.401806317 551701.8105;7819087.527;-10294.5;330;0.066178457 549051.8105;7818730.898;-10460.7002;330;0.000586277 549864.3105;7816966.52;-10197.09961;330;0.446308052 549539.3105;7819838.328;-10452.7002;330;0.970990928 549414.3105;7819763.25;-10479.2002;330;0.31278531 549701.8105;7821734.102;-10405.5;330;0.063659236 549576.8105;7817304.379;-9907.080078;330;0.113506631 551064.3105;7817435.77;-10190.29981;330;0.106136454 552114.3105;7818167.797;-10051.09961;330;0.039451693 550726.8105;7821527.629;-10587.09961;330;0.223118384 550351.8105;7821640.25;-10525.59961;330;0.796392732 552389.3105;7820194.961;-10123.59961;330;0.492012646 549926.8105;7821095.918;-10473;330;0.405782477 550614.3105;7817266.84;-10238.5;330;0.03400388 550164.3105;7821189.77;-10503.09961;330;0.539673522 549989.3105;7819782.02;-10124.2002;330;0.166513912 552076.8105;7818280.418;-10035.5;330;0.358832281 552451.8105;7818712.129;-10035;330;0.490618082 552289.3105;7821621.48;-10248.2002;330;0.427061369 549251.8105;7817585.93;-9760.730469;330;0.127831674 550039.3105;7818430.578;-10348.5;330;0.407617796 551214.3105;7821264.848;-10505.7002;330;0.528364323 552101.8105;7816816.359;-10016.59961;330;0.994272641 552226.8105;7818411.809;-10027.7002;330;0.683860567 550989.3105;7821415.008;-10576.40039;330;0.001084803 551626.8105;7817717.32;-10107.40039;330;0.222037744 551189.3105;7820795.598;-10461.79981;330;0.805903182 549264.3105;7819312.77;-10462;330;0.091268726 552001.8105;7817829.938;-10055.90039;330;0.653380831 551039.3105;7820307.578;-10260.40039;330;0.59513301 551389.3105;7816684.969;-10134.79981;330;0.988656588 551351.8105;7819181.379;-10312.5;330;0.726111892 549576.8105;7820270.039;-10386.59961;330;0.300625005 550864.3105;7817473.309;-10249.59961;330;0.602941554 550739.3105;7820870.68;-10150.40039;330;0.7520522 549626.8105;7820964.531;-10420.79981;330;0.679226623 551364.3105;7820082.34;-10360.7002;330;0.651040174 552401.8105;7818430.578;-10046.90039;330;0.696591234 549989.3105;7819594.32;-10259.2002;330;0.983492441 552101.8105;7819857.098;-9970.80957;330;0.505143612 552214.3105;7818280.418;-10039.09961;330;0.315836146 551214.3105;7820438.969;-10329.29981;330;0.225170385 551801.8105;7819650.629;-10230.7002;330;0.417738719 551351.8105;7819988.488;-10382.40039;330;0.131129599 550889.3105;7821677.789;-10564.29981;330;0.444569957 552401.8105;7818486.891;-10044.7002;330;0.342618858 550889.3105;7817717.32;-10135.5;330;0.213918659 552026.8105;7816872.668;-10029.59961;330;0.865012803 551151.8105;7817304.379;-10164.40039;330;0.520264788 551239.3105;7818881.059;-10446.7002;330;0.700231096 549276.8105;7821527.629;-10353.7002;330;0.247090578 549776.8105;7820570.359;-10343.09961;330;0.084153045 551289.3105;7820194.961;-10370.2002;330;0.17990861 551464.3105;7819162.609;-10248.2002;330;0.720637355 550851.8105;7817417;-10264.79981;330;0.84092005 549776.8105;7821659.02;-10416.59961;330;0.85793262 549389.3105;7818242.879;-10425.5;330;0.474172053 549989.3105;7819068.758;-10312.79981;330;0.314979642 550001.8105;7818242.879;-10407.90039;330;0.86467012 548889.3105;7817998.871;-10410;330;0.507406661 550326.8105;7819575.551;-10147.59961;330;0.017156579 552126.8105;7818599.508;-10006.5;330;0.068353625 550651.8105;7816947.75;-10295.29981;330;0.935399546 552451.8105;7821621.48;-10194.2002;330;0.383018597 548939.3105;7818899.828;-10446.2002;330;0.060799151 549101.8105;7819162.609;-10444;330;0.12853132 552189.3105;7818411.809;-10023;330;0.823869368 549689.3105;7818299.188;-10337.29981;330;0.064341036 551714.3105;7817773.629;-10089.29981;330;0.580468338 549989.3105;7817510.848;-10334.09961;330;0.492417332 551089.3105;7817661.008;-10207.29981;330;0.507633009 549414.3105;7817848.711;-10250.7002;330;0.026329585 551576.8105;7821602.711;-10335;330;0.145781096 551814.3105;7820101.109;-9600.009766;330;0.318219613 552151.8105;7820288.809;-9781.620117;330;0.408374086 551089.3105;7819688.168;-10400.7002;330;0.878005496 551889.3105;7817323.148;-10054.59961;330;0.615678706 549851.8105;7820326.348;-10018.2002;330;0.68270074 550376.8105;7820157.418;-9632.839844;330;0.532031571 552339.3105;7820457.738;-10225.09961;330;0.157696767 551439.3105;7820194.961;-10302.2002;330;0.880379034 551776.8105;7818599.508;-10095.09961;330;0.975688293 550851.8105;7820044.801;-10060.09961;330;0.831557281 550089.3105;7817398.227;-10274.09961;330;0.003385338 549701.8105;7821790.41;-10400;330;0.710371032 552264.3105;7818787.207;-9991.129883;330;0.339648104 549464.3105;7819800.789;-10476.7002;330;0.385028702 552426.8105;7818787.207;-10020.29981;330;0.62574468 549039.3105;7818674.59;-10459.29981;330;0.126383968 550326.8105;7818167.797;-10382.09961;330;0.220625497 550001.8105;7817980.098;-10418.7002;330;0.47835559 551614.3105;7819875.867;-10159.29981;330;0.5224646 550926.8105;7816872.668;-10273.2002;330;0.638504559 550976.8105;7817172.988;-10203.90039;330;0.604179093 549114.3105;7818543.199;-10423.79981;330;0.656106584 551439.3105;7819782.02;-10423.29981;330;0.329653073 549326.8105;7818430.578;-10370.09961;330;0.863858501 550189.3105;7818805.98;-10433.2002;330;0.835060834 550864.3105;7818561.969;-10358.40039;330;0.873606192 551251.8105;7818993.68;-10372.90039;330;0.460850828 551939.3105;7818261.648;-10027.40039;330;0.157368755 550126.8105;7817623.469;-10356.5;330;0.075160375 551076.8105;7819143.84;-10317.2002;330;0.833412102 551389.3105;7817116.68;-10109.09961;330;0.502783719 550876.8105;7818167.797;-10284.40039;330;0.517483513 550164.3105;7818543.199;-10387.7002;330;0.166655537 551139.3105;7820476.508;-10293.29981;330;0.391386827 550164.3105;7820288.809;-9654.379883;330;0.423044573 550676.8105;7817980.098;-10162.90039;330;0.843197567 550839.3105;7819087.527;-9912.450195;330;0.79710065 549751.8105;7819387.852;-10149;330;0.821815561 549139.3105;7820964.531;-10349.79981;330;0.12531858 551176.8105;7820026.027;-10335.79981;330;0.880757666 551976.8105;7819481.699;-10255.40039;330;0.799129743 548926.8105;7819200.148;-10420.2002;330;0.907217391 552151.8105;7816741.277;-10008.79981;330;0.999485711 549464.3105;7820983.297;-10392.09961;330;0.53645519 549651.8105;7817172.988;-10155.7002;330;0.315412759 550214.3105;7817717.32;-10365.09961;330;0.69790835 552164.3105;7817172.988;-9958.629883;330;0.607228852 549689.3105;7821827.949;-10396;330;0.879045651 552214.3105;7818787.207;-9994.509766;330;0.338046401 549489.3105;7819819.559;-10475.90039;330;0.32467681 550064.3105;7819256.457;-10204.40039;330;0.407830044 550614.3105;7818224.109;-10368.5;330;0.990932784 548964.3105;7817886.25;-10399.40039;330;0.451660167 551889.3105;7818261.648;-10031.90039;330;0.786657877 550976.8105;7819218.918;-10129.90039;330;0.862246026 551039.3105;7821659.02;-10525.7002;330;0.950510512 549114.3105;7821002.07;-10345.2002;330;0.349356631 551839.3105;7821339.93;-10489;330;0.393200075 550139.3105;7820570.359;-9849.660156;330;0.223388175 549814.3105;7821790.41;-10422.59961;330;0.264368875 548989.3105;7818768.438;-10463;330;0.042799768 550414.3105;7819594.32;-10112.79981;330;0.940120374 548951.8105;7819406.617;-10423.29981;330;0.165452666 550139.3105;7820532.82;-9820.730469;330;0.626121518 550076.8105;7816872.668;-10011.40039;330;0.211710249 551264.3105;7820607.898;-10394.2002;330;0.469668606 549889.3105;7819218.918;-10233.59961;330;0.598387719 549664.3105;7817285.609;-10096.40039;330;0.207875678 550714.3105;7818655.82;-10321.40039;330;0.210869461 551276.8105;7820438.969;-10359.40039;330;0.749661938 551226.8105;7820551.59;-10363.79981;330;0.104264783 550239.3105;7821752.867;-10498.09961;330;0.734974575 552039.3105;7816703.738;-10031.09961;330;0.792391912 550351.8105;7821508.859;-10525.59961;330;0.72232206 548989.3105;7817961.328;-10420;330;0.090161801 551701.8105;7821490.09;-10412.2002;330;0.584397793 551651.8105;7817867.48;-10110.2002;330;0.772458863 549164.3105;7818993.68;-10462.09961;330;0.660747431 549964.3105;7820964.531;-10465.2002;330;0.974738427 550276.8105;7819819.559;-10062.09961;330;0.328363422 551026.8105;7821696.559;-10529.90039;330;0.350763376 549514.3105;7820983.297;-10401.79981;330;0.707522365 551564.3105;7817585.93;-10094.79981;330;0.349446655 551351.8105;7820514.051;-10391.79981;330;0.510680311 551576.8105;7817811.168;-10097.7002;330;0.99568341 551139.3105;7819012.449;-10420.29981;330;0.253348888 549851.8105;7821302.391;-10458.09961;330;0.786090609 549926.8105;7820945.758;-10466;330;0.377329029 552264.3105;7817867.48;-10047.7002;330;0.411243791 550676.8105;7820270.039;-9678.44043;330;0.864093381 551989.3105;7817285.609;-10040.09961;330;0.521734561 550251.8105;7821715.328;-10503;330;0.481019113 549864.3105;7820964.531;-10466.90039;330;0.718717118 550314.3105;7820889.449;-10140.2002;330;0.504336792 550364.3105;7821471.32;-10529.2002;330;0.247960897 549689.3105;7818674.59;-9736.290039;330;0.641655764 552451.8105;7820157.418;-10155.09961;330;0.625952808 548926.8105;7819256.457;-10419;330;0.061586512 551914.3105;7817004.059;-10027.7002;330;0.051298707 548926.8105;7819237.688;-10419.2002;330;0.888186359 549651.8105;7817736.09;-10288.09961;330;0.935199536 552351.8105;7817229.301;-9746.950195;330;0.431669216 552226.8105;7820232.5;-9877.150391;330;0.234934621 552064.3105;7816853.898;-10022.29981;330;0.549667808 551789.3105;7819556.777;-10266.59961;330;0.934399374 551651.8105;7817004.059;-10097.79981;330;0.331804857 549939.3105;7817022.828;-10125.29981;330;0.861502579 550801.8105;7816853.898;-10294.2002;330;0.335229286 551589.3105;7818637.047;-10209.2002;330;0.031713536 551614.3105;7819444.16;-10383.90039;330;0.043811802 552026.8105;7819688.168;-10196.2002;330;0.441899208 550976.8105;7818674.59;-10321.40039;330;0.953859663 551039.3105;7820194.961;-10256.59961;330;0.687524963 551214.3105;7819688.168;-10417.79981;330;0.760732312 550876.8105;7819444.16;-9976.480469;330;0.52020752 550214.3105;7817323.148;-10132.7002;330;0.315280115 550051.8105;7821002.07;-10475.2002;330;0.739228245 551114.3105;7819988.488;-10327.59961;330;0.536773183 548926.8105;7819275.23;-10418.90039;330;0.388271131 550764.3105;7816835.129;-10315.40039;330;0.149956321 549364.3105;7818937.367;-10285.40039;330;0.643631283 549126.8105;7818599.508;-10429.2002;330;0.723343618 548876.8105;7818881.059;-10437.40039;330;0.71651381 551476.8105;7821114.691;-10433.90039;330;0.474654934 548876.8105;7819406.617;-10383.5;330;0.100852625 550164.3105;7817717.32;-10371.2002;330;0.510933539 551964.3105;7819932.18;-9762.129883;330;0.360604383 550064.3105;7818599.508;-10307.90039;330;0.544818965 549964.3105;7819857.098;-10041.5;330;0.581903619 550026.8105;7817060.367;-9989.519531;330;0.553220755 550676.8105;7818092.719;-10270.79981;330;0.255199887 551264.3105;7819782.02;-10410;330;0.23358805 549151.8105;7818974.91;-10462.09961;330;0.219099002 550414.3105;7818261.648;-10368.79981;330;0.255837227 551401.8105;7819988.488;-10351.40039;330;0.579731442 552014.3105;7818862.289;-10021.29981;330;0.475880419 551726.8105;7820157.418;-9707.19043;330;0.3880917 549639.3105;7820532.82;-10406;330;0.851012174 548926.8105;7819218.918;-10419.59961;330;0.195868626 552314.3105;7820345.121;-10064.90039;330;0.981935929 550339.3105;7818242.879;-10379.5;330;0.189148082 549639.3105;7820739.289;-10435.7002;330;0.974485787 552076.8105;7818017.637;-10066.2002;330;0.908369938 550514.3105;7820983.297;-10243.59961;330;0.785427826 549751.8105;7821565.168;-10410.5;330;0.747540548 550314.3105;7817998.871;-10378.09961;330;0.721716819 549489.3105;7820589.129;-10419.5;330;0.717975183 550851.8105;7817886.25;-10074;330;0.951267666 550676.8105;7817905.02;-10083.29981;330;0.131318053 551489.3105;7820438.969;-10345;330;0.155485021 549526.8105;7818881.059;-9986.599609;330;0.977964778 551851.8105;7818317.957;-10033.90039;330;0.519120687 549939.3105;7819406.617;-10192.40039;330;0.138161123 552251.8105;7818017.637;-10062.2002;330;0.107477875 552439.3105;7816891.438;-9635.259766;330;0.887379904 549164.3105;7818749.668;-10411.09961;330;0.424199414 551189.3105;7817980.098;-10288.79981;330;0.204336504 551364.3105;7820213.73;-10362.90039;330;0.146781415 549376.8105;7817360.688;-9599.80957;330;0.962225223 551026.8105;7818130.258;-10225.7002;330;0.341659119 549526.8105;7818580.738;-9906.709961;330;0.900057854 549676.8105;7819819.559;-10395.5;330;0.203607701 551826.8105;7818937.367;-10234.5;330;0.516468276 551426.8105;7820288.809;-10335.5;330;0.657198913 548989.3105;7817942.559;-10415.90039;330;0.093218195 550714.3105;7817529.617;-10241.40039;330;0.767387342 551814.3105;7821790.41;-9951.639648;330;0.195639457 549689.3105;7820457.738;-10355.79981;330;0.12820222 551364.3105;7816853.898;-10125.79981;330;0.808422542 550589.3105;7820307.578;-9617.929688;330;0.747596488 548876.8105;7820044.801;-10399.90039;330;0.60215437 550851.8105;7818524.43;-10365.90039;330;0.654414429 550301.8105;7821283.617;-10518.29981;330;0.936212316 549976.8105;7817360.688;-10318.2002;330;0.746718021 550301.8105;7820176.188;-9619.30957;330;0.027127827 550601.8105;7817848.711;-10137.7002;330;0.837101648 552189.3105;7817905.02;-10058.5;330;0.551900395 550651.8105;7817492.078;-10262.59961;330;0.206319851 551839.3105;7820720.52;-10432.90039;330;0.975425736 551064.3105;7820063.57;-10270.7002;330;0.072369323 550901.8105;7818374.27;-10333.7002;330;0.89941804 552064.3105;7819819.559;-9992.879883;330;0.423339816 551776.8105;7817867.48;-10077.59961;330;0.347306006 549689.3105;7820532.82;-10379.90039;330;0.808982282 550364.3105;7817135.449;-9993.129883;330;0.537100975 548951.8105;7818280.418;-10411.79981;330;0.767118924 551264.3105;7819462.93;-10433.5;330;0.531934869 550876.8105;7820401.43;-10009.90039;330;0.433205521 550176.8105;7820626.668;-9848.5;330;0.531847724 551314.3105;7820119.879;-10376.5;330;0.150635603 549401.8105;7818674.59;-10048.2002;330;0.230903358 549851.8105;7819087.527;-10241.59961;330;0.81166578 549039.3105;7821152.23;-10324.2002;330;0.277853294 551539.3105;7817492.078;-10048.7002;330;0.308471049 552064.3105;7817905.02;-10066.40039;330;0.900153357 551864.3105;7819068.758;-10237.29981;330;0.557534829 549601.8105;7817210.527;-10021.79981;330;0.719478062 551626.8105;7821339.93;-10454.7002;330;0.47578402 549801.8105;7820964.531;-10453.59961;330;0.226286411 549101.8105;7819012.449;-10462.7002;330;0.96427978 549614.3105;7820908.219;-10424;330;0.926114053 550739.3105;7820664.211;-9867.360352;330;0.362608307 550676.8105;7817116.68;-10286;330;0.418631898 550051.8105;7819425.391;-10239.29981;330;0.965917626 550901.8105;7820176.188;-10095.09961;330;0.67106445 550264.3105;7820720.52;-9894.990234;330;0.211302581 549489.3105;7819425.391;-10371;330;0.439557808 549926.8105;7821415.008;-10456.59961;330;0.680080038 549226.8105;7818205.34;-10471.59961;330;0.272110032 550026.8105;7821095.918;-10482.90039;330;0.3107564 549826.8105;7819031.219;-10221.29981;330;0.327299203 549726.8105;7817079.141;-10272.79981;330;0.101124488 550226.8105;7818092.719;-10399;330;0.706771454 551376.8105;7819012.449;-10249.5;330;0.999187328 549789.3105;7818355.5;-10269.79981;330;0.588083505 550264.3105;7816966.52;-9850.349609;330;0.68348561 551939.3105;7819613.09;-10248.5;330;0.385485335 549376.8105;7819913.41;-10472.7002;330;0.924616837 549689.3105;7818655.82;-9740.589844;330;0.494128387 549276.8105;7818055.18;-10474.5;330;0.943821332 549226.8105;7818993.68;-10443.5;330;0.052745638 552451.8105;7818224.109;-10063.29981;330;0.133353089 549701.8105;7819312.77;-10162.7002;330;0.056557632 551201.8105;7819425.391;-10455;330;0.350209991 549864.3105;7819894.641;-10077.5;330;0.145032914 549601.8105;7818580.738;-9819.820313;330;0.250585303 549201.8105;7818618.281;-10375.5;330;0.78857833 549026.8105;7818637.047;-10453.2002;330;0.36414764 551326.8105;7818918.598;-10340.7002;330;0.881845123 551376.8105;7819800.789;-10437.5;330;0.745770657 550301.8105;7821433.781;-10518.09961;330;0.31245565 552151.8105;7820345.121;-9816.30957;330;0.260350245 552101.8105;7817210.527;-10002.59961;330;0.17275782 552201.8105;7817961.328;-10061.5;330;0.484746272 550764.3105;7819012.449;-9873.740234;330;0.81069978 550676.8105;7820007.258;-9827.69043;330;0.135645479 552276.8105;7818224.109;-10050.5;330;0.041842748 548889.3105;7820833.141;-10316.40039;330;0.168114062 551601.8105;7819950.949;-10124.7002;330;0.348330116 551564.3105;7819631.859;-10449.90039;330;0.68341345 550739.3105;7818374.27;-10385.90039;330;0.70218711 550614.3105;7816760.051;-10354.29981;330;0.616173925 551126.8105;7817473.309;-10168;330;0.482118557 550414.3105;7816816.359;-10184.09961;330;0.513767615 551689.3105;7819744.48;-10246.59961;330;0.207013153 552439.3105;7817980.098;-10035.09961;330;0.66228264 550189.3105;7819462.93;-10137.7002;330;0.85424512 550289.3105;7820213.73;-9608.639648;330;0.390124822 552389.3105;7821283.617;-10292.40039;330;0.462978731 551901.8105;7816966.52;-10034.79981;330;0.818457591 551576.8105;7819406.617;-10373.29981;330;0.824452202 550514.3105;7817172.988;-10209.7002;330;0.507778891 550126.8105;7818411.809;-10385.59961;330;0.011865599 552351.8105;7818073.949;-10065.5;330;0.471504056 550101.8105;7820270.039;-9699.240234;330;0.532039183 549626.8105;7819500.469;-10268.29981;330;0.781081199 548964.3105;7819087.527;-10435.5;330;0.118232747 549314.3105;7818974.91;-10376.90039;330;0.658165503 551864.3105;7818787.207;-10098.90039;330;0.452243776 549951.8105;7819932.18;-9968.519531;330;0.383966487 550289.3105;7818111.488;-10388.7002;330;0.453348756 551176.8105;7820157.418;-10322.40039;330;0.338221068 552264.3105;7817811.168;-10037.7002;330;0.154498637 551876.8105;7817848.711;-10058.7002;330;0.084901163 550001.8105;7817154.219;-10115;330;0.208155573 549026.8105;7818956.141;-10460;330;0.506620247 549901.8105;7819387.852;-10168.90039;330;0.968601507 552451.8105;7818655.82;-10037.79981;330;0.130308562 551014.3105;7817848.711;-10260.2002;330;0.531125803 550989.3105;7819350.309;-10134.90039;330;0.022613272 551114.3105;7820720.52;-10417;330;0.487234134 552001.8105;7818186.57;-10042.79981;330;0.991967515 552176.8105;7818730.898;-10011.5;330;0.023930221 550639.3105;7817698.547;-10139.90039;330;0.451788572 550651.8105;7820194.961;-9668.30957;330;0.77197994 552439.3105;7820307.578;-10194.59961;330;0.082416042 549314.3105;7818937.367;-10349.59961;330;0.025755423 550626.8105;7818036.41;-10244.29981;330;0.932803081 552101.8105;7816910.207;-10015.90039;330;0.400340488 549651.8105;7819218.918;-10200.7002;330;0.346503509 550714.3105;7817867.48;-10018.40039;330;0.546887458 551226.8105;7820570.359;-10370.29981;330;0.495292526 549901.8105;7821321.16;-10467.40039;330;0.019290712 551164.3105;7820926.988;-10510.79981;330;0.554226593 550826.8105;7818824.75;-10287.09961;330;0.796517703 549139.3105;7817773.629;-10124;330;0.700915596 549726.8105;7818468.117;-10053.90039;330;0.866174664 550201.8105;7820758.059;-10035.90039;330;0.566124529 551339.3105;7819162.609;-10314.09961;330;0.699059925 549814.3105;7819481.699;-10183.79981;330;0.396473101 549501.8105;7817623.469;-9969.540039;330;0.717114579 552076.8105;7820063.57;-9694.509766;330;0.07218348 550426.8105;7821565.168;-10537.7002;330;0.01810937 548876.8105;7820945.758;-10305;330;0.137314534 549926.8105;7817604.699;-10356.59961;330;0.144985984 550926.8105;7818111.488;-10246.2002;330;0.735189908 551564.3105;7819350.309;-10335.59961;330;0.905132178 550489.3105;7820945.758;-10178.59961;330;0.368783932 548876.8105;7820101.109;-10400.2002;330;0.270257818 549151.8105;7817454.539;-9648.469727;330;0.271827472 549514.3105;7819200.148;-10359.29981;330;0.702912027 550401.8105;7817642.238;-10320.90039;330;0.39057235 550814.3105;7818543.199;-10368.90039;330;0.485501029 552264.3105;7818599.508;-10015.59961;330;0.028052354 551751.8105;7816666.199;-10145.2002;330;0.665084976 550364.3105;7818167.797;-10375;330;0.434164825 550839.3105;7817679.777;-10120.59961;330;0.852833404 550839.3105;7818899.828;-10229.29981;330;0.615985804 551201.8105;7819462.93;-10449.59961;330;0.646562715 551789.3105;7816684.969;-10143;330;0.796197267 549551.8105;7821152.23;-10396.59961;330;0.935496633 551189.3105;7820589.129;-10359.79981;330;0.849699129 550939.3105;7816835.129;-10276.40039;330;0.865902737 552439.3105;7817285.609;-9651.169922;330;0.92735008 550939.3105;7817172.988;-10226.09961;330;0.6621228 552414.3105;7820119.879;-10128.40039;330;0.571291403 551389.3105;7820288.809;-10360.5;330;0.571380963 550189.3105;7818768.438;-10444.40039;330;0.621669103 552001.8105;7819969.719;-9740.790039;330;0.183680929 551039.3105;7820251.27;-10272.59961;330;0.377713243 551214.3105;7819031.219;-10394.2002;330;0.253547203 550664.3105;7817942.559;-10134.90039;330;0.647792614 549476.8105;7818599.508;-9963.139648;330;0.579208524 551264.3105;7820401.43;-10350.90039;330;0.009028127 550151.8105;7820138.648;-9625.629883;330;0.419767966 550114.3105;7817661.008;-10364.79981;330;0.786662915 550914.3105;7820007.258;-10171.29981;330;0.467357127 550114.3105;7821114.691;-10497.79981;330;0.271310287 549064.3105;7816722.508;-10514.29981;330;0.902195637 551439.3105;7817116.68;-10113;330;0.394007176 549451.8105;7820814.371;-10402.79981;330;0.504628509 548964.3105;7819143.84;-10429;330;0.173653849 550864.3105;7818186.57;-10297;330;0.070352526 550139.3105;7818505.66;-10384.29981;330;0.981365855 550401.8105;7817698.547;-10317;330;0.320026809 550901.8105;7817079.141;-10261.79981;330;0.509767304 551864.3105;7820570.359;-10075.59961;330;0.911357996 550876.8105;7819125.07;-9953.150391;330;0.847733236 549576.8105;7819838.328;-10431.79981;330;0.294649558 549789.3105;7819387.852;-10136.40039;330;0.867360417 549714.3105;7820589.129;-10386.09961;330;0.890447602 550076.8105;7821114.691;-10486.79981;330;0.681662357 549826.8105;7821490.09;-10431.29981;330;0.610009833 550239.3105;7817923.789;-10385.7002;330;0.294456148 551326.8105;7819631.859;-10405.2002;330;0.658805995 552014.3105;7819106.301;-10073.90039;330;0.998069681 548926.8105;7819181.379;-10421;330;0.43780248 552439.3105;7817323.148;-9675.450195;330;0.810374813 551326.8105;7819575.551;-10410.5;330;0.977242917 550764.3105;7818655.82;-10325.59961;330;0.739531573 549514.3105;7820251.27;-10420.29981;330;0.359934153 549664.3105;7817135.449;-10205.79981;330;0.841844469 548889.3105;7819162.609;-10419.40039;330;0.355507173 550389.3105;7819556.777;-10091.90039;330;0.308974258 549551.8105;7817379.461;-9832.519531;330;0.329960863 548989.3105;7819387.852;-10427.5;330;0.413320243 550876.8105;7817923.789;-10120.09961;330;0.886391244 549001.8105;7818730.898;-10468.29981;330;0.325193112 551551.8105;7821227.309;-10435.09961;330;0.154676401 549826.8105;7821827.949;-10424.79981;330;0.274317868 551426.8105;7820232.5;-10321.2002;330;0.330354819 549926.8105;7816928.98;-10132.59961;330;0.093986602 550276.8105;7817923.789;-10379;330;0.169851405 550951.8105;7817079.141;-10249.59961;330;0.310538065 550989.3105;7819181.379;-10168.2002;330;0.728346168 550189.3105;7820101.109;-9628.889648;330;0.786706612 551914.3105;7817548.387;-10065;330;0.793918261 548951.8105;7817848.711;-10390.90039;330;0.74616755 549264.3105;7818899.828;-10376.79981;330;0.255644437 550876.8105;7818899.828;-10286.59961;330;0.678776753 550651.8105;7819838.328;-10012.59961;330;0.831391005 550651.8105;7818224.109;-10356.90039;330;0.004413247 552001.8105;7821321.16;-10503.40039;330;0.797958773 550076.8105;7819218.918;-10205.2002;330;0.673487006 552351.8105;7821790.41;-10122.29981;330;0.467806144 550939.3105;7821077.148;-10558.2002;330;0.611431442 550089.3105;7816891.438;-9962.080078;330;0.612541308 552164.3105;7817116.68;-9959.519531;330;0.448859577 550214.3105;7821114.691;-10478.2002;330;0.433655838 552276.8105;7821152.23;-10482.7002;330;0.430783249 549901.8105;7821677.789;-10437.09961;330;0.846088361 552351.8105;7820495.281;-10276.29981;330;0.88780934 551414.3105;7817248.07;-10110.7002;330;0.062885745 550201.8105;7820476.508;-9699.320313;330;0.702467647 551401.8105;7819669.398;-10470.7002;330;0.091902324 551576.8105;7816816.359;-10139.5;330;0.436599927 549776.8105;7819706.938;-10394.09961;330;0.339636147 550764.3105;7821827.949;-10558.79981;330;0.963856907 551764.3105;7817773.629;-10079.79981;330;0.036007549 549939.3105;7819106.301;-10308.79981;330;0.349060209 552201.8105;7821640.25;-10269.79981;330;0.222561783 548964.3105;7818993.68;-10447.09961;330;0.516229194 550064.3105;7817473.309;-10299.29981;330;0.164294807 550364.3105;7820082.34;-9658.55957;330;0.749188887 549814.3105;7819331.539;-10120.29981;330;0.861674271 550251.8105;7820476.508;-9683.780273;330;0.857104412 549951.8105;7819012.449;-10298.59961;330;0.853494886 552039.3105;7817811.168;-10058.79981;330;0.841974414 550351.8105;7820532.82;-9717.349609;330;0.574324675 551014.3105;7820626.668;-10331.29981;330;0.997540632 550089.3105;7817829.938;-10394.09961;330;0.233043961 549926.8105;7819350.309;-10184.5;330;0.149021172 551576.8105;7820176.188;-10074.5;330;0.48497803 551051.8105;7820495.281;-10292.59961;330;0.964763066 551151.8105;7819481.699;-10427.40039;330;0.659941809 549901.8105;7820570.359;-10182.79981;330;0.897013147 552089.3105;7821152.23;-10541.59961;330;0.990245928 550076.8105;7817867.48;-10394.90039;330;0.631559474 549314.3105;7818561.969;-10248.59961;330;0.561358073 551814.3105;7817942.559;-10076.90039;330;0.291722197 551151.8105;7819688.168;-10421.5;330;0.426492949 551801.8105;7820589.129;-10138.79981;330;0.157832488 551401.8105;7816928.98;-10119.2002;330;0.100494523 550251.8105;7820082.34;-9650.450195;330;0.317549295 550739.3105;7817961.328;-10102.40039;330;0.45570628 549514.3105;7817323.148;-9801.620117;330;0.714879785 550201.8105;7817454.539;-10291.59961;330;0.4289447 550964.3105;7817548.387;-10221.79981;330;0.23721252 552401.8105;7818712.129;-10024.40039;330;0.154506019 550614.3105;7817980.098;-10208;330;0.06274334 549976.8105;7821152.23;-10477.90039;330;0.280637309 550151.8105;7820345.121;-9690.929688;330;0.802341214 551926.8105;7819669.398;-10216.29981;330;0.355127283 551051.8105;7816985.289;-10240.09961;330;0.428390433 551664.3105;7817135.449;-10107;330;0.021227085 551776.8105;7816947.75;-10073.40039;330;0.912658948 550526.8105;7817529.617;-10280.59961;330;0.153004207 551776.8105;7817398.227;-10067.79981;330;0.360107644 550851.8105;7821565.168;-10569.59961;330;0.568486501 550189.3105;7821734.102;-10488;330;0.494614492 550014.3105;7821846.719;-10454.40039;330;0.815618151 551139.3105;7821171;-10536;330;0.289362644 549889.3105;7817848.711;-10400.40039;330;0.075827951 552301.8105;7821659.02;-10228.40039;330;0.594320965 549326.8105;7820983.297;-10370.2002;330;0.198817541 552126.8105;7821171;-10533.29981;330;0.713310427 549964.3105;7820889.449;-10432.29981;330;0.294548712 551526.8105;7816910.207;-10129.59961;330;0.865767216 551289.3105;7820645.438;-10407.09961;330;0.873595115 551714.3105;7817379.461;-10061.2002;330;0.098961974 550264.3105;7817717.32;-10353.5;330;0.760246144 551839.3105;7817060.367;-10033.90039;330;0.818721112 549514.3105;7818674.59;-9891.55957;330;0.267274619 551264.3105;7821171;-10500.29981;330;0.484580468 549576.8105;7821058.379;-10405.90039;330;0.011879297 550351.8105;7821846.719;-10513.59961;330;0.482710236 551201.8105;7819519.238;-10453.29981;330;0.522926197 551276.8105;7819613.09;-10409.09961;330;0.897530743 549339.3105;7818130.258;-10468.29981;330;0.101564292 552201.8105;7821133.457;-10521;330;0.062408796 550126.8105;7817492.078;-10323.7002;330;0.331642809 550389.3105;7817961.328;-10339.2002;330;0.647285953 551926.8105;7819143.84;-10213.29981;330;0.500908186 552001.8105;7821283.617;-10516.40039;330;0.267125418 552101.8105;7819913.41;-9896.599609;330;0.960427245 550776.8105;7821471.32;-10598;330;0.501970817 551226.8105;7820232.5;-10335;330;0.132527854 551964.3105;7816647.43;-10034.90039;330;0.497263393 552314.3105;7818486.891;-10033.5;330;0.67198786 552364.3105;7820983.297;-10471;330;0.807564243 551601.8105;7817285.609;-10068.2002;330;0.807926666 551251.8105;7820758.059;-10447.79981;330;0.10348741 552439.3105;7817604.699;-9863.55957;330;0.62332849 550051.8105;7817736.09;-10385.2002;330;0.567644718 550189.3105;7821527.629;-10486.59961;330;0.35773884 550876.8105;7816816.359;-10280.59961;330;0.267350597 549939.3105;7817079.141;-10155.90039;330;0.397835722 551889.3105;7817473.309;-10068.59961;330;0.840740849 551126.8105;7819594.32;-10436.2002;330;0.351525837 552026.8105;7818149.027;-10048.29981;330;0.21345231 550801.8105;7820363.887;-9822.790039;330;0.245421354 552164.3105;7818280.418;-10038.59961;330;0.799386506 551339.3105;7817022.828;-10114.2002;330;0.08445174 551139.3105;7821734.102;-10507.7002;330;0.800238184 549364.3105;7817323.148;-9599.349609;330;0.1570693 550164.3105;7820926.988;-10368.5;330;0.99871649 552201.8105;7821565.168;-10320.79981;330;0.398280339 551401.8105;7820476.508;-10404.79981;330;0.594534046 549839.3105;7819538.008;-10209.79981;330;0.147818976 552114.3105;7821039.609;-10551.29981;330;0.308543678 548901.8105;7819594.32;-10419.29981;330;0.04748176 551451.8105;7816891.438;-10123.79981;330;0.396184577 552214.3105;7816703.738;-9972.200195;330;0.839386321 551626.8105;7821114.691;-10458.09961;330;0.470082235 551664.3105;7821283.617;-10472.59961;330;0.05957512 549789.3105;7819312.77;-10121.59961;330;0.63544538 551501.8105;7816928.98;-10126.79981;330;0.57477409 551301.8105;7820682.98;-10417.09961;330;0.956711354 549401.8105;7819312.77;-10400.90039;330;0.28725721 551226.8105;7820270.039;-10331.7002;330;0.826139593 551776.8105;7821152.23;-10498.79981;330;0.223521168 552439.3105;7817623.469;-9872.570313;330;0.167510718 549801.8105;7819538.008;-10210.59961;330;0.966168729 551651.8105;7820795.598;-10555.2002;330;0.952987614 551776.8105;7821189.77;-10500.90039;330;0.114716694 550876.8105;7819669.398;-10266.59961;330;0.196169677 551839.3105;7817116.68;-10034.40039;330;0.76171228 549964.3105;7821809.18;-10453.7002;330;0.020704998 550226.8105;7819031.219;-10046.7002;330;0.919282627 550326.8105;7817905.02;-10362;330;0.768050712 551539.3105;7821189.77;-10428.09961;330;0.302974473 549839.3105;7817792.398;-10384.29981;330;0.92281856 550851.8105;7821302.391;-10631.90039;330;0.286967757 552064.3105;7816778.816;-10022.7002;330;0.299635188 550864.3105;7819631.859;-10250;330;0.796532529 550501.8105;7818092.719;-10324.59961;330;0.953956704 550764.3105;7820232.5;-9809.639648;330;0.969145399 550101.8105;7821433.781;-10477.09961;330;0.890158354 549264.3105;7820833.141;-10371.5;330;0.795988674 550676.8105;7821208.539;-10539;330;0.385836901 551976.8105;7816891.438;-10036.09961;330;0.142480375 552301.8105;7818543.199;-10026.29981;330;0.767062372 551839.3105;7817154.219;-10037.29981;330;0.078843254 551639.3105;7816778.816;-10145.5;330;0.717210455 549964.3105;7821546.398;-10448.79981;330;0.319795429 550414.3105;7821640.25;-10538.2002;330;0.836096651 551751.8105;7817736.09;-10089.2002;330;0.558769517 552451.8105;7816966.52;-9608.580078;330;0.663637402 551489.3105;7817492.078;-10047.7002;330;0.620405562 550189.3105;7819819.559;-10040;330;0.979809192 549939.3105;7821827.949;-10445.5;330;0.248961071 552389.3105;7821659.02;-10204.40039;330;0.007058457 549039.3105;7818167.797;-10435.2002;330;0.810752591 550376.8105;7821415.008;-10532.09961;330;0.064210929 550989.3105;7820983.297;-10537.09961;330;0.102874653 551901.8105;7816647.43;-10081.59961;330;0.115631998 552064.3105;7821659.02;-10271.7002;330;0.723687428 550264.3105;7818993.68;-10009.90039;330;0.065882049 549526.8105;7817454.539;-9804.299805;330;0.406682613 551639.3105;7816816.359;-10143.59961;330;0.564019605 550614.3105;7821152.23;-10450.29981;330;0.301260348 549951.8105;7821771.641;-10447.40039;330;0.203479754 551789.3105;7821302.391;-10495.90039;330;0.691150089 551664.3105;7817210.527;-10076.59961;330;0.245675012 550326.8105;7817942.559;-10367.2002;330;0.684181224 551751.8105;7817604.699;-10099.09961;330;0.522322472 551726.8105;7817473.309;-10068.09961;330;0.318723922 550976.8105;7817980.098;-10248.7002;330;0.236398406 549289.3105;7819031.219;-10427.79981;330;0.807594925 551814.3105;7818261.648;-10075.7002;330;0.17594023 550339.3105;7820119.879;-9644.879883;330;0.307342238 552151.8105;7821546.398;-10359.40039;330;0.032297518 552376.8105;7819969.719;-10098.7002;330;0.513472395 551239.3105;7817942.559;-10313.5;330;0.730801507 549814.3105;7817379.461;-10334.7002;330;0.720211353 552026.8105;7818036.41;-10065.2002;330;0.443781715 551426.8105;7817435.77;-10062.5;330;0.951203479 550851.8105;7821283.617;-10626.79981;330;0.641723772 551576.8105;7816722.508;-10140.90039;330;0.13861451 550964.3105;7819950.949;-10227.09961;330;0.067030519 551276.8105;7819706.938;-10409.29981;330;0.577996291 551101.8105;7817022.828;-10208.59961;330;0.430772539 551751.8105;7821583.941;-10376.79981;330;0.965907541 549176.8105;7817623.469;-9865.400391;330;0.173680145 552064.3105;7816760.051;-10024.29981;330;0.863811122 551914.3105;7821827.949;-9868.719727;330;0.425369218 550039.3105;7817773.629;-10391;330;0.221046793 552414.3105;7820514.051;-10317.79981;330;0.990244967 551576.8105;7819125.07;-10287.09961;330;0.407432312 550914.3105;7819819.559;-10208.29981;330;0.816227674 550651.8105;7817454.539;-10265;330;0.702225826 549901.8105;7819500.469;-10202.79981;330;0.66780944 551789.3105;7820495.281;-9971.599609;330;0.055698885 551176.8105;7820082.34;-10327.29981;330;0.898627248 551764.3105;7819031.219;-10269.2002;330;0.284127429 551964.3105;7820776.828;-10552;330;0.435126264 550876.8105;7817304.379;-10263.5;330;0.194925352 550501.8105;7818149.027;-10344.90039;330;0.422666795 552439.3105;7817492.078;-9803.450195;330;0.881202489 550189.3105;7821490.09;-10488.90039;330;0.695382679 550314.3105;7821189.77;-10502;330;0.316572261 552101.8105;7821771.641;-10057.5;330;0.29995694 550251.8105;7821227.309;-10510.29981;330;0.480130321 550226.8105;7819444.16;-10043.90039;330;0.256397568 551401.8105;7819087.527;-10231.29981;330;0.153116504 551326.8105;7818843.52;-10376.7002;330;0.616056733 551964.3105;7817585.93;-10041.5;330;0.456313358 551376.8105;7817510.848;-10048.2002;330;0.259780011 551014.3105;7816891.438;-10267.40039;330;0.11531164 551626.8105;7816647.43;-10143.09961;330;0.208569428 550064.3105;7821752.867;-10464.2002;330;0.95267045 549101.8105;7819125.07;-10447.7002;330;0.64426524 550301.8105;7821508.859;-10516.79981;330;0.680531515 549276.8105;7820870.68;-10371.29981;330;0.123595177 551151.8105;7819913.41;-10361.7002;330;0.966372356 552151.8105;7817060.367;-9973.450195;330;0.980035301 552414.3105;7817736.09;-9938.570313;330;0.050796629 549964.3105;7820457.738;-9940.160156;330;0.993310827 552264.3105;7820307.578;-9963.530273;330;0.989852776 549976.8105;7820007.258;-9856.610352;330;0.053567695 549476.8105;7820101.109;-10407.29981;330;0.406045491 549576.8105;7819256.457;-10244.5;330;0.516835494 550401.8105;7821490.09;-10535.7002;330;0.146343574 550826.8105;7821583.941;-10570.5;330;0.120588032 550614.3105;7821227.309;-10532.2002;330;0.468077029 549451.8105;7818111.488;-10415.40039;330;0.857085181 548976.8105;7818693.359;-10467.5;330;0.505907546 552376.8105;7821339.93;-10276.5;330;0.229687191 548889.3105;7818224.109;-10405;330;0.308661337 549514.3105;7819969.719;-10411;330;0.424035968 550076.8105;7820119.879;-9681.44043;330;0.290045511 551151.8105;7821602.711;-10490.2002;330;0.693854269 551476.8105;7817792.398;-10109.09961;330;0.577954978 551951.8105;7816872.668;-10036.59961;330;0.493609535 550976.8105;7816928.98;-10266;330;0.669589007 551551.8105;7819688.168;-10412.29981;330;0.260914446 551489.3105;7816760.051;-10134.5;330;0.641360209 550514.3105;7818374.27;-10369.29981;330;0.649872356 552351.8105;7818543.199;-10034.79981;330;0.214180421 551026.8105;7817229.301;-10170.09961;330;0.228639454 549551.8105;7820908.219;-10416;330;0.662744391 549226.8105;7821677.789;-10360.2002;330;0.647883148 549764.3105;7820626.668;-10377.40039;330;0.82545942 550076.8105;7821790.41;-10465.90039;330;0.713400663 551214.3105;7820326.348;-10322.40039;330;0.694507981 548889.3105;7817379.461;-10017.59961;330;0.041485614 551014.3105;7816760.051;-10279.29981;330;0.666667635 551651.8105;7816741.277;-10146.7002;330;0.653980196 549951.8105;7821583.941;-10446;330;0.243634816 551114.3105;7820157.418;-10283.90039;330;0.379488094 551901.8105;7821246.078;-10522.79981;330;0.626241513 550914.3105;7821189.77;-10599.7002;330;0.839133392 551101.8105;7821377.469;-10545.59961;330;0.276307837 549189.3105;7818862.289;-10420.29981;330;0.396139306 550101.8105;7821339.93;-10487.79981;330;0.834842464 551126.8105;7816760.051;-10275.09961;330;0.63797009 550051.8105;7819312.77;-10204.59961;330;0.026540854 550289.3105;7820063.57;-9679.349609;330;0.979198384 551876.8105;7818205.34;-10052.79981;330;0.787774725 550076.8105;7821546.398;-10460.2002;330;0.308610472 551539.3105;7818993.68;-10259.79981;330;0.528904661 548951.8105;7818393.039;-10415.7002;330;0.510880568 551751.8105;7817698.547;-10098.29981;330;0.495407944 549114.3105;7817698.547;-10016.79981;330;0.616576614 550926.8105;7820964.531;-10481.2002;330;0.805655286 551051.8105;7819218.918;-10258.5;330;0.936189991 551389.3105;7819444.16;-10435.5;330;0.984430353 549789.3105;7819838.328;-10242.09961;330;0.417567316 551339.3105;7821602.711;-10443.59961;330;0.152377155 551851.8105;7816666.199;-10129.09961;330;0.856721064 549889.3105;7819575.551;-10245.40039;330;0.407319808 551489.3105;7817454.539;-10062.5;330;0.232896967 551026.8105;7818805.98;-10340;330;0.920239253 550201.8105;7821396.238;-10500.2002;330;0.946109463 549626.8105;7819800.789;-10419.09961;330;0.850972073 548926.8105;7818055.18;-10414.7002;330;0.895426083 550114.3105;7820964.531;-10416.09961;330;0.036528367 552351.8105;7821677.789;-10206.79981;330;0.680547729 550139.3105;7821433.781;-10484.5;330;0.532651394 551901.8105;7818317.957;-10014.90039;330;0.580100985 549776.8105;7817191.758;-10278.7002;330;0.783968556 552151.8105;7816947.75;-9987.530273;330;0.481526202 551114.3105;7819125.07;-10362.09961;330;0.692008773 551851.8105;7817548.387;-10073.59961;330;0.127771375 552051.8105;7817154.219;-10016.7002;330;0.582505097 551789.3105;7817248.07;-10050.79981;330;0.260815997 549689.3105;7817867.48;-10357.40039;330;0.605795569 552114.3105;7817961.328;-10066.2002;330;0.564860768 550726.8105;7821339.93;-10586.7002;330;0.336509631 551776.8105;7821077.148;-10500.29981;330;0.19742877 551839.3105;7821020.84;-10529.79981;330;0.01695791 550351.8105;7821396.238;-10526.7002;330;0.404339243 550001.8105;7816966.52;-10023;330;0.956993162 551126.8105;7817341.918;-10160.2002;330;0.371004411 551764.3105;7820213.73;-9664.620117;330;0.780061236 550414.3105;7817792.398;-10302.7002;330;0.002930789 552039.3105;7816985.289;-10029.09961;330;0.914416599 552089.3105;7820758.059;-10515.29981;330;0.828695899 551401.8105;7819594.32;-10460.59961;330;0.892869636 550426.8105;7820814.371;-9884.900391;330;0.690659774 551001.8105;7821020.84;-10555.59961;330;0.300114067 550076.8105;7817623.469;-10357.7002;330;0.877102014 551276.8105;7819669.398;-10408;330;0.645601407 551701.8105;7821734.102;-10119.5;330;0.745292393 549851.8105;7817905.02;-10402.09961;330;0.642903035 549089.3105;7818055.18;-10451.29981;330;0.92008954 550164.3105;7818055.18;-10408.2002;330;0.143890525 551476.8105;7819894.641;-10322.29981;330;0.201112048 549126.8105;7818843.52;-10447.40039;330;0.615877399 550151.8105;7821283.617;-10504.29981;330;0.759332034 550289.3105;7816666.199;-10365.29981;330;0.021854625 551601.8105;7817510.848;-10071.90039;330;0.038036235 551201.8105;7821358.699;-10488.79981;330;0.356851239 550614.3105;7821246.078;-10546.7002;330;0.628111353 550389.3105;7820532.82;-9721.519531;330;0.592842808 550976.8105;7821790.41;-10550.40039;330;0.539340572 552051.8105;7820983.297;-10560.90039;330;0.986370588 549064.3105;7818843.52;-10462.7002;330;0.458689467 551264.3105;7821020.84;-10495.5;330;0.490146151 551489.3105;7820101.109;-10237.2002;330;0.443965274 552089.3105;7817060.367;-10008.40039;330;0.419545584 551039.3105;7817022.828;-10226.7002;330;0.173159521 549701.8105;7821095.918;-10424.29981;330;0.257777708 551326.8105;7821152.23;-10490.90039;330;0.521464829 549739.3105;7819444.16;-10172.7002;330;0.931510257 552289.3105;7817229.301;-9831.179688;330;0.266387656 550764.3105;7821715.328;-10560.40039;330;0.639120191 550914.3105;7817961.328;-10179.79981;330;0.852041978 550176.8105;7819387.852;-10081.09961;330;0.799193765 552164.3105;7816835.129;-9992.230469;330;0.407904125 550339.3105;7821114.691;-10462;330;0.587957503 549789.3105;7817792.398;-10367.79981;330;0.32517409 551089.3105;7821846.719;-10532.29981;330;0.129918781 550801.8105;7819857.098;-10075.40039;330;0.092178609 550614.3105;7820701.75;-9781.540039;330;0.541769295 550514.3105;7817473.309;-10279.09961;330;0.615484635 551726.8105;7817210.527;-10069.79981;330;0.038795909 551889.3105;7821002.07;-10545.79981;330;0.618873093 550126.8105;7821659.02;-10468.79981;330;0.289014663 549089.3105;7817717.32;-10070;330;0.758401837 549689.3105;7818693.359;-9736.339844;330;0.98580969 550926.8105;7821771.641;-10563.40039;330;0.182213565 548901.8105;7817435.77;-10014.09961;330;0.723118009 551789.3105;7819369.078;-10252.40039;330;0.745365176 550864.3105;7819500.469;-10038.59961;330;0.884733431 551689.3105;7820044.801;-9804.769531;330;0.997106019 551464.3105;7817191.758;-10113.09961;330;0.336419662 549176.8105;7817567.16;-9761.830078;330;0.158346924 551664.3105;7817454.539;-10060.90039;330;0.548616864 552289.3105;7820795.598;-10505.2002;330;0.901782759 551576.8105;7820983.297;-10463.79981;330;0.396728695 550189.3105;7819613.09;-10183.90039;330;0.315564885 550389.3105;7818486.891;-10336.40039;330;0.459552356 550189.3105;7817492.078;-10323.7002;330;0.119538064 549726.8105;7817717.32;-10313;330;0.119670184 551889.3105;7820119.879;-9552.120117;330;0.242948054 549314.3105;7821095.918;-10361.29981;330;0.279414994 552289.3105;7818355.5;-10039.5;330;0.983240001 549564.3105;7820476.508;-10425.5;330;0.026778954 551826.8105;7818618.281;-10036.2002;330;0.872465955 551614.3105;7818768.438;-10306.59961;330;0.094493828 551326.8105;7818974.91;-10302;330;0.928418342 551164.3105;7821302.391;-10518.7002;330;0.792230638 551276.8105;7820270.039;-10360.29981;330;0.694334272 550864.3105;7819012.449;-10071.40039;330;0.474984825 551339.3105;7817097.91;-10111;330;0.826228955 551439.3105;7821189.77;-10454.2002;330;0.313208828 551151.8105;7819838.328;-10380;330;0.504379561 549339.3105;7817435.77;-9591.799805;330;0.628735021 550401.8105;7821809.18;-10520.40039;330;0.33824986 550201.8105;7821264.848;-10510.90039;330;0.751483659 549964.3105;7817867.48;-10403.40039;330;0.189220703 552039.3105;7817679.777;-10052.79981;330;0.905315759 552314.3105;7820532.82;-10261.5;330;0.966590793 549914.3105;7821264.848;-10470.79981;330;0.170976362 549739.3105;7819500.469;-10208.29981;330;0.948553833 552264.3105;7816760.051;-9914.25;330;0.287620414 551539.3105;7817210.527;-10092.59961;330;0.474081178 549876.8105;7821809.18;-10435.40039;330;0.258962027 551026.8105;7817454.539;-10220.40039;330;0.340781677 549551.8105;7819688.168;-10462.79981;330;0.715498412 551539.3105;7821058.379;-10438.29981;330;0.447334313 549501.8105;7818524.43;-9984.540039;330;0.070754344 551401.8105;7819725.711;-10461.2002;330;0.377893859 551864.3105;7819143.84;-10247.40039;330;0.968261094 551601.8105;7817229.301;-10077.59961;330;0.205573118 551226.8105;7820476.508;-10342.59961;330;0.299682455 551514.3105;7819988.488;-10236.09961;330;0.850184599 551101.8105;7819575.551;-10418.59961;330;0.964481082 549901.8105;7817998.871;-10417.29981;330;0.580529796 550251.8105;7816797.59;-9974.639648;330;0.886090636 551739.3105;7819218.918;-10270.29981;330;0.754815472 551276.8105;7821677.789;-10432.29981;330;0.806465162 550614.3105;7821602.711;-10567.79981;330;0.552881467 551964.3105;7817229.301;-10040.29981;330;0.229735197 550814.3105;7818317.957;-10367.40039;330;0.821456155 551051.8105;7821339.93;-10577;330;0.191707244 550451.8105;7821264.848;-10527;330;0.113902598 551564.3105;7817679.777;-10102.09961;330;0.416101159 549139.3105;7818674.59;-10419.59961;330;0.119414545 549839.3105;7817510.848;-10310.40039;330;0.307872611 550839.3105;7818224.109;-10330.59961;330;0.869998484 550951.8105;7820007.258;-10208;330;0.050883524 551214.3105;7821677.789;-10466.90039;330;0.329106911 552139.3105;7817623.469;-10041.09961;330;0.906163264 551151.8105;7821583.941;-10488.90039;330;0.473182402 551476.8105;7820589.129;-10463.5;330;0.935808818 551776.8105;7817097.91;-10054.29981;330;0.976562748 550339.3105;7817642.238;-10338;330;0.220259074 551626.8105;7821133.457;-10457.29981;330;0.553265996 551314.3105;7817398.227;-10082.29981;330;0.336634984 552239.3105;7819988.488;-9985.580078;330;0.348772673 551439.3105;7817510.848;-10055.40039;330;0.521500842 550464.3105;7820514.051;-9721.75;330;0.061860724 550501.8105;7818055.18;-10307.2002;330;0.125835984 548889.3105;7819444.16;-10401;330;0.601921369 550126.8105;7821058.379;-10474;330;0.169110547 551264.3105;7821302.391;-10483.59961;330;0.757629725 550601.8105;7816947.75;-10268.29981;330;0.009892875 550226.8105;7820345.121;-9641.160156;330;0.845385645 551889.3105;7817360.688;-10058.90039;330;0.297876028 551051.8105;7821114.691;-10577.29981;330;0.472751455 549101.8105;7818712.129;-10440.59961;330;0.128784781 549789.3105;7818430.578;-10128.59961;330;0.439047962 551926.8105;7817773.629;-10050;330;0.596396846 550189.3105;7821602.711;-10484.09961;330;0.14536564 551939.3105;7819744.48;-10134.59961;330;0.531364683 549251.8105;7821133.457;-10351.40039;330;0.928000392 551714.3105;7821189.77;-10483.7002;330;0.367867071 550676.8105;7817642.238;-10165.90039;330;0.35787375 551014.3105;7820645.438;-10342.40039;330;0.671666261 551664.3105;7817266.84;-10059;330;0.929214798 551926.8105;7817698.547;-10054.40039;330;0.660364508 550689.3105;7819688.168;-10075.90039;330;0.087123511 551739.3105;7819162.609;-10271.40039;330;0.120354875 549876.8105;7821490.09;-10440.40039;330;0.530284001 550964.3105;7820851.91;-10439.29981;330;0.468438498 551276.8105;7820345.121;-10357.29981;330;0.362394523 551301.8105;7819087.527;-10326.40039;330;0.599616516 549576.8105;7821715.328;-10388;330;0.527671981 549851.8105;7817585.93;-10331;330;0.663472826 551851.8105;7817698.547;-10071.90039;330;0.881313932 550126.8105;7821715.328;-10472.7002;330;0.771606852 551676.8105;7819462.93;-10358.2002;330;0.235298228 549501.8105;7821734.102;-10373.79981;330;0.963246385 550064.3105;7817942.559;-10408.90039;330;0.048572998 549451.8105;7817435.77;-9691.360352;330;0.740676592 550389.3105;7819857.098;-9961.459961;330;0.152238501 549939.3105;7819594.32;-10259.40039;330;0.173696349 551151.8105;7821020.84;-10527.40039;330;0.874829305 551839.3105;7817492.078;-10059.7002;330;0.931620786 551326.8105;7821189.77;-10486.59961;330;0.393235206 549839.3105;7820251.27;-10023.29981;330;0.515059785 551476.8105;7819425.391;-10439.59961;330;0.926259734 549626.8105;7821433.781;-10393.29981;330;0.555044056 550814.3105;7817980.098;-10129.5;330;0.210306568 551414.3105;7816891.438;-10121.90039;330;0.664280881 550314.3105;7821264.848;-10517.7002;330;0.316458769 550801.8105;7816703.738;-10292;330;0.062073248 549689.3105;7817379.461;-10121.40039;330;0.847724647 550726.8105;7821171;-10515.09961;330;0.641021537 549801.8105;7821227.309;-10438.59961;330;0.522085155 552114.3105;7817435.77;-10015.7002;330;0.534570881 551776.8105;7817079.141;-10053.90039;330;0.885176326 551651.8105;7821490.09;-10405.29981;330;0.538003729 551039.3105;7820795.598;-10456.79981;330;0.642298703 549726.8105;7819688.168;-10398;330;0.017834465 549489.3105;7821133.457;-10387.7002;330;0.332751147 550001.8105;7820401.43;-9851.280273;330;0.469457175 551089.3105;7819913.41;-10339.40039;330;0.03391842 550501.8105;7817848.711;-10232.7002;330;0.825089849 552239.3105;7818149.027;-10062.40039;330;0.612814946 549739.3105;7821039.609;-10433.40039;330;0.323510628 550089.3105;7821471.32;-10484.5;330;0.955287311 551676.8105;7820401.43;-9932.990234;330;0.416070774 549926.8105;7819312.77;-10194.59961;330;0.04058988 549039.3105;7818524.43;-10418.40039;330;0.092495956 552101.8105;7817792.398;-10056.29981;330;0.470612498 549101.8105;7818205.34;-10452.5;330;0.697734809 551089.3105;7819106.301;-10349;330;0.489475106 550489.3105;7818824.75;-10187.2002;330;0.995359911 550014.3105;7821546.398;-10454.2002;330;0.215410648 550514.3105;7816684.969;-10356.2002;330;0.345124196 551264.3105;7821208.539;-10497.90039;330;0.736479886 550889.3105;7817135.449;-10251.59961;330;0.651241539 550189.3105;7821640.25;-10485.09961;330;0.980806236 552201.8105;7817623.469;-10023;330;0.079774437 552239.3105;7819782.02;-10117;330;0.990309452 552076.8105;7817266.84;-10017.40039;330;0.023839406 551301.8105;7817754.859;-10178.29981;330;0.428438739 551089.3105;7820495.281;-10292;330;0.750839723 550926.8105;7819669.398;-10303.40039;330;0.507827896 551589.3105;7817097.91;-10122.79981;330;0.006107878 552389.3105;7820776.828;-10461.7002;330;0.589783348 551464.3105;7820363.887;-10330.29981;330;0.195304631 551389.3105;7816760.051;-10132;330;0.89707446 552451.8105;7817116.68;-9589.919922;330;0.966793674 551926.8105;7818374.27;-10008.40039;330;0.44707331 549751.8105;7819594.32;-10278.59961;330;0.882401838 550439.3105;7821321.16;-10544.79981;330;0.191180429 549714.3105;7819650.629;-10365;330;0.278031446 551576.8105;7816872.668;-10136;330;0.575337051 551826.8105;7821677.789;-10158;330;0.955059992 551701.8105;7819556.777;-10380.7002;330;0.390835449 550101.8105;7818543.199;-10363.29981;330;0.080405716 549576.8105;7818768.438;-9836.480469;330;0.23810108 551964.3105;7821246.078;-10526.7002;330;0.874057282 551864.3105;7819782.02;-10115.2002;330;0.594576506 551839.3105;7816816.359;-10098.5;330;0.219309838 551389.3105;7817229.301;-10109.5;330;0.813461697 549914.3105;7821546.398;-10440.7002;330;0.703532329 552064.3105;7817848.711;-10062.40039;330;0.812345996 551276.8105;7817905.02;-10311.40039;330;0.549520559 551201.8105;7821508.859;-10470.2002;330;0.134503611 549989.3105;7818411.809;-10333.7002;330;0.707044952 551926.8105;7819500.469;-10247.40039;330;0.889416619 550376.8105;7821171;-10490.40039;330;0.318298245 549776.8105;7819575.551;-10252;330;0.824083657 551864.3105;7821396.238;-10465.7002;330;0.596749926 548964.3105;7819049.988;-10440.29981;330;0.76992309 551201.8105;7817848.711;-10313.09961;330;0.627377839 549001.8105;7817417;-9826.25;330;0.26271441 552026.8105;7818468.117;-10005.2002;330;0.825264685 551839.3105;7816741.277;-10131.79981;330;0.79570077 550251.8105;7821565.168;-10502.90039;330;0.059706222 550439.3105;7817191.758;-10120.7002;330;0.486911255 550026.8105;7817848.711;-10398.90039;330;0.326217043 552251.8105;7820382.66;-9993.650391;330;0.434601492 549476.8105;7819594.32;-10447.09961;330;0.733937316 549864.3105;7821546.398;-10431.79981;330;0.414616098 551489.3105;7821227.309;-10426.5;330;0.778031209 548951.8105;7817398.227;-9918.19043;330;0.410663785 551664.3105;7821321.16;-10467.40039;330;0.014768423 550926.8105;7819725.711;-10273.2002;330;0.871933579 551826.8105;7817285.609;-10053.40039;330;0.126791565 550801.8105;7820251.27;-9869.799805;330;0.642897358 551689.3105;7817698.547;-10106.90039;330;0.148436639 549576.8105;7817417;-9879.339844;330;0.742900027 552276.8105;7817529.617;-9962.44043;330;0.17685194 549489.3105;7818205.34;-10371.90039;330;0.566615514 551776.8105;7817548.387;-10081.90039;330;0.884045954 551176.8105;7820251.27;-10307.29981;330;0.95384906 550989.3105;7820701.75;-10359.79981;330;0.286870776 550739.3105;7817998.871;-10149.59961;330;0.304678233 550126.8105;7821565.168;-10468.7002;330;0.070831699 551714.3105;7821433.781;-10439.09961;330;0.075690764 550251.8105;7820438.969;-9667.530273;330;0.832703398 551089.3105;7817266.84;-10154.59961;330;0.822112666 551764.3105;7817829.938;-10078.59961;330;0.303842855 551964.3105;7817041.598;-10033.09961;330;0.902860192 551101.8105;7820363.887;-10270.7002;330;0.019772288 551101.8105;7819481.699;-10375.7002;330;0.716363056 549501.8105;7817435.77;-9752.94043;330;0.741174194 551564.3105;7816684.969;-10138.5;330;0.550156042 549726.8105;7820945.758;-10435.59961;330;0.052422144 552151.8105;7817792.398;-10050.2002;330;0.001382539 549189.3105;7818824.75;-10408.79981;330;0.168953389 551764.3105;7818768.438;-10244.59961;330;0.593650301 550864.3105;7821790.41;-10569.7002;330;0.144208009 550601.8105;7817942.559;-10189.7002;330;0.882426648 550026.8105;7821152.23;-10482.09961;330;0.994907612 550876.8105;7817229.301;-10248.29981;330;0.803630585 551614.3105;7817548.387;-10086.29981;330;0.864121889 551839.3105;7816947.75;-10039.90039;330;0.902548718 552326.8105;7821039.609;-10484.59961;330;0.723933389 551164.3105;7817041.598;-10197.7002;330;0.017995148 551276.8105;7821602.711;-10448.2002;330;0.316819624 549951.8105;7820570.359;-10132.79981;330;0.440304131 551889.3105;7821396.238;-10467.29981;330;0.293014902 550101.8105;7820307.578;-9722.099609;330;0.254216166 549864.3105;7816985.289;-10200.40039;330;0.990656661 550064.3105;7817492.078;-10323.7002;330;0.658005176 550451.8105;7817679.777;-10291.29981;330;0.665876286 551964.3105;7819669.398;-10216.59961;330;0.377126115 549814.3105;7817135.449;-10280;330;0.178955732 551201.8105;7821058.379;-10509.09961;330;0.493900217 552076.8105;7817304.379;-10022.29981;330;0.157129241 549601.8105;7818881.059;-9892.120117;330;0.725076048 551839.3105;7816872.668;-10068.2002;330;0.153580911 552376.8105;7816947.75;-9701.589844;330;0.967766809 551426.8105;7817341.918;-10107.90039;330;0.314550693 551664.3105;7817172.988;-10092.7002;330;0.235059859 552314.3105;7816703.738;-9876.709961;330;0.303124604 549451.8105;7819312.77;-10377.40039;330;0.87697227 551039.3105;7821809.18;-10544;330;0.808198083 551339.3105;7817191.758;-10110.59961;330;0.365509047 551764.3105;7821264.848;-10498.40039;330;0.617277576 551776.8105;7817004.059;-10070;330;0.675089895 549801.8105;7821039.609;-10447.40039;330;0.512298748 552214.3105;7816760.051;-9962.740234;330;0.651438606 550476.8105;7817510.848;-10309.09961;330;0.497037729 551776.8105;7817360.688;-10064.40039;330;0.34869303 550889.3105;7821321.16;-10633.7002;330;0.596376827 549989.3105;7821508.859;-10453.59961;330;0.486894056 552201.8105;7817661.008;-10028;330;0.836747567 550051.8105;7821339.93;-10477.5;330;0.05340045 551776.8105;7817022.828;-10055;330;0.271352472 552176.8105;7820833.141;-10558;330;0.831498918 551276.8105;7819819.559;-10410.29981;330;0.002732272 550851.8105;7821546.398;-10575.7002;330;0.946282049 550814.3105;7819725.711;-10168.29981;330;0.182642186 550314.3105;7821565.168;-10517.29981;330;0.146348146 550189.3105;7821752.867;-10487.5;330;0.581870266 550964.3105;7817492.078;-10231;330;0.460045961 550689.3105;7820814.371;-9960.549805;330;0.641740068 550014.3105;7821809.18;-10454.79981;330;0.090016654 550814.3105;7817585.93;-10198.90039;330;0.213552807 551039.3105;7820758.059;-10431.09961;330;0.145057343 550026.8105;7818655.82;-10270;330;0.045011372 549351.8105;7820926.988;-10377.5;330;0.42118594 552326.8105;7820739.289;-10470.79981;330;0.822488682 551139.3105;7821114.691;-10535.7002;330;0.970571408 549914.3105;7817867.48;-10401.40039;330;0.17857045 548951.8105;7819444.16;-10424.7002;330;0.329854331 550651.8105;7820795.598;-9879.259766;330;0.759555242 549501.8105;7817773.629;-10220.90039;330;0.679828403 552376.8105;7821827.949;-10110;330;0.067440794 551226.8105;7820514.051;-10352.09961;330;0.605564825 549489.3105;7820889.449;-10404.7002;330;0.136238883 549914.3105;7817754.859;-10392.7002;330;0.290570915 551626.8105;7818712.129;-10282;330;0.676302892 552301.8105;7821696.559;-10201.90039;330;0.873523923 551789.3105;7816891.438;-10090.29981;330;0.759174192 552164.3105;7816666.199;-10010.2002;330;0.636927341 550414.3105;7819988.488;-9706.929688;330;0.9786706 551039.3105;7820889.449;-10512.90039;330;0.746176113 551714.3105;7817867.48;-10089.40039;330;0.012839066 551926.8105;7819218.918;-10230.79981;330;0.260066744 550126.8105;7819218.918;-10138.09961;330;0.309814067 549226.8105;7818768.438;-10358;330;0.599162498 551026.8105;7819106.301;-10262.59961;330;0.840248205 551576.8105;7819218.918;-10290.5;330;0.467625681 552076.8105;7818205.34;-10044.09961;330;0.050471298 549289.3105;7818805.98;-10298.40039;330;0.683281936 551126.8105;7820570.359;-10325.79981;330;0.679634217 551651.8105;7819763.25;-10256.09961;330;0.856868225 550914.3105;7816684.969;-10290.59961;330;0.866533062 550376.8105;7817079.141;-9964.299805;330;0.080833444 552076.8105;7817360.688;-10028.2002;330;0.296600099 549951.8105;7821020.84;-10475.79981;330;0.576222864 551664.3105;7821621.48;-10349.90039;330;0.413496945 550601.8105;7820382.66;-9638.870117;330;0.14829197 550826.8105;7821396.238;-10628.09961;330;0.403399181 550364.3105;7821358.699;-10527.79981;330;0.594905415 548951.8105;7818937.367;-10448.2002;330;0.581009428 549339.3105;7821171;-10361.7002;330;0.346421857 550026.8105;7818956.141;-10329.79981;330;0.698981083 550201.8105;7819950.949;-9808.280273;330;0.541965908 552439.3105;7817022.828;-9611.660156;330;0.894762171 549089.3105;7817961.328;-10426.59961;330;0.928648031 549901.8105;7820645.438;-10254.59961;330;0.76405099 550039.3105;7818374.27;-10372.90039;330;0.724396471 551076.8105;7820664.211;-10375.7002;330;0.142194507 550139.3105;7816872.668;-9960.049805;330;0.818493781 548889.3105;7818693.359;-10448.2002;330;0.693580501 549639.3105;7821039.609;-10417.5;330;0.64914891 552164.3105;7817510.848;-10010.5;330;0.145939299 550076.8105;7821846.719;-10464.29981;330;0.352070877 549251.8105;7821077.148;-10355.09961;330;0.468445461 550839.3105;7818073.949;-10233.5;330;0.487451124 552426.8105;7816947.75;-9632.870117;330;0.026859408 549964.3105;7818937.367;-10291;330;0.612138445 549676.8105;7818111.488;-10378.79981;330;0.053541768 551189.3105;7821734.102;-10478.7002;330;0.97501064 551989.3105;7817754.859;-10052.5;330;0.077109003 549951.8105;7821677.789;-10445.90039;330;0.032724756 549951.8105;7820908.219;-10447.79981;330;0.852157916 551314.3105;7817435.77;-10067;330;0.366594732 552214.3105;7817379.461;-9950.419922;330;0.591133165 549864.3105;7817679.777;-10366.90039;330;0.957940304 551326.8105;7820401.43;-10387.2002;330;0.014904279 550076.8105;7820570.359;-9890.820313;330;0.380703492 550164.3105;7821396.238;-10494;330;0.324726393 551589.3105;7819519.238;-10459.90039;330;0.925481083 550789.3105;7818149.027;-10288.40039;330;0.714927511 551651.8105;7817811.168;-10091.79981;330;0.534609363 550414.3105;7821677.789;-10539.90039;330;0.988370822 551876.8105;7819556.777;-10244.2002;330;0.614177862 550076.8105;7817905.02;-10402.7002;330;0.63638791 551539.3105;7820664.211;-10517.29981;330;0.404586306 552226.8105;7817210.527;-9897.870117;330;0.29948527 551776.8105;7820044.801;-9660.580078;330;0.613783984 549039.3105;7818317.957;-10426.2002;330;0.255897569 549739.3105;7819200.148;-10187.59961;330;0.248289824 549464.3105;7819669.398;-10467.59961;330;0.213694768 550751.8105;7820288.809;-9776.290039;330;0.542662539 551926.8105;7817661.008;-10056.7002;330;0.243423492 551826.8105;7817360.688;-10063.90039;330;0.021622737 551401.8105;7820438.969;-10396.2002;330;0.760499357 549151.8105;7817829.938;-10210.90039;330;0.49990553 549876.8105;7818768.438;-9911.910156;330;0.21326296 551714.3105;7817323.148;-10057.40039;330;0.453154318 551376.8105;7821114.691;-10487.09961;330;0.41778351 549501.8105;7819312.77;-10346.2002;330;0.885713215 550339.3105;7818111.488;-10378;330;0.17521927 549751.8105;7820833.141;-10438.2002;330;0.752883143 549226.8105;7818299.188;-10463.79981;330;0.936138226 552076.8105;7816666.199;-10032.79981;330;0.967307878 549414.3105;7817529.617;-9711.5;330;0.347113295 551501.8105;7817548.387;-10074.59961;330;0.252261824 549601.8105;7819688.168;-10462.59961;330;0.853816259 551651.8105;7817417;-10057.5;330;0.609226842 551914.3105;7817642.238;-10060.79981;330;0.808771809 551914.3105;7818205.34;-10044;330;0.071963372 548889.3105;7818730.898;-10445.90039;330;0.215564 551714.3105;7816853.898;-10142.59961;330;0.174956332 552151.8105;7816985.289;-9982.05957;330;0.122408134 551401.8105;7816985.289;-10116.29981;330;0.957745744 551501.8105;7819369.078;-10415.90039;330;0.630572775 549826.8105;7818862.289;-9894.360352;330;0.316499607 550426.8105;7821396.238;-10542.29981;330;0.710886728 552164.3105;7820964.531;-10555;330;0.994143685 552426.8105;7820270.039;-10174.2002;330;0.272199309 550951.8105;7820232.5;-10191;330;0.278684331 551214.3105;7819744.48;-10406.7002;330;0.703887988 550639.3105;7818787.207;-10267.40039;330;0.173603505 550389.3105;7817886.25;-10326;330;0.170816779 551839.3105;7817191.758;-10040.59961;330;0.046394573 551839.3105;7821227.309;-10516.79981;330;0.966280899 550251.8105;7821358.699;-10512.59961;330;0.577024054 549976.8105;7819462.93;-10227.29981;330;0.801699234 552014.3105;7817341.918;-10041.40039;330;0.292468933 552264.3105;7817435.77;-9935.950195;330;0.450593234 551576.8105;7817773.629;-10087.5;330;0.47714726 551501.8105;7818974.91;-10251.59961;330;0.945445323 550614.3105;7817341.918;-10253.5;330;0.476376325 551714.3105;7821058.379;-10485.09961;330;0.6816526 551714.3105;7817398.227;-10062.59961;330;0.712669408 549876.8105;7819969.719;-9988.240234;330;0.763887767 549714.3105;7818637.047;-9739.200195;330;0.773628732 551801.8105;7817604.699;-10085.7002;330;0.221670256 550114.3105;7819406.617;-10185.79981;330;0.661947133 551339.3105;7819706.938;-10437.09961;330;0.007822313 551114.3105;7820119.879;-10292;330;0.289396766 551476.8105;7819688.168;-10454.2002;330;0.103129852 552126.8105;7820026.027;-9796.75;330;0.73028974 552176.8105;7819875.867;-10038.09961;330;0.063814643 551789.3105;7819181.379;-10255.59961;330;0.218712085 551039.3105;7819744.48;-10373.40039;330;0.778332904 549339.3105;7817980.098;-10472;330;0.718606744 550901.8105;7817867.48;-10162.40039;330;0.808592352 551376.8105;7817360.688;-10090.90039;330;0.351281119 551189.3105;7819256.457;-10440.29981;330;0.257385672 550064.3105;7818280.418;-10405;330;0.355154796 550301.8105;7817736.09;-10352;330;0.65110727 551451.8105;7816797.59;-10130.5;330;0.489595548 550714.3105;7817172.988;-10236.40039;330;0.561759148 551501.8105;7816722.508;-10135.7002;330;0.627385861 551826.8105;7819800.789;-10085.59961;330;0.199240544 552189.3105;7818205.34;-10053.5;330;0.709863055 550851.8105;7817754.859;-10082.09961;330;0.254327037 551526.8105;7817097.91;-10119.40039;330;0.164454233 549951.8105;7819218.918;-10249.79981;330;0.812298154 549476.8105;7819988.488;-10414.7002;330;0.467556194 551901.8105;7816853.898;-10046.5;330;0.42591838 550739.3105;7817379.461;-10275.2002;330;0.235430187 550889.3105;7821246.078;-10617.5;330;0.927226658 549576.8105;7820514.051;-10422.90039;330;0.551312835 551001.8105;7819969.719;-10252.09961;330;0.754031721 550801.8105;7817435.77;-10270.5;330;0.599609721 551776.8105;7819950.949;-9756.679688;330;0.861861229 551839.3105;7817022.828;-10036.40039;330;0.472227095 548964.3105;7817642.238;-10010.7002;330;0.875766549 552389.3105;7821715.328;-10167.5;330;0.96809214 550376.8105;7821565.168;-10527.09961;330;0.039057991 550251.8105;7817116.68;-9889.669922;330;0.714904747 549876.8105;7820776.828;-10395.90039;330;0.910219071 549089.3105;7818637.047;-10435.7002;330;0.273749706 551864.3105;7817754.859;-10064.79981;330;0.940556491 549426.8105;7821208.539;-10373.7002;330;0.420058734 549464.3105;7818881.059;-10057.90039;330;0.98843763 551789.3105;7818468.117;-10037.79981;330;0.164826103 551101.8105;7820926.988;-10533.79981;330;0.820664363 551939.3105;7817829.938;-10049.09961;330;0.687116109 549689.3105;7821002.07;-10427.09961;330;0.274241308 549439.3105;7818336.73;-10401.29981;330;0.675620543 552364.3105;7820063.57;-10083.29981;330;0.644616635 550614.3105;7818280.418;-10373.59961;330;0.194129362 549439.3105;7819049.988;-10344.59961;330;0.031677413 549539.3105;7818693.359;-9857.799805;330;0.443703469 550051.8105;7817642.238;-10364.29981;330;0.99123895 551789.3105;7818393.039;-10045.40039;330;0.692400459 550826.8105;7818599.508;-10359.40039;330;0.090606508 551976.8105;7820044.801;-9626.219727;330;0.985771181 551139.3105;7817679.777;-10190.5;330;0.184227258 549839.3105;7817829.938;-10390.5;330;0.676817443 549901.8105;7819049.988;-10279.2002;330;0.476947188 551326.8105;7820382.66;-10384.09961;330;0.707060491 551826.8105;7817886.25;-10072;330;0.760318569 550139.3105;7817229.301;-10035;330;0.964886272 551089.3105;7817210.527;-10184.59961;330;0.799717849 551714.3105;7816891.438;-10136.09961;330;0.429090406 549939.3105;7819782.02;-10152.40039;330;0.84406601 551326.8105;7819744.48;-10432.09961;330;0.05112948 552264.3105;7820176.188;-9941.549805;330;0.758571942 549776.8105;7817304.379;-10278.7002;330;0.369968148 551226.8105;7820532.82;-10357.7002;330;0.406646183 551526.8105;7819406.617;-10407.2002;330;0.68673818 551264.3105;7821133.457;-10502;330;0.001875355 551464.3105;7817754.859;-10102.7002;330;0.338926311 549739.3105;7817867.48;-10371.79981;330;0.377170276 550114.3105;7817998.871;-10411.59961;330;0.758675211 552189.3105;7821264.848;-10456.2002;330;0.946488871 551551.8105;7819763.25;-10349.90039;330;0.423040262 551376.8105;7817398.227;-10074.5;330;0.309114679 551051.8105;7820551.59;-10311;330;0.921188729 551864.3105;7818092.719;-10063.2002;330;0.711547838 551314.3105;7819894.641;-10405.90039;330;0.843841189 550489.3105;7820270.039;-9611.089844;330;0.117729954 551389.3105;7817829.938;-10162.79981;330;0.571171373 550351.8105;7818862.289;-10128.79981;330;0.719145809 551151.8105;7821077.148;-10529.09961;330;0.487958174 549551.8105;7820870.68;-10419.5;330;0.73237716 552026.8105;7817548.387;-10038.90039;330;0.247527422 551626.8105;7817661.008;-10110.09961;330;0.162549448 551826.8105;7820964.531;-10548.90039;330;0.180026387 549901.8105;7818411.809;-10240.7002;330;0.504333155 551726.8105;7817510.848;-10074.7002;330;0.477420404 551464.3105;7819988.488;-10287.59961;330;0.024324557 550989.3105;7816872.668;-10270.59961;330;0.67356111 550664.3105;7817379.461;-10272;330;0.068516292 549889.3105;7817398.227;-10358.40039;330;0.676540781 549576.8105;7821020.84;-10408.90039;330;0.235651957 550414.3105;7816853.898;-10135;330;0.583980764 549676.8105;7820870.68;-10431.79981;330;0.094364053 549364.3105;7819068.758;-10405.5;330;0.802479987 551664.3105;7817248.07;-10062.90039;330;0.879999014 552451.8105;7816760.051;-9682.820313;330;0.022005463 551601.8105;7817341.918;-10066.40039;330;0.271915246 550001.8105;7818336.73;-10376.90039;330;0.969414321 550101.8105;7821377.469;-10483.79981;330;0.505523168 551539.3105;7817266.84;-10093.90039;330;0.282756979 551901.8105;7817097.91;-10033;330;0.458203493 552114.3105;7820889.449;-10578.09961;330;0.689712967 548901.8105;7819613.09;-10419;330;0.96882966 549889.3105;7821752.867;-10438.2002;330;0.862333219 551726.8105;7818561.969;-10147.5;330;0.121472573 550764.3105;7817623.469;-10162.79981;330;0.098862589 550239.3105;7817961.328;-10390.2002;330;0.364647972 551026.8105;7817248.07;-10168.79981;330;0.985443677 550351.8105;7821809.18;-10519.09961;330;0.725228426 551664.3105;7820851.91;-10550.29981;330;0.64211482 551714.3105;7817004.059;-10084.09961;330;0.106831539 552039.3105;7820833.141;-10578.40039;330;0.636743833 549676.8105;7819669.398;-10414.7002;330;0.672367896 551214.3105;7819838.328;-10393.40039;330;0.499084184 551314.3105;7819406.617;-10438.29981;330;0.219472539 551864.3105;7817642.238;-10071.7002;330;0.994938562 551601.8105;7821527.629;-10376.90039;330;0.555099618 552214.3105;7817717.32;-10030.5;330;0.602281621 551201.8105;7819538.008;-10453.90039;330;0.708098016 551314.3105;7817379.461;-10089.59961;330;0.345765068 551251.8105;7819594.32;-10424.7002;330;0.808155345 550514.3105;7816835.129;-10272;330;0.951460322 551951.8105;7816816.359;-10034.40039;330;0.296754997 551089.3105;7819613.09;-10411.7002;330;0.459602696 549751.8105;7821095.918;-10431.2002;330;0.363436517 550989.3105;7820157.418;-10240.5;330;0.65624563 552314.3105;7817060.367;-9784.990234;330;0.030814915 549339.3105;7818092.719;-10480.2002;330;0.443191707 549789.3105;7817942.559;-10397.29981;330;0.128538258 549864.3105;7821246.078;-10460.7002;330;0.111647842 551439.3105;7817360.688;-10099.59961;330;0.192101657 550876.8105;7819857.098;-10150.40039;330;0.555646886 550789.3105;7821227.309;-10575.79981;330;0.683216504 552201.8105;7821152.23;-10515;330;0.3542157 550201.8105;7820438.969;-9681.419922;330;0.870154067 551339.3105;7817135.449;-10110.40039;330;0.204646832 549339.3105;7818505.66;-10255.09961;330;0.658884353 551664.3105;7817473.309;-10063.2002;330;0.348801842 550426.8105;7817548.387;-10309.29981;330;0.600865947 549989.3105;7819125.07;-10300.40039;330;0.811158982 550414.3105;7820570.359;-9720.969727;330;0.747996358 550126.8105;7817454.539;-10289.59961;330;0.47648312 549826.8105;7816947.75;-10218;330;0.547683654 549901.8105;7821621.48;-10435.40039;330;0.605359235 551201.8105;7821171;-10513.90039;330;0.051499106 552451.8105;7818599.508;-10041.79981;330;0.596981325 550389.3105;7817923.789;-10332;330;0.949086751 552226.8105;7821621.48;-10274.40039;330;0.817707561 549364.3105;7819312.77;-10428.29981;330;0.306875176 549301.8105;7821339.93;-10352.7002;330;0.963966953 552439.3105;7817360.688;-9704.519531;330;0.137935016 551926.8105;7819181.379;-10223.09961;330;0.489377257 550064.3105;7821696.559;-10461.09961;330;0.846106203 549526.8105;7819894.641;-10436.5;330;0.633823069 551639.3105;7817754.859;-10092.09961;330;0.651063643 549401.8105;7818280.418;-10424.40039;330;0.412520138 549739.3105;7821133.457;-10427.59961;330;0.993063811 551101.8105;7820307.578;-10268.59961;330;0.404211515 551276.8105;7821640.25;-10440.59961;330;0.183522383 551339.3105;7820288.809;-10375.40039;330;0.381047135 551901.8105;7817135.449;-10037;330;0.866999528 552326.8105;7818149.027;-10065.2002;330;0.321790233 552189.3105;7816891.438;-9966.459961;330;0.476418472 552114.3105;7819969.719;-9847.339844;330;0.535165646 549489.3105;7818918.598;-10075.2002;330;0.87623619 551639.3105;7817060.367;-10123.09961;330;0.877474851 551139.3105;7820739.289;-10429.7002;330;0.840615583 552439.3105;7821114.691;-10400.29981;330;0.514992548 549076.8105;7818299.188;-10436.5;330;0.878536875 550051.8105;7820457.738;-9835.080078;330;0.399197769 552451.8105;7818486.891;-10046.90039;330;0.019065596 550126.8105;7817435.77;-10275.59961;330;0.172521556 550826.8105;7821433.781;-10619.59961;330;0.937289781 551214.3105;7820926.988;-10493.90039;330;0.508619519 551901.8105;7817060.367;-10030.7002;330;0.343312456 549489.3105;7817266.84;-9804.070313;330;0.42889645 549914.3105;7817792.398;-10396.79981;330;0.41520854 552226.8105;7818468.117;-10023.7002;330;0.762105487 549864.3105;7820026.027;-9952.290039;330;0.381311723 551264.3105;7819538.008;-10426.40039;330;0.204712912 550701.8105;7820758.059;-9909.589844;330;0.500004609 551764.3105;7819012.449;-10269.40039;330;0.464365046 552189.3105;7818468.117;-10019.29981;330;0.220644077 550039.3105;7817417;-10297.79981;330;0.786214478 549726.8105;7817773.629;-10335.79981;330;0.743240973 549689.3105;7817811.168;-10337.79981;330;0.344822025 551889.3105;7818805.98;-10075.09961;330;0.919698043 551464.3105;7817041.598;-10117.90039;330;0.350956902 551426.8105;7817285.609;-10110.79981;330;0.58190896 551964.3105;7816703.738;-10035.09961;330;0.352126053 550314.3105;7821396.238;-10520.59961;330;0.916309666 550039.3105;7821659.02;-10456.59961;330;0.418897601 551839.3105;7817004.059;-10055.90039;330;0.415271902 552401.8105;7821227.309;-10308.40039;330;0.812106898 549951.8105;7821377.469;-10463.79981;330;0.495191985 550351.8105;7821696.559;-10527.79981;330;0.585679107 551664.3105;7821246.078;-10474.29981;330;0.233954506 551201.8105;7821133.457;-10512.90039;330;0.437763195 548876.8105;7817454.539;-10043.2002;330;0.064424815 552376.8105;7821020.84;-10462.5;330;0.91503634 551801.8105;7818317.957;-10063.40039;330;0.552473336 552176.8105;7818599.508;-10007.90039;330;0.214643176 550226.8105;7817379.461;-10212.5;330;0.463543362 550014.3105;7821264.848;-10478.5;330;0.426940008 549164.3105;7818712.129;-10406.59961;330;0.908676202 550389.3105;7820589.129;-9723.969727;330;0.208915362 551476.8105;7819857.098;-10346.29981;330;0.606584782 549589.3105;7818599.508;-9829.719727;330;0.822998061 550476.8105;7817191.758;-10176.59961;330;0.460739389 551764.3105;7817285.609;-10055.5;330;0.204276995 550989.3105;7821058.379;-10566.29981;330;0.525824247 549539.3105;7821114.691;-10395.09961;330;0.660734643 551851.8105;7817942.559;-10068.5;330;0.753168194 550426.8105;7821827.949;-10521.90039;330;0.59862948 550851.8105;7819744.48;-10229.40039;330;0.376456748 549964.3105;7817923.789;-10410.29981;330;0.583499942 551376.8105;7819894.641;-10404.90039;330;0.911323934 552201.8105;7818242.879;-10046.5;330;0.361468049 552039.3105;7819969.719;-9764.730469;330;0.85385149 552126.8105;7817285.609;-9995.700195;330;0.829214431 551164.3105;7820889.449;-10502.29981;330;0.271482212 550039.3105;7817698.547;-10379;330;0.140226588 551176.8105;7819031.219;-10404.90039;330;0.376224535 550276.8105;7818130.258;-10391;330;0.760652672 551826.8105;7817811.168;-10070.5;330;0.536618181 551389.3105;7821227.309;-10479.79981;330;0.277261697 549051.8105;7818768.438;-10462.29981;330;0.488564287 550864.3105;7816853.898;-10277.2002;330;0.352101693 549039.3105;7818186.57;-10434.79981;330;0.955708409 552276.8105;7821583.941;-10266.90039;330;0.722205469 552276.8105;7818411.809;-10035.79981;330;0.905184612 551189.3105;7820814.371;-10470.40039;330;0.609925329 549976.8105;7817079.141;-10092;330;0.873088916 552451.8105;7818430.578;-10048;330;0.408726296 551001.8105;7818092.719;-10240.90039;330;0.974024566 550876.8105;7821640.25;-10563.2002;330;0.934563591 549476.8105;7820307.578;-10436.7002;330;0.99600751 551514.3105;7816816.359;-10134.40039;330;0.972176057 549801.8105;7820570.359;-10335.09961;330;0.575296868 549889.3105;7819650.629;-10283.7002;330;0.628100515 550351.8105;7819538.008;-10081.79981;330;0.51985209 549989.3105;7817473.309;-10333.5;330;0.480451139 550789.3105;7821189.77;-10553.59961;330;0.785230289 552339.3105;7820420.199;-10181.09961;330;0.223910786 551876.8105;7821321.16;-10499;330;0.74626155 551314.3105;7820495.281;-10378.2002;330;0.518956936 550076.8105;7820607.898;-9953.389648;330;0.764382425 552339.3105;7817116.68;-9754.450195;330;0.820989228 552189.3105;7816910.207;-9963.089844;330;0.779950655 551151.8105;7819594.32;-10448.79981;330;0.982712207 551351.8105;7816891.438;-10123.7002;330;0.098947107 550751.8105;7820701.75;-9927.139648;330;0.959441294 552401.8105;7818224.109;-10058.2002;330;0.022911776 552026.8105;7818130.258;-10051.40039;330;0.954125993 550414.3105;7821602.711;-10536.2002;330;0.947445405 549739.3105;7820532.82;-10342.90039;330;0.639039387 552039.3105;7819481.699;-10234.2002;330;0.869717631 552076.8105;7816928.98;-10022.40039;330;0.900747033 552151.8105;7817022.828;-9977.320313;330;0.40988135 550389.3105;7820044.801;-9668.55957;330;0.365996467 551601.8105;7819744.48;-10317.79981;330;0.621929236 551826.8105;7820983.297;-10540.29981;330;0.264451117 551601.8105;7821490.09;-10396.29981;330;0.12277795 550851.8105;7819875.867;-10121.40039;330;0.494229183 550814.3105;7820401.43;-9860.150391;330;0.481556176 551526.8105;7816985.289;-10127.59961;330;0.540775918 550926.8105;7821715.328;-10563.59961;330;0.438969237 549976.8105;7821264.848;-10475.90039;330;0.188505186 549726.8105;7820926.988;-10436;330;0.284392709 551376.8105;7821189.77;-10483.29981;330;0.589079242 549789.3105;7817905.02;-10392.29981;330;0.699257831 551514.3105;7816853.898;-10131.7002;330;0.04939319 550114.3105;7820607.898;-9898.959961;330;0.576363477 551526.8105;7817004.059;-10119.40039;330;0.176056805 548914.3105;7819725.711;-10417.29981;330;0.437354145 549039.3105;7819125.07;-10440.2002;330;0.216360086 551339.3105;7817041.598;-10113;330;0.872703151 550301.8105;7821771.641;-10510.90039;330;0.070550815 552276.8105;7821358.699;-10303.90039;330;0.010533603 550751.8105;7820551.59;-9797.389648;330;0.256799671 552064.3105;7816741.277;-10026.40039;330;0.875630244 550951.8105;7820101.109;-10207.40039;330;0.690964505 551164.3105;7821734.102;-10494.5;330;0.574666005 552001.8105;7821264.848;-10522.09961;330;0.819513814 552226.8105;7821546.398;-10311.29981;330;0.144460553 551089.3105;7820438.969;-10277.40039;330;0.858806876 550726.8105;7820232.5;-9750.709961;330;0.092607694 551901.8105;7816684.969;-10079.29981;330;0.448224027 551101.8105;7820889.449;-10519.59961;330;0.653019367 550251.8105;7821246.078;-10512.7002;330;0.718087923 550426.8105;7821508.859;-10540.79981;330;0.595723767 552164.3105;7820908.219;-10565.29981;330;0.796278686 548889.3105;7817360.688;-10019.5;330;0.802564273 551826.8105;7818205.34;-10080.79981;330;0.233122003 550301.8105;7821715.328;-10515.79981;330;0.254086575 551989.3105;7817792.398;-10052.7002;330;0.231561485 550201.8105;7821452.551;-10494.2002;330;0.673782033 552014.3105;7817004.059;-10035.09961;330;0.257478186 551001.8105;7820194.961;-10246.59961;330;0.113411292 551039.3105;7820926.988;-10530.90039;330;0.42233758 551201.8105;7821396.238;-10480.29981;330;0.748382763 549464.3105;7820270.039;-10436.29981;330;0.05579677 549689.3105;7821133.457;-10421.29981;330;0.91740498 551739.3105;7821734.102;-10094.40039;330;0.875194052 551839.3105;7816910.207;-10050.29981;330;0.792551147 549864.3105;7817773.629;-10387.09961;330;0.63129044 551726.8105;7817248.07;-10056.59961;330;0.794986526 550126.8105;7821696.559;-10471.40039;330;0.595012958 549851.8105;7817022.828;-10221.59961;330;0.079223365 551276.8105;7821565.168;-10455.2002;330;0.037890184 551489.3105;7817172.988;-10112.59961;330;0.022625954 551539.3105;7820983.297;-10452.59961;330;0.121106504 550364.3105;7818524.43;-10335;330;0.180058849 551589.3105;7817135.449;-10110.29981;330;0.074162722 549389.3105;7821002.07;-10375.29981;330;0.353021906 551914.3105;7820082.34;-9567.570313;330;0.177050493 549726.8105;7820964.531;-10435;330;0.343186261 548914.3105;7819688.168;-10418.59961;330;0.761879771 552239.3105;7818355.5;-10031.2002;330;0.174316906 551814.3105;7818655.82;-10071.09961;330;0.617469429 551664.3105;7818749.668;-10299.2002;330;0.832553275 552014.3105;7819462.93;-10241.7002;330;0.542169705 551151.8105;7821264.848;-10528.79981;330;0.854130504 552039.3105;7821377.469;-10478.09961;330;0.246823956 551151.8105;7819857.098;-10375.79981;330;0.97890959 549964.3105;7817829.938;-10400.40039;330;0.25083198 552026.8105;7817642.238;-10049.29981;330;0.786745945 552264.3105;7816816.359;-9906.30957;330;0.620878528 551901.8105;7817022.828;-10031.09961;330;0.906604679 551401.8105;7820532.82;-10418.79981;330;0.092349426 551539.3105;7817248.07;-10094.90039;330;0.202293008 550251.8105;7821602.711;-10503;330;0.345054768 551976.8105;7816797.59;-10031.90039;330;0.225544258 549451.8105;7818543.199;-10050.40039;330;0.624105283 551601.8105;7817191.758;-10089.2002;330;0.392344747 551226.8105;7820495.281;-10347;330;0.38005015 551814.3105;7819782.02;-10120.79981;330;0.652005524 549889.3105;7818036.41;-10419.09961;330;0.379561033 551964.3105;7817191.758;-10040.5;330;0.903920831 551839.3105;7816835.129;-10088.90039;330;0.837741746 550426.8105;7821246.078;-10518.79981;330;0.771105157 552314.3105;7821377.469;-10279.59961;330;0.653964158 551564.3105;7817642.238;-10104.5;330;0.071872564 549151.8105;7818637.047;-10412.09961;330;0.304651473 552401.8105;7818655.82;-10034.2002;330;0.982756739 552139.3105;7817661.008;-10044.79981;330;0.878472418 552114.3105;7821002.07;-10554.7002;330;0.497441945 551214.3105;7821583.941;-10469;330;0.550709871 549914.3105;7819631.859;-10274.79981;330;0.845120211 551776.8105;7817135.449;-10053.7002;330;0.338459678 551626.8105;7821152.23;-10457.5;330;0.914624763 551439.3105;7817548.387;-10067.59961;330;0.130208506 551651.8105;7821039.609;-10472.79981;330;0.842988318 550464.3105;7820532.82;-9721.330078;330;0.319323484 550501.8105;7818036.41;-10298.29981;330;0.139809689 551614.3105;7817154.219;-10103;330;0.180118378 548889.3105;7819481.699;-10419.79981;330;0.081779397 550139.3105;7821020.84;-10450.59961;330;0.74840002 550614.3105;7816910.207;-10296;330;0.485766768 551039.3105;7821077.148;-10572.7002;330;0.628518768 551139.3105;7819725.711;-10406.79981;330;0.862541002 550039.3105;7821471.32;-10461.59961;330;0.121179181 549801.8105;7818393.039;-10194.90039;330;0.12784874 551926.8105;7817736.09;-10052.09961;330;0.568464494 551889.3105;7817417;-10064.59961;330;0.016874025 551089.3105;7819950.949;-10329.5;330;0.344792382 549301.8105;7821133.457;-10357.7002;330;0.652252283 551664.3105;7817323.148;-10056.5;330;0.717939464 551276.8105;7818862.289;-10413.09961;330;0.983241682 550701.8105;7820551.59;-9735.740234;330;0.169869772 552189.3105;7817736.09;-10038.59961;330;0.818311231 549889.3105;7821452.551;-10447.29981;330;0.546546707 551439.3105;7819444.16;-10435.5;330;0.299893033 549576.8105;7821752.867;-10385.79981;330;0.974111263 550126.8105;7821771.641;-10474.40039;330;0.870002938 549526.8105;7821715.328;-10380.09961;330;0.590754186 550026.8105;7819800.789;-10084;330;0.942366856 551326.8105;7821227.309;-10481.90039;330;0.256442029 551401.8105;7816853.898;-10124.5;330;0.193877193 549664.3105;7817398.227;-10062.40039;330;0.420165967 550176.8105;7817923.789;-10394.90039;330;0.903635748 551464.3105;7816853.898;-10127.29981;330;0.56634283 550726.8105;7821227.309;-10553.29981;330;0.261730656 552064.3105;7816722.508;-10028.59961;330;0.053163873 550139.3105;7821527.629;-10474.90039;330;0.528729881 550001.8105;7820382.66;-9843.879883;330;0.697642373 550514.3105;7817886.25;-10228.90039;330;0.713369968 549751.8105;7821002.07;-10439.09961;330;0.186835478 551101.8105;7819049.988;-10384.79981;330;0.622489009 550014.3105;7821602.711;-10453.09961;330;0.276542952 551264.3105;7821227.309;-10495.09961;330;0.123972872 551464.3105;7820326.348;-10313.59961;330;0.497732869 549064.3105;7816666.199;-10512.5;330;0.226740406 552226.8105;7816666.199;-9966.719727;330;0.711005967 551401.8105;7816797.59;-10129;330;0.87231857 549726.8105;7820908.219;-10436.40039;330;0.329949244 551139.3105;7820645.438;-10371.40039;330;0.026713351 549901.8105;7821583.941;-10436.09961;330;0.826490884 551201.8105;7821527.629;-10470.59961;330;0.019192973 551239.3105;7820720.52;-10431.5;330;0.595195532 552151.8105;7816853.898;-9997.75;330;0.465519802 549014.3105;7817379.461;-9795.410156;330;0.568695992 551839.3105;7816778.816;-10118.90039;330;0.473297845 551214.3105;7819875.867;-10385.90039;330;0.878152248 549826.8105;7821527.629;-10426.79981;330;0.421803833 550914.3105;7819744.48;-10278.59961;330;0.58706244 551826.8105;7817304.379;-10055.7002;330;0.723388403 552264.3105;7820232.5;-9942.370117;330;0.787579028 551801.8105;7817529.617;-10074.79981;330;0.201066084 551626.8105;7821095.918;-10459.5;330;0.189962139 550189.3105;7821565.168;-10484.5;330;0.24419652 551601.8105;7817304.379;-10067.90039;330;0.253219867 551089.3105;7817304.379;-10155.7002;330;0.344637115 551964.3105;7817060.367;-10031;330;0.298267471 550964.3105;7820063.57;-10217.2002;330;0.922616665 552139.3105;7819875.867;-10014.2002;330;0.490528643 551764.3105;7818805.98;-10262.5;330;0.795269473 549689.3105;7820176.188;-10225;330;0.32103671 549239.3105;7821377.469;-10346.7002;330;0.566483196 549789.3105;7818881.059;-9881.759766;330;0.073191364 550764.3105;7821771.641;-10561.90039;330;0.235338624 549101.8105;7818242.879;-10449.29981;330;0.900545053 549939.3105;7820401.43;-9906.959961;330;0.057061667 549739.3105;7817323.148;-10225.79981;330;0.363036483 551989.3105;7817717.32;-10052.59961;330;0.096747734 551789.3105;7818730.898;-10178;330;0.305812121 550139.3105;7818805.98;-10411.2002;330;0.095554711 551939.3105;7821790.41;-9872.209961;330;0.069889443 552126.8105;7818336.73;-10027.90039;330;0.093931585 549451.8105;7821771.641;-10365.2002;330;0.231101468 549439.3105;7818618.281;-10014.79981;330;0.189244593 551989.3105;7818261.648;-10028.09961;330;0.362581083 550764.3105;7820401.43;-9778.269531;330;0.121487276 551289.3105;7819950.949;-10388.29981;330;0.720424208 552289.3105;7817154.219;-9826.099609;330;0.294117295 551714.3105;7816666.199;-10146.40039;330;0.754435704 550251.8105;7821471.32;-10505.59961;330;0.255462329 552326.8105;7821490.09;-10242.7002;330;0.331830101 551176.8105;7821471.32;-10473.2002;330;0.177017169 550064.3105;7818167.797;-10420.7002;330;0.27394967 551989.3105;7821339.93;-10496.59961;330;0.064463127 552301.8105;7821452.551;-10266.5;330;0.800982868 550714.3105;7821846.719;-10552.90039;330;0.62699017 549939.3105;7819068.758;-10301.59961;330;0.245874145 549089.3105;7817473.309;-9731.410156;330;0.551654417 551201.8105;7819950.949;-10364.29981;330;0.206972768 551964.3105;7817435.77;-10051.79981;330;0.927270603 550976.8105;7817698.547;-10185.09961;330;0.049546642 552026.8105;7821621.48;-10329.7002;330;0.439820581 549439.3105;7819725.711;-10480.59961;330;0.55206607 549814.3105;7820701.75;-10390;330;0.668390893 550689.3105;7820194.961;-9707.089844;330;0.477705139 549476.8105;7818655.82;-9947.549805;330;0.925450482 550926.8105;7817135.449;-10241.5;330;0.845002576 549739.3105;7819312.77;-10144.29981;330;0.153430276 549601.8105;7817341.918;-9930.740234;330;0.546587762 549551.8105;7820232.5;-10394.79981;330;0.174070715 551701.8105;7817811.168;-10087.29981;330;0.375594932 550514.3105;7817998.871;-10273.59961;330;0.989005138 551439.3105;7819819.559;-10404.29981;330;0.520765651 550214.3105;7817754.859;-10368.7002;330;0.182891336 550864.3105;7817961.328;-10132.59961;330;0.890795699 549976.8105;7816928.98;-10078;330;0.351792398 549651.8105;7818749.668;-9776.69043;330;0.811781097 551514.3105;7819575.551;-10492.90039;330;0.194793464 549601.8105;7817529.617;-9986.719727;330;0.182991754 551901.8105;7817510.848;-10068.2002;330;0.451096423 550214.3105;7821171;-10498.29981;330;0.495123518 550601.8105;7821565.168;-10570.29981;330;0.651766656 550101.8105;7817792.398;-10387.7002;330;0.553158573 551114.3105;7819650.629;-10422.79981;330;0.543747385 549639.3105;7821640.25;-10395.29981;330;0.831743063 549401.8105;7817998.871;-10448.29981;330;0.575121204 549726.8105;7817548.387;-10241.79981;330;0.682672425 551001.8105;7821621.48;-10537.09961;330;0.868893274 549839.3105;7821583.941;-10424.59961;330;0.692217316 551626.8105;7821377.469;-10445.7002;330;0.775541898 552101.8105;7817004.059;-10012.29981;330;0.774165059 550889.3105;7819387.852;-9958.94043;330;0.95986422 549626.8105;7821077.148;-10413.2002;330;0.608302773 550114.3105;7820119.879;-9652.860352;330;0.625707979 551326.8105;7820026.027;-10382.40039;330;0.217070971 549776.8105;7819462.93;-10180.5;330;0.757531383 550914.3105;7817905.02;-10161.59961;330;0.7290686 552326.8105;7816666.199;-9873.280273;330;0.248268361 551889.3105;7820945.758;-10574.09961;330;0.507952345 549101.8105;7817754.859;-10116.29981;330;0.91644196 551826.8105;7819369.078;-10238.7002;330;0.110596329 550826.8105;7819500.469;-9974.139648;330;0.549289499 551701.8105;7820063.57;-9761.009766;330;0.621528293 549151.8105;7817529.617;-9719.780273;330;0.440882209 552264.3105;7820814.371;-10520.7002;330;0.732718175 550239.3105;7819594.32;-10181;330;0.128866033 551851.8105;7820776.828;-10506.40039;330;0.930136623 551289.3105;7818974.91;-10342;330;0.569912293 551301.8105;7820251.27;-10378.2002;330;0.189869835 551426.8105;7821227.309;-10463.40039;330;0.972638518 549501.8105;7818149.027;-10371.09961;330;0.59387333 550189.3105;7821208.539;-10506.09961;330;0.797358056 550801.8105;7820307.578;-9854.839844;330;0.844382997 551676.8105;7817642.238;-10117.5;330;0.230774731 549751.8105;7819519.238;-10215.2002;330;0.054657915 549901.8105;7821827.949;-10439.29981;330;0.782401065 551001.8105;7817473.309;-10228.59961;330;0.439196711 551539.3105;7821039.609;-10440.7002;330;0.876673516 551251.8105;7817848.711;-10295.79981;330;0.691902789 551526.8105;7819932.18;-10247.09961;330;0.196041682 551726.8105;7819256.457;-10282.40039;330;0.011776373 550814.3105;7818261.648;-10345.40039;330;0.125940657 551101.8105;7821321.16;-10554;330;0.34014794 549864.3105;7817510.848;-10323.2002;330;0.380709289 550789.3105;7818242.879;-10342.29981;330;0.113513493 551226.8105;7821640.25;-10462.90039;330;0.646886038 550326.8105;7817679.777;-10343.59961;330;0.745522864 551289.3105;7817717.32;-10151.79981;330;0.493998793 552276.8105;7819988.488;-10025;330;0.466138936 551264.3105;7821283.617;-10486.29981;330;0.727989539 549426.8105;7819819.559;-10479.40039;330;0.481423507 549639.3105;7818055.18;-10371.59961;330;0.39094654 549464.3105;7817510.848;-9763.469727;330;0.316212021 550126.8105;7821621.48;-10466.79981;330;0.189659558 551976.8105;7819744.48;-10138.79981;330;0.287008805 551726.8105;7821171;-10485.79981;330;0.028023708 550664.3105;7817604.699;-10206.90039;330;0.40926323 549826.8105;7821246.078;-10448.29981;330;0.780668133 551764.3105;7819125.07;-10263.59961;330;0.205902924 550976.8105;7820870.68;-10463.40039;330;0.603056297 551251.8105;7820326.348;-10344;330;0.115676218 551276.8105;7819106.301;-10346.7002;330;0.595587266 549851.8105;7817548.387;-10316.2002;330;0.476419958 551876.8105;7817717.32;-10071.2002;330;0.225684824 551701.8105;7819462.93;-10331.59961;330;0.18853261 550051.8105;7817998.871;-10419;330;0.592214202 549951.8105;7819538.008;-10236.59961;330;0.170930212 551151.8105;7820983.297;-10524.5;330;0.803841893 551839.3105;7817454.539;-10071.59961;330;0.196181187 552076.8105;7817435.77;-10029.40039;330;0.198263553 551664.3105;7821546.398;-10378.09961;330;0.414924853 551589.3105;7820251.27;-10031.5;330;0.359530821 549501.8105;7821152.23;-10388.59961;330;0.167391547 552276.8105;7818149.027;-10064.09961;330;0.248259745 550714.3105;7819594.32;-10024.09961;330;0.959613983 551639.3105;7820363.887;-9963.019531;330;0.37159729 549076.8105;7818543.199;-10421.7002;330;0.098478516 549164.3105;7818205.34;-10464.90039;330;0.456484833 550501.8105;7818805.98;-10229.29981;330;0.760694906 550826.8105;7817135.449;-10255.29981;330;0.065671016 552439.3105;7817154.219;-9607.200195;330;0.13687021 551901.8105;7818393.039;-10007.59961;330;0.873968287 549714.3105;7819613.09;-10318.5;330;0.724055349 549601.8105;7818749.668;-9803.969727;330;0.710825339 552026.8105;7821246.078;-10526.90039;330;0.210313194 551889.3105;7819744.48;-10144;330;0.144488363 549964.3105;7818430.578;-10292.90039;330;0.497269639 551939.3105;7819538.008;-10256;330;0.508521167 549739.3105;7818524.43;-9922.25;330;0.806268118 552026.8105;7818449.348;-10007;330;0.014426336 550401.8105;7817191.758;-10085.29981;330;0.394506536 550014.3105;7817905.02;-10406.09961;330;0.176866527 552201.8105;7820401.43;-9952.679688;330;0.179054866 551476.8105;7821208.539;-10431.5;330;0.773797348 551676.8105;7821358.699;-10461.59961;330;0.792664298 549576.8105;7817454.539;-9892.459961;330;0.167732044 551014.3105;7820720.52;-10391;330;0.696133892 549301.8105;7818862.289;-10315.40039;330;0.16694601 550889.3105;7821095.918;-10541.29981;330;0.852091442 552389.3105;7820420.199;-10244.90039;330;0.736220465 551239.3105;7820626.668;-10395;330;0.010973512 551851.8105;7818543.199;-10005.5;330;0.62376138 552076.8105;7817717.32;-10052.59961;330;0.06904022 550214.3105;7817829.938;-10377.59961;330;0.657289851 549989.3105;7820851.91;-10377.2002;330;0.3741683 549701.8105;7819406.617;-10178.40039;330;0.377558926 551026.8105;7820345.121;-10259.5;330;0.444440184 549239.3105;7818111.488;-10474.59961;330;0.505065001 551989.3105;7819200.148;-10168.90039;330;0.739141242 549714.3105;7821208.539;-10420.59961;330;0.367030413 551289.3105;7821396.238;-10470.40039;330;0.427230856 550839.3105;7820870.68;-10303.7002;330;0.322954237 552239.3105;7817567.16;-9995.379883;330;0.657048327 548889.3105;7819913.41;-10409.90039;330;0.499915038 552376.8105;7817473.309;-9832.870117;330;0.213343538 552101.8105;7821696.559;-10218.29981;330;0.47361906 549576.8105;7820044.801;-10348;330;0.821996988 551176.8105;7821415.008;-10481.09961;330;0.451422015 550026.8105;7821208.539;-10481.09961;330;0.469528504 552314.3105;7816741.277;-9863.240234;330;0.66690523 549539.3105;7817492.078;-9843.730469;330;0.82492802 551389.3105;7817172.988;-10108.7002;330;0.771025937 548889.3105;7819049.988;-10430;330;0.644338263 551039.3105;7819913.41;-10306.59961;330;0.044687978 549126.8105;7818899.828;-10457.09961;330;0.702399664 551801.8105;7821415.008;-10452.90039;330;0.250723028 551451.8105;7820495.281;-10406.7002;330;0.083849394 549451.8105;7819538.008;-10435.5;330;0.189176947 549589.3105;7820326.348;-10391.2002;330;0.511629847 549651.8105;7819744.48;-10458.79981;330;0.041711632 551089.3105;7821208.539;-10567.7002;330;0.924499753 551289.3105;7821358.699;-10472.29981;330;0.761819604 549551.8105;7818805.98;-9894.870117;330;0.405188677 551839.3105;7821114.691;-10512.90039;330;0.331194549 550939.3105;7821490.09;-10567.7002;330;0.78610826 552314.3105;7820119.879;-10020.59961;330;0.117964438 550951.8105;7818862.289;-10352.40039;330;0.961217204 551826.8105;7817867.48;-10071.2002;330;0.411886626 551526.8105;7819857.098;-10293.59961;330;0.844252132 550289.3105;7817792.398;-10359.90039;330;0.606735416 551126.8105;7817623.469;-10189.7002;330;0.649351705 551714.3105;7817454.539;-10065.90039;330;0.69961195 550964.3105;7818036.41;-10231.09961;330;0.696139433 550914.3105;7820833.141;-10370;330;0.996306711 549551.8105;7820926.988;-10414.2002;330;0.229885997 551851.8105;7818261.648;-10052.09961;330;0.367261447 552151.8105;7821583.941;-10332.40039;330;0.9928412 551076.8105;7817773.629;-10239.09961;330;0.324309261 552414.3105;7820007.258;-10108.2002;330;0.369382668 551214.3105;7817905.02;-10320.90039;330;0.143811318 549514.3105;7821771.641;-10375;330;0.551275028 549839.3105;7817360.688;-10344.2002;330;0.597750825 551426.8105;7817473.309;-10053.59961;330;0.307416205 551876.8105;7817811.168;-10058.5;330;0.571496889 550926.8105;7819950.949;-10190.40039;330;0.829685944 550364.3105;7821602.711;-10526.2002;330;0.827762471 551714.3105;7821583.941;-10377;330;0.33985748 550026.8105;7817829.938;-10397.09961;330;0.77182 552451.8105;7820514.051;-10323.09961;330;0.451592824 550826.8105;7821264.848;-10611.90039;330;0.909473978 550939.3105;7819800.789;-10239;330;0.820779914 551139.3105;7819387.852;-10403.09961;330;0.938103225 549976.8105;7819200.148;-10263.90039;330;0.115188566 551726.8105;7820457.738;-9941.040039;330;0.004788236 551164.3105;7820101.109;-10321.40039;330;0.02389476 551926.8105;7817285.609;-10048.79981;330;0.10674407 551939.3105;7820795.598;-10555.90039;330;0.16825439 552439.3105;7817454.539;-9777.769531;330;0.93591741 550151.8105;7821471.32;-10482.7002;330;0.960693013 549951.8105;7821715.328;-10446.79981;330;0.039488209 550314.3105;7821152.23;-10486.7002;330;0.707975146 551814.3105;7819143.84;-10261.79981;330;0.89556433 551364.3105;7818824.75;-10362.90039;330;0.738913668 551976.8105;7817623.469;-10050.59961;330;0.20424689 551439.3105;7819706.938;-10459.59961;330;0.185170697 550301.8105;7821490.09;-10517.2002;330;0.276186835 551139.3105;7820664.211;-10382.59961;330;0.231723458 551364.3105;7817567.16;-10064.09961;330;0.70734366 551714.3105;7821039.609;-10487.79981;330;0.26721042 552164.3105;7817079.141;-9961.759766;330;0.640082109 550014.3105;7820457.738;-9869.160156;330;0.659721966 550626.8105;7820758.059;-9835.379883;330;0.317589257 550951.8105;7817867.48;-10217;330;0.501241136 552339.3105;7817135.449;-9756.860352;330;0.23288382 552226.8105;7820288.809;-9896.19043;330;0.681007155 549026.8105;7817492.078;-9825.929688;330;0.953724346 551839.3105;7821189.77;-10515.40039;330;0.666809168 549514.3105;7820101.109;-10392.29981;330;0.675424174 551089.3105;7820401.43;-10272.59961;330;0.724001833 550889.3105;7821583.941;-10563.79981;330;0.164896759 549451.8105;7818092.719;-10421.09961;330;0.473596782 550801.8105;7817679.777;-10117.79981;330;0.765529405 552339.3105;7821358.699;-10276.29981;330;0.721294459 551939.3105;7820983.297;-10561.5;330;0.284708043 550089.3105;7820063.57;-9710.709961;330;0.222289314 551214.3105;7821602.711;-10469.2002;330;0.844153553 551326.8105;7817642.238;-10083.09961;330;0.55182718 549114.3105;7821246.078;-10332.7002;330;0.82343939 549639.3105;7819857.098;-10372.59961;330;0.173691862 551539.3105;7819725.711;-10393.79981;330;0.377859009 550514.3105;7818430.578;-10365.90039;330;0.571594989 549564.3105;7819481.699;-10332.59961;330;0.500259602 551051.8105;7818824.75;-10359.7002;330;0.752353568 549051.8105;7818242.879;-10435.29981;330;0.879466589 550964.3105;7817773.629;-10187.29981;330;0.280627125 549239.3105;7818242.879;-10469.90039;330;0.998905954 551376.8105;7821133.457;-10487;330;0.604866729 551714.3105;7816778.816;-10147.40039;330;0.345065421 549551.8105;7817341.918;-9843.150391;330;0.870129926 552226.8105;7821077.148;-10526.09961;330;0.497922677 550814.3105;7817942.559;-10086.5;330;0.360568467 550951.8105;7821114.691;-10578.7002;330;0.269202277 552089.3105;7819988.488;-9791.639648;330;0.870496367 552276.8105;7817473.309;-9941;330;0.763928532 551314.3105;7820870.68;-10475.90039;330;0.529415422 549551.8105;7818167.797;-10357.79981;330;0.123353837 551689.3105;7819387.852;-10311.79981;330;0.926441563 549489.3105;7819613.09;-10444.2002;330;0.523258688 551101.8105;7820176.188;-10274.09961;330;0.586465214 551901.8105;7821264.848;-10518.59961;330;0.486213856 550889.3105;7821208.539;-10602.5;330;0.077495168 551051.8105;7821377.469;-10567.09961;330;0.86246197 552164.3105;7817191.758;-9958.990234;330;0.977830989 550089.3105;7821283.617;-10494.09961;330;0.958476794 551476.8105;7821659.02;-10303;330;0.172848095 551251.8105;7817867.48;-10316.59961;330;0.878758566 551076.8105;7816741.277;-10279.90039;330;0.470829099 549539.3105;7820288.809;-10416;330;0.356771225 550064.3105;7818393.039;-10371.79981;330;0.536455664 551676.8105;7819538.008;-10404;330;0.7249822 549751.8105;7821809.18;-10406.29981;330;0.68295419 551076.8105;7820645.438;-10363.40039;330;0.426450028 551539.3105;7819031.219;-10257.09961;330;0.806099202 552189.3105;7819763.25;-10120.7002;330;0.031270599 549626.8105;7821696.559;-10395.5;330;0.336230877 549101.8105;7817679.777;-10003.7002;330;0.276364894 550926.8105;7820926.988;-10454.09961;330;0.967657189 551089.3105;7819200.148;-10321.40039;330;0.967956777 549451.8105;7817473.309;-9706.299805;330;0.129095197 548951.8105;7818242.879;-10412;330;0.605634384 549801.8105;7819857.098;-10188.5;330;0.469244704 552389.3105;7816985.289;-9677.349609;330;0.625853137 549889.3105;7819519.238;-10209.90039;330;0.705682961 549501.8105;7817379.461;-9744.540039;330;0.471135084 550514.3105;7817792.398;-10223.79981;330;0.944100683 549589.3105;7821433.781;-10388.5;330;0.553038639 549489.3105;7820326.348;-10435.7002;330;0.6059724 549589.3105;7819800.789;-10442.90039;330;0.202307687 548951.8105;7818073.949;-10418.2002;330;0.685647597 550401.8105;7819875.867;-9923.94043;330;0.887648695 550164.3105;7820983.297;-10415.79981;330;0.136643023 550251.8105;7820382.66;-9645.490234;330;0.701957041 551101.8105;7820964.531;-10543.59961;330;0.929345058 550251.8105;7821415.008;-10508.2002;330;0.75614729 550189.3105;7821696.559;-10487.29981;330;0.065405015 549764.3105;7817154.219;-10282.79981;330;0.444165883 552214.3105;7816928.98;-9933.830078;330;0.923775705 550314.3105;7821227.309;-10512.40039;330;0.969447823 551614.3105;7817567.16;-10093.90039;330;0.539584997 549376.8105;7821171;-10367.59961;330;0.445135509 550851.8105;7817097.91;-10260.29981;330;0.966229797 549789.3105;7818674.59;-9778.849609;330;0.230090372 551839.3105;7817529.617;-10072.79981;330;0.554986558 550601.8105;7820401.43;-9642.820313;330;0.480014684 552101.8105;7817829.938;-10059.40039;330;0.322567118 551914.3105;7817379.461;-10057.79981;330;0.170506483 552076.8105;7817961.328;-10068.59961;330;0.528332016 549314.3105;7818899.828;-10326.5;330;0.898569337 552176.8105;7821058.379;-10543.79981;330;0.287656829 550839.3105;7821114.691;-10521.40039;330;0.98916551 550126.8105;7821809.18;-10472.29981;330;0.680714709 551251.8105;7820664.211;-10411.5;330;0.652851078 550414.3105;7821339.93;-10536.40039;330;0.027973509 552389.3105;7820795.598;-10460.7002;330;0.514298735 551851.8105;7818524.43;-10004.5;330;0.32439464 552039.3105;7817736.09;-10055.29981;330;0.734560499 550189.3105;7817811.168;-10378.90039;330;0.904609155 550089.3105;7818580.738;-10358.09961;330;0.706903219 549951.8105;7820833.141;-10398.40039;330;0.541831829 549526.8105;7819481.699;-10366.29981;330;0.519921926 549689.3105;7819444.16;-10183.09961;330;0.902510906 550214.3105;7816835.129;-9952.919922;330;0.648788538 550651.8105;7820438.969;-9653.44043;330;0.451130138 551039.3105;7820382.66;-10264.7002;330;0.137141307 549276.8105;7818111.488;-10477.09961;330;0.002963619 549151.8105;7821264.848;-10347.5;330;0.071787447 551989.3105;7819162.609;-10147.40039;330;0.615450976 550451.8105;7820119.879;-9645.019531;330;0.173884101 549739.3105;7821189.77;-10424.7002;330;0.869340276 548951.8105;7817379.461;-9916.349609;330;0.807777355 552089.3105;7821527.629;-10393.09961;330;0.057324135 549389.3105;7819819.559;-10475.7002;330;0.016505959 551289.3105;7821377.469;-10471;330;0.428408539 549339.3105;7817492.078;-9633.730469;330;0.811580717 549614.3105;7818073.949;-10369;330;0.814764703 549826.8105;7821452.551;-10436.7002;330;0.099143669 551926.8105;7820945.758;-10578.29981;330;0.483317312 549326.8105;7821058.379;-10365.2002;330;0.872091011 551851.8105;7819932.18;-9722.580078;330;0.874226637 550864.3105;7820889.449;-10355.59961;330;0.345157601 549476.8105;7817473.309;-9740.209961;330;0.053908052 552276.8105;7817567.16;-9973.389648;330;0.223248828 548901.8105;7819875.867;-10413;330;0.606081656 552376.8105;7817435.77;-9811.450195;330;0.054999664 551864.3105;7820814.371;-10547.2002;330;0.917747559 549689.3105;7818712.129;-9737.919922;330;0.705924198 549564.3105;7819894.641;-10411.7002;330;0.743234075 549589.3105;7820007.258;-10343.09961;330;0.228768361 551289.3105;7821415.008;-10470;330;0.58219543 549789.3105;7817754.859;-10357.79981;330;0.721372813 549001.8105;7817492.078;-9866.410156;330;0.131299612 551939.3105;7817942.559;-10054.7002;330;0.112945957 549989.3105;7821208.539;-10478.40039;330;0.280909704 550676.8105;7820457.738;-9675.5;330;0.983071076 549189.3105;7818317.957;-10458.09961;330;0.976283126 552314.3105;7816778.816;-9848.290039;330;0.095794373 549764.3105;7820101.109;-10082;330;0.952190853 550626.8105;7820720.52;-9803.169922;330;0.65775292 551426.8105;7817172.988;-10111.09961;330;0.622557824 548901.8105;7819012.449;-10434.7002;330;0.888218842 551289.3105;7821471.32;-10467.29981;330;0.017716222 550026.8105;7816910.207;-10024.2002;330;0.546448704 551001.8105;7819913.41;-10272.79981;330;0.107162826 551376.8105;7817529.617;-10052.90039;330;0.944210291 549151.8105;7818918.598;-10453.40039;330;0.663000535 551814.3105;7820645.438;-10275.90039;330;0.579310692 550364.3105;7817698.547;-10334;330;0.158550213 551826.8105;7821396.238;-10463.7002;330;0.150127427 549789.3105;7818205.34;-10393.2002;330;0.838549984 551476.8105;7820964.531;-10442.59961;330;0.509436666 551426.8105;7816722.508;-10133;330;0.55962495 551476.8105;7820514.051;-10406.29981;330;0.823112983 549414.3105;7819538.008;-10457.79981;330;0.899380383 551814.3105;7821602.711;-10335.5;330;0.334739112 549614.3105;7820307.578;-10362;330;0.009848481 550151.8105;7821827.949;-10476.90039;330;0.131138578 551714.3105;7819068.758;-10289.90039;330;0.023936506 549876.8105;7819256.457;-10202.90039;330;0.789964461 551289.3105;7821339.93;-10473.90039;330;0.852212682 549564.3105;7818862.289;-9924.209961;330;0.748760895 551889.3105;7821095.918;-10525.5;330;0.740388377 549839.3105;7820382.66;-10042.29981;330;0.992063833 550689.3105;7819838.328;-10016.29981;330;0.873119968 551951.8105;7817304.379;-10047.2002;330;0.693065194 550939.3105;7821508.859;-10563.5;330;0.367902463 551989.3105;7817867.48;-10055.59961;330;0.190734767 548989.3105;7819331.539;-10427;330;0.085237948 550264.3105;7818543.199;-10373.09961;330;0.505158286 549364.3105;7821715.328;-10362.09961;330;0.019163085 550826.8105;7821677.789;-10563.09961;330;0.143323453 550926.8105;7821621.48;-10560.40039;330;0.092148048 551926.8105;7818899.828;-10076.29981;330;0.963111606 550026.8105;7818787.207;-10352.2002;330;0.427193072 549739.3105;7818224.109;-10375.90039;330;0.560297674 550414.3105;7817492.078;-10311.7002;330;0.910813709 549289.3105;7819387.852;-10464.90039;330;0.5590191 551614.3105;7820438.969;-10141.7002;330;0.781787876 550239.3105;7817848.711;-10375.79981;330;0.627057994 548964.3105;7821058.379;-10316;330;0.350035685 551614.3105;7819650.629;-10407.29981;330;0.139281868 551976.8105;7817923.789;-10057.09961;330;0.754258444 550976.8105;7817567.16;-10216.90039;330;0.302372615 550276.8105;7820307.578;-9618.019531;330;0.619059592 552351.8105;7820138.648;-10067.79981;330;0.14740879 549551.8105;7817848.711;-10299;330;0.401421532 551914.3105;7820495.281;-9871.610352;330;0.478620263 549539.3105;7821264.848;-10389.7002;330;0.59393901 550339.3105;7818674.59;-10352;330;0.214268695 551126.8105;7817811.168;-10282.59961;330;0.086244406 550951.8105;7818618.281;-10326.2002;330;0.391076162 550801.8105;7817454.539;-10266.2002;330;0.113171225 549089.3105;7817567.16;-9813.290039;330;0.192647377 549914.3105;7820626.668;-10218.7002;330;0.499843699 551814.3105;7819106.301;-10255;330;0.556923074 550189.3105;7816722.508;-10172.29981;330;0.514346786 552414.3105;7821827.949;-10106.59961;330;0.81358848 550614.3105;7818693.359;-10327.29981;330;0.592820844 552276.8105;7816647.43;-9928.139648;330;0.491797235 550901.8105;7817548.387;-10220.79981;330;0.879308652 552126.8105;7821734.102;-10151.29981;330;0.283158479 551039.3105;7816703.738;-10281.79981;330;0.255566285 551151.8105;7819425.391;-10419.79981;330;0.87250062 549839.3105;7820194.961;-10002.59961;330;0.119369039 552351.8105;7820551.59;-10313.90039;330;0.847299373 549726.8105;7818167.797;-10385.09961;330;0.802708369 550714.3105;7820345.121;-9714.400391;330;0.266561368 551664.3105;7817510.848;-10076;330;0.518457592 550939.3105;7817210.527;-10205.7002;330;0.569061611 550251.8105;7817229.301;-10003.7002;330;0.967825096 549489.3105;7821640.25;-10376.5;330;0.801723378 550126.8105;7819875.867;-9935.980469;330;0.657951927 551726.8105;7817172.988;-10075.09961;330;0.46699345 552014.3105;7817229.301;-10030.40039;330;0.571963263 551714.3105;7817942.559;-10112.29981;330;0.603042391 551864.3105;7818618.281;-10016;330;0.443239175 549139.3105;7816684.969;-10505.59961;330;0.695888107 550276.8105;7820495.281;-9693.929688;330;0.869556388 550976.8105;7817961.328;-10251.09961;330;0.264056246 550764.3105;7820814.371;-10104.7002;330;0.820325906 549214.3105;7818374.27;-10449.7002;330;0.341700777 551851.8105;7820870.68;-10577.40039;330;0.676920783 549076.8105;7818486.891;-10418.5;330;0.041523161 550101.8105;7817754.859;-10383;330;0.750668686 550439.3105;7820044.801;-9676.120117;330;0.622018884 551764.3105;7819331.539;-10262.5;330;0.94411219 551401.8105;7816647.43;-10134.59961;330;0.510590742 550076.8105;7821508.859;-10463.79981;330;0.906927687 551639.3105;7819556.777;-10442.09961;330;0.174036844 550464.3105;7818730.898;-10315.59961;330;0.066232676 551976.8105;7817529.617;-10048.5;330;0.671773308 550426.8105;7820701.75;-9778.129883;330;0.945680588 549514.3105;7818956.141;-10107.90039;330;0.752342056 548939.3105;7818787.207;-10450.59961;330;0.297739765 550614.3105;7821659.02;-10563;330;0.838822317 551739.3105;7819425.391;-10284.40039;330;0.83464909 550026.8105;7821039.609;-10478.5;330;0.342586581 551139.3105;7817172.988;-10156.40039;330;0.26587437 551051.8105;7820964.531;-10547.09961;330;0.974870251 551064.3105;7820119.879;-10263.40039;330;0.122378863 551151.8105;7816910.207;-10232.5;330;0.630109742 551614.3105;7821827.949;-10127.7002;330;0.988828541 549289.3105;7821171;-10354.7002;330;0.067357717 550714.3105;7820495.281;-9726.740234;330;0.46960236 551526.8105;7821640.25;-10296.5;330;0.733603054 550864.3105;7817529.617;-10237.5;330;0.913364049 550726.8105;7817623.469;-10168.5;330;0.708012433 549601.8105;7821152.23;-10406;330;0.231904579 549464.3105;7820457.738;-10427.79981;330;0.443241462 549214.3105;7818730.898;-10361.90039;330;0.501232014 549214.3105;7818655.82;-10358;330;0.83036189 552189.3105;7820119.879;-9815.30957;330;0.861205335 550214.3105;7816966.52;-9834.120117;330;0.132069303 550614.3105;7817210.527;-10223.59961;330;0.884657627 549776.8105;7817736.09;-10347.79981;330;0.215038806 549876.8105;7819106.301;-10282.29981;330;0.990169801 550014.3105;7818486.891;-10297.29981;330;0.029165919 551214.3105;7821302.391;-10498.59961;330;0.41420336 551014.3105;7820044.801;-10244.90039;330;0.980077006 550614.3105;7817905.02;-10151;330;0.021141011 551389.3105;7819200.148;-10293.29981;330;0.672092597 549614.3105;7820926.988;-10422.5;330;0.223962451 551376.8105;7820026.027;-10360.29981;330;0.372423659 551201.8105;7820420.199;-10319.90039;330;0.304770617 551351.8105;7819950.949;-10392.79981;330;0.988861652 551401.8105;7819162.609;-10264.09961;330;0.943992249 550864.3105;7817379.461;-10268.90039;330;0.471254554 550589.3105;7821002.07;-10263.29981;330;0.191949373 550026.8105;7819068.758;-10308.40039;330;0.701140998 550014.3105;7818205.34;-10416.2002;330;0.270078022 551889.3105;7817285.609;-10050.90039;330;0.745959053 549164.3105;7818805.98;-10421.2002;330;0.69015774 550876.8105;7821846.719;-10570.2002;330;0.366457498 550839.3105;7817229.301;-10256.09961;330;0.788518236 549814.3105;7817172.988;-10282.09961;330;0.758955651 551201.8105;7821077.148;-10510.40039;330;0.565962458 549614.3105;7818824.75;-9843.169922;330;0.742256795 551026.8105;7821846.719;-10538;330;0.6728594 550901.8105;7821358.699;-10634.59961;330;0.414001641 552114.3105;7817154.219;-9992.650391;330;0.940715767 550776.8105;7819706.938;-10120.09961;330;0.155820706 550964.3105;7817454.539;-10234.79981;330;0.105484182 550014.3105;7818618.281;-10227;330;0.331309448 550601.8105;7820814.371;-9879.389648;330;0.737320281 551626.8105;7818937.367;-10295.79981;330;0.706357913 551764.3105;7816910.207;-10097.90039;330;0.208599136 550989.3105;7819087.527;-10227.59961;330;0.230704923 549676.8105;7818149.027;-10375.40039;330;0.352320996 551564.3105;7820682.98;-10529;330;0.317799864 551501.8105;7817510.848;-10061.7002;330;0.62746578 550901.8105;7817811.168;-10124.5;330;0.447061479 551014.3105;7820026.027;-10247.09961;330;0.783044957 551751.8105;7818430.578;-10065.90039;330;0.615887533 552314.3105;7820063.57;-10028.5;330;0.141871611 550101.8105;7817248.07;-10088.5;330;0.869681693 552239.3105;7820157.418;-9899.070313;330;0.395218044 551326.8105;7819838.328;-10422.7002;330;0.361734564 551151.8105;7821058.379;-10529;330;0.468372631 550526.8105;7816872.668;-10260.59961;330;0.566452198 552276.8105;7817060.367;-9838.05957;330;0.51583518 549401.8105;7819369.078;-10423.40039;330;0.614543807 551476.8105;7820851.91;-10478.79981;330;0.631596011 549726.8105;7816985.289;-10257.09961;330;0.045579385 552339.3105;7817041.598;-9748.540039;330;0.670969392 549789.3105;7820814.371;-10435.40039;330;0.93375419 550101.8105;7820026.027;-9720.910156;330;0.582588943 550151.8105;7819425.391;-10154.7002;330;0.155921695 548951.8105;7819538.008;-10426.2002;330;0.99642861 549839.3105;7817886.25;-10398.09961;330;0.16954478 551001.8105;7816722.508;-10282;330;0.472145308 550314.3105;7821621.48;-10517.5;330;0.84148131 550651.8105;7818637.047;-10343;330;0.437074053 551976.8105;7819106.301;-10139.90039;330;0.582264491 549076.8105;7817848.711;-10285.09961;330;0.659623636 550901.8105;7818993.68;-10185.40039;330;0.968802287 550426.8105;7818449.348;-10347.09961;330;0.838671804 550164.3105;7817998.871;-10404.2002;330;0.252192765 549601.8105;7817585.93;-10021.90039;330;0.535774331 550114.3105;7820232.5;-9666.790039;330;0.856814755 550964.3105;7818993.68;-10280;330;0.850628781 552326.8105;7820720.52;-10461.79981;330;0.160574029 551951.8105;7817379.461;-10052.90039;330;0.019320216 549914.3105;7817548.387;-10335.2002;330;0.26361472 552139.3105;7819538.008;-10150.2002;330;0.882443255 550051.8105;7821302.391;-10480.29981;330;0.177125937 551276.8105;7820945.758;-10487.09961;330;0.09266262 549501.8105;7817567.16;-9870.540039;330;0.447668229 551889.3105;7819688.168;-10193.79981;330;0.036882157 552039.3105;7820776.828;-10556.90039;330;0.417380053 549639.3105;7818299.188;-10322.79981;330;0.700305676 550726.8105;7821490.09;-10591.09961;330;0.031182328 549526.8105;7821039.609;-10399.09961;330;0.361609269 552326.8105;7821002.07;-10497.5;330;0.760220731 552251.8105;7817773.629;-10032.40039;330;0.161904949 550489.3105;7816985.289;-10167.09961;330;0.191675107 550714.3105;7821377.469;-10591.2002;330;0.263420976 552101.8105;7819369.078;-10091.2002;330;0.935117912 551776.8105;7821133.457;-10498;330;0.413929925 549414.3105;7819218.918;-10407.5;330;0.323241775 551826.8105;7821058.379;-10516.29981;330;0.69560089 549839.3105;7821677.789;-10426;330;0.29547177 549289.3105;7818768.438;-10281.79981;330;0.859490071 551114.3105;7817379.461;-10161.7002;330;0.667556568 549239.3105;7818824.75;-10364.90039;330;0.610462095 550976.8105;7821827.949;-10551.09961;330;0.161735836 550464.3105;7820814.371;-9889.389648;330;0.648276726 550601.8105;7821302.391;-10559.7002;330;0.74653962 551401.8105;7821058.379;-10475.79981;330;0.532850533 550901.8105;7817473.309;-10240.79981;330;0.676094032 549839.3105;7817961.328;-10406.7002;330;0.279577772 551339.3105;7820682.98;-10412.40039;330;0.006241409 550164.3105;7818092.719;-10409.59961;330;0.995942464 549676.8105;7820570.359;-10397.29981;330;0.841361705 548939.3105;7819500.469;-10424.59961;330;0.178068923 550276.8105;7819613.09;-10173.09961;330;0.893940096 550151.8105;7821227.309;-10504.79981;330;0.379716361 550164.3105;7821133.457;-10493.09961;330;0.631356183 550239.3105;7816666.199;-10324.29981;330;0.429231634 550076.8105;7821734.102;-10465.40039;330;0.225424513 550064.3105;7820176.188;-9691.290039;330;0.781516519 550126.8105;7820926.988;-10375.59961;330;0.80632946 552064.3105;7821039.609;-10551.7002;330;0.953124274 550414.3105;7818543.199;-10332.7002;330;0.399546034 550301.8105;7821602.711;-10514.90039;330;0.205008566 551764.3105;7821471.32;-10422.7002;330;0.075482519 549339.3105;7820964.531;-10373.09961;330;0.140631788 552176.8105;7820870.68;-10563;330;0.004149153 552076.8105;7821377.469;-10471.40039;330;0.05432189 551714.3105;7820851.91;-10559.7002;330;0.859883431 549989.3105;7821471.32;-10455.7002;330;0.173027141 551664.3105;7821077.148;-10470.7002;330;0.119979651 551326.8105;7821114.691;-10495.2002;330;0.822929656 548876.8105;7818186.57;-10404.7002;330;0.08168768 552289.3105;7817210.527;-9830.530273;330;0.60102182 550776.8105;7821752.867;-10562.7002;330;0.206438786 551426.8105;7817398.227;-10082.09961;330;0.02287791 551639.3105;7818693.359;-10262.59961;330;0.500419259 549464.3105;7821077.148;-10386.40039;330;0.346016556 552264.3105;7816966.52;-9865.639648;330;0.867450185 550214.3105;7819387.852;-10023.40039;330;0.29590644 551589.3105;7819838.328;-10232.29981;330;0.92408126 551789.3105;7821246.078;-10506.09961;330;0.25249742 550276.8105;7821095.918;-10451.2002;330;0.959185022 551264.3105;7820983.297;-10491.5;330;0.479829799 550801.8105;7816910.207;-10288.90039;330;0.30376159 550614.3105;7821095.918;-10390.90039;330;0.970180936 551089.3105;7821790.41;-10528.29981;330;0.295666195 550789.3105;7821508.859;-10590.5;330;0.191127052 550464.3105;7818505.66;-10347.7002;330;0.891738849 550801.8105;7819838.328;-10088.79981;330;0.821525431 550601.8105;7820664.211;-9747.639648;330;0.67026562 550364.3105;7820851.91;-10008.79981;330;0.237775499 551414.3105;7818899.828;-10328.7002;330;0.457310128 550476.8105;7817454.539;-10286.59961;330;0.664269693 550364.3105;7817510.848;-10295.2002;330;0.44918663 551464.3105;7819218.918;-10268.59961;330;0.940252104 551001.8105;7819256.457;-10162.90039;330;0.581330356 550664.3105;7818956.141;-9930.889648;330;0.949158206 550351.8105;7817398.227;-10254.09961;330;0.31720992 550451.8105;7818787.207;-10259.5;330;0.711006755 551451.8105;7817717.32;-10092.90039;330;0.730580325 550451.8105;7820964.531;-10217;330;0.209688011 549226.8105;7817548.387;-9708.320313;330;0.120353002 551589.3105;7821640.25;-10312.59961;330;0.490805283 550001.8105;7817341.918;-10285.5;330;0.845347434 549439.3105;7818974.91;-10213.79981;330;0.131071886 549539.3105;7819782.02;-10466.2002;330;0.411241721 550114.3105;7818787.207;-10403.79981;330;0.543699164 550526.8105;7817379.461;-10256.2002;330;0.061919321 550389.3105;7817285.609;-10137.59961;330;0.033203992 549014.3105;7816703.738;-10514.59961;330;0.796593339 550789.3105;7818974.91;-9984.110352;330;0.483683195 551326.8105;7819125.07;-10329.7002;330;0.322553481 550376.8105;7817623.469;-10327;330;0.874246162 550739.3105;7818242.879;-10349.59961;330;0.16885462 550514.3105;7817679.777;-10261;330;0.601155308 549664.3105;7819087.527;-10213;330;0.053991524 549651.8105;7820082.34;-10261;330;0.127976655 551564.3105;7820044.801;-10132.7002;330;0.106025736 549651.8105;7818637.047;-9770.05957;330;0.94907271 551676.8105;7819143.84;-10305.7002;330;0.142766856 552326.8105;7819988.488;-10072.7002;330;0.108309448 552026.8105;7819312.77;-10171.79981;330;0.0249416 551576.8105;7818993.68;-10272.2002;330;0.2747209 552339.3105;7821133.457;-10445.90039;330;0.799741501 552451.8105;7820213.73;-10174.09961;330;0.196477453 550451.8105;7817623.469;-10301.40039;330;0.296686239 550164.3105;7817417;-10258.59961;330;0.672280113 551839.3105;7820157.418;-9573.75;330;0.07082176 550389.3105;7818843.52;-10135.09961;330;0.619746764 550514.3105;7818655.82;-10342;330;0.223669714 552351.8105;7821152.23;-10419.79981;330;0.718830459 550139.3105;7819068.758;-10193.7002;330;0.855825667 550289.3105;7816797.59;-9992.019531;330;0.833030071 549601.8105;7817961.328;-10361.5;330;0.3526701 551064.3105;7821227.309;-10583.40039;330;0.739989836 552064.3105;7820514.051;-9909.94043;330;0.158965811 548876.8105;7819725.711;-10414.90039;330;0.332358865 550489.3105;7816760.051;-10303;330;0.896131709 552289.3105;7821246.078;-10339.29981;330;0.287430881 549001.8105;7817623.469;-9944.120117;330;0.686703491 549101.8105;7819294;-10440.29981;330;0.930196444 551939.3105;7819800.789;-10078.90039;330;0.006616832 550589.3105;7820945.758;-10208.79981;330;0.579182049 551801.8105;7821640.25;-10262.40039;330;0.69914135 550339.3105;7818918.598;-10073.09961;330;0.485217788 552026.8105;7821734.102;-10060.5;330;0.585343658 ================================================ FILE: examples/data/input_data/Claudius/Dips.csv ================================================ X;Y;Z;OrientX;OrientY;OrientZ;Cutoff 552189.3105;7819406.617;-9797.297852;-0.076036;0.041318;-0.996249;0.014754793 552201.8105;7819406.617;-9798.693359;-0.044863;0.045039;-0.997977;0.534278959 552214.3105;7819406.617;-9798.426758;0.074373;0.009594;-0.997184;0.525125044 552201.8105;7819425.391;-9797.804688;-0.039994;0.047585;-0.998066;0.965154017 551439.3105;7820589.129;-9805.916992;0.075779;-0.310751;-0.947466;0.495156448 550851.8105;7820720.52;-9797.066406;-0.532043;-0.275707;-0.800572;0.338591489 551226.8105;7819800.789;-9789.371094;-0.069551;0.093259;-0.99321;0.293874261 551239.3105;7819744.48;-9795.443359;-0.094403;0.068798;-0.993154;0.448177408 550976.8105;7819425.391;-9748.006836;-0.555253;-0.085871;-0.827237;0.179894809 550551.8105;7818674.59;-9228.764648;0.109148;0.332519;-0.936759;0.300751604 550576.8086;7818618.281;-9240.390625;0.249464;0.225306;-0.941809;0.262720433 550814.3105;7818561.969;-9897.173828;0.177374;0.070957;-0.981582;0.170738004 550214.3105;7818299.188;-9284.345703;-0.228273;-0.046569;-0.972483;0.628062506 552226.8105;7819406.617;-9796.917969;0.078851;-0.021838;-0.996647;0.798092917 551476.8105;7818374.27;-9687.792969;-0.269706;-0.050618;-0.961611;0.886774802 551651.8105;7817811.168;-9816.841797;-0.204194;0.003709;-0.978923;0.025874757 551626.8105;7817829.938;-9813.594727;0.020179;0.040417;-0.998979;0.138523201 551639.3105;7817811.168;-9814.689453;-0.105093;0.028396;-0.994057;0.770719843 550639.3105;7817642.238;-9257.282227;-0.028335;-0.158873;-0.986892;0.569668192 550926.8105;7817248.07;-9789.704102;0.162537;-0.105722;-0.981022;0.071327636 550989.3105;7817210.527;-9782.967773;0.187195;0.138165;-0.972558;0.976691621 550939.3105;7821227.309;-9958.425781;-0.080561;-0.043063;-0.995819;0.248187027 549276.8105;7820682.98;-9985.125977;-0.161328;0.075208;-0.984031;0.649480427 548976.8105;7820345.121;-9974.265625;-0.012103;-0.153309;-0.988104;0.05002477 549764.3105;7820457.738;-9901.208984;0.36949;-0.187053;-0.910213;0.759421295 ================================================ FILE: examples/data/input_data/Claudius/Fault.csv ================================================ X,Y,Z,surface 551308.0638427734,7817436.131347656,-9982.79296875,Claudius_fault 551332.5639648438,7817579.006347656,-9904.140625,Claudius_fault 551369.22265625,7817557.0078125,-9829.345703125,Claudius_fault 551392.1899414062,7817380.302246094,-9829.375,Claudius_fault 551295.9052734375,7817601.0048828125,-9978.935546875,Claudius_fault 551263.0708007812,7817619.436035156,-10056.42578125,Claudius_fault 551238.6942138672,7817445.431152344,-10134.3076171875,Claudius_fault 551230.236328125,7817637.8671875,-10133.916015625,Claudius_fault 551263.62109375,7817324.58984375,-10105.4716796875,Claudius_fault 551313.3098144531,7817272.009277344,-10001.0986328125,Claudius_fault 551198.9991455078,7817340.512207031,-10290.7216796875,Claudius_fault 551200.4428710938,7817518.826171875,-10234.3095703125,Claudius_fault 551250.6811523438,7817214.169921875,-10164.8349609375,Claudius_fault 551206.1387939453,7817128.526855469,-10322.6513671875,Claudius_fault 551290.9270019531,7817117.673828125,-10065.6259765625,Claudius_fault 551344.9963378906,7817056.1494140625,-9946.55078125,Claudius_fault 551269.4575195312,7817008.346191406,-10155.7412109375,Claudius_fault 551322.4930419922,7816966.090332031,-10041.7109375,Claudius_fault 551289.2056884766,7816802.7236328125,-10164.2353515625,Claudius_fault 551228.7355957031,7816985.663574219,-10296.001953125,Claudius_fault 551375.7451171875,7816857.3740234375,-9987.642578125,Claudius_fault 551355.7924804688,7816730.1103515625,-10030.49609375,Claudius_fault 551414.2355957031,7816951.4853515625,-9911.6533203125,Claudius_fault 551520.7449951172,7816835.132324219,-9842.5078125,Claudius_fault 551419.0349121094,7816755.515625,-9938.2119140625,Claudius_fault 551497.33984375,7816916.469238281,-9819.5302734375,Claudius_fault 551473.9345703125,7816997.806152344,-9796.5517578125,Claudius_fault 551450.529296875,7817079.143066406,-9773.57421875,Claudius_fault 551383.8768310547,7817231.6875,-9863.8818359375,Claudius_fault 551454.0200195312,7817156.0537109375,-9751.478515625,Claudius_fault 551456.6416015625,7817233.363769531,-9730.7548828125,Claudius_fault 551458.6007080078,7817311.084472656,-9711.509765625,Claudius_fault 551426.5402832031,7817397.7392578125,-9762.8623046875,Claudius_fault 551408.2010498047,7817522.5703125,-9771.2919921875,Claudius_fault 551461.3784179688,7817389.3876953125,-9694.8798828125,Claudius_fault 551454.2790527344,7817438.760253906,-9704.05859375,Claudius_fault 551447.1796875,7817488.1328125,-9713.2373046875,Claudius_fault 551499.1973876953,7816760.854980469,-9855.96875,Claudius_fault 551428.234375,7816643.288574219,-9934.4306640625,Claudius_fault 551378.8187255859,7816599.999511719,-9999.4306640625,Claudius_fault 551477.6499023438,7816686.577636719,-9869.4306640625,Claudius_fault 551342.1833496094,7816599.999511719,-10065.8974609375,Claudius_fault 551290.9747314453,7816698.323730469,-10164.35546875,Claudius_fault 551305.5483398438,7816600.0,-10132.3642578125,Claudius_fault 551245.0620117188,7816742.201660156,-10302.87109375,Claudius_fault 551213.5291748047,7816865.625488281,-10379.919921875,Claudius_fault 551264.8028564453,7816600.0,-10265.0625,Claudius_fault 551247.9504394531,7816600.0,-10346.0361328125,Claudius_fault 551285.1754150391,7816600.0,-10198.712890625,Claudius_fault 551231.0980224609,7816600.0,-10427.009765625,Claudius_fault 551178.1384277344,7816767.62890625,-10531.529296875,Claudius_fault 551214.2456054688,7816600.0,-10507.9833984375,Claudius_fault 551157.58984375,7816967.4248046875,-10509.6181640625,Claudius_fault 551120.8643798828,7816876.406738281,-10653.6484375,Claudius_fault 551175.5936279297,7817065.5888671875,-10429.6123046875,Claudius_fault 551139.4320068359,7817139.765625,-10527.142578125,Claudius_fault 551153.9641113281,7817295.504394531,-10452.296875,Claudius_fault 551102.3103027344,7817208.231933594,-10629.1787109375,Claudius_fault 551108.2183837891,7817019.916503906,-10635.7587890625,Claudius_fault 551085.8785400391,7817331.839355469,-10659.529296875,Claudius_fault 551117.4158935547,7817456.2919921875,-10505.0478515625,Claudius_fault 551051.5262451172,7817257.37890625,-10770.8310546875,Claudius_fault 551044.1201171875,7817395.307128906,-10769.2890625,Claudius_fault 551072.5325927734,7817128.564941406,-10725.423828125,Claudius_fault 551009.4955444336,7817172.916503906,-10920.0,Claudius_fault 551069.0616455078,7816937.451171875,-10782.697265625,Claudius_fault 551015.2289428711,7817077.422363281,-10920.0,Claudius_fault 551084.7166748047,7816720.567871094,-10803.7255859375,Claudius_fault 551142.0057373047,7816732.46875,-10660.8056640625,Claudius_fault 551031.9792480469,7816790.987792969,-10920.0,Claudius_fault 551029.3375244141,7816886.6142578125,-10920.0,Claudius_fault 551036.5262451172,7816695.449707031,-10920.0,Claudius_fault 551080.2843017578,7816600.0,-10846.9560546875,Claudius_fault 551042.9626464844,7816600.0,-10920.0,Claudius_fault 551117.1239013672,7816600.0,-10773.669921875,Claudius_fault 551153.5712890625,7816600.0,-10700.185546875,Claudius_fault 551173.7958984375,7816600.0,-10636.1181640625,Claudius_fault 551194.0206298828,7816600.0,-10572.05078125,Claudius_fault 551021.9738769531,7816981.9970703125,-10920.0,Claudius_fault 551003.8161621094,7817268.414550781,-10920.0,Claudius_fault 550997.1382446289,7817363.837890625,-10920.0,Claudius_fault 551004.0888671875,7817492.404785156,-10851.55859375,Claudius_fault 550987.9814453125,7817459.04296875,-10920.0,Claudius_fault 551020.1965332031,7817525.767089844,-10783.1162109375,Claudius_fault 551036.3039550781,7817559.12890625,-10714.6748046875,Claudius_fault 551076.5969238281,7817462.095703125,-10632.2294921875,Claudius_fault 551051.4537353516,7817602.02734375,-10632.5390625,Claudius_fault 551066.603515625,7817644.92578125,-10550.4033203125,Claudius_fault 551099.2509765625,7817652.19921875,-10466.86328125,Claudius_fault 551160.8074951172,7817503.076171875,-10356.4638671875,Claudius_fault 551131.8984375,7817659.47265625,-10383.3232421875,Claudius_fault 551164.4124755859,7817653.730957031,-10299.95703125,Claudius_fault 551197.1921386719,7817646.529296875,-10216.8203125,Claudius_fault ================================================ FILE: examples/data/input_data/Hecho/Dips.csv ================================================ X;Y;Z;OrientX;OrientZ;PART_ID 7.527000;-0.068673;3.01688;-0.959273;0.282481;1 7.453056;-0.219004;2.76577;-99999.000000;-99999.000000;1 5.078998;-0.188734;2.41768;-0.999978;0.006570;2 5.078366;0.030883;2.32152;-99999.000000;-99999.000000;2 4.241215;-0.083621;2.68816;-0.997458;0.071258;3 4.233277;0.173187;2.57705;-99999.000000;-99999.000000;3 3.812638;0.163828;0.584748;0.619147;0.785275;4 3.909028;-0.102907;0.508749;-99999.000000;-99999.000000;4 6.791816;0.038297;1.6808;-99999.000000;-99999.000000;5 6.795409;-0.165119;1.58278;-0.999329;-0.036628;5 7.877331;0.156179;1.12359;-99999.000000;-99999.000000;6 7.917865;-0.085538;0.997242;-0.952199;-0.305478;6 9.356718;0.112848;1.08476;-99999.000000;-99999.000000;7 9.408628;0.137489;0.974493;-0.904756;-0.425931;7 10.114000;0.134223;3.11576;-0.170274;0.985397;8 10.226974;-0.221538;3.13528;-99999.000000;-99999.000000;8 11.157912;-0.175397;2.38762;0.435000;0.900430;9 11.264513;-0.030397;2.33612;-99999.000000;-99999.000000;9 12.223744;-0.044960;1.06144;0.274058;0.961713;10 12.320492;-0.112806;1.03387;-99999.000000;-99999.000000;10 13.428433;-0.200595;1.57896;0.279614;0.960112;11 13.307468;0.253438;1.61419;-99999.000000;-99999.000000;11 13.910901;-0.088693;2.70029;-99999.000000;-99999.000000;12 14.032427;0.239531;2.64975;0.384015;0.923327;12 12.535620;0.144174;3.7352;0.403276;0.915078;13 12.645094;-0.284505;3.68695;-99999.000000;-99999.000000;13 13.195914;0.085904;3.75972;0.377478;0.926019;14 13.332587;-0.134166;3.70401;-99999.000000;-99999.000000;14 14.609327;0.045829;3.88829;-99999.000000;-99999.000000;15 14.736936;0.278000;3.83507;0.384944;0.922940;15 14.451224;-0.121838;1.1005;0.366117;0.930569;16 14.578719;0.163323;1.05034;-99999.000000;-99999.000000;16 13.510599;-0.085415;0.316791;-99999.000000;-99999.000000;17 13.649809;-0.090084;0.273521;0.296818;0.954934;17 11.519405;-0.125028;0.478261;0.201285;0.979533;18 11.621900;0.012672;0.457199;-99999.000000;-99999.000000;18 10.270306;0.161810;1.74372;-99999.000000;-99999.000000;19 10.343018;0.143548;1.80057;-0.615949;0.787786;19 9.870857;0.058731;2.5202;-0.764469;0.644660;20 9.810646;-0.148521;2.44879;-99999.000000;-99999.000000;20 9.482019;0.191304;2.10935;-0.986206;0.165522;21 9.464830;0.023284;2.00694;-99999.000000;-99999.000000;21 3.927612;0.158398;1.88211;0.375591;0.926786;22 4.068042;0.189227;1.8252;-99999.000000;-99999.000000;22 2.459414;-0.062740;2.44216;-99999.000000;-99999.000000;23 2.654066;-0.073172;2.38872;0.264725;0.964324;23 0.756290;-0.247674;1.9977;-99999.000000;-99999.000000;24 0.915695;-0.120372;1.96228;0.216884;0.976197;24 2.621837;-0.156607;3.28353;-99999.000000;-99999.000000;25 2.727541;0.178542;3.25653;0.247458;0.968899;25 4.068619;0.049438;3.23637;-99999.000000;-99999.000000;26 4.072436;-0.221099;3.13224;-0.999329;-0.036629;26 4.816355;0.196444;4.05863;-0.999975;-0.007105;27 4.817074;0.272937;3.95736;-99999.000000;-99999.000000;27 4.738157;-0.080016;3.33522;-99999.000000;-99999.000000;28 4.831136;-0.031274;3.3289;0.067834;0.997697;28 5.242005;0.113363;2.64891;-99999.000000;-99999.000000;29 5.343713;0.129749;2.64929;-0.003725;0.999993;29 5.563393;-0.035346;3.18587;-0.999975;-0.007105;30 5.564113;0.213189;3.0846;-99999.000000;-99999.000000;30 ================================================ FILE: examples/data/input_data/Hecho/F1Line.csv ================================================ X;Y;Z 6.424469;0.203543;1.20437 6.693804;-0.036842;0.995854 6.912352;0.340509;0.826699 7.121053;0.377681;0.665257 7.30629;0.482484;0.522088 7.477253;-0.354199;0.398039 7.643442;0.389842;0.293734 7.814081;-0.134994;0.209952 7.984539;0.450005;0.142965 8.15018;0.290266;0.088988 8.347618;0.390555;0 ================================================ FILE: examples/data/input_data/Hecho/F2Line.csv ================================================ X;Y;Z 11.090211;0.154567;1.28784 11.223454;-0.301787;1.37682 11.346533;-0.458967;1.4914 11.49791;-0.250198;1.69684 11.59726;-0.262147;1.83917 11.667309;-0.304462;1.95635 11.730947;0.444778;2.08641 11.802798;-0.323861;2.21023 11.897274;-0.125617;2.30864 12.015276;0.478744;2.39002 12.157452;0.440389;2.46241 12.316145;-0.363783;2.52832 12.483515;0.103354;2.59009 12.65233;-0.492103;2.65068 12.857302;-0.153067;2.72796 ================================================ FILE: examples/data/input_data/Hecho/F3Line.csv ================================================ X;Y;Z 11.15029;-0.073352;0.719278 11.066742;-0.133512;0.855967 11.023535;0.194252;0.972789 11.037835;-0.373243;1.0978 11.078171;0.475725;1.23286 11.113068;0.105955;1.37974 11.143734;-0.172893;1.53226 11.171513;0.284198;1.68442 11.159113;0.399711;1.81939 11.069008;0.032232;1.9203 10.885192;-0.428004;2.10412 ================================================ FILE: examples/data/input_data/Hecho/H1.csv ================================================ X;Y;Z;Strati;PART_ID 1.505406;0.29554;3.32516;0;1 1.710851;0.284936;3.24865;0;1 1.851495;-0.00339;3.19537;0;1 2.240846;-0.237692;3.04396;0;1 2.651827;-0.044266;2.90336;0;1 3.181776;0.486114;2.75195;0;1 3.614388;-0.270456;2.61135;0;1 3.776618;-0.265148;2.63298;0;1 3.830694;-0.077911;2.77358;0;1 3.852325;0.272048;3.10885;0;1 3.873955;0.342194;3.46576;0;1 3.895585;-0.348773;3.68206;0;1 3.921422;0.410191;3.96162;0;1 4.057551;0.211153;4.03639;0;1 4.211221;0.224591;4.07481;0;1 1.983993;-0.195852;3.1442;0;1 2.111974;0.447949;3.09283;0;1 2.375809;0.01664;2.99659;0;1 2.505367;-0.464299;2.9504;0;1 2.818563;0.281779;2.85379;0;1 3.002423;-0.148964;2.80692;0;1 3.329585;-0.036496;2.68705;0;1 3.465678;-0.422852;2.64109;0;1 3.852325;0.096054;2.93175;0;1 3.860436;-0.123006;3.30454;0;1 3.88492;0.372103;3.57927;0;1 3.877138;-0.19571;3.82885;0;1 1.781173;0.140773;3.22201;0;1 2.026654;0.018748;3.12708;0;1 2.069314;0.233348;3.10995;0;1 2.154932;0.219402;3.07654;0;1 2.197889;-0.009145;3.06025;0;1 2.440588;-0.223829;2.9735;0;1 2.578597;-0.254283;2.92688;0;1 2.735195;0.118756;2.87858;0;1 2.910492;0.066407;2.83036;0;1 3.062207;0.062728;2.7886;0;1 3.121992;0.274421;2.77027;0;1 3.255681;0.224809;2.7195;0;1 3.397632;-0.229674;2.66407;0;1 3.85638;0.074521;3.2067;0;1 3.867196;0.109594;3.38515;0;1 3.888475;0.131811;3.61353;0;1 3.89203;-0.108481;3.6478;0;1 3.891899;0.006257;3.8731;0;1 3.906661;0.208224;3.91736;0;1 ================================================ FILE: examples/data/input_data/Hecho/H2.csv ================================================ X;Y;Z;Strati;PART_ID 1.171598;-0.134880;2.70886;0.780000;1 1.274289;0.028307;2.67915;0.780000;1 1.376980;0.191494;2.64944;0.780000;1 1.457114;-0.046120;2.62241;0.780000;1 1.537247;-0.283733;2.59538;0.780000;1 1.622293;-0.068358;2.56124;0.780000;1 1.707339;0.147018;2.5271;0.780000;1 1.798813;0.274980;2.49189;0.780000;1 1.890287;0.402941;2.45669;0.780000;1 2.076264;0.352442;2.39837;0.780000;1 2.131952;0.140300;2.37999;0.780000;1 2.187640;-0.071842;2.3616;0.780000;1 2.243328;-0.283984;2.34321;0.780000;1 2.291617;-0.058261;2.3222;0.780000;1 2.339906;0.167462;2.30118;0.780000;1 2.388195;0.393186;2.28017;0.780000;1 2.432369;0.162576;2.25915;0.780000;1 2.476543;-0.068034;2.23814;0.780000;1 2.520717;-0.298644;2.21713;0.780000;1 2.568174;-0.091104;2.19874;0.780000;1 2.615631;0.116435;2.18035;0.780000;1 2.663089;0.323975;2.16196;0.780000;1 2.737689;0.173283;2.13832;0.780000;1 2.812290;0.022590;2.11468;0.780000;1 2.962018;0.217818;2.06582;0.780000;1 3.037472;0.025055;2.04553;0.780000;1 3.112926;-0.167708;2.02524;0.780000;1 3.277232;-0.110048;1.97756;0.780000;1 3.366329;0.036554;1.9519;0.780000;1 3.455427;0.183156;1.92624;0.780000;1 3.513709;-0.012682;1.90132;0.780000;1 3.571991;-0.208519;1.8764;0.780000;1 3.630273;-0.404357;1.85148;0.780000;1 3.685427;-0.146161;1.81898;0.780000;1 3.740581;0.112034;1.78648;0.780000;1 3.795736;0.370230;1.75398;0.780000;1 3.845653;0.172782;1.72344;0.780000;1 3.895570;-0.024665;1.69289;0.780000;1 3.945487;-0.222113;1.66235;0.780000;1 4.017199;-0.074821;1.63083;0.780000;1 4.088910;0.072470;1.5993;0.780000;1 4.149589;0.240852;1.5993;0.780000;1 4.210267;0.409233;1.5993;0.780000;1 4.274295;0.231157;1.60403;0.780000;1 4.338323;0.053080;1.60876;0.780000;1 4.387772;0.232895;1.63556;0.780000;1 4.437222;0.412709;1.66235;0.780000;1 4.500265;0.434444;1.75061;0.780000;1 4.514449;0.498122;1.87197;0.780000;1 4.500265;0.411808;2.028;0.780000;1 4.500352;0.158034;2.08097;0.780000;1 4.500440;-0.095740;2.13394;0.780000;1 4.500527;-0.349514;2.18692;0.780000;1 4.512873;-0.311110;2.34321;0.780000;1 4.516201;-0.053473;2.39347;0.780000;1 4.519527;0.204165;2.44373;0.780000;1 4.522855;0.461802;2.49399;0.780000;1 4.527320;0.197748;2.5636;0.780000;1 4.531786;-0.066307;2.63321;0.780000;1 4.538090;-0.070918;2.7719;0.780000;1 4.545182;0.160893;2.90272;0.780000;1 4.541636;-0.031950;2.9634;0.780000;1 4.538090;-0.224792;3.02407;0.780000;1 4.516026;-0.474386;3.14386;0.780000;1 4.525482;-0.325512;3.23842;0.780000;1 4.546496;-0.077604;3.26364;0.780000;1 4.567510;0.170305;3.28886;0.780000;1 4.588524;0.418214;3.31407;0.780000;1 4.624774;0.134552;3.32353;0.780000;1 4.661023;-0.149110;3.33298;0.780000;1 4.725642;0.044801;3.32983;0.780000;1 4.790262;0.238712;3.32668;0.780000;1 4.966783;0.313669;3.3519;0.780000;1 5.105477;0.291167;3.40233;0.780000;1 5.165127;0.343179;3.51693;0.780000;1 5.155911;0.379919;3.67972;0.780000;1 5.156391;0.169645;3.75312;0.780000;1 5.156872;-0.040629;3.82653;0.780000;1 5.150087;-0.249164;3.89812;0.780000;1 5.143302;-0.457698;3.96972;0.780000;1 5.142021;-0.182160;4.01354;0.780000;1 5.140739;0.093379;4.05736;0.780000;1 5.139458;0.368918;4.10119;0.780000;1 5.147685;0.125009;4.15523;0.780000;1 5.155912;-0.118899;4.20928;0.780000;1 5.174824;0.044769;4.27233;0.780000;1 5.193737;0.208437;4.33537;0.780000;1 ================================================ FILE: examples/data/input_data/Hecho/H3.csv ================================================ X;Y;Z;Strati;PART_ID 5.782996;0.236769;4.34537;1.15;1 5.717078;-0.013247;4.28677;1.15;1 5.651161;-0.263263;4.22818;1.15;1 5.575165;0.023315;4.16896;1.15;1 5.52909;0.036329;4.06705;1.15;1 5.47538;0.029179;3.8815;1.15;1 5.439121;-0.123929;3.70697;1.15;1 5.431435;-0.336246;3.57388;1.15;1 5.433557;-0.352763;3.46421;1.15;1 5.438303;-0.28898;3.36859;1.15;1 5.456579;0.414946;3.27022;1.15;1 5.43342;0.092031;3.15863;1.15;1 5.355295;-0.190035;3.03656;1.15;1 5.208812;0.494534;3.01703;1.15;1 5.035851;0.05912;2.9899;1.15;1 4.93917;0.388713;2.96759;1.15;1 4.931732;0.044076;2.84115;1.15;1 4.93179;0.489256;2.68614;1.15;1 4.931732;0.427414;2.51392;1.15;1 4.924063;-0.3274;2.3531;1.15;1 4.924295;-0.496614;2.18669;1.15;1 4.940099;0.043685;2.01192;1.15;1 4.939169;-0.172551;1.82971;1.15;1 4.901984;-0.181565;1.65122;1.15;1 4.864798;-0.341712;1.52107;1.15;1 4.797864;-0.190795;1.44298;1.15;1 4.729071;-0.262694;1.36396;1.15;1 4.6045;0.309514;1.29424;1.15;1 4.42601;0.089418;1.23474;1.15;1 4.284706;0.356076;1.21871;1.15;1 4.150837;-0.435286;1.24962;1.15;1 3.987221;-0.013083;1.28401;1.15;1 3.823605;0.227487;1.3463;1.15;1 3.68904;-0.296911;1.40701;1.15;1 3.548433;0.090954;1.47273;1.15;1 3.372731;-0.002995;1.54501;1.15;1 3.191452;-0.23683;1.61403;1.15;1 3.042711;0.214851;1.67074;1.15;1 2.913878;0.140743;1.71722;1.15;1 2.774975;0.148309;1.77021;1.15;1 2.596175;-0.421828;1.84458;1.15;1 2.410557;-0.014063;1.91895;1.15;1 2.251667;0.335494;1.97566;1.15;1 2.105637;0.000823;2.02307;1.15;1 1.950862;-0.287813;2.07478;1.15;1 1.785841;0.035383;2.13463;1.15;1 1.61932;0.060149;2.19833;1.15;1 1.466047;0.236172;2.26106;1.15;1 1.332644;-0.106408;2.31492;1.15;1 1.185683;-0.452978;2.36082;1.15;1 1.005785;-0.081732;2.41195;1.15;1 0.81165;0.435504;2.45544;1.15;1 0.621648;0.103743;2.49328;1.15;1 0.460779;-0.366873;2.51667;1.15;1 0.32491;0.271795;2.53124;1.15;1 0.176671;0.140472;2.53529;1.15;1 5.613163;-0.119974;4.19857;1.15;1 5.444395;-0.054338;3.3358;1.15;1 5.450487;0.180304;3.30301;1.15;1 5.445;0.253488;3.21443;1.15;1 5.394358;-0.049002;3.09759;1.15;1 5.306468;0.038154;3.03005;1.15;1 5.257639;0.266344;3.02354;1.15;1 5.122332;0.276827;3.00346;1.15;1 4.987511;0.223916;2.97874;1.15;1 4.935451;0.216394;2.90437;1.15;1 4.931761;0.266666;2.76365;1.15;1 4.929176;0.17581;2.46031;1.15;1 4.926619;-0.075795;2.4067;1.15;1 4.932197;-0.226464;2.0993;1.15;1 4.666786;0.02341;1.3291;1.15;1 4.355358;0.222747;1.22672;1.15;1 4.240083;0.092289;1.22901;1.15;1 4.19546;-0.171499;1.23931;1.15;1 4.069029;-0.224185;1.26682;1.15;1 3.756322;-0.034712;1.37666;1.15;1 3.618736;-0.102978;1.43987;1.15;1 3.282092;-0.119913;1.57952;1.15;1 3.117081;-0.01099;1.64239;1.15;1 2.715375;-0.041736;1.795;1.15;1 2.655775;-0.231782;1.81979;1.15;1 2.503366;-0.217946;1.88177;1.15;1 2.331112;0.160715;1.94731;1.15;1 2.178652;0.168158;1.99937;1.15;1 2.028249;-0.143495;2.04893;1.15;1 1.868351;-0.126215;2.10471;1.15;1 1.399346;0.064882;2.28799;1.15;1 1.259164;-0.279693;2.33787;1.15;1 1.095734;-0.267355;2.38639;1.15;1 0.908717;0.176886;2.4337;1.15;1 0.716649;0.269623;2.47436;1.15;1 0.541213;-0.131565;2.50497;1.15;1 0.415489;-0.153984;2.52152;1.15;1 0.370199;0.058905;2.52638;1.15;1 ================================================ FILE: examples/data/input_data/Hecho/H4.csv ================================================ X;Y;Z;Strati;PART_ID 6.182864;0.108160;1.71132;1.900000;1 6.313992;-0.006166;1.80967;1.900000;1 6.364257;-0.092770;1.93642;1.900000;1 6.369072;-0.260921;2.01821;1.900000;1 6.373887;-0.429071;2.09999;1.900000;1 6.357701;-0.363041;2.27517;1.900000;1 6.356335;-0.216745;2.42515;1.900000;1 6.354660;-0.373121;2.56824;1.900000;1 6.355515;-0.247086;2.70571;1.900000;1 6.356786;-0.063000;2.84556;1.900000;1 6.361635;-0.309072;2.99609;1.900000;1 6.365561;-0.102825;3.07838;1.900000;1 6.369487;0.103421;3.16067;1.900000;1 6.378291;0.043579;3.32155;1.900000;1 6.385675;0.275835;3.47252;1.900000;1 6.391170;0.033872;3.59996;1.900000;1 6.399675;0.002934;3.73359;1.900000;1 6.406692;0.191896;3.81919;1.900000;1 6.413708;0.380858;3.9048;1.900000;1 6.455807;0.445179;3.96093;1.900000;1 6.496393;0.271318;4.00594;1.900000;1 6.536980;0.097458;4.05095;1.900000;1 6.588665;-0.145098;4.08983;1.900000;1 6.640351;-0.387653;4.12871;1.900000;1 6.751473;-0.325853;4.18716;1.900000;1 6.792797;-0.108339;4.20938;1.900000;1 6.834120;0.109174;4.2316;1.900000;1 6.875443;0.326688;4.25382;1.900000;1 3.757568;-0.046795;0.433522;1.900000;2 3.657639;0.142728;0.476348;1.900000;2 3.557709;0.332251;0.519175;1.900000;2 3.483879;0.080647;0.550817;1.900000;2 3.410049;-0.170957;0.582458;1.900000;2 3.258009;-0.079819;0.647618;1.900000;2 3.183671;0.152744;0.679422;1.900000;2 3.109331;0.385307;0.711226;1.900000;2 3.042491;0.237371;0.739928;1.900000;2 2.975651;0.089435;0.768629;1.900000;2 2.911008;-0.106602;0.796555;1.900000;2 2.846365;-0.302639;0.82448;1.900000;2 2.806976;-0.091239;0.842408;1.900000;2 2.767587;0.120161;0.860336;1.900000;2 2.728198;0.331561;0.878263;1.900000;2 2.603308;0.293911;0.929977;1.900000;2 2.529357;0.120161;0.956868;1.900000;2 2.455406;-0.053590;0.98376;1.900000;2 2.374215;0.154565;1.01893;1.900000;2 2.293024;0.362720;1.05409;1.900000;2 2.241224;0.115130;1.08167;1.900000;2 2.189423;-0.132460;1.10925;1.900000;2 2.137623;-0.380050;1.13683;1.900000;2 2.084530;-0.097375;1.16855;1.900000;2 2.031436;0.185300;1.20027;1.900000;2 1.978343;0.467975;1.23199;1.900000;2 1.906072;0.189314;1.27336;1.900000;2 1.833802;-0.089347;1.31473;1.900000;2 1.773329;0.047195;1.34576;1.900000;2 1.712855;0.183737;1.37679;1.900000;2 1.588676;0.219970;1.42333;1.900000;2 1.449048;0.221769;1.47608;1.900000;2 1.282788;0.131623;1.52547;1.900000;2 1.222368;-0.077775;1.5421;1.900000;2 1.161949;-0.287173;1.55873;1.900000;2 1.101530;-0.496570;1.57537;1.900000;2 1.060780;-0.262979;1.58784;1.900000;2 1.020031;-0.029388;1.6003;1.900000;2 0.979281;0.204204;1.61277;1.900000;2 0.938531;0.437795;1.62523;1.900000;2 0.899269;0.214658;1.63814;1.900000;2 0.860006;-0.008479;1.65104;1.900000;2 0.820743;-0.231617;1.66394;1.900000;2 0.781481;-0.454754;1.67685;1.900000;2 0.718541;-0.211750;1.6968;1.900000;2 0.655602;0.031253;1.71676;1.900000;2 0.592662;0.274256;1.73672;1.900000;2 ================================================ FILE: examples/data/input_data/Hecho/H5.csv ================================================ X;Y;Z;Strati;PART_ID 8.204730;0.310298;0.882512;2.500000;1 8.186468;0.074862;0.938652;2.500000;1 8.168205;-0.160573;0.994792;2.500000;1 8.149943;-0.396008;1.05093;2.500000;1 8.102137;-0.164049;1.18828;2.500000;1 8.079607;0.043869;1.26234;2.500000;1 8.057078;0.251787;1.33641;2.500000;1 8.035432;0.127101;1.42294;2.500000;1 8.013785;0.002415;1.50947;2.500000;1 8.000569;0.162278;1.6022;2.500000;1 7.987353;0.322141;1.69494;2.500000;1 7.979606;0.075234;1.75407;2.500000;1 7.971859;-0.171674;1.8132;2.500000;1 7.964111;-0.418581;1.87233;2.500000;1 7.962174;-0.196796;1.93052;2.500000;1 7.960238;0.024990;1.98871;2.500000;1 7.958301;0.246775;2.0469;2.500000;1 7.964111;0.490803;2.21958;2.500000;1 7.964118;0.243567;2.2629;2.500000;1 7.964126;-0.003670;2.30622;2.500000;1 7.964133;-0.250907;2.34954;2.500000;1 7.964140;-0.498143;2.39286;2.500000;1 7.964130;-0.231130;2.45085;2.500000;1 7.964121;0.035884;2.50885;2.500000;1 7.964111;0.302897;2.56684;2.500000;1 7.966010;0.067941;2.62488;2.500000;1 7.967909;-0.167015;2.68292;2.500000;1 7.969808;-0.401971;2.74096;2.500000;1 7.975470;-0.110886;2.79324;2.500000;1 7.981131;0.180198;2.84551;2.500000;1 7.986793;0.471283;2.89779;2.500000;1 7.992821;0.243170;2.94766;2.500000;1 7.998849;0.015057;2.99753;2.500000;1 8.004877;-0.213056;3.0474;2.500000;1 8.014992;0.005565;3.16991;2.500000;1 8.041504;0.209490;3.22657;2.500000;1 8.068016;0.413415;3.28323;2.500000;1 8.171919;0.350937;3.41447;2.500000;1 8.268787;0.384358;3.49865;2.500000;1 8.385194;0.299285;3.55666;2.500000;1 8.528170;0.270380;3.63559;2.500000;1 8.579895;0.043331;3.66524;2.500000;1 8.631619;-0.183719;3.69489;2.500000;1 8.683345;-0.410769;3.72453;2.500000;1 8.850460;-0.292513;3.80129;2.500000;1 9.008642;-0.360996;3.86414;2.500000;1 9.084467;-0.100057;3.88701;2.500000;1 9.160292;0.160881;3.90989;2.500000;1 9.314689;0.404078;3.95714;2.500000;1 9.393667;0.211508;3.97595;2.500000;1 9.472647;0.018939;3.99476;2.500000;1 9.544981;-0.193716;4.01033;2.500000;1 9.617314;-0.406371;4.02591;2.500000;1 9.664015;-0.160875;4.03489;2.500000;1 9.710715;0.084621;4.04388;2.500000;1 9.757416;0.330118;4.05286;2.500000;1 9.814322;0.136367;4.06517;2.500000;1 9.871227;-0.057383;4.07747;2.500000;1 9.928133;-0.251134;4.08978;2.500000;1 11.427021;-0.050682;4.10741;2.500000;2 11.562702;0.078585;4.00951;2.500000;2 11.616794;-0.209537;3.96826;2.500000;2 11.670885;-0.497660;3.927;2.500000;2 11.711484;-0.247746;3.89919;2.500000;2 11.752084;0.002167;3.87139;2.500000;2 11.792683;0.252080;3.84357;2.500000;2 11.838969;0.026539;3.81307;2.500000;2 11.885257;-0.199002;3.78256;2.500000;2 11.931543;-0.424544;3.75206;2.500000;2 12.088167;-0.460560;3.66106;2.500000;2 12.241659;-0.446470;3.57511;2.500000;2 12.324155;-0.269887;3.53746;2.500000;2 12.406651;-0.093304;3.4998;2.500000;2 12.492773;-0.248091;3.46433;2.500000;2 12.578897;-0.402877;3.42886;2.500000;2 12.666503;-0.202717;3.39593;2.500000;2 12.754109;-0.002556;3.363;2.500000;2 12.838088;-0.246862;3.32788;2.500000;2 12.922067;-0.491168;3.29277;2.500000;2 13.088507;-0.434011;3.22865;2.500000;2 13.171923;-0.242416;3.19627;2.500000;2 13.255338;-0.050821;3.1639;2.500000;2 13.339708;0.113178;3.12816;2.500000;2 13.424079;0.277177;3.09242;2.500000;2 13.588610;0.490791;3.03503;2.500000;2 13.746824;0.377564;2.99881;2.500000;2 13.823914;0.132271;2.99385;2.500000;2 13.901003;-0.113021;2.98888;2.500000;2 14.062316;-0.009696;2.98463;2.500000;2 14.221975;-0.108989;2.97232;2.500000;2 14.376693;-0.356290;2.95339;2.500000;2 14.522757;-0.362521;2.91848;2.500000;2 14.569277;-0.145768;2.90715;2.500000;2 14.615796;0.070986;2.89582;2.500000;2 14.662316;0.287739;2.88449;2.500000;2 14.710289;0.032530;2.86722;2.500000;2 14.758262;-0.222679;2.84996;2.500000;2 14.806234;-0.477887;2.83269;2.500000;2 14.858789;-0.203101;2.81095;2.500000;2 14.911344;0.071686;2.78921;2.500000;2 14.963899;0.346473;2.76747;2.500000;2 15.134109;0.278828;2.68428;2.500000;2 15.293016;0.128696;2.61235;2.500000;2 15.386868;-0.020166;2.56988;2.500000;2 15.480721;-0.169029;2.52739;2.500000;2 ================================================ FILE: examples/data/input_data/Hecho/H6.csv ================================================ X;Y;Z;Strati;PART_ID 8.952921;-0.084143;0.969662;3.100000;1 8.911087;-0.204162;1.15795;3.100000;1 8.871284;0.215760;1.31224;3.100000;1 8.840179;-0.014820;1.47709;3.100000;1 8.820835;-0.361594;1.66743;3.100000;1 8.830230;0.037874;1.86273;3.100000;1 8.850173;-0.004632;2.05297;3.100000;1 8.870021;-0.136862;2.22085;3.100000;1 8.879224;0.135338;2.37141;3.100000;1 8.886145;0.043938;2.51198;3.100000;1 8.886936;0.072982;2.64404;3.100000;1 8.887444;-0.472170;2.78708;3.100000;1 8.922674;0.094967;2.93364;3.100000;1 8.974874;0.485061;3.08041;3.100000;1 9.095730;-0.334421;3.23113;3.100000;1 9.221681;0.114435;3.33477;3.100000;1 9.373880;0.442169;3.39296;3.100000;1 9.529310;-0.480985;3.43718;3.100000;1 9.704527;-0.469036;3.46388;3.100000;1 9.887550;0.264053;3.50216;3.100000;1 10.088041;-0.485336;3.5359;3.100000;1 10.298906;-0.345563;3.57408;3.100000;1 10.493638;0.116862;3.60808;3.100000;1 10.675692;-0.036059;3.63775;3.100000;1 10.816257;-0.485985;3.65458;3.100000;1 10.957764;0.049856;3.64167;3.100000;1 11.155530;0.491648;3.61615;3.100000;1 11.305290;-0.486805;3.53868;3.100000;1 11.429229;-0.212490;3.41991;3.100000;1 11.542152;0.458782;3.30074;3.100000;1 11.660447;-0.493473;3.18863;3.100000;1 11.795127;-0.120453;3.08398;3.100000;1 11.934685;0.490718;3.00058;3.100000;1 12.056499;-0.036572;2.92905;3.100000;1 12.171227;0.037118;2.8626;3.100000;1 12.310781;0.286128;2.78119;3.100000;1 8.891186;0.005799;1.23509;3.100000;1 8.830507;-0.188207;1.57226;3.100000;1 8.825533;-0.161860;1.76508;3.100000;1 8.874622;-0.000762;2.29613;3.100000;1 8.887190;-0.199594;2.71556;3.100000;1 8.905059;-0.188601;2.86036;3.100000;1 8.948774;0.290014;3.00702;3.100000;1 9.015159;0.211900;3.13065;3.100000;1 9.055445;-0.061260;3.18089;3.100000;1 9.158705;-0.109993;3.28295;3.100000;1 9.297781;0.278302;3.36387;3.100000;1 9.412738;0.211381;3.40402;3.100000;1 9.451595;-0.019408;3.41507;3.100000;1 9.490453;-0.250197;3.42613;3.100000;1 9.765534;-0.224673;3.47664;3.100000;1 9.826543;0.019690;3.4894;3.100000;1 9.954381;0.014257;3.5134;3.100000;1 10.021211;-0.235540;3.52465;3.100000;1 10.396273;-0.114350;3.59108;3.100000;1 10.745975;-0.261022;3.64617;3.100000;1 10.887011;-0.218064;3.64813;3.100000;1 11.056646;0.270752;3.62891;3.100000;1 11.192970;0.247035;3.59678;3.100000;1 11.230410;0.002422;3.57741;3.100000;1 11.267850;-0.242192;3.55805;3.100000;1 11.367260;-0.349647;3.4793;3.100000;1 11.466870;0.011268;3.38019;3.100000;1 11.504511;0.235025;3.34046;3.100000;1 11.571726;0.220719;3.27271;3.100000;1 11.601299;-0.017345;3.24469;3.100000;1 11.630874;-0.255409;3.21666;3.100000;1 11.727787;-0.306963;3.13631;3.100000;1 11.841646;0.083271;3.05618;3.100000;1 11.888165;0.286994;3.02838;3.100000;1 11.995592;0.227073;2.96482;3.100000;1 13.381723;0.142776;2.55015;3.100000;2 13.445801;0.319028;2.53121;3.100000;2 13.509877;0.495280;2.51227;3.100000;2 13.655194;0.112364;2.45405;3.100000;2 13.836675;-0.206101;2.37223;3.100000;2 14.001426;-0.031085;2.29865;3.100000;2 14.160304;-0.161330;2.23158;3.100000;2 14.326871;-0.312217;2.16217;3.100000;2 14.501058;0.021128;2.09177;3.100000;2 14.679503;0.031217;2.02467;3.100000;2 14.855081;-0.298193;1.95949;3.100000;2 15.041583;0.045499;1.89566;3.100000;2 15.213623;0.372955;1.83998;3.100000;2 15.370617;-0.168081;1.78765;3.100000;2 15.551479;-0.208549;1.72736;3.100000;2 13.582536;0.303822;2.48316;3.100000;2 13.745934;-0.046869;2.41314;3.100000;2 14.413964;-0.145545;2.12697;3.100000;2 14.767292;-0.133488;1.99208;3.100000;2 14.948332;-0.126347;1.92758;3.100000;2 15.127604;0.209227;1.86782;3.100000;2 15.292120;0.102437;1.81381;3.100000;2 ================================================ FILE: examples/data/input_data/Hecho/H7.csv ================================================ X;Y;Z;Strati;PART_ID 15.289856;0.038925;1.15377;3.900000;1 15.238041;-0.221445;1.16369;3.900000;1 15.186225;-0.481815;1.1736;3.900000;1 15.150331;-0.235131;1.18467;3.900000;1 15.114437;0.011552;1.19574;3.900000;1 15.078543;0.258236;1.20681;3.900000;1 15.031657;0.024978;1.22418;3.900000;1 14.984773;-0.208279;1.24155;3.900000;1 14.937887;-0.441536;1.25892;3.900000;1 14.885736;-0.174181;1.27946;3.900000;1 14.833583;0.093174;1.3;3.900000;1 14.781431;0.360529;1.32054;3.900000;1 14.698910;0.211078;1.3537;3.900000;1 14.616388;0.061627;1.38686;3.900000;1 14.467146;0.066878;1.44368;3.900000;1 14.317634;0.301399;1.49635;3.900000;1 14.181914;0.115108;1.54418;3.900000;1 14.116894;0.256551;1.56837;3.900000;1 14.051873;0.397993;1.59255;3.900000;1 13.946984;0.307047;1.63718;3.900000;1 13.828439;0.188005;1.68713;3.900000;1 13.662701;-0.002161;1.74741;3.900000;1 13.466489;-0.193424;1.82027;3.900000;1 13.277207;-0.147185;1.88096;3.900000;1 13.210272;0.054871;1.89676;3.900000;1 13.143337;0.256926;1.91257;3.900000;1 13.034733;0.130914;1.92509;3.900000;1 12.911773;-0.064137;1.94195;3.900000;1 12.772409;-0.180366;1.97187;3.900000;1 12.635098;-0.177946;2.00441;3.900000;1 12.485490;-0.267971;2.05525;3.900000;1 12.418439;-0.081574;2.08322;3.900000;1 12.351388;0.104823;2.11118;3.900000;1 12.301346;-0.134908;2.13028;3.900000;1 12.251304;-0.374639;2.14937;3.900000;1 12.199150;-0.175130;2.16688;3.900000;1 12.146996;0.024378;2.1844;3.900000;1 11.681143;-0.091988;2.45514;3.900000;2 11.625896;0.101024;2.49092;3.900000;2 11.570650;0.294036;2.5267;3.900000;2 11.515404;0.487048;2.56248;3.900000;2 11.408793;0.218089;2.63007;3.900000;2 11.317797;-0.283091;2.68637;3.900000;2 11.231979;0.205193;2.7377;3.900000;2 11.135729;-0.351542;2.79535;3.900000;2 11.020432;0.390264;2.82621;3.900000;2 10.896647;-0.425699;2.83684;3.900000;2 10.767434;-0.040702;2.82663;3.900000;2 10.634283;0.374627;2.81549;3.900000;2 10.515129;-0.376984;2.80497;3.900000;2 10.416675;-0.083784;2.79581;3.900000;2 10.312689;-0.438789;2.78703;3.900000;2 10.182472;-0.320403;2.7773;3.900000;2 10.035873;0.026322;2.7544;3.900000;2 9.901889;0.476288;2.7191;3.900000;2 9.736984;0.393816;2.64523;3.900000;2 9.621649;0.286747;2.52269;3.900000;2 9.600023;-0.272009;2.41096;3.900000;2 9.592815;0.204375;2.21633;3.900000;2 9.592815;-0.310521;2.05774;3.900000;2 9.589211;0.345622;1.94601;3.900000;2 9.582001;0.213355;1.83428;3.900000;2 9.574793;0.439873;1.67569;3.900000;2 9.592024;0.170265;1.51819;3.900000;2 9.620529;0.151214;1.34953;3.900000;2 9.647773;0.336139;1.22923;3.900000;2 9.682293;0.173070;1.13336;3.900000;2 9.725352;0.228900;1.01358;3.900000;2 9.775251;-0.303244;0.904769;3.900000;2 9.831948;-0.366380;0.791293;3.900000;2 11.363295;-0.032501;2.65822;3.900000;2 11.274888;-0.038949;2.71204;3.900000;2 11.183854;-0.073175;2.76653;3.900000;2 11.097297;-0.104273;2.80564;3.900000;2 11.058865;0.142995;2.81593;3.900000;2 10.979171;0.118276;2.82976;3.900000;2 10.937909;-0.153711;2.8333;3.900000;2 10.832041;-0.233201;2.83174;3.900000;2 10.700859;0.166963;2.82106;3.900000;2 10.594565;0.124090;2.81198;3.900000;2 10.554847;-0.126447;2.80848;3.900000;2 10.465902;-0.230384;2.80039;3.900000;2 10.364681;-0.261287;2.79142;3.900000;2 10.109173;-0.147041;2.76585;3.900000;2 9.968882;0.251305;2.73675;3.900000;2 9.610836;0.007369;2.46682;3.900000;2 9.596419;-0.033817;2.31364;3.900000;2 9.592815;-0.053073;2.13703;3.900000;2 9.591614;-0.091807;2.0205;3.900000;2 9.590412;0.126908;1.98325;3.900000;2 9.583408;0.305069;1.59694;3.900000;2 9.750301;-0.037172;0.959173;3.900000;2 ================================================ FILE: examples/data/input_data/Hecho/H8.csv ================================================ X;Y;Z;Strati;PART_ID 9.861884;-0.362561;1.5302;4.400000;1 9.864935;-0.228321;1.62629;4.400000;1 9.867985;-0.094081;1.72239;4.400000;1 9.873019;0.038795;1.84227;4.400000;1 9.875078;0.263953;1.8952;4.400000;1 9.877138;0.489111;1.94813;4.400000;1 9.878155;0.223304;1.99288;4.400000;1 9.879171;-0.042504;2.03762;4.400000;1 9.880188;-0.308311;2.08236;4.400000;1 9.896967;-0.173439;2.151;4.400000;1 9.913745;-0.038566;2.21964;4.400000;1 9.959504;0.154505;2.29896;4.400000;1 10.006788;-0.090049;2.32336;4.400000;1 10.054073;-0.334604;2.34777;4.400000;1 10.105934;-0.181977;2.36607;4.400000;1 10.157796;-0.029349;2.38438;4.400000;1 10.227961;-0.204894;2.39353;4.400000;1 10.298126;-0.380439;2.40268;4.400000;1 10.353038;-0.107986;2.40573;4.400000;1 10.407948;0.164466;2.40878;4.400000;1 10.462860;0.436919;2.41183;4.400000;1 10.555141;0.300398;2.42327;4.400000;1 10.664203;0.301922;2.42709;4.400000;1 10.763349;0.127082;2.42403;4.400000;1 10.862494;-0.047758;2.42098;4.400000;1 10.926558;-0.200708;2.41336;4.400000;1 10.990622;-0.353658;2.40573;4.400000;1 11.049601;-0.070438;2.38133;4.400000;1 11.108580;0.212781;2.35692;4.400000;1 11.167559;0.496001;2.33252;4.400000;1 11.287296;0.477011;2.27989;4.400000;1 11.393307;0.247790;2.19829;4.400000;1 11.542789;0.329055;2.06711;4.400000;1 11.582447;0.108904;2.03508;4.400000;1 11.622105;-0.111247;2.00305;4.400000;1 11.883057;-0.343325;1.98394;4.400000;2 11.989829;-0.225281;1.94734;4.400000;2 12.108804;-0.400291;1.87717;4.400000;2 12.267437;-0.388972;1.80701;4.400000;2 12.340652;-0.117488;1.77803;4.400000;2 12.413868;0.153997;1.74904;4.400000;2 12.593856;0.143977;1.70023;4.400000;2 12.752489;0.309829;1.68193;4.400000;2 12.790876;0.060663;1.67774;4.400000;2 12.829264;-0.188503;1.67354;4.400000;2 12.867651;-0.437669;1.66935;4.400000;2 12.896378;-0.182377;1.66541;4.400000;2 12.925105;0.072915;1.66147;4.400000;2 12.953832;0.328207;1.65752;4.400000;2 12.995493;0.153949;1.65376;4.400000;2 13.037153;-0.020309;1.64999;4.400000;2 13.155174;-0.030046;1.62397;4.400000;2 13.310756;-0.076569;1.57516;4.400000;2 13.372758;0.162488;1.55631;4.400000;2 13.434760;0.401545;1.53745;4.400000;2 13.545656;0.239196;1.49889;4.400000;2 13.588778;0.028566;1.48205;4.400000;2 13.631900;-0.182065;1.46521;4.400000;2 13.675022;-0.392695;1.44837;4.400000;2 13.722403;-0.179310;1.42962;4.400000;2 13.769782;0.034075;1.41087;4.400000;2 13.817163;0.247459;1.39212;4.400000;2 13.888662;0.022510;1.36733;4.400000;2 13.960161;-0.202440;1.34255;4.400000;2 14.088671;-0.399840;1.29755;4.400000;2 14.146576;-0.124371;1.27482;4.400000;2 14.204482;0.151098;1.25208;4.400000;2 14.253348;0.296680;1.23058;4.400000;2 14.302215;0.442263;1.20908;4.400000;2 14.328701;0.185447;1.19735;4.400000;2 14.355186;-0.071368;1.18561;4.400000;2 14.381673;-0.328183;1.17388;4.400000;2 14.416756;-0.066855;1.1589;4.400000;2 14.451838;0.194473;1.14392;4.400000;2 14.486921;0.455801;1.12894;4.400000;2 14.561579;0.191739;1.0977;4.400000;2 14.636236;-0.072323;1.06646;4.400000;2 14.721737;0.150376;1.03058;4.400000;2 14.807238;0.373075;0.994707;4.400000;2 14.852481;0.120808;0.975168;4.400000;2 14.897723;-0.131458;0.955629;4.400000;2 14.942966;-0.383724;0.936089;4.400000;2 14.997377;-0.165065;0.911903;4.400000;2 15.051789;0.053595;0.887716;4.400000;2 15.106200;0.272255;0.863529;4.400000;2 ================================================ FILE: examples/data/input_data/Hecho/H9.csv ================================================ X;Y;Z;Strati;PART_ID 10.295227;0.182503;1.25328;5.200000;1 10.308938;0.395599;1.42489;5.200000;1 10.332090;0.147206;1.55363;5.200000;1 10.359694;-0.273491;1.65259;5.200000;1 10.389619;0.051627;1.67821;5.200000;1 10.438280;0.344764;1.69749;5.200000;1 10.587311;0.472410;1.67223;5.200000;1 10.718938;0.149573;1.60488;5.200000;1 10.873301;0.085932;1.51507;5.200000;1 11.010823;-0.036715;1.41122;5.200000;1 11.086601;0.010783;1.3607;5.200000;1 10.345892;-0.063142;1.60311;5.200000;1 10.374657;-0.110932;1.6654;5.200000;1 10.653124;0.310991;1.63855;5.200000;1 11.470213;0.282821;1.35501;5.200000;2 11.520885;0.134955;1.33577;5.200000;2 11.571557;-0.012911;1.31653;5.200000;2 11.618086;-0.245436;1.29874;5.200000;2 11.664615;-0.477961;1.28095;5.200000;2 11.691947;-0.240815;1.2707;5.200000;2 11.719278;-0.003670;1.26045;5.200000;2 11.746611;0.233476;1.25019;5.200000;2 11.773943;0.470621;1.23994;5.200000;2 11.817730;0.197237;1.22275;5.200000;2 11.861517;-0.076148;1.20557;5.200000;2 11.905304;-0.349533;1.18838;5.200000;2 11.973866;-0.181941;1.16003;5.200000;2 12.042426;-0.014350;1.13168;5.200000;2 12.112723;-0.230784;1.10448;5.200000;2 12.183021;-0.447219;1.07729;5.200000;2 12.247808;-0.251604;1.05271;5.200000;2 12.312595;-0.055990;1.02812;5.200000;2 12.375095;-0.237683;1.01105;5.200000;2 12.437595;-0.419376;0.993975;5.200000;2 12.481410;-0.194848;0.985863;5.200000;2 12.525226;0.029679;0.977751;5.200000;2 12.569040;0.254206;0.969639;5.200000;2 12.642176;0.060768;0.963293;5.200000;2 12.715312;-0.132671;0.956946;5.200000;2 12.872252;-0.164293;0.938576;5.200000;2 12.948841;0.008175;0.929246;5.200000;2 13.025431;0.180642;0.919917;5.200000;2 13.156769;0.171614;0.900824;5.200000;2 13.218388;-0.071732;0.884913;5.200000;2 13.280005;-0.315077;0.869002;5.200000;2 13.412395;-0.079217;0.829215;5.200000;2 13.485059;-0.254574;0.805137;5.200000;2 13.557722;-0.429932;0.781058;5.200000;2 13.632277;-0.245430;0.756777;5.200000;2 13.706833;-0.060928;0.732496;5.200000;2 13.815107;0.214221;0.696605;5.200000;2 13.923383;0.489369;0.660714;5.200000;2 ================================================ FILE: examples/data/input_data/Moureze/Moureze_Points.csv ================================================ X;Y;Z;OrientX;OrientY;OrientZ;Cutoff 272;86;-149.12;-99999;-99999;-99999;0.455221388 256.198395;344;-100;0.671273;0.641262;0.371719;0.674027085 236;17.083025;-90;-99999;-99999;-99999;0.75790316 199.974075;351.877136;-157.355;0.447513;0.563921;0.694065;0.786050445 61.93335;21.684322;-124.568;-0.654601;0.659643;-0.369282;0.969300097 274;130.46524;-128;0.29201;0.952812;-0.082946;0.810360824 91.941277;221.176559;-122.021;-0.089229;-0.573854;0.814082;0.075395778 222.377396;135.949524;-107.377;0.326241;-0.835915;0.441376;0.213875409 8.221661;55.990696;-102.001;-99999;-99999;-99999;0.294817124 245.243591;196;-152;0.910792;0.383353;0.153293;0.302822058 47.999996;380;-136.273;-99999;-99999;-99999;0.587207907 224;148;-100.366;-99999;-99999;-99999;0.223980888 93.938942;161.710815;-103.442;-99999;-99999;-99999;0.86754437 188.506622;26;-148;-99999;-99999;-99999;0.665441258 207.99234;231.96373;-146.066;-99999;-99999;-99999;0.035217977 125.92762;133.457687;-118.025;-99999;-99999;-99999;0.054865247 140.06311;226.697067;-144.454;-99999;-99999;-99999;0.912388298 254.10321;48;-108;0.560875;-0.410498;0.718965;0.271537051 89.947021;186.874222;-154.019;0.017744;0.234906;0.971856;0.275424754 11.995057;55.976593;-166.908;-99999;-99999;-99999;0.699875982 27.987003;72.288437;-168.005;-99999;-99999;-99999;0.574587595 79.93335;125.214508;-126.023;-99999;-99999;-99999;0.092435337 53.965199;115.835167;-153.873;-99999;-99999;-99999;0.23687173 250;58;-107.414;0.172384;0.197873;0.964951;0.808639747 109.924088;89.049194;-122.027;-99999;-99999;-99999;0.005325305 139.959885;63.111019;-158.014;-99999;-99999;-99999;0.765160139 280;48;-154.232;-99999;-99999;-99999;0.314547778 139.964035;47.829639;-160.11;-99999;-99999;-99999;0.55729892 240;40;-90.1741;-99999;-99999;-99999;0.571779842 83.95932;136.787476;-88.0143;0.034526;-0.499821;0.86544;0.250604281 206;46;-108.677;-99999;-99999;-99999;0.336593018 263.174316;110;-100;-0.653757;0.141291;0.743397;0.653039449 -0.001704;55.991928;-134.69;-99999;-99999;-99999;0.881945387 294;58;-151.855;-99999;-99999;-99999;0.682888895 192.502563;77.995682;-130;-0.684783;0.642381;0.344121;0.654866486 131.955887;43.7911;-160.011;-99999;-99999;-99999;0.669829897 67.96376;162.505646;-156.013;-99999;-99999;-99999;0.139974731 298;120;-137.054;-99999;-99999;-99999;0.507363826 128.786072;298.925659;-121.884;-99999;-99999;-99999;0.682808043 133.398544;61.759579;-120.018;-99999;-99999;-99999;0.367131547 99.919746;84.767616;-130.028;-99999;-99999;-99999;0.572857327 274.429504;158;-150;-99999;-99999;-99999;0.938735361 77.938942;113.7108;-152.402;-99999;-99999;-99999;0.495282489 155.953171;174.590652;-152.016;-99999;-99999;-99999;0.848543202 212;93.410698;-120;-99999;-99999;-99999;0.68216098 89.926727;86.070412;-152.026;-99999;-99999;-99999;0.7516679 95.947914;247.753357;-104.895;-99999;-99999;-99999;0.608631555 262;80.976151;-116;-99999;-99999;-99999;0.776307208 107.945976;27.74411;-105.337;-99999;-99999;-99999;0.742276917 58.887806;67.771873;-162.017;-99999;-99999;-99999;0.075953042 218;175.143311;-148;-99999;-99999;-99999;0.858409652 25.980804;41.909081;-164.758;-99999;-99999;-99999;0.957592079 56;361.976776;-142;-99999;-99999;-99999;0.34479571 143.971375;35.864426;-161.199;-99999;-99999;-99999;0.647032274 67.978409;195.897736;-88.7165;0.435456;0.548993;0.713432;0.04104085 213.453735;0;-150;-99999;-99999;-99999;0.811189071 146.01683;228.966476;-156.255;-99999;-99999;-99999;0.921512029 263.831573;116;-102;-99999;-99999;-99999;0.657222189 197.983337;235.921066;-145.843;-99999;-99999;-99999;0.834669836 151.97702;43.891197;-157.886;-99999;-99999;-99999;0.625984045 216;16.241158;-112;-0.496056;-0.851315;0.170853;0.475278459 23.335806;75.93045;-136.005;-99999;-99999;-99999;0.780384318 284;0;-156.667;0.282885;-0.453508;0.845166;0.893524316 61.999954;371.999786;-139.677;-99999;-99999;-99999;0.944225154 70.190872;27.646189;-132.026;-99999;-99999;-99999;0.165141247 99.965752;354.764526;-110.012;-99999;-99999;-99999;0.845902327 65.214539;59.72617;-114.02;-99999;-99999;-99999;0.950041764 247.56929;44;-104;-99999;-99999;-99999;0.166898864 179.992416;82.481415;-128.003;-99999;-99999;-99999;0.117790562 278;82.569084;-134;-99999;-99999;-99999;0.678638308 247.088379;152.923553;-102.485;-99999;-99999;-99999;0.939423694 276;196;-154.766;-99999;-99999;-99999;0.091501744 248;43.380882;-126;-99999;-99999;-99999;0.61601126 145.898132;285.399078;-111.991;-99999;-99999;-99999;0.045653729 225.999985;22;-82.7123;-0.022006;-0.526693;0.849771;0.158505237 246;20.808941;-102;0.860607;-0.503509;0.076377;0.427215372 11.297666;79.986389;-112.001;-99999;-99999;-99999;0.577247953 7.997524;61.988274;-108.812;-99999;-99999;-99999;0.936850938 131.956482;75.793846;-101.766;-99999;-99999;-99999;0.177196687 225.999985;4;-150.18;0.420452;-0.561447;0.71274;0.743881376 216.451416;176.091599;-116.572;-99999;-99999;-99999;0.57400172 195.983551;225.922089;-146.901;-99999;-99999;-99999;0.445237372 17.988695;67.946465;-134.056;-99999;-99999;-99999;0.909961661 143.973267;27.873411;-161.92;-99999;-99999;-99999;0.903079889 141.946213;157.745224;-156.902;-99999;-99999;-99999;0.61940139 87.943558;15.732658;-102.707;-99999;-99999;-99999;0.618572983 183.996948;66.059166;-128.001;-0.830942;0.487172;0.2687;0.655365799 232;0;-154.943;-99999;-99999;-99999;0.904419872 292;24;-155.217;-99999;-99999;-99999;0.028788855 258;56;-115.989;-99999;-99999;-99999;0.1926242 222;47.034977;-126;-0.37299;0.79155;0.484074;0.99582922 206;48.26223;-120;-99999;-99999;-99999;0.724355839 105.933189;84.725967;-108.023;-99999;-99999;-99999;0.093772174 25.997921;149.990158;-160.843;-99999;-99999;-99999;0.590566523 102.8591;127.661087;-110.025;-99999;-99999;-99999;0.501415129 295.418121;88;-146;-99999;-99999;-99999;0.405734488 217.992355;295.963776;-150.551;-99999;-99999;-99999;0.879540661 278;310;-148.564;0.004398;0.097342;0.995241;0.041214417 135.417358;61.779537;-116.016;-99999;-99999;-99999;0.997064467 39.989258;149.949112;-158.681;-99999;-99999;-99999;0.96028439 191.999252;93.996513;-103.454;-99999;-99999;-99999;0.642512819 117.932671;49.207203;-142.024;-99999;-99999;-99999;0.005735199 152.01857;87.85836;-106.011;-99999;-99999;-99999;0.706409732 234.000015;60;-117.291;-0.288197;0.625587;-0.724972;0.267336976 93.928154;2.548177;-158.025;-99999;-99999;-99999;0.62558669 96.909615;155.787079;-86.0158;0.928324;0.324636;0.18118;0.284623588 276.177917;80;-130;-99999;-99999;-99999;0.242209367 35.966408;5.840896;-173.186;-99999;-99999;-99999;0.1342671 227.594055;50;-124;-99999;-99999;-99999;0.102944796 202.53537;40;-92;-99999;-99999;-99999;0.232604262 278;80;-156.53;-99999;-99999;-99999;0.544938918 205.999146;159.995972;-100.306;-99999;-99999;-99999;0.54249809 296;176;-158.39;-99999;-99999;-99999;0.212462509 65.935555;22.307667;-162.023;-99999;-99999;-99999;0.525932502 41.965008;45.834259;-164.333;-99999;-99999;-99999;0.309439091 258;32;-157.987;0.284957;-0.121863;0.950762;0.968220316 181.932327;371.679443;-98.6408;-99999;-99999;-99999;0.956336784 65.934433;25.689468;-118.7;-99999;-99999;-99999;0.488695101 35.988392;123.94503;-161.562;-99999;-99999;-99999;0.955318195 259.589905;52;-124;0.908482;-0.416672;0.032336;0.942114529 183.776703;55.99028;-146.001;-99999;-99999;-99999;0.002889855 159.989456;15.950037;-157.059;-99999;-99999;-99999;0.941988039 45.957462;29.798527;-165.832;-0.220671;-0.25659;0.940992;0.358570314 53.984322;164.74324;-92.0055;-99999;-99999;-99999;0.5784199 97.92881;86.957237;-112.025;-99999;-99999;-99999;0.399470648 45.987171;167.93924;-102.306;-99999;-99999;-99999;0.462043946 143.966049;91.731422;-168.012;-99999;-99999;-99999;0.597027903 73.949509;169.645493;-132.018;-99999;-99999;-99999;0.074532244 19.063925;204;-114;-99999;-99999;-99999;0.118477196 55.946835;33.748192;-163.199;-99999;-99999;-99999;0.931808484 133.933502;189.685013;-150.949;-0.086184;-0.045358;0.995246;0.165312026 192.617538;16;-144;-99999;-99999;-99999;0.456163106 50.97047;11.734254;-160.02;-99999;-99999;-99999;0.305068642 149.958588;97.609322;-120.015;-99999;-99999;-99999;0.823736286 7.991512;1.9598;-174.961;-99999;-99999;-99999;0.193850568 204;111.999977;-151.55;-99999;-99999;-99999;0.206933582 274;320;-150.799;-0.03578;0.142692;0.98912;0.962297831 288;340;-166.067;-99999;-99999;-99999;0.527856972 220;14.547661;-96;-0.280398;-0.933689;0.222716;0.712893026 169.692673;179.849304;-154.011;-99999;-99999;-99999;0.842541581 47.167294;13.740329;-154.019;-99999;-99999;-99999;0.370714244 109.942657;48.187515;-168.02;-99999;-99999;-99999;0.121314853 298;101.672127;-118;-99999;-99999;-99999;0.368416233 296;52;-152.003;-0.027757;0.011367;0.99955;0.544470698 286;168;-145.123;-99999;-99999;-99999;0.347383488 231.940353;18;-132;-99999;-99999;-99999;0.949410363 240;26.06835;-158;-99999;-99999;-99999;0.935181372 67.700737;37.674107;-124.024;-0.69928;-0.170749;-0.694155;0.723369827 184.167587;105.967506;-114.002;-99999;-99999;-99999;0.432767156 286.139404;186;-148;0.151405;0.12801;-0.980148;0.301626884 168.028397;227.705505;-146.231;-99999;-99999;-99999;0.732742392 245.984573;185.396576;-131.965;-99999;-99999;-99999;0.633899001 292.205048;94;-120;-99999;-99999;-99999;0.932506838 53.960629;114.597755;-142.014;-0.520646;-0.621436;0.585445;0.515399483 57.966934;159.028671;-122.012;-99999;-99999;-99999;0.828032378 177.987335;125.940025;-103.483;-99999;-99999;-99999;0.953570824 137.95491;381.786469;-153.035;-99999;-99999;-99999;0.771948864 131.823898;145.656479;-124.025;-99999;-99999;-99999;0.814989191 53.971924;135.867035;-106.425;-0.451806;-0.154228;0.878684;0.164950462 284;380;-154.715;-99999;-99999;-99999;0.032589374 216;56;-122.044;-99999;-99999;-99999;0.556949883 58.7948;61.728256;-148.02;-99999;-99999;-99999;0.545378065 179.370773;103.949242;-146.004;-99999;-99999;-99999;0.444390496 153.970367;83.19558;-112.01;-99999;-99999;-99999;0.039650837 220.98468;128.357697;-122.262;-99999;-99999;-99999;0.628882745 109.942604;23.449234;-166.02;-99999;-99999;-99999;0.990678936 284;87.031967;-144;-99999;-99999;-99999;0.469854459 169.978607;127.898666;-105.769;-99999;-99999;-99999;0.578269814 284;396;-159.263;-99999;-99999;-99999;0.059983264 188.839722;293.808563;-140.014;0.236698;-0.954545;0.181156;0.530621178 171.971008;148.913055;-120.01;-99999;-99999;-99999;0.847163193 113.948013;57.75378;-100.927;0.176979;-0.519555;0.835907;0.972426996 230;12.407278;-102;-99999;-99999;-99999;0.473752228 133.934143;197.688049;-151.9;-0.007786;0.264209;0.964434;0.699742971 208.894287;24;-116;-99999;-99999;-99999;0.370263176 169.99408;31.971977;-154.837;-99999;-99999;-99999;0.422427322 45.970448;87.860023;-161.665;-99999;-99999;-99999;0.764203357 32.739956;1.796276;-148.015;-99999;-99999;-99999;0.833345335 288;68;-152.995;-99999;-99999;-99999;0.910585657 67.946579;123.731316;-122.019;-99999;-99999;-99999;0.187540633 149.963745;101.009689;-158.013;-99999;-99999;-99999;0.049820577 186.445007;63.993435;-118;-99999;-99999;-99999;0.419848858 187.95369;307.78067;-98.56;-99999;-99999;-99999;0.66853533 222;11.223932;-130;0.247686;-0.961744;0.117051;0.275503618 236;36;-117.223;-99999;-99999;-99999;0.493045573 252;29.730774;-148;0.322948;-0.883901;-0.338266;0.171026214 19.990532;61.703445;-166.003;-0.000491;0.116692;0.993168;0.339102745 259.519043;340;-108;-99999;-99999;-99999;0.455943367 31.972775;19.871052;-171.318;-99999;-99999;-99999;0.408267886 232;76;-114.859;-99999;-99999;-99999;0.012631899 67.099014;55.673676;-138.024;-99999;-99999;-99999;0.59742319 234.000015;100.626045;-126;-0.113096;0.981081;0.157125;0.505397777 133.957916;98.671654;-170.015;-99999;-99999;-99999;0.202374314 39.973862;69.876198;-165.048;-99999;-99999;-99999;0.290909233 171.988022;73.943283;-145.777;-99999;-99999;-99999;0.281676203 110.626022;135.637817;-116.027;-99999;-99999;-99999;0.812076355 34;372;-141.308;-99999;-99999;-99999;0.99613084 159.121521;127.843719;-106.012;-99999;-99999;-99999;0.152757895 236.683395;212.000015;-152;-99999;-99999;-99999;0.77493669 119.941879;47.463661;-158.02;-99999;-99999;-99999;0.215861266 270;194;-133.043;-99999;-99999;-99999;0.514603604 272;191.546844;-108;-0.279634;0.712384;0.643673;0.968106076 109.954491;359.784424;-112.134;-0.574248;0.734062;0.36248;0.709677768 187.998703;68.143318;-120;-0.858875;0.508309;0.062889;0.085164822 107.93927;79.712379;-103.047;-99999;-99999;-99999;0.395610795 128.14505;223.248428;-125.469;-0.440181;-0.879704;-0.179895;0.042639945 5.057555;57.982597;-132.001;-99999;-99999;-99999;0.05142973 111.945724;23.74295;-109.363;-99999;-99999;-99999;0.098598787 232.335922;132;-144;-99999;-99999;-99999;0.843573942 6;130;-159.333;-99999;-99999;-99999;0.389387103 113.181114;25.734537;-112.02;-99999;-99999;-99999;0.237234625 99.491272;5.657377;-152.025;-99999;-99999;-99999;0.692014297 199.999405;133.997086;-97.598;-99999;-99999;-99999;0.984762124 146.101547;209.554932;-154.339;-0.300523;0.201431;0.932261;0.885966871 71.929375;27.665504;-156.849;-99999;-99999;-99999;0.990367764 216.566193;52;-84;-99999;-99999;-99999;0.849251084 292;193.662125;-154;-99999;-99999;-99999;0.405625408 262.829803;328;-132;0.826577;-0.504791;-0.24891;0.816731932 7.182063;63.995464;-100;-99999;-99999;-99999;0.391386715 1.999141;61.995934;-162.874;-99999;-99999;-99999;0.262735257 87.987267;369.939697;-140.057;-99999;-99999;-99999;0.458910512 21.971642;1.164564;-156.01;-99999;-99999;-99999;0.747121808 216;76;-109.457;-99999;-99999;-99999;0.462581018 39.966034;41.839123;-164.277;-99999;-99999;-99999;0.998103868 218.320404;88;-156;-99999;-99999;-99999;0.756587186 187.951675;353.182526;-144.017;-99999;-99999;-99999;0.236045504 210;86;-114.464;-99999;-99999;-99999;0.634561522 163.959518;153.281937;-124.014;-99999;-99999;-99999;0.64874613 137.945343;89.741142;-124.357;-99999;-99999;-99999;0.551820119 132.137619;293.129517;-115.929;-99999;-99999;-99999;0.221969123 184.554413;107.970406;-110.002;-99999;-99999;-99999;0.810833572 71.965492;183.836563;-156.32;-0.315829;-0.114876;0.941836;0.469113973 111.971077;391.863007;-143.342;-99999;-99999;-99999;0.346091065 189.38324;65.998688;-108;-99999;-99999;-99999;0.053541695 229.990173;359.399445;-142.003;-0.314884;0.946624;-0.068922;0.687433086 29.961353;5.155962;-134.014;-99999;-99999;-99999;0.893491984 109.930199;33.669392;-148.433;-99999;-99999;-99999;0.415271166 69.960449;152.663757;-102.014;-0.213965;0.463621;0.859811;0.758685274 219.985641;367.931976;-152.727;-99999;-99999;-99999;0.205270172 13.99149;39.959698;-167.417;-99999;-99999;-99999;0.639029427 101.945877;15.743645;-104.456;-99999;-99999;-99999;0.845963928 282;8;-153.586;-99999;-99999;-99999;0.924802111 115.931381;49.108974;-144.024;-99999;-99999;-99999;0.951579033 159.988098;21.943632;-155.196;-99999;-99999;-99999;0.948085904 295.636505;182;-104;-99999;-99999;-99999;0.518040409 110.253159;21.706221;-118.022;0.608081;-0.678715;-0.411805;0.103610291 188;24;-158.868;-99999;-99999;-99999;0.831718921 61.941296;79.721954;-135.361;-99999;-99999;-99999;0.513849961 60.360538;53.724003;-154.02;-99999;-99999;-99999;0.014573881 1.998346;55.700386;-118.001;-99999;-99999;-99999;0.324643059 121.953255;1.778592;-160.771;-99999;-99999;-99999;0.878932323 232;102;-130.249;-99999;-99999;-99999;0.018823045 183.999344;42.458382;-156;-99999;-99999;-99999;0.497431466 181.999619;27.998175;-158.573;0.176559;-0.109124;0.978222;0.96427329 259.441681;116;-110;-99999;-99999;-99999;0.821374397 292;123.23111;-116;-99999;-99999;-99999;0.371557466 47.992203;203.963089;-97.2754;0.166746;0.598258;0.783762;0.496896113 77.969368;265.854919;-120.539;-0.225421;0.924617;0.307033;0.304419214 -0.000131;55.999378;-173.792;-99999;-99999;-99999;0.994791201 206;47.161228;-94;-99999;-99999;-99999;0.566697334 73.9683;241.849869;-118.96;-99999;-99999;-99999;0.55426824 244;225.829453;-154;-99999;-99999;-99999;0.247431444 3.756375;398;-120;-99999;-99999;-99999;0.735141873 107.585739;31.653513;-136.026;0.986983;0.151823;0.053049;0.845167584 39.982452;107.916885;-163.79;-99999;-99999;-99999;0.392813385 246.667526;40;-100;-99999;-99999;-99999;0.802499408 210;74;-109.247;-99999;-99999;-99999;0.852542203 249.196899;113.999992;-152;-99999;-99999;-99999;0.490230124 252;30.527916;-142;0.250955;-0.842623;0.476454;0.852764783 91.927391;0.366973;-158.026;0.748314;-0.649654;-0.134075;0.310131924 296;118.765732;-114;-99999;-99999;-99999;0.170485664 53.953896;53.781639;-163.202;-99999;-99999;-99999;0.222955979 206.526321;38;-86;-0.848148;-0.198543;0.491147;0.91061387 242;32;-92.6177;0.556145;-0.05251;0.829425;0.051774538 246;56;-105.808;-99999;-99999;-99999;0.259249388 193.998566;125.993202;-95.4583;0.184463;-0.2679;0.945623;0.309146863 163.961914;150.820541;-116.013;0.690552;0.641831;-0.333455;0.416069493 48.85228;15.721032;-136.021;-99999;-99999;-99999;0.765593853 117.925652;90.678574;-138.026;-99999;-99999;-99999;0.970516426 258;59.781956;-152;0.751009;0.547597;-0.368949;0.472987131 259.677765;74;-146;-99999;-99999;-99999;0.283103519 39.969143;51.853848;-165.014;-99999;-99999;-99999;0.166090371 179.997528;51.243004;-156.001;-99999;-99999;-99999;0.558212491 89.945808;23.743324;-100.21;-99999;-99999;-99999;0.371937465 58.302982;75.760727;-154.018;-99999;-99999;-99999;0.957196436 227.614029;90;-110;-99999;-99999;-99999;0.093785719 68.99176;31.648193;-140.026;-99999;-99999;-99999;0.334639295 274;82.727173;-140;-99999;-99999;-99999;0.92173144 196;24.409357;-134;-99999;-99999;-99999;0.610233019 178.669891;113.932343;-136.005;-99999;-99999;-99999;0.384921809 55.961697;122.073128;-118.013;-99999;-99999;-99999;0.348719353 116.923912;159.674637;-154.024;-99999;-99999;-99999;0.589746767 22;232;-157.396;0.095922;0.465437;0.879868;0.885471662 107.933777;43.68634;-158.942;-99999;-99999;-99999;0.270497401 192.931274;93.997856;-102;-99999;-99999;-99999;0.311580795 26.842581;79.921547;-146.006;-99999;-99999;-99999;0.227255345 153.988281;2.731824;-164.004;-99999;-99999;-99999;0.639400107 113.946777;25.747936;-167.478;-99999;-99999;-99999;0.836994576 127.302414;51.724155;-130.02;-99999;-99999;-99999;0.357698031 218.368423;361.9328;-154.005;-0.283997;-0.199309;0.937882;0.520395524 234.000015;36;-76.9032;-99999;-99999;-99999;0.230372765 163.947968;240.59404;-148.018;0.56962;-0.821564;-0.023768;0.387408747 296;342;-164.654;-99999;-99999;-99999;0.28525628 85.934875;91.691551;-159.595;-99999;-99999;-99999;0.324994833 212;52.820477;-96;-99999;-99999;-99999;0.597119818 71.972092;209.867813;-155.909;-99999;-99999;-99999;0.509196437 208.176285;94;-134;-99999;-99999;-99999;0.087363846 198;56;-103.175;-0.146068;0.087644;0.985385;0.93613026 67.997627;343.98877;-147.178;0.121295;-0.074488;0.989818;0.611991172 77.932732;17.681381;-113.557;-99999;-99999;-99999;0.695331365 199.970459;297.807343;-138.01;0.404763;-0.854371;-0.325909;0.293499198 8;138;-157.422;-99999;-99999;-99999;0.162712128 160.156784;-0.029824;-166.002;-99999;-99999;-99999;0.150239129 53.960754;183.921478;-156.006;0.536501;-0.395437;-0.745517;0.726957391 131.962372;11.821781;-160.52;-99999;-99999;-99999;0.385934796 14.458169;77.970123;-124.002;0.886999;0.210208;0.411151;0.312134093 79.952156;152.627808;-100.017;-99999;-99999;-99999;0.224556011 198.267578;44;-142;-99999;-99999;-99999;0.65785164 161.97879;68.129913;-142.007;-99999;-99999;-99999;0.78973781 117.933121;125.683228;-156.44;-99999;-99999;-99999;0.50573644 67.41864;333.982697;-144.001;-99999;-99999;-99999;0.515775529 199.987915;221.942688;-147.221;-99999;-99999;-99999;0.279022399 190.509933;20;-146;-99999;-99999;-99999;0.08647084 147.96608;81.839348;-108.29;-99999;-99999;-99999;0.020226219 57.946972;43.748848;-162.506;-0.001356;-0.050306;0.998733;0.115667064 101.923134;85.540276;-148.027;-99999;-99999;-99999;0.703424427 268;28;-157.784;-99999;-99999;-99999;0.184907464 1.999054;49.995518;-106.421;-99999;-99999;-99999;0.472896213 248.504715;178.025482;-107.652;-99999;-99999;-99999;0.733207088 278;150.513199;-150;-99999;-99999;-99999;0.429873675 158.441803;232.376404;-126.726;0.93523;-0.345176;0.078726;0.306946666 240.693466;18;-98;-99999;-99999;-99999;0.939633871 179.747147;75.968605;-142.002;-99999;-99999;-99999;0.39153192 83.943367;23.731764;-102.222;-99999;-99999;-99999;0.747273916 222.300034;92;-158;-99999;-99999;-99999;0.88433951 33.971603;35.163261;-166.01;-99999;-99999;-99999;0.827366201 113.95105;63.768162;-97.0103;-99999;-99999;-99999;0.502008034 218;3.190521;-146;0.284114;-0.76772;0.574357;0.029701662 49.975529;155.809784;-138.009;-99999;-99999;-99999;0.642415489 182;4;-161.102;-99999;-99999;-99999;0.382743392 244;192;-155.792;-99999;-99999;-99999;0.79572858 230.524231;26;-118;-99999;-99999;-99999;0.431230639 161.990906;27.956911;-163.953;-99999;-99999;-99999;0.339998075 64.921783;83.711052;-134.021;-99999;-99999;-99999;0.626823014 175.977356;161.892776;-152.333;-99999;-99999;-99999;0.555446818 105.942047;47.725513;-104.481;-99999;-99999;-99999;0.274079776 59.946098;80.173073;-148.019;-99999;-99999;-99999;0.005822384 169.986435;76.895668;-118.005;-99999;-99999;-99999;0.861185033 3.998686;45.993778;-174.34;-99999;-99999;-99999;0.760202262 230;46.094131;-78;-99999;-99999;-99999;0.145893888 105.938728;266.298553;-110.022;-99999;-99999;-99999;0.879406582 3.994865;11.975677;-172.555;-99999;-99999;-99999;0.373040461 135.931763;153.616074;-116.024;-0.579629;0.754163;-0.308656;0.636255679 272;297.119446;-142;-99999;-99999;-99999;0.025327076 143.055099;61.798069;-138.015;-99999;-99999;-99999;0.11276857 13.249644;75.978653;-114.002;-99999;-99999;-99999;0.540513024 47.999996;396;-135.125;-0.016145;0.096514;0.995201;0.723486296 73.943756;124.531517;-114.02;-99999;-99999;-99999;0.305653626 278;316;-149.341;-99999;-99999;-99999;0.350123653 139.954544;58.552116;-140.016;-99999;-99999;-99999;0.389928275 255.010971;284;-130;-0.565607;0.82365;-0.041097;0.307843434 53.945755;10.586864;-114.019;-99999;-99999;-99999;0.724126355 109.638039;31.669096;-128.025;0.861077;-0.035415;-0.507239;0.947867462 125.931175;103.674019;-122.16;-99999;-99999;-99999;0.425693194 45.992786;167.965836;-87.1054;-99999;-99999;-99999;0.661548996 46;374;-138.529;-99999;-99999;-99999;0.215606385 123.945847;85.743523;-103.747;-99999;-99999;-99999;0.514966558 174.150681;77.95726;-112.003;0.20312;-0.978677;-0.030543;0.313054973 65.349785;53.698044;-122.022;-99999;-99999;-99999;0.869657592 224.82016;56;-106;0.034705;0.996767;0.072461;0.959999121 225.999985;224;-150.926;-99999;-99999;-99999;0.506402918 292.561432;112;-108;-99999;-99999;-99999;0.723900793 111.726433;31.689701;-154.023;-99999;-99999;-99999;0.260888302 55.94891;71.758026;-149.522;-99999;-99999;-99999;0.242696882 288;194.900558;-122;-99999;-99999;-99999;0.241974786 11.99461;51.974476;-167.349;-99999;-99999;-99999;0.126266942 45.967392;73.845558;-162.842;-99999;-99999;-99999;0.417853094 264.160583;318;-148;-99999;-99999;-99999;0.326662193 206;28;-108.915;-0.647908;-0.346783;-0.678201;0.792336389 194;4;-153.494;-0.33902;-0.143234;0.929812;0.114360712 177.97731;175.892548;-153.381;-99999;-99999;-99999;0.448340968 129.945068;47.73983;-137.944;-99999;-99999;-99999;0.275576789 266;48;-150.849;0.484467;0.128811;-0.865274;0.586382775 87.986595;365.936523;-140.506;-99999;-99999;-99999;0.226560226 288;334;-168.442;-99999;-99999;-99999;0.110548294 125.95192;87.77227;-169.247;-99999;-99999;-99999;0.380260296 62;384;-136.339;0.021084;-0.371861;0.928049;0.673296898 175.999664;1.998385;-163.646;-99999;-99999;-99999;0.117164299 165.924789;324.872803;-112.026;-99999;-99999;-99999;0.291082227 115.773621;111.63308;-126.027;-99999;-99999;-99999;0.859406933 258;113.750755;-108;-99999;-99999;-99999;0.055316901 18;201.999985;-120.398;-99999;-99999;-99999;0.940930652 5.996165;35.981838;-169.286;-99999;-99999;-99999;0.31661846 145.942932;159.753418;-148.02;-99999;-99999;-99999;0.426659685 57.658085;75.743271;-142.019;-99999;-99999;-99999;0.9881005 115.926125;89.934753;-144.026;-99999;-99999;-99999;0.21108415 201.445114;36;-94;-99999;-99999;-99999;0.571918312 173.039078;81.948524;-154.004;-99999;-99999;-99999;0.259911364 113.941948;327.1185;-126.017;-99999;-99999;-99999;0.68669096 65.979752;213.904114;-157.299;-0.14406;0.164325;0.97583;0.985177217 142.749725;61.797165;-140.015;-99999;-99999;-99999;0.567980566 197.991028;191.664963;-148.003;-99999;-99999;-99999;0.254992806 294;69.393478;-152;-0.167016;0.122293;0.978341;0.271618742 199.965607;319.837036;-95.1905;-99999;-99999;-99999;0.953075043 290;100;-109.888;0.762227;-0.326985;0.558652;0.446408917 169.969543;173.855728;-153.939;-99999;-99999;-99999;0.121570108 52.874424;155.87027;-120.01;-99999;-99999;-99999;0.170546104 256.727081;168.71814;-103.373;-99999;-99999;-99999;0.11587635 214;11.629642;-120;-0.385411;-0.782794;0.488561;0.747845249 232;98;-115.176;-99999;-99999;-99999;0.182926199 23.997133;131.986435;-161.72;-99999;-99999;-99999;0.243638527 127.95591;31.791157;-163.329;-99999;-99999;-99999;0.215098043 182.79216;55.987034;-134.001;-99999;-99999;-99999;0.412012084 49.959633;57.808792;-164.044;-99999;-99999;-99999;0.99883594 95.932823;115.681847;-157.622;-99999;-99999;-99999;0.013771648 250;28;-157.617;-99999;-99999;-99999;0.495785234 290;142;-149.675;-99999;-99999;-99999;0.615858782 254;118.008255;-122;-0.65333;0.650682;0.387004;0.260601656 133.266617;51.755718;-142.018;-99999;-99999;-99999;0.932941778 248;42;-105.369;-99999;-99999;-99999;0.253277074 276;34;-155.18;-99999;-99999;-99999;0.331601906 21.996006;113.981071;-161.339;-99999;-99999;-99999;0.29639916 74.174339;263.873993;-120.009;-99999;-99999;-99999;0.423426647 103.935577;147.694885;-101.296;-99999;-99999;-99999;0.21554527 149.973389;51.873981;-158.15;-99999;-99999;-99999;0.317244588 212;40;-120.372;-99999;-99999;-99999;0.790245039 296;86;-149.094;0.328742;-0.529868;0.781772;0.943722953 215.106461;175.396469;-111.376;-99999;-99999;-99999;0.040506302 225.999985;12.309198;-106;-0.018138;-0.974012;-0.225768;0.255028755 28.037136;3.830733;-130.013;-99999;-99999;-99999;0.497462812 186.730591;53.996689;-118;-99999;-99999;-99999;0.355327998 246;64.925285;-116;0.002113;0.648359;-0.761331;0.435953316 269.478363;40;-144;0.852279;-0.523027;-0.007996;0.883866106 230;13.274841;-108;0.181137;-0.878906;-0.441264;0.605648261 13.986863;5.937779;-172.591;-99999;-99999;-99999;0.086674625 38;396;-136.005;-99999;-99999;-99999;0.750813764 1.996091;17.491055;-170.001;-99999;-99999;-99999;0.117602708 264;36;-141.026;-99999;-99999;-99999;0.443212289 206;60;-102.029;-99999;-99999;-99999;0.915864666 43.948177;13.684145;-128.018;-99999;-99999;-99999;0.772831651 45.953941;11.781847;-167.557;-99999;-99999;-99999;0.647535267 121.934082;139.316071;-156.023;-99999;-99999;-99999;0.578880525 240;16;-161.397;-99999;-99999;-99999;0.634397393 59.980762;204.178238;-152.007;-99999;-99999;-99999;0.064368341 298;204;-149.948;-99999;-99999;-99999;0.666787743 69.549965;175.828491;-104.013;0.632224;-0.772286;0.062194;0.131296714 1.996671;25.984232;-167.715;-99999;-99999;-99999;0.090202543 280;54;-153.634;-99999;-99999;-99999;0.413632353 71.134354;35.650261;-130.026;-0.980205;-0.192731;-0.045301;0.273800602 246;63.481789;-126;-99999;-99999;-99999;0.226150369 207.265411;30;-118;-99999;-99999;-99999;0.677292069 141.288101;383.680664;-130.024;-99999;-99999;-99999;0.267494086 47.999996;364;-141.146;-99999;-99999;-99999;0.282079627 10.305698;71.987938;-108.001;-99999;-99999;-99999;0.754689025 25.976231;5.887424;-173.132;-99999;-99999;-99999;0.43000977 282;144;-148.66;-99999;-99999;-99999;0.447222847 183.981995;179.882507;-152.006;-0.594445;0.474649;0.649109;0.84160428 21.988918;87.94751;-139.049;-99999;-99999;-99999;0.901601935 230;60;-110.969;-0.306518;0.729858;0.611027;0.035065614 233.984283;392.762421;-128.006;0.877026;-0.466898;0.113279;0.835277012 61.540371;53.736469;-160.02;-99999;-99999;-99999;0.959150102 169.23671;191.830887;-152.013;-99999;-99999;-99999;0.346854777 143.938049;189.706558;-149.098;-99999;-99999;-99999;0.115020091 43.967274;61.845001;-164.475;-99999;-99999;-99999;0.168243684 276;30;-155.345;-99999;-99999;-99999;0.442770942 193.392456;42;-146;-99999;-99999;-99999;0.344001434 85.979347;323.902191;-141.367;0.439948;0.302433;0.845565;0.624885178 53.990337;196.860001;-88.0034;-99999;-99999;-99999;0.300460098 27.993311;115.968315;-163.455;-99999;-99999;-99999;0.825896634 67.32341;285.953278;-148.003;-99999;-99999;-99999;0.880500723 288;132;-152.539;-99999;-99999;-99999;0.151105798 238.116531;173.120102;-105.908;-99999;-99999;-99999;0.997733654 221.752365;80;-110;-99999;-99999;-99999;0.542999099 203.991394;219.959259;-147.411;-99999;-99999;-99999;0.386379081 57.140629;71.739777;-140.019;-99999;-99999;-99999;0.703378213 262;48;-132.134;-99999;-99999;-99999;0.270154859 61.94088;27.719994;-163.84;-99999;-99999;-99999;0.116930413 274;108;-95.1436;-99999;-99999;-99999;0.944378141 244;74.672356;-124;-99999;-99999;-99999;0.138239733 11.990132;17.953268;-170.905;0.150708;-0.116177;0.981728;0.637301686 0.894849;61.99379;-150;-99999;-99999;-99999;0.421914063 75.931923;7.677568;-115.164;-99999;-99999;-99999;0.1538965 34;381.392548;-138;-99999;-99999;-99999;0.848560129 286;128.309677;-148;-99999;-99999;-99999;0.630984103 212.482147;54;-126;0.703532;-0.704458;0.093706;0.483147514 123.929016;131.663803;-147.655;-99999;-99999;-99999;0.562679023 218;71.341446;-108;-99999;-99999;-99999;0.494047926 191.999985;45.562946;-124;-99999;-99999;-99999;0.077679534 153.461914;71.851799;-124.011;-99999;-99999;-99999;0.757500933 205.999954;117.482246;-138;-99999;-99999;-99999;0.431528094 79.998047;397.02652;-148.001;-99999;-99999;-99999;0.883895228 39.26963;143.925797;-140.006;-99999;-99999;-99999;0.07201453 63.935005;59.692162;-140.213;-99999;-99999;-99999;0.018755987 252;192;-161.859;-99999;-99999;-99999;0.206859577 125.944305;53.181423;-154.02;-99999;-99999;-99999;0.225651029 3.999873;87.999397;-107.554;-99999;-99999;-99999;0.85669922 13.995567;94.584854;-136.002;-99999;-99999;-99999;0.063882466 5.998863;91.994621;-129.184;-99999;-99999;-99999;0.249764045 135.968079;5.848795;-160.359;-99999;-99999;-99999;0.91266426 62.459213;99.775627;-156.017;-99999;-99999;-99999;0.070465274 75.959801;179.809616;-155.609;-99999;-99999;-99999;0.700408417 165.923248;348.948486;-106.027;0.429013;-0.762105;0.484916;0.532085212 141.94223;151.726379;-107.33;-99999;-99999;-99999;0.635086008 89.96489;269.83371;-148.745;-99999;-99999;-99999;0.540278567 228;14;-97.3518;0.130635;-0.936562;0.325249;0.418542794 202;60;-102.944;-0.237085;0.095077;0.966825;0.667525934 165.985321;71.063629;-156.005;-99999;-99999;-99999;0.522938 240;18;-107.069;-99999;-99999;-99999;0.473294198 237.70015;32;-112;-99999;-99999;-99999;0.559090526 262;80.651466;-120;0.13542;-0.964323;0.227472;0.991856743 244;72;-126.956;-99999;-99999;-99999;0.072581143 66.660446;35.700775;-116.022;-99999;-99999;-99999;0.094517364 296;333.483276;-168;-99999;-99999;-99999;0.632631377 132.773026;117.702293;-148.022;-99999;-99999;-99999;0.610746192 224.269882;104;-156;-0.375472;-0.356894;0.855364;0.36512161 232.187881;134.498032;-135.583;-99999;-99999;-99999;0.119030584 69.169495;89.696526;-136.023;-0.620628;0.775203;0.117819;0.672329813 181.19519;81.979538;-108.002;-99999;-99999;-99999;0.21799478 133.930923;156.74147;-144.024;-99999;-99999;-99999;0.215606499 30.852713;179.993027;-98.0005;-99999;-99999;-99999;0.783715126 198;13.188426;-134;-99999;-99999;-99999;0.172945001 284;64;-153.105;-0.24067;0.209485;0.947731;0.46453472 131.903793;109.752014;-162.018;-99999;-99999;-99999;0.540747346 107.944672;71.737946;-99.1464;-99999;-99999;-99999;0.493663612 292.796265;192;-110;-99999;-99999;-99999;0.112756087 170.093628;11.989031;-166.001;-99999;-99999;-99999;0.300051113 227.591827;177.830887;-118.634;-99999;-99999;-99999;0.397044725 153.978256;47.897018;-157.619;0.057508;0.057033;0.996715;0.965155964 258;190.74472;-140;-99999;-99999;-99999;0.368955708 119.924423;107.642044;-134.822;-99999;-99999;-99999;0.837758496 254;2;-155.55;-0.132157;0.002583;0.991225;0.310538592 56.88649;107.814552;-156.014;-99999;-99999;-99999;0.400795412 129.948792;85.550514;-162.018;0.042029;0.884722;-0.46422;0.43945735 76.880592;141.832947;-88.0124;-0.539938;-0.113113;0.83407;0.932284481 262.37677;156.242615;-104.782;-99999;-99999;-99999;0.444345041 289.373199;188;-158;-99999;-99999;-99999;0.991343748 91.975662;129.713364;-102.021;-99999;-99999;-99999;0.357210893 232;10;-149.715;-99999;-99999;-99999;0.840661304 145.967667;63.150318;-160.011;-99999;-99999;-99999;0.04592541 213.236435;235.972687;-140.002;-99999;-99999;-99999;0.860158212 201.999893;120.916824;-102;-99999;-99999;-99999;0.066856 186.151443;63.994892;-112;-99999;-99999;-99999;0.741102794 137.961166;77.816063;-102.141;-99999;-99999;-99999;0.405922815 252;96;-102.454;-99999;-99999;-99999;0.866905046 91.930252;81.669655;-111.51;-99999;-99999;-99999;0.223602801 35.958942;8.897984;-122.014;-99999;-99999;-99999;0.563442919 47.955879;37.791054;-163.388;-99999;-99999;-99999;0.249837652 177.976761;181.889938;-154.463;-99999;-99999;-99999;0.127983113 49.955086;43.787247;-162.876;-99999;-99999;-99999;0.810926759 97.941185;51.72142;-102.424;-99999;-99999;-99999;0.818694834 246;143.051025;-136;-99999;-99999;-99999;0.005616342 223.765579;60;-114;0.972315;0.203719;-0.114461;0.454450269 121.949165;77.759216;-100.657;-99999;-99999;-99999;0.441559141 143.975082;19.881994;-162.515;-99999;-99999;-99999;0.898179938 169.937988;314.699493;-94.0218;-99999;-99999;-99999;0.624501364 143.939438;183.159058;-150.021;-99999;-99999;-99999;0.072373862 65.928848;31.662996;-145.99;-99999;-99999;-99999;0.606878231 278;104.49192;-98;-99999;-99999;-99999;0.907549013 222;116;-151.218;-99999;-99999;-99999;0.16794282 204;0.979411;-152;-99999;-99999;-99999;0.870566147 220;58;-117.79;-99999;-99999;-99999;0.041688186 111.166641;25.676046;-146.024;-99999;-99999;-99999;0.460403932 212;42;-79.1713;-0.37146;0.070704;0.925753;0.811344564 185.998764;97.994141;-91.5057;-99999;-99999;-99999;0.158161472 206;40;-86.322;-0.886645;-0.050197;0.459719;0.852218013 230;64;-130.603;-99999;-99999;-99999;0.932035118 147.917587;199.728973;-148.916;-99999;-99999;-99999;0.046629859 207.987442;257.940521;-141.647;-99999;-99999;-99999;0.907053844 37.989182;137.948761;-160.634;-99999;-99999;-99999;0.269085358 186;20;-160.414;-99999;-99999;-99999;0.724526526 157.982452;47.916927;-158.067;-99999;-99999;-99999;0.612694125 237.992798;355.361389;-106.003;0.139731;0.943216;-0.301362;0.121045606 59.937626;19.704573;-119.681;-99999;-99999;-99999;0.749949371 127.953171;57.778217;-106.818;-99999;-99999;-99999;0.56249228 45.962421;51.822006;-164.389;-99999;-99999;-99999;0.745989229 206.106354;299.883698;-134.009;-99999;-99999;-99999;0.205929148 75.935448;37.694267;-164.921;-99999;-99999;-99999;0.02897083 93.94548;15.741783;-101.996;-99999;-99999;-99999;0.302843955 187.999039;67.212662;-154;-99999;-99999;-99999;0.430016554 232.538818;52;-86;-99999;-99999;-99999;0.768468772 181.991852;103.961388;-149.185;-99999;-99999;-99999;0.741304384 125.272942;93.672729;-128.024;-99999;-99999;-99999;0.933375744 117.983162;87.689491;-112.023;-99999;-99999;-99999;0.322197455 147.404282;157.757263;-154.018;-0.232225;0.954026;-0.18949;0.948788383 23.61879;69.92511;-144.006;-99999;-99999;-99999;0.109648232 9.996612;67.19812;-112.001;-99999;-99999;-99999;0.934642099 198;45.467823;-122;-99999;-99999;-99999;0.223785528 213.980881;52;-130;-99999;-99999;-99999;0.387368095 40.703491;131.915787;-114.006;-99999;-99999;-99999;0.291025232 185.999969;31.999836;-158.552;-99999;-99999;-99999;0.989695357 78.931374;167.768433;-152.017;-0.681915;0.698235;-0.217853;0.231281618 198;76.81118;-116;-0.270972;0.953076;-0.13498;0.423318401 165.97348;129.874329;-106.848;-99999;-99999;-99999;0.230836503 159.970215;119.858894;-105.734;-99999;-99999;-99999;0.319090567 7.999151;79.943901;-104;-99999;-99999;-99999;0.173051906 251.370392;143.608246;-105.243;-99999;-99999;-99999;0.575716498 2;211.649445;-160;-0.047252;-0.354065;0.934026;0.516056307 51.940697;15.249606;-126.021;-99999;-99999;-99999;0.639792084 57.945812;5.74335;-109.75;-99999;-99999;-99999;0.303131862 111.2873;15.690305;-150.023;-99999;-99999;-99999;0.170565739 53.963131;123.046463;-122.013;-99999;-99999;-99999;0.8711316 66.727028;57.686722;-126.023;-99999;-99999;-99999;0.293105417 109.934807;23.495609;-122.023;-99999;-99999;-99999;0.070523798 292;87.718666;-142;-99999;-99999;-99999;0.640285082 196;68;-105.826;-99999;-99999;-99999;0.638835261 244;182;-157.172;-99999;-99999;-99999;0.160839524 296;7.984505;-156;-99999;-99999;-99999;0.957681154 89.992081;395.962494;-144.982;-99999;-99999;-99999;0.788576321 139.955902;60.444298;-148.015;-99999;-99999;-99999;0.554608958 0;392;-122.539;0.443859;-0.771429;0.455946;0.702257991 248;104;-104.893;-99999;-99999;-99999;0.562129992 244;186.55072;-160;0.609868;-0.167105;0.774685;0.862827378 278;162.784348;-128;-99999;-99999;-99999;0.349045462 69.944344;95.736404;-156.277;-99999;-99999;-99999;0.574803368 278;192.485886;-138;-0.064662;0.997907;0.000039;0.375202339 10;210;-159.874;-99999;-99999;-99999;0.46671734 19.983952;17.923994;-171.81;-99999;-99999;-99999;0.660634814 298;127.447037;-154;-99999;-99999;-99999;0.934413559 107.938286;6.367247;-160.022;-99999;-99999;-99999;0.870331322 280;16;-154.577;0.026362;0.076731;0.996703;0.224102723 39.980804;126.075203;-118.007;-99999;-99999;-99999;0.302515778 135.936264;201.698074;-153.395;-99999;-99999;-99999;0.908932557 5.999335;101.607933;-136;-99999;-99999;-99999;0.4253801 73.98336;279.921204;-148.176;-99999;-99999;-99999;0.466109358 67.818832;31.722345;-168.021;-99999;-99999;-99999;0.753684368 76.626617;31.684998;-164.023;-0.805228;-0.230549;-0.54631;0.578299518 169.982742;107.918266;-107.239;-99999;-99999;-99999;0.572268748 87.931381;81.674995;-111.561;-99999;-99999;-99999;0.62439077 189.697418;22;-154;-99999;-99999;-99999;0.843600708 239.994324;353.196228;-118.002;-99999;-99999;-99999;0.875237743 113.944618;31.737696;-165.718;-99999;-99999;-99999;0.602093255 186;12;-160.631;-99999;-99999;-99999;0.507764655 39.975353;79.883263;-163.051;-99999;-99999;-99999;0.331907788 83.93924;57.712204;-104.652;-99999;-99999;-99999;0.524211465 262.149841;167.301056;-102.605;-99999;-99999;-99999;0.025043064 199.999756;123.998764;-98.34;-99999;-99999;-99999;0.022455764 175.989304;106.693466;-104.004;-99999;-99999;-99999;0.106095235 89.929367;84.254158;-156.025;-99999;-99999;-99999;0.083308645 110.935974;15.702182;-156.022;-99999;-99999;-99999;0.95159477 122.158516;11.774578;-162.017;-99999;-99999;-99999;0.241183742 161.992172;26.845919;-168.003;-99999;-99999;-99999;0.039174371 67.936729;-0.29967;-112.834;-99999;-99999;-99999;0.898216667 248;70;-151.454;-99999;-99999;-99999;0.743182609 37.990555;172.808762;-134.003;-99999;-99999;-99999;0.224599703 288;4;-155.739;0.179907;-0.394911;0.900932;0.398567833 57.955299;111.788292;-143.145;-99999;-99999;-99999;0.18254133 68.222458;43.659721;-140.025;-99999;-99999;-99999;0.624770401 236;75.714027;-116;-99999;-99999;-99999;0.616945075 270;122.885811;-100;0.214069;0.950558;0.224977;0.259297107 43.975403;125.883499;-123.036;-99999;-99999;-99999;0.422130259 192.776367;14;-152;-99999;-99999;-99999;0.854267894 65.93589;18.79483;-116.023;-0.350641;0.390217;0.851341;0.396295709 63.995956;327.980408;-132.496;-99999;-99999;-99999;0.277863372 125.403702;51.736923;-118.02;-99999;-99999;-99999;0.882944344 125.787033;51.725029;-124.02;0.744901;-0.665707;-0.044232;0.551258699 63.950951;87.767677;-160.437;-99999;-99999;-99999;0.714491441 212;50;-111.02;-0.22348;-0.391604;-0.892582;0.577561626 135.935944;155.69664;-149.59;-99999;-99999;-99999;0.213300482 95.941933;233.566498;-112.02;-99999;-99999;-99999;0.019039909 265.502228;334;-132;-99999;-99999;-99999;0.828530298 198;46.3997;-114;-99999;-99999;-99999;0.749355791 238;35.354198;-88;0.964042;-0.173328;0.201445;0.924642692 0;88.481499;-112;-99999;-99999;-99999;0.328913458 175.973572;155.071548;-124.009;-99999;-99999;-99999;0.666159904 236.319473;139.28566;-109.7;-0.054462;-0.927389;0.370113;0.376387064 128.907394;229.345871;-111.782;-99999;-99999;-99999;0.242569333 163.985931;79.933342;-101.186;-99999;-99999;-99999;0.011811498 203.951874;46;-128;0.358859;-0.726595;0.585901;0.253236357 117.931877;221.677353;-148.529;-99999;-99999;-99999;0.350632867 99.942192;35.306854;-104.02;-99999;-99999;-99999;0.08902819 181.933716;355.686035;-102.879;-99999;-99999;-99999;0.527350671 214;32;-81.2703;-0.469613;-0.295209;0.832055;0.390213345 230;222.000015;-152.932;-99999;-99999;-99999;0.514297275 53.936852;17.046228;-132.022;-99999;-99999;-99999;0.761553819 252;212.000015;-156.717;-99999;-99999;-99999;0.077786163 258;54.365608;-120;-99999;-99999;-99999;0.776964781 286;127.309181;-128;-99999;-99999;-99999;0.542898377 258;96;-102.59;-99999;-99999;-99999;0.82390991 77.984749;319.927765;-136.833;0.359251;0.176732;0.916354;0.130443962 123.938797;171.053192;-160.022;-99999;-99999;-99999;0.088887964 241.009186;62.000004;-118;-99999;-99999;-99999;0.901906917 216;148;-98.4401;-99999;-99999;-99999;0.637258883 253.999969;385.999878;-152.469;-99999;-99999;-99999;0.244811823 119.951569;69.770615;-98.6749;-99999;-99999;-99999;0.774221804 109.886383;226.722275;-117.948;-99999;-99999;-99999;0.256280357 240;52;-95.084;0.603486;0.464916;0.647809;0.41515801 59.240162;21.717098;-162.021;-99999;-99999;-99999;0.118568488 189.724625;81.990143;-138.001;0.737709;0.669271;-0.088665;0.076774873 208;120;-147.772;-99999;-99999;-99999;0.955601462 20;178;-165.379;0.223822;-0.125219;0.966553;0.282818399 39.988682;145.946396;-159.264;-99999;-99999;-99999;0.875270379 62.744633;37.696125;-154.023;-0.931736;-0.343065;0.119058;0.696085651 276;20;-155.095;-99999;-99999;-99999;0.475941564 240;25.058075;-144;-99999;-99999;-99999;0.429773518 121.92794;94.491463;-138.025;-99999;-99999;-99999;0.991536538 57.96946;137.855362;-103.737;-99999;-99999;-99999;0.659753506 266;10;-155.082;-0.12906;0.1079;0.985749;0.158036205 257.338867;120;-140;-99999;-99999;-99999;0.667024385 242.064285;182.611725;-129.216;-0.218216;0.870367;0.441411;0.355766441 101.928291;16.879637;-126.025;-99999;-99999;-99999;0.845987599 270;83.399139;-112;-99999;-99999;-99999;0.717508582 256;186.81778;-128;-99999;-99999;-99999;0.639348745 85.93277;15.68159;-112.789;-99999;-99999;-99999;0.232867735 114.552773;149.623703;-122.028;-99999;-99999;-99999;0.310061395 97.932983;87.682587;-161.311;-99999;-99999;-99999;0.001149326 193.998566;119.993202;-99.0991;-0.003644;-0.700282;0.713857;0.84218272 237.999405;309.789978;-146;-99999;-99999;-99999;0.540089952 -0.000823;59.996101;-157.375;-99999;-99999;-99999;0.194516215 65.968216;165.849457;-158.35;-99999;-99999;-99999;0.87601457 105.924194;43.509926;-140.027;-99999;-99999;-99999;0.277097401 228;15.704068;-88;-99999;-99999;-99999;0.200338932 11.966498;47.972591;-168.002;-0.540587;-0.151558;0.827524;0.172410548 111.927368;49.527149;-140.026;-99999;-99999;-99999;0.546955274 220;17.04435;-88;-0.402065;-0.696664;0.59414;0.029734565 262.923737;342;-136;0.769703;0.186287;-0.610618;0.111780212 19.992184;69.962975;-166.835;-99999;-99999;-99999;0.642216307 91.932426;107.67997;-156.843;-99999;-99999;-99999;0.782200404 251.658234;137.537888;-108.915;-99999;-99999;-99999;0.345295737 45.714672;121.894035;-158.008;-0.542797;-0.23573;0.806103;0.534296504 268;32;-158.291;-99999;-99999;-99999;0.254234253 232;42;-76.3229;-99999;-99999;-99999;0.844715915 272;130.381744;-130;0.035021;0.967618;-0.249976;0.128605503 93.944389;31.736603;-101.106;0.241484;0.201521;0.94925;0.99608998 286.147858;350;-160;-99999;-99999;-99999;0.242525352 201.086823;40;-104;-0.861591;0.15561;-0.483162;0.050986652 143.9664;59.840839;-160.547;-99999;-99999;-99999;0.751761718 190.721588;71.996262;-120;-99999;-99999;-99999;0.182560911 186.602188;117.966827;-148.002;-99999;-99999;-99999;0.96373193 35.95816;5.32177;-160.015;-0.151182;0.97698;-0.150513;0.093015151 181.989243;117.506981;-146.004;-99999;-99999;-99999;0.837145471 99.961258;332.771667;-128.014;-99999;-99999;-99999;0.666469056 68.895172;1.684893;-116.023;0.639809;-0.636203;0.43115;0.327393087 246;68;-112.715;-99999;-99999;-99999;0.835711055 235.177979;56;-122;-99999;-99999;-99999;0.743408259 3.999862;102.955597;-148;-99999;-99999;-99999;0.01131512 9.993265;31.9681;-168.845;-0.015064;-0.125321;0.992002;0.808517407 71.939392;25.712938;-169.293;-99999;-99999;-99999;0.481862068 169.948471;243.022949;-140.018;-99999;-99999;-99999;0.077067473 256.571381;177.520615;-103.846;-99999;-99999;-99999;0.717043105 225.999985;51.063164;-128;-0.44674;0.645435;0.619546;0.368330495 136.674942;107.719238;-144.021;-99999;-99999;-99999;0.753914097 254.749374;397.999725;-154;-0.153872;0.314905;0.936567;0.851434442 179.987625;133.94136;-102.82;-99999;-99999;-99999;0.986183019 195.996475;151.983307;-98.3186;-99999;-99999;-99999;0.645159716 194;20;-139.113;-99999;-99999;-99999;0.171445197 37.984879;109.928375;-164.25;-99999;-99999;-99999;0.475678117 64.480164;45.696136;-122.023;-99999;-99999;-99999;0.207169094 242.629852;196;-158;-99999;-99999;-99999;0.128496514 123.924988;128.624435;-124.026;-99999;-99999;-99999;0.354909117 101.924332;167.641617;-120.707;-99999;-99999;-99999;0.693831162 71.943459;85.732185;-160.563;-0.21452;-0.160263;0.963482;0.423923025 40.081367;11.785975;-122.016;-99999;-99999;-99999;0.01138055 103.927414;10.428217;-138.025;-99999;-99999;-99999;0.565919447 55.976879;191.101044;-122.008;0.836056;0.532366;0.132654;0.707656002 50.719074;17.727451;-154.02;-99999;-99999;-99999;0.226841752 109.927025;44.311646;-132.026;-99999;-99999;-99999;0.990279898 131.799225;103.771889;-166.017;-99999;-99999;-99999;0.302107294 260.337738;398;-154;-99999;-99999;-99999;0.200452018 95.941109;59.721088;-101.503;-99999;-99999;-99999;0.538846788 91.933899;91.686913;-160.908;-99999;-99999;-99999;0.225650018 7.995953;63.41243;-152.001;-99999;-99999;-99999;0.722323686 75.961792;214.280014;-142.013;-99999;-99999;-99999;0.587534966 220.731613;6;-144;-99999;-99999;-99999;0.15089401 141.935654;161.583527;-142.023;-0.21455;0.968207;-0.12862;0.670469587 114.600502;163.618134;-130.028;-99999;-99999;-99999;0.525259304 256;56;-108.954;0.502575;0.094381;0.859367;0.664326519 159.989716;21.951303;-162.064;-99999;-99999;-99999;0.725772373 87.932678;70.051987;-110.024;-99999;-99999;-99999;0.368225118 129.020279;175.698547;-156.022;-99999;-99999;-99999;0.022904221 250;73.193398;-156;0.339303;-0.934686;0.105997;0.075411699 155.967926;109.848114;-106.929;-99999;-99999;-99999;0.577737218 57.976002;197.886322;-129.095;-99999;-99999;-99999;0.457250674 264;380;-152.088;-99999;-99999;-99999;0.248511419 115.269714;27.719584;-118.021;-99999;-99999;-99999;0.023691058 177.976135;185.886963;-154.624;-0.055204;-0.063061;0.996482;0.295448359 7.998372;86.823746;-118.001;0.57183;0.763965;0.298945;0.009456598 121.946548;43.746849;-161.276;-0.246084;-0.307783;0.919082;0.383473464 117.946281;34.341644;-164.019;-99999;-99999;-99999;0.929695643 135.960052;71.810768;-103.115;-99999;-99999;-99999;0.810125832 224;11.947102;-116;0.043483;-0.773402;0.632423;0.886128273 71.943962;53.734585;-105.416;-99999;-99999;-99999;0.448677179 23.970209;0.468995;-124.01;-99999;-99999;-99999;0.048790771 241.986328;28;-136;-99999;-99999;-99999;0.942597948 159.978745;78.717361;-110.007;-99999;-99999;-99999;0.289105682 119.932938;197.682373;-153.035;-99999;-99999;-99999;0.12276914 292;34;-153.827;-0.05364;-0.124906;0.990718;0.053731367 69.813843;43.659004;-130.025;-99999;-99999;-99999;0.876705386 286;24;-154.93;-99999;-99999;-99999;0.836237265 109.948235;62.509624;-98.0182;-0.194568;-0.386526;0.901522;0.822213285 109.932449;223.680054;-144.092;-99999;-99999;-99999;0.646336594 192.387405;79.994896;-134;-99999;-99999;-99999;0.884192434 109.941689;1.723821;-161.589;-99999;-99999;-99999;0.925697436 65.932098;51.678394;-143.736;-99999;-99999;-99999;0.604559294 183.998795;84.594635;-94.0004;-99999;-99999;-99999;0.777084092 280;113.999992;-96.7332;-99999;-99999;-99999;0.981914761 286;300.0867;-148;0.290965;0.438333;0.850414;0.366271966 39.992188;165.743576;-100.003;-99999;-99999;-99999;0.258993078 242.739838;154.549347;-101.614;-99999;-99999;-99999;0.490651297 35.970062;39.858212;-164.788;-99999;-99999;-99999;0.887405633 200.000015;45.064995;-126;-99999;-99999;-99999;0.869522096 135.96524;21.835365;-161.188;-99999;-99999;-99999;0.353044349 252;47.10379;-114;0.472383;-0.736623;-0.483984;0.696257924 254.431046;58;-122;0.523711;0.790708;0.317029;0.170032867 214.391953;125.969139;-121.36;-99999;-99999;-99999;0.269953669 288;28;-154.729;-99999;-99999;-99999;0.175360226 64.821915;61.689098;-136.023;-99999;-99999;-99999;0.611208813 171.990356;77.833672;-108.003;-99999;-99999;-99999;0.830558012 216;86.065125;-114;-99999;-99999;-99999;0.457098451 157.221054;71.868362;-130.01;-99999;-99999;-99999;0.111059443 252;64;-109.049;-99999;-99999;-99999;0.331787589 77.712036;27.680817;-164.024;-99999;-99999;-99999;0.036443592 115.946228;11.021182;-162.019;-99999;-99999;-99999;0.244845999 205.438278;22;-120;-0.641426;-0.170164;0.748075;0.94238481 94.688972;75.683365;-108.023;-0.62085;0.247833;0.743723;0.373014809 247.441315;135.747589;-112.795;-99999;-99999;-99999;0.653928717 231.430862;54;-90;0.394643;0.806606;0.44005;0.890046444 286.681732;90;-118;-99999;-99999;-99999;0.446526429 9.99403;61.029728;-128.002;-99999;-99999;-99999;0.261229394 218.207687;68;-108;0.393552;-0.007346;0.919273;0.832764974 67.988876;279.947327;-149.217;-99999;-99999;-99999;0.377401773 98.72068;7.642707;-136.027;-99999;-99999;-99999;0.735478376 228;32;-77.3423;-99999;-99999;-99999;0.277401835 99.939156;69.711777;-102.708;-99999;-99999;-99999;0.330331414 270;188;-144.484;-99999;-99999;-99999;0.957232942 225.999985;12.889213;-100;-99999;-99999;-99999;0.367477198 115.280312;39.69558;-122.023;-99999;-99999;-99999;0.601686382 103.935158;223.06311;-142.023;0.092237;-0.84853;-0.521046;0.453345741 216.177124;102;-126;-0.501481;0.637543;0.584856;0.26002938 260;34;-141.14;-99999;-99999;-99999;0.320781891 93.949844;253.762436;-107.96;-99999;-99999;-99999;0.57217907 232;22;-113.301;-99999;-99999;-99999;0.807029199 177.992416;79.536453;-118.003;-99999;-99999;-99999;0.487293502 7.99734;55.9874;-106.982;-99999;-99999;-99999;0.612892853 75.935349;117.693802;-136.715;-99999;-99999;-99999;0.020836956 57.942612;12.044786;-114.02;-99999;-99999;-99999;0.030239915 286;129.59758;-138;-99999;-99999;-99999;0.949664846 109.952217;336.050018;-100.017;-99999;-99999;-99999;0.461150342 61.955814;85.732292;-142.02;-99999;-99999;-99999;0.661735215 155.934204;384.581085;-140.023;-99999;-99999;-99999;0.982526274 110.490402;35.701523;-160.022;0.966411;0.122095;-0.226146;0.684829075 161.980942;67.431877;-152.007;-99999;-99999;-99999;0.529435412 208;124.383881;-108;-99999;-99999;-99999;0.915611537 25.993132;107.967468;-162.552;-99999;-99999;-99999;0.546395903 142.313019;75.8321;-104.012;-99999;-99999;-99999;0.825309725 119.934433;49.16087;-132.023;0.253368;-0.960379;-0.116087;0.011562367 190.36322;16;-158;-99999;-99999;-99999;0.85415147 234.000015;82;-108.261;-99999;-99999;-99999;0.310167251 200.587845;38;-98;-99999;-99999;-99999;0.104844841 83.930908;13.672746;-114.947;-99999;-99999;-99999;0.714442151 84.291245;355.92572;-126.006;-99999;-99999;-99999;0.675013512 238.562363;98;-110;-99999;-99999;-99999;0.588454088 27.987059;79.938705;-164.024;-99999;-99999;-99999;0.980827143 256;88;-103.328;-99999;-99999;-99999;0.774127404 120.735519;365.741302;-102.019;-99999;-99999;-99999;0.144736454 191.994965;120.331398;-128.002;-99999;-99999;-99999;0.791329247 252;64;-126.806;-99999;-99999;-99999;0.895905054 254;189.104767;-136;-99999;-99999;-99999;0.201322153 187.997772;91.989471;-157.567;-99999;-99999;-99999;0.169951046 106.470184;37.645718;-136.026;-99999;-99999;-99999;0.056692139 141.956696;65.240097;-124.015;0.361636;-0.615132;0.700594;0.048491419 288;38;-153.811;-99999;-99999;-99999;0.000467661 183.278137;51.991821;-150.001;-99999;-99999;-99999;0.003976728 81.965096;266.52243;-128.012;-99999;-99999;-99999;0.734171389 18;192.776062;-132;-99999;-99999;-99999;0.639919721 158.618408;151.792465;-144.015;-99999;-99999;-99999;0.58878832 121.148811;121.638748;-136.027;-99999;-99999;-99999;0.438600546 79.930679;7.67166;-115.816;-99999;-99999;-99999;0.568490371 201.581421;42;-98;-0.919387;0.324844;0.22182;0.773764578 248;222.000015;-154.727;0.087507;-0.18055;0.979665;0.481415353 141.964218;70.537491;-106.013;0.427909;-0.533137;0.729834;0.739491693 28.842466;107.960266;-164.003;-99999;-99999;-99999;0.891902129 237.997559;327.988403;-92.7933;-99999;-99999;-99999;0.994264519 284;180;-102.811;0.121014;-0.185914;0.975085;0.528276714 115.222687;133.62149;-132.028;-99999;-99999;-99999;0.72266526 107.929359;25.665432;-129.763;-99999;-99999;-99999;0.602737375 101.970383;367.269897;-134.01;-0.147773;0.855706;-0.495913;0.609734969 92.06002;82.953331;-160.132;-99999;-99999;-99999;0.541526765 143.953781;89.303391;-120.016;-99999;-99999;-99999;0.720110521 137.954575;87.784882;-107.368;-99999;-99999;-99999;0.434446588 287.934296;322;-164;0.480397;0.865157;0.143953;0.714587687 137.808716;282.116699;-123.804;-99999;-99999;-99999;0.043237636 41.961987;17.819946;-170.933;-99999;-99999;-99999;0.567232166 83.946373;160.740555;-104.019;-0.242828;0.668756;0.702709;0.600453317 218;154;-98.9664;0.148748;0.141685;0.978672;0.91343331 163.975845;109.885582;-108.283;-99999;-99999;-99999;0.847338439 133.851242;29.819031;-162.013;-0.176743;0.038639;0.983498;0.801228792 87.935646;15.447676;-110.023;-99999;-99999;-99999;0.415790198 290;126.813217;-142;-99999;-99999;-99999;0.417447282 100.093712;355.836853;-116.012;-99999;-99999;-99999;0.443688094 41.962181;29.820873;-166.686;-99999;-99999;-99999;0.243621196 17.999779;147.998947;-160.776;-99999;-99999;-99999;0.322506362 294;16;-154.607;-99999;-99999;-99999;0.956464064 230;23.529335;-82;-99999;-99999;-99999;0.134346685 132.277023;115.705666;-114.022;-99999;-99999;-99999;0.049193144 151.982193;25.915684;-162.683;-99999;-99999;-99999;0.94776734 248;47.168629;-120;-99999;-99999;-99999;0.638072517 296;43.611889;-152;-0.096532;-0.087073;0.991514;0.5636499 195.960922;343.122498;-144.014;-0.118444;0.853334;0.507732;0.054337436 119.949997;29.763176;-165.649;-0.155423;-0.347238;0.924808;0.547459452 275.063171;326;-152;-99999;-99999;-99999;0.22575551 238.590546;34;-84;0.894875;-0.323473;-0.307513;0.580640579 67.999275;377.996582;-138.935;-99999;-99999;-99999;0.866711334 51.980415;172.377335;-150.007;0.311297;-0.870995;-0.380081;0.02495536 20.518965;101.974777;-158.002;-99999;-99999;-99999;0.295845485 25.988203;69.944122;-168.153;-99999;-99999;-99999;0.921179491 262;100;-101.661;-99999;-99999;-99999;0.467788078 264.055847;78;-148;-99999;-99999;-99999;0.321688781 54;396;-134.974;-99999;-99999;-99999;0.809454848 131.94487;90.225891;-112.019;-99999;-99999;-99999;0.998538603 177.930771;369.672089;-96.9934;-99999;-99999;-99999;0.290041656 46.863876;151.894119;-134.008;-99999;-99999;-99999;0.881541794 31.987518;97.94088;-164.422;-99999;-99999;-99999;0.657227297 29.965158;3.834981;-161.248;-99999;-99999;-99999;0.181723463 208.719406;36;-116;-99999;-99999;-99999;0.980290208 49.970543;107.860458;-159.919;-99999;-99999;-99999;0.428184945 1.999508;62.434666;-168;-0.470227;-0.873432;0.126505;0.838346733 222;22;-83.2587;-99999;-99999;-99999;0.702940632 45.947712;14.006405;-124.018;-99999;-99999;-99999;0.861619768 107.936775;8.102801;-158.022;0.58973;-0.695267;0.410879;0.433219611 63.999981;389.999908;-132.969;-0.28534;-0.478255;0.830574;0.387049675 186.617981;149.958649;-98.0031;-99999;-99999;-99999;0.487692292 244;187.196838;-136;-99999;-99999;-99999;0.367016834 185.991043;118.667351;-130.003;-99999;-99999;-99999;0.269677631 101.934486;81.68972;-106.276;-0.291488;0.513395;0.807131;0.92115938 225.999985;59.729198;-96;-99999;-99999;-99999;0.50543944 231.994049;331.971832;-92.2159;-99999;-99999;-99999;0.45243592 0.470971;45.998226;-176;-99999;-99999;-99999;0.085901736 282;24;-154.772;-0.022397;-0.060694;0.997905;0.669723855 113.943352;35.731689;-164.718;-99999;-99999;-99999;0.665596256 87.138618;349.904205;-124.007;-0.790037;-0.278136;0.546335;0.098716633 117.928947;91.996681;-148.025;-99999;-99999;-99999;0.628780976 125.930275;98.297455;-130.024;-99999;-99999;-99999;0.942659175 2;166;-163.186;-0.066091;-0.054878;0.996303;0.452726995 49.722511;217.950012;-138.004;-99999;-99999;-99999;0.868716002 227.988983;341.947845;-94.6669;-0.534267;0.358969;0.76531;0.421785756 256;237.643417;-142;-99999;-99999;-99999;0.162373662 292;170;-145.452;-99999;-99999;-99999;0.312083731 97.336098;133.711594;-100.021;-99999;-99999;-99999;0.958468433 161.973099;115.87262;-106.293;-99999;-99999;-99999;0.756042076 81.931137;120.199799;-140.024;-99999;-99999;-99999;0.762414808 284;36;-153.628;-99999;-99999;-99999;0.164956938 121.833916;229.340851;-111.84;-99999;-99999;-99999;0.035876525 244;6;-157.365;0.019506;0.309881;0.950575;0.426764372 171.994308;39.973007;-154.403;-99999;-99999;-99999;0.647071773 224;56.019344;-90;-99999;-99999;-99999;0.587067788 167.988586;89.94593;-97.7093;-99999;-99999;-99999;0.767709426 14.858505;71.964943;-124.003;0.894934;-0.064569;0.441501;0.077048642 254;22;-158.069;-0.135245;0.061818;0.988882;0.900781212 276;159.571289;-142;-99999;-99999;-99999;0.276812302 109.932053;88.464897;-158.024;-99999;-99999;-99999;0.137331435 149.922928;295.633911;-105.928;-99999;-99999;-99999;0.781604739 111.935516;25.69459;-154.108;-99999;-99999;-99999;0.154521633 143.942474;159.004852;-150.02;-0.139363;0.918199;-0.370794;0.680719815 250;127.373299;-150;-99999;-99999;-99999;0.862045496 262;366;-153.411;-0.175129;0.217559;0.960207;0.998825359 254;144;-140.385;-99999;-99999;-99999;0.70737049 171.991913;67.961678;-160.515;-99999;-99999;-99999;0.533804627 31.982197;67.91568;-167.094;-99999;-99999;-99999;0.138091702 68.075653;87.717926;-150.021;-99999;-99999;-99999;0.597698726 282;156;-152.89;-99999;-99999;-99999;0.267049408 275.631348;40;-156;-99999;-99999;-99999;0.817080198 157.951553;156.702866;-122.017;-99999;-99999;-99999;0.269423773 248.425583;34;-134;0.511874;-0.670965;0.536461;0.686669896 290;50;-152.945;-0.188086;-0.092315;0.977805;0.706155036 280;60;-153.476;-0.292095;0.103458;0.950777;0.64607565 278;190;-103.018;-99999;-99999;-99999;0.365033609 246;192.887634;-150;0.849802;0.509878;0.133642;0.945550735 59.981068;183.910324;-162.571;-0.322509;-0.144775;0.935429;0.202547284 42;396;-135.457;-99999;-99999;-99999;0.631411714 208;98;-160.491;-99999;-99999;-99999;0.197052411 67.94371;49.733406;-108.198;-99999;-99999;-99999;0.164744784 187.36145;85.984116;-142.001;-99999;-99999;-99999;0.169619857 87.929276;11.665026;-117.382;-99999;-99999;-99999;0.123802726 189.798004;34;-156;-0.982963;0.058823;0.174136;0.216765209 294;124.000008;-121.225;-99999;-99999;-99999;0.602203393 184.50676;55.991276;-126.001;-99999;-99999;-99999;0.472627951 210;126.616402;-108;-99999;-99999;-99999;0.377769397 93.924835;125.643982;-121.113;-99999;-99999;-99999;0.459468659 119.017097;43.71756;-118.021;-99999;-99999;-99999;0.537802462 39.964336;21.702328;-170.013;-0.169334;-0.314169;0.934143;0.959491453 93.924103;5.640517;-129.695;0.879926;0.086103;0.467243;0.305024279 189.998947;85.995041;-158.954;0.013293;-0.016903;0.999769;0.322199736 167.927338;371.655823;-94.4412;0.130678;-0.01993;0.991225;0.598580895 181.50238;61.981163;-132.001;-99999;-99999;-99999;0.886580346 240;24;-153.416;-99999;-99999;-99999;0.859734736 99.936035;13.025939;-114.022;-99999;-99999;-99999;0.399364105 167.295212;239.434326;-131.777;0.663532;-0.744663;0.072128;0.35531338 1.579969;150;-158;-99999;-99999;-99999;0.393781019 205.979965;357.90509;-159.489;-99999;-99999;-99999;0.421997134 228;42;-76.3364;-0.089108;0.257841;0.962069;0.666903713 66.761215;71.705307;-122.022;-99999;-99999;-99999;0.062908142 224;112;-153.055;-99999;-99999;-99999;0.902011484 156.48494;37.918537;-158.006;-0.265733;-0.122081;0.956286;0.671474967 161.993774;13.970533;-168.326;-99999;-99999;-99999;0.801503162 165.979858;82.637863;-126.007;-99999;-99999;-99999;0.942959104 208.011215;46;-86;-0.776447;0.548553;0.310193;0.152224921 143.960938;62.451984;-150.014;0.27255;-0.931223;-0.241952;0.120796854 153.980026;39.905403;-158.286;-0.173532;-0.169551;0.970123;0.258777195 141.974686;7.880075;-161.132;-99999;-99999;-99999;0.934523604 187.993835;116.402061;-116.002;-99999;-99999;-99999;0.190866033 169.941544;263.271088;-108.021;-99999;-99999;-99999;0.21882057 177.987686;120.202049;-106.004;-99999;-99999;-99999;0.455573194 51.994522;225.97406;-161.521;-99999;-99999;-99999;0.730169701 3.997973;40.906914;-172.001;-99999;-99999;-99999;0.894842874 35.955803;5.888916;-154.016;-99999;-99999;-99999;0.069347765 215.969269;382.93866;-134.011;0.479493;-0.708485;-0.517818;0.913607347 92.539948;125.655746;-146.026;-99999;-99999;-99999;0.672226963 111.397766;131.62088;-126.028;-99999;-99999;-99999;0.223035623 127.860939;269.612274;-141.867;-99999;-99999;-99999;0.571893869 91.940796;13.361629;-106.021;-99999;-99999;-99999;0.026542839 66.042778;61.692757;-126.023;-99999;-99999;-99999;0.123383311 56.981449;25.707552;-154.022;-99999;-99999;-99999;0.455407702 134.218857;57.779282;-156.016;-99999;-99999;-99999;0.177135813 1.999639;51.641457;-100;-99999;-99999;-99999;0.841477932 9.995717;64.561775;-158.002;-99999;-99999;-99999;0.043283498 125.927467;151.656479;-145.484;-99999;-99999;-99999;0.14322202 167.93222;292.867432;-110.024;0.243237;-0.78131;0.574797;0.422424395 267.573914;56;-146;-99999;-99999;-99999;0.58244074 167.988525;69.195694;-160.004;-99999;-99999;-99999;0.191874349 182.579102;101.958023;-132.003;-99999;-99999;-99999;0.975552417 228;51.947983;-82;-99999;-99999;-99999;0.813058263 88.431755;123.665504;-146.025;-99999;-99999;-99999;0.940985517 65.992958;303.023224;-144.002;-0.570943;-0.679419;0.460883;0.810909465 65.941887;85.724739;-149.648;-99999;-99999;-99999;0.379711863 232.817245;28;-114;-99999;-99999;-99999;0.813087312 167.96933;149.104324;-148.011;-99999;-99999;-99999;0.632072883 270.054291;174;-154;-99999;-99999;-99999;0.17266291 272;366;-154.533;-99999;-99999;-99999;0.027895855 115.924736;90.506599;-128.026;-99999;-99999;-99999;0.423376161 296;20;-155.526;0.184554;0.063988;0.980737;0.200315213 10.50591;59.986198;-104.001;-99999;-99999;-99999;0.699468336 69.954285;163.067978;-118.016;-99999;-99999;-99999;0.326088957 208;4.554077;-140;-99999;-99999;-99999;0.997455901 268;122.432388;-104;-99999;-99999;-99999;0.007413805 171.997253;18.186943;-160.001;-99999;-99999;-99999;0.530717058 159.981735;63.913517;-158.691;-99999;-99999;-99999;0.682497476 176.547897;107.927917;-134.005;-99999;-99999;-99999;0.923517285 67.93425;23.688597;-116.977;-99999;-99999;-99999;0.775829925 259.534332;121.999992;-120;-0.600983;0.715624;0.355951;0.098465492 237.001251;48;-86;0.829565;0.522663;-0.196584;0.74476235 0.270011;84;-96;-99999;-99999;-99999;0.76834407 276;193.451141;-134;-99999;-99999;-99999;0.170951986 254;318;-141.47;0.177163;-0.784929;0.593716;0.827040404 250;18;-159.265;-0.357917;-0.06632;0.931395;0.621394448 83.939644;53.714146;-104.33;-99999;-99999;-99999;0.845015361 139.967468;33.845924;-161.424;-0.020665;-0.063986;0.997737;0.33366676 147.980057;17.905533;-163.598;-99999;-99999;-99999;0.382871044 253.455765;46;-126;-99999;-99999;-99999;0.216036945 137.965302;33.835663;-161.526;-99999;-99999;-99999;0.345432119 163.981628;77.459106;-114.006;-99999;-99999;-99999;0.107493954 79.93689;118.666611;-150.022;-99999;-99999;-99999;0.893869721 296;2;-158.649;0.191916;-0.30337;0.933346;0.318758883 1.99976;90.574173;-124;-99999;-99999;-99999;0.51002017 230;102.897202;-144;-99999;-99999;-99999;0.928561825 274;22;-155.633;-99999;-99999;-99999;0.435870161 51.951149;35.768627;-163.182;-99999;-99999;-99999;0.442084966 268;79.648056;-124;0.060153;-0.930514;0.361283;0.924539177 111.104477;35.690647;-156.023;-99999;-99999;-99999;0.746904235 262;56;-131.311;0.639821;0.040065;0.767479;0.855787777 65.943405;51.731953;-110.481;-99999;-99999;-99999;0.676162642 284;98;-104.691;-99999;-99999;-99999;0.307555951 51.949749;25.762001;-164.822;-99999;-99999;-99999;0.911478957 167.991882;37.961533;-154.547;-99999;-99999;-99999;0.164227552 3.167609;88;-102;0.738574;0.511387;0.439308;0.796770425 183.258301;53.991104;-150.001;-99999;-99999;-99999;0.277462824 292;40;-153.002;-0.158042;-0.127708;0.979139;0.705560202 147.980408;15.907189;-163.572;-99999;-99999;-99999;0.855853795 111.917274;268.973022;-135.979;-99999;-99999;-99999;0.550313705 264;127.954697;-132;-99999;-99999;-99999;0.074834573 65.932159;27.67869;-155.506;-99999;-99999;-99999;0.481057197 149.958893;101.920647;-116.014;-99999;-99999;-99999;0.498135309 1.99993;99.576233;-144;-99999;-99999;-99999;0.14314936 -0.001493;56.546566;-128.001;-99999;-99999;-99999;0.422473187 266;80;-155.206;-99999;-99999;-99999;0.580949627 3.998211;58.856091;-114.001;-99999;-99999;-99999;0.506342889 95.927544;123.29747;-114.025;-99999;-99999;-99999;0.511855447 137.939056;149.711334;-107.729;-99999;-99999;-99999;0.449756407 188.459488;47.998573;-124;-99999;-99999;-99999;0.798224103 79.928787;1.662719;-118.382;-99999;-99999;-99999;0.686997855 61.951504;75.770302;-162.741;-99999;-99999;-99999;0.080587395 107.503632;37.654808;-146.026;-99999;-99999;-99999;0.823488556 129.938629;95.709328;-149.371;0.015024;0.685063;-0.728328;0.613611807 83.968964;262.880493;-148.011;-0.464556;0.885241;-0.023157;0.68580357 60.391453;27.680935;-146.024;-99999;-99999;-99999;0.724622691 62.965443;51.700882;-150.022;-99999;-99999;-99999;0.290301366 110.892075;31.736868;-108.02;-99999;-99999;-99999;0.708268652 71.935295;79.461716;-120.023;-99999;-99999;-99999;0.455429511 33.999077;225.995636;-136.632;-99999;-99999;-99999;0.438436209 266.838043;360;-152;-99999;-99999;-99999;0.229358963 280;85.562386;-120;-99999;-99999;-99999;0.375298205 17.99918;132.114151;-162;-99999;-99999;-99999;0.342061049 31.973732;31.15395;-168.009;-0.093385;-0.3634;0.926941;0.692452261 133.938339;103.707985;-143.075;-99999;-99999;-99999;0.642375312 73.939362;33.712811;-168.807;-99999;-99999;-99999;0.934335958 195.769455;157.500076;-101.864;-99999;-99999;-99999;0.543846457 22;395.171356;-130;0.431643;-0.244929;0.868156;0.277244236 173.929733;357.949615;-98.0247;-99999;-99999;-99999;0.326599779 167.966324;149.840515;-139.215;-99999;-99999;-99999;0.987454812 292;60;-151.71;-99999;-99999;-99999;0.351292185 189.999786;48.976547;-138;-0.577714;-0.815722;-0.029057;0.54598157 107.051796;21.665367;-130.025;-99999;-99999;-99999;0.799512566 133.959778;37.809521;-160.972;-99999;-99999;-99999;0.568444618 139.964172;95.830338;-170.869;-99999;-99999;-99999;0.753413962 113.920319;156.99649;-122.028;-99999;-99999;-99999;0.143540073 274;76;-156.643;-99999;-99999;-99999;0.499279267 95.936028;12.888081;-112.022;-99999;-99999;-99999;0.98790197 69.940712;67.7799;-112.021;-99999;-99999;-99999;0.700076595 246;273.204987;-130;-99999;-99999;-99999;0.464150613 230;14;-118.294;-99999;-99999;-99999;0.531936697 252;73.283829;-158;-99999;-99999;-99999;0.262961845 3.999834;61.999218;-96.2948;-99999;-99999;-99999;0.630522774 244;139.033401;-142;-99999;-99999;-99999;0.109185016 274.610138;158;-112;-99999;-99999;-99999;0.88769894 260;63.523212;-158;-99999;-99999;-99999;0.539743844 248;22;-159.475;-99999;-99999;-99999;0.974213082 187.098785;69.990143;-128.001;-0.75266;0.595608;0.280633;0.542685535 284;176.631699;-148;-0.009601;-0.256618;-0.966465;0.950339073 203.999725;141.998734;-97.6675;-99999;-99999;-99999;0.786643065 173.992798;78.24501;-104.003;-99999;-99999;-99999;0.653891785 103.927208;85.146309;-154.026;-99999;-99999;-99999;0.691184532 274;160;-108.457;-99999;-99999;-99999;0.802627249 65.109138;47.719585;-114.021;-99999;-99999;-99999;0.181791571 271.124359;44;-142;-99999;-99999;-99999;0.880662403 0.38937;57.991924;-140.001;-99999;-99999;-99999;0.930110712 109.937157;19.702354;-158.346;-99999;-99999;-99999;0.109952006 129.9319;117.677444;-141.903;-99999;-99999;-99999;0.527261094 59.948315;59.755203;-161.401;-99999;-99999;-99999;0.829853704 69.137886;41.655922;-134.026;-99999;-99999;-99999;0.418878027 87.943687;37.733295;-100.85;-99999;-99999;-99999;0.971123852 127.951385;45.239407;-160.017;-99999;-99999;-99999;0.758056091 199.100998;38;-136;-99999;-99999;-99999;0.415458051 115.946388;5.746075;-161.006;0.012908;0.092526;0.995627;0.719506684 181.994598;75.974442;-136.981;-99999;-99999;-99999;0.415214914 247.187683;26;-102;-99999;-99999;-99999;0.601337306 111.564034;47.662403;-146.025;-99999;-99999;-99999;0.914227808 35.999432;227.342072;-152;0.242561;0.968367;-0.058557;0.587322054 276;140;-148.736;-0.021401;-0.118935;0.992671;0.901934928 89.945274;155.740799;-98.942;-0.048;0.474928;0.878715;0.064364902 234.000015;30;-78.8438;-99999;-99999;-99999;0.351801521 263.661072;52;-156;-99999;-99999;-99999;0.218343582 2;172;-162.519;0.113946;-0.11669;0.98661;0.41353252 286;161.384933;-134;-99999;-99999;-99999;0.300062778 212;45.364086;-128;-99999;-99999;-99999;0.542848689 145.398087;91.831673;-164.012;-99999;-99999;-99999;0.567706032 112.729134;31.688795;-124.023;-99999;-99999;-99999;0.998822018 195.997528;119.147392;-142.001;-99999;-99999;-99999;0.64865127 252;60.362846;-118;-99999;-99999;-99999;0.071643252 97.925316;128.326157;-146.026;-99999;-99999;-99999;0.033295075 121.93808;48.480843;-126.022;-99999;-99999;-99999;0.650735368 154.266998;101.857521;-104.011;-99999;-99999;-99999;0.92585836 138.484207;129.728043;-110.02;-99999;-99999;-99999;0.09160951 59.948959;61.758266;-161.592;-99999;-99999;-99999;0.431085175 215.362076;58;-108;0.631249;-0.181261;0.754101;0.923166783 186.366745;57.996231;-114;-0.984492;-0.167411;0.052433;0.126250866 206.938187;172.969238;-127.591;-99999;-99999;-99999;0.50322386 290;362;-159.224;-99999;-99999;-99999;0.251282018 79.927261;91.886284;-130.026;-99999;-99999;-99999;0.638371193 45.978554;133.898422;-109.867;-99999;-99999;-99999;0.334867815 191.724411;28;-142;-99999;-99999;-99999;0.494215462 252;66;-159.422;-99999;-99999;-99999;0.126574823 268;48;-157.674;-99999;-99999;-99999;0.547818813 206;2.87283;-144;-99999;-99999;-99999;0.649970825 259.07019;145.709;-106.591;-99999;-99999;-99999;0.982714197 179.999954;5.999819;-162.341;-99999;-99999;-99999;0.226040567 243.257278;40;-126;-99999;-99999;-99999;0.51718723 109.931053;107.673431;-156.852;-99999;-99999;-99999;0.953677465 130.94548;238.25058;-106.904;-99999;-99999;-99999;0.271394454 186.54187;51.995201;-130;-0.888241;-0.419717;-0.186722;0.928091007 7.997066;63.01339;-162.001;-99999;-99999;-99999;0.08675836 242;60;-107.181;-99999;-99999;-99999;0.2004264 254;114.246056;-118;-99999;-99999;-99999;0.618565539 216;44;-78.2105;-99999;-99999;-99999;0.721229708 224.540237;68;-116;0.94525;-0.227384;0.234092;0.670823813 13.594795;71.972694;-118.002;-99999;-99999;-99999;0.852641905 69.935982;9.696771;-112.945;-99999;-99999;-99999;0.230523771 111.930794;173.672211;-152.026;-99999;-99999;-99999;0.681977791 298;350.687775;-164;-99999;-99999;-99999;0.901937568 53.961826;121.819191;-137.647;-99999;-99999;-99999;0.251100365 270;70;-156.677;-99999;-99999;-99999;0.681098028 94.946533;127.663101;-150.025;0.476612;-0.878687;-0.027395;0.558715805 147.920853;338.638916;-108.028;-99999;-99999;-99999;0.340765915 258.164642;74;-128;0.408667;-0.589117;0.697088;0.162141477 234.000015;66.647987;-130;-99999;-99999;-99999;0.577868537 262;192;-160.148;-0.246939;-0.128921;0.960417;0.05059703 222;158;-100.706;-99999;-99999;-99999;0.759568556 248;30.501614;-140;-99999;-99999;-99999;0.523039394 141.956757;63.795174;-125.229;-99999;-99999;-99999;0.921447838 119.938698;89.709671;-159.831;-99999;-99999;-99999;0.242943628 209.186584;24;-110;-99999;-99999;-99999;0.941782167 103.764267;11.657213;-134.025;-99999;-99999;-99999;0.07282298 230;82.885445;-108;-0.095477;-0.617909;0.780431;0.607798928 199.999542;117.053398;-108;-99999;-99999;-99999;0.759879539 43.67646;147.905777;-132.007;-99999;-99999;-99999;0.219821354 2;72.240494;-90;-99999;-99999;-99999;0.796957368 278;176;-147.606;-99999;-99999;-99999;0.334780463 108.831017;323.757782;-134.015;-0.565237;-0.775756;-0.280554;0.957541018 247.999008;395.99527;-154.386;-99999;-99999;-99999;0.50272279 61.941292;10.335136;-112.021;-99999;-99999;-99999;0.37161668 236;88;-104.254;-99999;-99999;-99999;0.515960842 290.775787;190;-130;-99999;-99999;-99999;0.765241135 266;96;-102.299;-99999;-99999;-99999;0.957068018 105.781921;37.729012;-170.02;-99999;-99999;-99999;0.782134391 203.435104;34;-124;-99999;-99999;-99999;0.368181263 103.921318;127.259277;-122.028;-99999;-99999;-99999;0.929963545 188.554398;41.999504;-150;-0.85505;-0.199504;0.478631;0.057075027 243.996735;359.348022;-130.001;-99999;-99999;-99999;0.330139911 99.936928;-0.298759;-165.163;-0.053436;-0.446053;0.89341;0.185642255 220;8.945528;-122;-0.133343;-0.990771;0.024327;0.817453306 250;84;-106.198;-99999;-99999;-99999;0.116899732 53.946194;21.327894;-164.019;-0.395789;0.133459;0.908592;0.750352037 230.639511;18;-120;0.998085;0.057878;-0.021844;0.444924246 139.946121;137.744843;-104.224;-99999;-99999;-99999;0.212941997 75.929222;1.664767;-118.471;-99999;-99999;-99999;0.394305939 246.419891;314;-144;0.223808;-0.721626;0.655107;0.787167534 197.99086;361.773407;-132.017;-99999;-99999;-99999;0.498735533 250;74.013046;-126;-99999;-99999;-99999;0.052543311 99.922073;127.630882;-140.392;-99999;-99999;-99999;0.105498805 268;54;-156.7;0.019775;-0.054375;0.998325;0.459600373 15.996593;102.48201;-154.001;-99999;-99999;-99999;0.132428179 268;82;-114.169;-99999;-99999;-99999;0.019978324 107.74884;27.658291;-134.025;-99999;-99999;-99999;0.564158064 175.962921;217.829941;-147.155;-99999;-99999;-99999;0.625702911 184.955368;103.979317;-104.002;-99999;-99999;-99999;0.485580224 171.379501;19.987373;-164.001;-99999;-99999;-99999;0.131243621 43.975513;126.118233;-142.009;-99999;-99999;-99999;0.711990535 229.918137;16;-130;-99999;-99999;-99999;0.527931707 224.594437;64;-126;0.660474;-0.625416;0.415486;0.094855746 63.951481;109.770203;-152.146;-99999;-99999;-99999;0.64200007 183.997253;63.986977;-143.651;-99999;-99999;-99999;0.619859998 149.984604;1.927078;-163.05;0.229834;0.377951;0.896844;0.661596623 220;54;-114.49;0.014978;-0.192992;-0.981086;0.766871257 161.95961;155.847855;-112.014;-99999;-99999;-99999;0.669646709 225.999985;26.658331;-80;-99999;-99999;-99999;0.681996507 191.999802;93.9991;-94.8083;-99999;-99999;-99999;0.529189299 171.926086;350.751404;-106.026;0.087702;-0.954241;0.285888;0.244612438 264;18;-156.595;-99999;-99999;-99999;0.300830944 111.931679;101.676422;-156.94;-99999;-99999;-99999;0.90912806 139.965958;39.838772;-160.788;-99999;-99999;-99999;0.893205353 248;64.105934;-154;0.235323;0.957041;-0.169397;0.780061777 7.997256;62.231106;-164.001;-99999;-99999;-99999;0.886220775 262;192;-130.888;-0.496006;0.818667;-0.289418;0.242218838 234.000015;240.199051;-134;0.246288;-0.547121;0.800001;0.061895662 114.623131;165.675964;-154.024;0.838971;0.401895;-0.36689;0.132567551 105.942734;35.042747;-106.02;-99999;-99999;-99999;0.035154065 46.596691;145.897552;-116.008;-99999;-99999;-99999;0.355073072 115.93045;49.073227;-136.024;-99999;-99999;-99999;0.42173405 165.984283;70.834412;-152.006;-99999;-99999;-99999;0.298810716 6;118;-162.352;-99999;-99999;-99999;0.517421439 155.984009;29.924229;-158.8;-0.57671;0.053294;0.815209;0.418049004 149.975021;43.881691;-158.239;-99999;-99999;-99999;0.747460057 27.986294;90.864281;-154.005;-99999;-99999;-99999;0.365954777 254;79.265877;-118;-99999;-99999;-99999;0.799466392 62.828556;65.702934;-134.022;-99999;-99999;-99999;0.556119472 37.955097;5.903457;-158.016;-99999;-99999;-99999;0.273469053 145.964478;68.396721;-114.012;-99999;-99999;-99999;0.525671786 119.94767;51.75214;-106.922;-99999;-99999;-99999;0.371230259 207.95755;370.986816;-120.015;-99999;-99999;-99999;0.529206488 119.95121;23.144163;-166.017;-99999;-99999;-99999;0.281574433 149.921555;197.730713;-147.317;-99999;-99999;-99999;0.310087205 149.959854;141.80983;-97.255;0.227698;0.233314;0.945367;0.880428368 219.232101;186;-150;-99999;-99999;-99999;0.180868793 103.924698;88.652199;-118.026;-99999;-99999;-99999;0.063543969 7.998894;100.705238;-144;-99999;-99999;-99999;0.198880632 184.107269;93.976852;-112.002;-99999;-99999;-99999;0.143539156 117.945992;79.744179;-100.893;-99999;-99999;-99999;0.143441091 224;58;-131.067;-99999;-99999;-99999;0.406767932 63.0942;247.918213;-134.006;-99999;-99999;-99999;0.908805175 83.927605;86.514267;-120.025;-0.100324;0.897348;0.42977;0.109109273 111.949867;67.762543;-96.5332;-99999;-99999;-99999;0.350887765 15.98646;13.93587;-171.632;-99999;-99999;-99999;0.995592522 81.945313;175.097229;-144.019;-0.589404;0.74854;-0.303793;0.03565516 43.955578;2.905117;-112.016;-99999;-99999;-99999;0.631768985 1.997927;60.018234;-144.001;-99999;-99999;-99999;0.529570653 189.142227;32;-152;-0.979402;0.024703;-0.200401;0.395642194 201.520767;363.781647;-128.016;-99999;-99999;-99999;0.213016817 200.000015;3.224376;-150;-99999;-99999;-99999;0.635014864 192.417984;10;-154;-0.63255;-0.068458;0.771488;0.441159804 246;94;-102.156;-99999;-99999;-99999;0.346643439 224;74;-111.59;0.637198;-0.267204;0.722897;0.981227346 27.999989;225.999939;-138.635;-99999;-99999;-99999;0.066194482 256;124.000008;-151.611;0.031193;-0.058327;0.99781;0.970225676 260;33.35527;-148;-99999;-99999;-99999;0.357918816 171.988144;77.114258;-118.004;-99999;-99999;-99999;0.117106481 137.960098;101.810989;-169.083;-99999;-99999;-99999;0.158867646 67.120995;73.694977;-128.023;-99999;-99999;-99999;0.660805727 1.999827;95.999176;-131.002;-99999;-99999;-99999;0.222083603 162.700317;35.944527;-156.004;-99999;-99999;-99999;0.644131232 121.955238;373.354492;-142.016;-99999;-99999;-99999;0.671992722 195.999084;119.995697;-99.3516;-99999;-99999;-99999;0.76780417 181.981384;158.625824;-144.007;-99999;-99999;-99999;0.215188481 55.939663;18.368214;-158.021;-99999;-99999;-99999;0.635973294 185.997009;75.985809;-142.698;-99999;-99999;-99999;0.899682976 177.070953;149.903473;-108.007;-99999;-99999;-99999;0.307103764 20.99633;77.943008;-132.004;-99999;-99999;-99999;0.310628113 180.303391;109.946091;-120.004;-99999;-99999;-99999;0.813415151 99.939949;45.71553;-104.704;-99999;-99999;-99999;0.256381337 27.967596;-0.153472;-163.942;-99999;-99999;-99999;0.89919081 167.993607;24.542662;-154.002;0.00174;0.063537;0.997978;0.154313211 99.94455;247.737335;-103.557;-99999;-99999;-99999;0.733008094 179.988419;105.777367;-128.004;-99999;-99999;-99999;0.686507779 163.964111;161.830017;-151.935;-99999;-99999;-99999;0.499705584 225.999985;12.662823;-130;-99999;-99999;-99999;0.065671904 97.926392;14.846038;-126.026;-99999;-99999;-99999;0.099175048 77.937576;75.704346;-109.778;-99999;-99999;-99999;0.441601661 225.999985;1.38986;-152;0.245915;-0.49599;0.832778;0.37842782 107.930733;145.671921;-105.67;-99999;-99999;-99999;0.259842271 73.939636;70.805817;-110.021;-99999;-99999;-99999;0.878748521 210;84.786201;-148;-99999;-99999;-99999;0.770443064 17.988867;65.327919;-148.004;-99999;-99999;-99999;0.118323823 152.952301;229.048889;-138.78;-99999;-99999;-99999;0.572415352 145.966583;71.841728;-108.376;-99999;-99999;-99999;0.307343665 219.996658;241.984146;-133.015;-99999;-99999;-99999;0.844204834 158.588684;221.113937;-147.929;-0.27497;0.133852;0.95209;0.414846011 188;10;-157.955;-99999;-99999;-99999;0.022771976 71.93412;85.687973;-124.966;-99999;-99999;-99999;0.135377618 85.929039;7.663888;-117.79;-99999;-99999;-99999;0.757569407 198;6.789251;-144;-99999;-99999;-99999;0.538108011 25.987038;65.938606;-167.171;-99999;-99999;-99999;0.723847326 260;136;-149.997;-99999;-99999;-99999;0.082320367 59.964855;162.209747;-134.012;-99999;-99999;-99999;0.755401819 5.38727;69.998802;-98.0001;-99999;-99999;-99999;0.401097228 39.99279;165.965866;-161.244;-99999;-99999;-99999;0.979736676 53.995735;251.979797;-157.004;0.199307;-0.07407;0.977134;0.034176344 19.988932;69.397232;-154.004;-99999;-99999;-99999;0.35963107 244;120;-151.807;-99999;-99999;-99999;0.711708152 252;190.437714;-144;-99999;-99999;-99999;0.494853769 13.00667;63.964771;-126.003;-99999;-99999;-99999;0.54508081 182.322922;69.978806;-136.002;-0.834381;0.443965;0.326655;0.425956326 228.201019;131.407898;-137.613;-99999;-99999;-99999;0.127073664 260;40;-158.597;-99999;-99999;-99999;0.211915074 25.979637;27.903555;-169.496;-99999;-99999;-99999;0.57817118 185.232727;85.982056;-116.001;-99999;-99999;-99999;0.291191039 118.907196;159.627441;-138.028;-99999;-99999;-99999;0.112677847 7.995115;61.277458;-144.002;-99999;-99999;-99999;0.991532692 260;80.779259;-110;0.075615;-0.957378;0.278763;0.050524513 284;356;-157.387;-99999;-99999;-99999;0.062106571 248;186;-162.018;0.434003;-0.153619;0.887718;0.25139997 103.929344;87.665337;-111.655;-99999;-99999;-99999;0.777192088 148.297516;221.394104;-156.64;-99999;-99999;-99999;0.148165179 216;10.168213;-126;-99999;-99999;-99999;0.802812577 75.937325;79.703163;-112.11;-99999;-99999;-99999;0.371602828 171.990433;75.954659;-158.986;0.451386;-0.418507;0.788101;0.216612146 271.839966;58;-156;-0.235677;-0.060958;0.969918;0.88792832 173.99736;21.987455;-155.527;-99999;-99999;-99999;0.104891988 271.770142;50;-142;-99999;-99999;-99999;0.89529005 274;80;-125.83;-99999;-99999;-99999;0.481918232 297.911072;168;-130;-99999;-99999;-99999;0.643622041 195.999908;80.395447;-152;-99999;-99999;-99999;0.048904177 278;131.132492;-134;-99999;-99999;-99999;0.883025549 238.48143;64;-110;-0.35867;0.52978;0.768563;0.929187006 194;56;-103.859;-99999;-99999;-99999;0.699836167 262;72;-133.273;0.623021;-0.398319;0.673191;0.153946387 157.957993;163.801117;-153.307;-99999;-99999;-99999;0.380964525 175.316376;81.97464;-98.0019;-99999;-99999;-99999;0.877626702 111.10421;41.665569;-128.025;-99999;-99999;-99999;0.509429344 266;0.699956;-154;-99999;-99999;-99999;0.895385258 84.339088;351.924713;-130.006;-99999;-99999;-99999;0.648150422 11.999999;164;-163.03;-99999;-99999;-99999;0.767769065 47.99276;199.965729;-93.6607;-99999;-99999;-99999;0.501040997 230;56.267338;-118;-99999;-99999;-99999;0.777986083 103.930969;105.67305;-157.773;-0.071387;-0.004112;0.99744;0.992432957 218;122.798363;-144;-99999;-99999;-99999;0.634040429 222;100;-158.515;-0.298553;-0.301469;0.905529;0.763999746 67.242302;3.71523;-110.021;-99999;-99999;-99999;0.769047793 75.944069;47.735081;-102.983;-99999;-99999;-99999;0.845652637 253.33725;68;-148;-99999;-99999;-99999;0.693387096 175.113327;19.991314;-158.001;-99999;-99999;-99999;0.491559458 296;159.896072;-154;-99999;-99999;-99999;0.551619949 290;74;-153.083;-0.2572;0.021359;0.966122;0.469128322 91.9403;45.717228;-103.232;-99999;-99999;-99999;0.983021016 45.972641;93.87043;-162.794;-99999;-99999;-99999;0.379785171 181.999756;23.998846;-159.3;0.172973;-0.273213;0.946274;0.055202468 77.982201;305.91568;-138.868;-0.197489;-0.177408;0.964118;0.641437092 159.705582;159.774475;-126.017;-99999;-99999;-99999;0.389433732 101.935005;155.692169;-102.635;0.435186;0.494905;0.752119;0.459818106 224;14.415023;-112;-99999;-99999;-99999;0.579500647 236;128;-148.656;-99999;-99999;-99999;0.909339714 89.948875;130.577576;-94.018;-99999;-99999;-99999;0.24628512 173.994781;49.975193;-157.206;-99999;-99999;-99999;0.913375515 77.942413;35.727264;-103.723;-99999;-99999;-99999;0.876324098 81.935699;93.695457;-157.635;-99999;-99999;-99999;0.881912167 203.981247;167.868805;-141.992;-99999;-99999;-99999;0.876695144 59.943722;33.73344;-163.705;-99999;-99999;-99999;0.373952512 230.807816;16;-140;-99999;-99999;-99999;0.737013947 278;174;-161.561;-99999;-99999;-99999;0.482795163 85.936668;172.734299;-128.022;-99999;-99999;-99999;0.999264251 258;147.09816;-140;-99999;-99999;-99999;0.010913536 45.991955;220.045563;-126.003;0.015898;0.575899;0.817366;0.796836363 204.462219;30;-92;-99999;-99999;-99999;0.63432537 280;390;-155.408;-99999;-99999;-99999;0.757738982 21.984734;41.927696;-165.259;-99999;-99999;-99999;0.912657695 225.999985;208;-147.275;0.027915;0.284739;0.958199;0.257585788 232;26.387255;-124;-99999;-99999;-99999;0.555996912 197.990341;197.954285;-148.907;-99999;-99999;-99999;0.173704302 97.925812;0.166985;-148.026;-99999;-99999;-99999;0.17100621 15.990663;67.514587;-128.003;-99999;-99999;-99999;0.862242469 185.996368;79.98278;-134.57;-99999;-99999;-99999;0.326613026 187.124924;87.983109;-122.001;-99999;-99999;-99999;0.615774418 262;78;-125.852;-99999;-99999;-99999;0.83274861 200.213455;36;-130;-0.772791;0.468292;0.428365;0.365243251 119.934044;49.232212;-136.023;-99999;-99999;-99999;0.886437903 65.940552;65.718437;-116.683;-99999;-99999;-99999;0.364550999 236.731537;16;-156;-99999;-99999;-99999;0.474974221 23.525427;1.864546;-160.01;-99999;-99999;-99999;0.290495692 66.500938;63.723331;-114.021;-99999;-99999;-99999;0.304285607 135.964264;27.83073;-161.561;-99999;-99999;-99999;0.269062808 199.977264;291.892242;-149.552;-99999;-99999;-99999;0.523128005 288;169.142776;-112;-99999;-99999;-99999;0.631292341 149.965729;63.355949;-130.012;-99999;-99999;-99999;0.043647733 34.175949;3.78808;-144.016;-99999;-99999;-99999;0.470246749 59.992058;247.962387;-158.496;-99999;-99999;-99999;0.940208016 138.077652;109.777473;-162.017;-99999;-99999;-99999;0.26995337 25.982357;49.916439;-164.011;-99999;-99999;-99999;0.534968287 15.395989;81.968102;-128.002;-99999;-99999;-99999;0.396301632 264.147278;68;-136;-99999;-99999;-99999;0.392428625 79.942696;170.803207;-130.02;-99999;-99999;-99999;0.096944655 149.084091;95.808838;-150.014;-99999;-99999;-99999;0.549377473 105.939331;14.716679;-114.021;-99999;-99999;-99999;0.862768134 69.421013;45.727936;-108.02;-99999;-99999;-99999;0.530082724 117.94075;85.719368;-105.032;-99999;-99999;-99999;0.094107556 181.997055;71.986084;-159.287;-0.134671;0.17522;0.975275;0.800361061 62.300362;45.717785;-158.021;-99999;-99999;-99999;0.786836678 242;28;-92.7385;-99999;-99999;-99999;0.04628026 139.948654;107.756783;-111.412;-99999;-99999;-99999;0.011795033 191.999893;87.786713;-96;-99999;-99999;-99999;0.962899973 109.779823;25.666798;-142.025;-99999;-99999;-99999;0.480860356 134.564499;85.793114;-166.015;-99999;-99999;-99999;0.690681588 296;189.799438;-136;-99999;-99999;-99999;0.75458344 208;12.593616;-124;-99999;-99999;-99999;0.357425139 268.062317;150.911835;-116.034;-99999;-99999;-99999;0.129961402 177.959671;281.80896;-153.219;-99999;-99999;-99999;0.848031216 272.348602;166;-154;-99999;-99999;-99999;0.243821773 63.527645;319.975922;-130.002;0.362511;0.244619;0.899304;0.100654637 274;90.297546;-106;-99999;-99999;-99999;0.961906565 266;196;-128.775;-99999;-99999;-99999;0.474865984 248;78.33696;-114;-99999;-99999;-99999;0.031248396 3.952765;67.999916;-94;-99999;-99999;-99999;0.051193506 240;86;-104.805;-99999;-99999;-99999;0.805712415 222;60;-111.6;-99999;-99999;-99999;0.232357456 137.947906;93.753242;-150.997;-99999;-99999;-99999;0.054947051 163.990372;27.954412;-154.886;-0.191227;0.160923;0.968264;0.734122017 279.421204;84;-156;-99999;-99999;-99999;0.792652063 165.996414;5.982943;-166.222;-99999;-99999;-99999;0.027081932 115.941681;43.72377;-112.489;-99999;-99999;-99999;0.113196861 202.505661;14;-128;-99999;-99999;-99999;0.952474531 103.941757;42.158577;-170.02;-99999;-99999;-99999;0.726019792 191.999542;75.40934;-114;-0.574204;0.7985;-0.180797;0.456345623 211.99762;207.988724;-149.268;-99999;-99999;-99999;0.727135378 17.998672;121.993698;-163.384;-99999;-99999;-99999;0.696891747 211.992111;241.962631;-136.552;-99999;-99999;-99999;0.417878732 113.950867;362.667419;-108.017;-99999;-99999;-99999;0.975117365 260;8;-155.431;-0.079147;0.057956;0.995177;0.076443457 298;96.889786;-122;-99999;-99999;-99999;0.270298741 133.263794;209.696381;-154.023;-99999;-99999;-99999;0.807461913 238;21.965145;-146;-99999;-99999;-99999;0.300656288 262;66;-144.73;-99999;-99999;-99999;0.837207335 127.948975;51.776814;-158.018;-99999;-99999;-99999;0.335782757 49.960506;61.812927;-163.739;-99999;-99999;-99999;0.949309498 211.999649;173.998352;-151.898;-99999;-99999;-99999;0.201794116 262;86;-105.036;-99999;-99999;-99999;0.000442665 228;72;-118.116;-99999;-99999;-99999;0.749579501 254;44;-129.364;0.439719;-0.599803;0.668494;0.324058631 268.565521;198;-156;-0.406292;-0.142629;0.902543;0.872167567 113.943665;29.630468;-112.02;-99999;-99999;-99999;0.110581919 225.999985;95.474724;-154;-99999;-99999;-99999;0.185597676 83.983818;330.486969;-144.006;-99999;-99999;-99999;0.854535441 67.95507;163.44986;-130.016;-99999;-99999;-99999;0.490981249 212;92;-160.741;-99999;-99999;-99999;0.838766794 175.962082;207.842285;-147.594;-99999;-99999;-99999;0.635094867 77.928703;93.091705;-136.025;-99999;-99999;-99999;0.12499742 51.987949;211.942932;-106.069;0.611099;0.431825;0.66339;0.968379055 188;35.999996;-158.501;-99999;-99999;-99999;0.640899122 49.965454;83.836365;-162.203;-99999;-99999;-99999;0.396748226 227.881256;100;-154;-99999;-99999;-99999;0.501044965 123.952705;59.775986;-102.804;-99999;-99999;-99999;0.889582223 256.821869;162.172058;-103.477;-99999;-99999;-99999;0.128068342 270;130;-149.098;-99999;-99999;-99999;0.92735594 197.514008;40;-142;-99999;-99999;-99999;0.122380288 179.99733;83.987358;-95.0248;-99999;-99999;-99999;0.561188702 200.000015;6;-136.816;-99999;-99999;-99999;0.380243568 0.466516;5.984159;-176.001;-99999;-99999;-99999;0.183529343 163.992645;21.965193;-161.982;-99999;-99999;-99999;0.201118592 166.95636;239.364609;-123.838;-99999;-99999;-99999;0.312252788 65.931961;45.677757;-147.489;-99999;-99999;-99999;0.250211505 1.999829;90.508942;-120;-99999;-99999;-99999;0.612550286 9.997863;72.086479;-106.001;-99999;-99999;-99999;0.685362169 296;4;-157.893;-99999;-99999;-99999;0.500178318 256;142;-148.998;-99999;-99999;-99999;0.179097723 127.943161;49.78793;-144.02;-99999;-99999;-99999;0.435552726 252;201.999985;-160.293;-99999;-99999;-99999;0.334838148 65.966393;183.84082;-145.402;-99999;-99999;-99999;0.107408502 290;127.524811;-138;0.569814;0.803118;-0.174107;0.493103253 161.983444;77.737457;-104.006;-99999;-99999;-99999;0.717031375 280.915283;348;-156;-99999;-99999;-99999;0.825191722 79.958817;213.434479;-146.014;-99999;-99999;-99999;0.489382687 155.963577;133.827469;-103.33;-99999;-99999;-99999;0.999222397 56.641872;193.89621;-114.008;-99999;-99999;-99999;0.070745572 206.687088;20;-102;-99999;-99999;-99999;0.220128638 51.948311;7.755179;-112.598;-99999;-99999;-99999;0.08104905 181.988922;137.94754;-101.382;-99999;-99999;-99999;0.62482129 218;8;-139.334;-99999;-99999;-99999;0.088176499 266;153.680908;-126;-99999;-99999;-99999;0.852289581 185.197647;61.991714;-150.001;-99999;-99999;-99999;0.196943582 290;168.963486;-114;0.152551;-0.984378;0.087909;0.652282423 274;14;-154.352;-99999;-99999;-99999;0.408899636 105.923325;175.812729;-136.027;-99999;-99999;-99999;0.559143076 171.992935;57.966549;-159.386;-99999;-99999;-99999;0.741783115 288;186;-102.641;-99999;-99999;-99999;0.727560423 79.937775;67.705261;-107.851;-99999;-99999;-99999;0.975682227 75.940605;65.718681;-107.081;-99999;-99999;-99999;0.787944779 28.633467;161.991272;-162.001;-99999;-99999;-99999;0.397272339 147.968384;97.850235;-167.152;-99999;-99999;-99999;0.287154056 177.97435;191.878494;-153.256;-99999;-99999;-99999;0.360724755 135.923492;338.737854;-112.025;-0.55437;-0.685125;0.472523;0.802945014 173.989258;72.792656;-138.004;-99999;-99999;-99999;0.288639237 169.957703;197.824478;-149.27;0.216259;-0.363652;0.906085;0.696160121 57.949207;53.759422;-162.117;-99999;-99999;-99999;0.986340729 148.508514;230.214401;-117.643;-99999;-99999;-99999;0.567172184 189.999985;57.999954;-105.43;-0.503263;0.040025;0.863206;0.786502534 29.97381;11.875957;-173.089;0.098581;-0.145063;0.984499;0.480380204 23.99799;143.990494;-159.747;-99999;-99999;-99999;0.641968054 117.948959;1.758249;-160.76;-0.041654;-0.002074;0.99913;0.541945258 17.983356;5.921167;-172.426;-99999;-99999;-99999;0.304126036 29.306732;223.998978;-128;-99999;-99999;-99999;0.272710139 79.953201;128.482254;-96.0164;-0.27635;-0.959023;0.062489;0.050522806 204.787827;40;-108;-99999;-99999;-99999;0.747403767 85.9244;92.33091;-142.027;-99999;-99999;-99999;0.82680145 55.948994;1.758425;-107.606;-0.198505;0.5932;0.780199;0.856933201 29.966152;0.808143;-118.012;-99999;-99999;-99999;0.102600316 1.997679;33.989006;-169.031;-0.020841;0.344352;0.938609;0.534105644 250;77.973236;-120;-99999;-99999;-99999;0.886424453 248;2;-156.862;-99999;-99999;-99999;0.989395054 196.712814;34;-138;-99999;-99999;-99999;0.275815479 125.893875;222.543396;-139.963;0.124534;-0.917385;-0.378015;0.906881768 165.995407;21.978168;-168.917;-99999;-99999;-99999;0.394475045 61.930187;25.470152;-142.025;-99999;-99999;-99999;0.92297833 65.948769;101.757355;-154.775;-0.163168;-0.25183;0.953917;0.34059591 97.921463;85.997902;-124.028;-99999;-99999;-99999;0.799160872 258;18;-156.864;-0.111553;0.163542;0.980209;0.605602526 256;304;-147.001;0.063211;-0.189198;0.979902;0.636764427 70.656326;301.947144;-142.004;-99999;-99999;-99999;0.860578202 290;196;-152.714;-99999;-99999;-99999;0.687640187 216;16.737556;-94;-99999;-99999;-99999;0.388954331 89.942024;41.725399;-101.98;-99999;-99999;-99999;0.420777639 43.380817;143.903946;-126.007;-99999;-99999;-99999;0.735690882 224;96;-115.796;-99999;-99999;-99999;0.21954649 2;111.885841;-162;-99999;-99999;-99999;0.263100992 284;184;-102.254;-99999;-99999;-99999;0.026949332 25.969011;3.241329;-160.011;-99999;-99999;-99999;0.818061756 71.964653;177.832596;-157.471;-99999;-99999;-99999;0.459906454 163.992798;14.891956;-158.003;-99999;-99999;-99999;0.450359418 73.933563;17.685343;-113.977;-99999;-99999;-99999;0.954420164 41.281059;187.984756;-88.0011;-0.70725;0.075237;0.702949;0.516540538 177.929306;351.184387;-110.025;0.273685;-0.959205;-0.070873;0.205622884 151.974091;61.877293;-159.256;-99999;-99999;-99999;0.679367168 116.126862;35.72068;-116.021;-99999;-99999;-99999;0.296541452 214;55.671082;-102;-99999;-99999;-99999;0.482880599 234.000015;20.802204;-136;-99999;-99999;-99999;0.139460742 132.814255;57.750813;-126.018;-99999;-99999;-99999;0.798177102 284;78;-154.841;-0.296007;-0.001035;0.955185;0.366269644 73.931862;92.176666;-134.024;-99999;-99999;-99999;0.861760302 147.560486;220.396011;-126.455;-99999;-99999;-99999;0.677221228 274;197.093216;-114;-0.108046;0.671502;0.733083;0.26009299 34.67886;167.985153;-94.0011;-99999;-99999;-99999;0.786977438 242;66;-128.476;-99999;-99999;-99999;0.102173189 228;77.774063;-112;-99999;-99999;-99999;0.532549542 284;178;-103.246;-99999;-99999;-99999;0.958218814 139.954865;109.115013;-162.016;-99999;-99999;-99999;0.26003223 264;58;-132.72;-99999;-99999;-99999;0.837321344 83.935555;121.066597;-152.023;-99999;-99999;-99999;0.04769275 270;8;-154.126;-99999;-99999;-99999;0.140174247 240;2;-156.688;0.145614;-0.163234;0.975783;0.204870605 163.000046;239.704315;-116.022;-99999;-99999;-99999;0.35871672 2.682698;76;-94;-99999;-99999;-99999;0.886678546 125.949799;43.762211;-160.338;-99999;-99999;-99999;0.480519916 71.930756;22.240076;-160.024;-99999;-99999;-99999;0.089141902 143.949661;95.761597;-130.928;0.082229;-0.012859;0.99653;0.344314338 262.065643;175.704636;-102.467;-99999;-99999;-99999;0.38332234 123.133614;215.675323;-150.024;-99999;-99999;-99999;0.641376113 23.979595;13.903368;-172.245;-99999;-99999;-99999;0.726174316 72.561432;41.727291;-106.02;-99999;-99999;-99999;0.698619687 271.37796;54;-140;-99999;-99999;-99999;0.748470141 278;382;-153.863;-99999;-99999;-99999;0.125584591 139.932693;155.060043;-122.024;-0.61099;0.770063;0.18356;0.916120722 218;36;-78.3772;-99999;-99999;-99999;0.918428968 282;129.102921;-144;-99999;-99999;-99999;0.311941336 19.985594;31.931765;-168.526;-0.059412;-0.310735;0.948638;0.975325607 113.944794;77.738525;-100.37;-99999;-99999;-99999;0.854143157 155.955627;165.78981;-153.421;-99999;-99999;-99999;0.893193785 187.201035;57.998466;-108;-99999;-99999;-99999;0.993509483 7.993708;25.970198;-169.22;-99999;-99999;-99999;0.434424952 169.92601;343.043945;-124.026;0.797922;-0.583639;0.150619;0.481557689 125.937355;119.703308;-156.273;-99999;-99999;-99999;0.344154074 282;62.000004;-153.213;-99999;-99999;-99999;0.790042504 184.067657;59.989307;-146.001;-99999;-99999;-99999;0.264979924 230.796509;14;-144;-99999;-99999;-99999;0.797424143 280;188;-159.345;-99999;-99999;-99999;0.539740192 55.959572;85.808525;-162.018;-99999;-99999;-99999;0.034413386 181.9599;157.92485;-130.73;-99999;-99999;-99999;0.671910218 65.583557;67.703293;-124.022;-0.967244;0.213522;-0.137285;0.461409347 129.939789;169.714813;-159.045;-99999;-99999;-99999;0.168869457 260.928345;44;-154;0.823728;-0.320417;-0.467767;0.852719933 248;72;-127.263;-99999;-99999;-99999;0.440442212 97.252724;1.642479;-136.027;-99999;-99999;-99999;0.510328465 182.791245;59.985481;-130.001;-99999;-99999;-99999;0.124955325 243.999008;373.9953;-154.842;-99999;-99999;-99999;0.300968841 68.937462;37.652355;-138.026;-99999;-99999;-99999;0.792643777 105.924667;217.718475;-134.019;-99999;-99999;-99999;0.65586613 246;18;-160.516;-99999;-99999;-99999;0.213701611 291.33493;192;-124;-99999;-99999;-99999;0.67772817 252.039597;188.377029;-121.971;-0.526658;0.764849;-0.370996;0.296334386 216.398773;96;-120;-0.396601;0.675224;0.621916;0.734805507 270;0;-152.813;-0.129411;0.232;0.964069;0.073820946 254;70;-128.711;-99999;-99999;-99999;0.140236745 175.927719;350.693726;-118.025;0.462809;-0.885326;0.044779;0.774244252 282;195.215805;-126;-99999;-99999;-99999;0.104826446 252.149918;32;-152;0.382835;-0.860618;-0.335818;0.07839418 200.000015;83.559532;-150;-99999;-99999;-99999;0.617976246 17.986534;23.93622;-170.842;-99999;-99999;-99999;0.549470981 290;52;-152.733;-0.138535;-0.127299;0.982142;0.189608997 210;136.754959;-100;-99999;-99999;-99999;0.491833843 204.893723;44;-90;-99999;-99999;-99999;0.943361589 45.954979;0.631175;-110.016;-0.26627;0.505744;0.820563;0.434778845 33.982796;87.918518;-162.244;0.086434;0.078624;0.99315;0.596985807 290.650391;82;-152;-99999;-99999;-99999;0.461330851 107.924454;87.383492;-148.027;-99999;-99999;-99999;0.89412403 23.966921;-0.156669;-137.461;-99999;-99999;-99999;0.88182764 39.995941;171.980774;-88.6873;-99999;-99999;-99999;0.361296347 256.763489;118;-146;-99999;-99999;-99999;0.540026448 107.946014;15.006416;-108.019;-99999;-99999;-99999;0.080314121 165.989578;45.050468;-156.004;-99999;-99999;-99999;0.917560142 184.465378;99.975502;-110.002;0.976556;-0.058255;-0.207231;0.322255176 244;76.765495;-116;-99999;-99999;-99999;0.897691397 126.977791;53.736984;-120.02;-99999;-99999;-99999;0.403958111 14;394;-127.37;-99999;-99999;-99999;0.719009737 250;120.383926;-152;-99999;-99999;-99999;0.642078105 73.998177;397.171509;-130.001;-99999;-99999;-99999;0.569043791 235.640717;62.000004;-110;-99999;-99999;-99999;0.094894616 246.810165;38;-108;-99999;-99999;-99999;0.982565295 5.995841;58.972321;-136.001;-99999;-99999;-99999;0.437082453 129.960846;7.814578;-160.418;-99999;-99999;-99999;0.582923024 63.981396;249.91188;-123.281;-99999;-99999;-99999;0.795051829 53.936295;19.196299;-138.022;-99999;-99999;-99999;0.276457216 187.95459;294.952087;-132.016;-99999;-99999;-99999;0.184715053 248;212.000015;-156.726;-99999;-99999;-99999;0.17884541 26.56971;81.923637;-144.006;-99999;-99999;-99999;0.108190671 240;8.742786;-158;0.420841;0.431226;0.798083;0.615397042 0.102677;136;-156;0.316841;-0.194815;0.928256;0.29204944 291.443207;126;-152;-99999;-99999;-99999;0.54221446 14;200;-163.435;-99999;-99999;-99999;0.703523568 97.945641;259.742554;-110.399;-99999;-99999;-99999;0.606275858 286;10;-154.229;0.027505;-0.008214;0.999588;0.845109006 93.932076;126.437157;-154.024;-99999;-99999;-99999;0.628635523 29.981386;59.911842;-165.24;-99999;-99999;-99999;0.938461133 109.934334;39.688976;-157.428;-99999;-99999;-99999;0.463176008 234.000015;78.267532;-112;-99999;-99999;-99999;0.593919265 284;130.493118;-134;0.252361;0.958113;0.135399;0.003119351 95.544395;67.704735;-104.022;-99999;-99999;-99999;0.225581832 9.999223;107.996323;-154.074;-99999;-99999;-99999;0.906017327 22.548407;214;-110;-0.796705;0.446533;0.407272;0.194947481 53.937855;23.403465;-146.022;-99999;-99999;-99999;0.808846092 276;6;-152.952;-99999;-99999;-99999;0.334731299 236.384857;18;-158;-99999;-99999;-99999;0.174551835 39.99091;157.95694;-159.339;-0.074187;0.190985;0.978785;0.756539669 129.954178;79.782997;-101.298;-99999;-99999;-99999;0.573424222 240;60.090786;-124;-0.429812;0.879615;0.203813;0.386000839 204;82;-115.768;-99999;-99999;-99999;0.630168334 164.929688;241.711502;-116.021;-99999;-99999;-99999;0.356442656 183.997345;103.987457;-92.9906;-99999;-99999;-99999;0.83914269 37.966057;13.839239;-172.532;-99999;-99999;-99999;0.275643598 155.948135;159.754333;-123.545;-99999;-99999;-99999;0.618420881 181.996078;81.9814;-158.712;-99999;-99999;-99999;0.665659037 221.996353;164.265457;-103.342;-99999;-99999;-99999;0.617466988 250;38;-131.608;0.45103;-0.534706;0.714605;0.248484916 284;360;-156.905;0.270557;-0.109748;0.956428;0.405062055 234.000015;18;-144.266;-99999;-99999;-99999;0.408065337 130.257278;55.742695;-148.019;-99999;-99999;-99999;0.162640406 237.988144;184.040619;-132.932;-0.205917;0.836467;0.50786;0.301543943 247.329529;32;-102;-99999;-99999;-99999;0.374647493 161.977859;70.258278;-136.008;-99999;-99999;-99999;0.974308203 252.243073;188.831451;-117.976;-0.688853;0.708395;0.153814;0.595834632 186.600357;141.964859;-98.0026;-99999;-99999;-99999;0.60958651 296;374;-157.397;0.116612;-0.290822;0.949644;0.619169307 238.486374;26;-132;0.705827;-0.599735;0.376997;0.924902326 219.988678;302.887146;-100.004;-0.053861;-0.821763;0.567278;0.824784741 189.994629;143.974594;-96.9543;-99999;-99999;-99999;0.474382826 133.798706;286.353271;-127.487;-99999;-99999;-99999;0.665297655 9.99063;10.547742;-172.003;-99999;-99999;-99999;0.659758716 103.941147;71.721237;-101.303;-99999;-99999;-99999;0.457476628 225.097;48;-124;-99999;-99999;-99999;0.529594499 153.98645;19.935835;-166.535;-99999;-99999;-99999;0.666786104 218.925842;20;-86;-99999;-99999;-99999;0.429535317 191.476532;32;-144;-99999;-99999;-99999;0.186557274 188.833878;355.781525;-146.016;-99999;-99999;-99999;0.769315667 297.972351;20;-156;-99999;-99999;-99999;0.528727581 280;332;-161.68;0.776832;-0.185098;0.60189;0.134293262 258;119.915901;-150;-99999;-99999;-99999;0.915323345 239.051544;24;-90;-99999;-99999;-99999;0.157903257 13.994398;66.817688;-162.002;-99999;-99999;-99999;0.536676864 7.672465;75.996391;-102;-99999;-99999;-99999;0.098004161 83.96077;257.814178;-114.134;-0.212613;0.346169;0.913763;0.056334399 186.551804;97.977516;-118.002;-99999;-99999;-99999;0.65738635 209.529663;173.514755;-135.45;-99999;-99999;-99999;0.301507197 206.52034;171.968948;-117.764;-0.398879;0.873333;-0.279615;0.751586428 185.997711;87.989136;-104.918;0.418523;-0.592463;-0.68835;0.670457121 59.945004;57.739521;-157.252;-99999;-99999;-99999;0.389163073 153.954498;159.784515;-153.35;-99999;-99999;-99999;0.684637349 188.615402;71.995674;-112;-99999;-99999;-99999;0.441652121 147.965424;93.779633;-162.012;-99999;-99999;-99999;0.045528117 245.999817;323.999146;-94.2502;-99999;-99999;-99999;0.564999297 115.950081;71.763565;-97.4526;-99999;-99999;-99999;0.570427392 3.999987;74.295891;-96;-99999;-99999;-99999;0.516393141 61.939129;69.711685;-133.369;-99999;-99999;-99999;0.801116819 83.924316;91.349503;-132.027;0.259699;0.965498;-0.019253;0.385535396 222.345062;186;-148;-0.503363;-0.285623;0.815503;0.630527019 231.807648;397.902252;-120.007;0.911341;-0.065532;0.406403;0.851947102 19.986784;65.868385;-144.005;-99999;-99999;-99999;0.663832427 110.421906;25.699751;-158.022;-99999;-99999;-99999;0.766205741 121.92765;109.657326;-121.148;-99999;-99999;-99999;0.240187393 133.944473;92.759483;-152.02;-99999;-99999;-99999;0.387439984 45.944851;14.520248;-132.019;-99999;-99999;-99999;0.610604083 268;50;-134.715;0.547114;-0.193869;0.814298;0.67256829 240;101.423744;-120;-99999;-99999;-99999;0.396428302 127.930275;115.669769;-141.069;-99999;-99999;-99999;0.448220582 25.985104;59.929447;-165.381;-99999;-99999;-99999;0.147077363 83.973282;281.873444;-146.738;-99999;-99999;-99999;0.843629988 280;82;-126.757;-99999;-99999;-99999;0.105560528 171.982727;113.918152;-108.853;-99999;-99999;-99999;0.077660099 159.955048;154.275925;-120.016;0.628078;0.755288;0.187236;0.332491882 288;72;-153.585;-99999;-99999;-99999;0.514844975 253.717545;290;-148;-99999;-99999;-99999;0.419911118 264;40;-160.089;0.08112;-0.113882;0.990177;0.192466922 195.987518;205.940887;-148.905;-0.063884;-0.118744;0.990868;0.577323084 81.935356;123.69384;-115.6;-99999;-99999;-99999;0.893710392 0;105.50177;-136;-99999;-99999;-99999;0.596807415 183.9991;45.569939;-154;-99999;-99999;-99999;0.050517527 186.773804;51.995304;-134;-99999;-99999;-99999;0.976953775 115.949516;345.760895;-96.0753;-99999;-99999;-99999;0.563376061 213.972488;379.86969;-142.744;-99999;-99999;-99999;0.496332953 111.94455;47.737358;-105.151;-99999;-99999;-99999;0.497689604 78.568611;13.679154;-114.024;0.127149;-0.217785;0.967679;0.574786668 220.839111;66;-110;0.677377;-0.124445;0.725034;0.341102663 179.990067;111.952965;-108.994;-99999;-99999;-99999;0.85528948 123.916061;224.41127;-144.002;-0.193088;-0.96257;-0.190203;0.720590051 143.950897;91.76741;-128.941;-99999;-99999;-99999;0.707987086 296;390;-159.618;0.415433;0.540149;0.731885;0.523590808 63.939857;47.715141;-116.668;-99999;-99999;-99999;0.709762706 70.099861;163.776947;-124.017;-0.482346;0.872828;0.074252;0.045508613 196.827316;166.929657;-131.305;-0.58602;0.79088;-0.176323;0.638053865 276;360;-155.027;0.296419;0.103703;0.949411;0.207873258 15.997514;107.988228;-157.1;-99999;-99999;-99999;0.510227956 59.932976;18.755865;-128.024;-99999;-99999;-99999;0.339020041 268.809509;44;-138;-99999;-99999;-99999;0.752637949 266;68;-157.305;-99999;-99999;-99999;0.684181668 236;23.715887;-130;-99999;-99999;-99999;0.639884394 103.923561;88.51622;-120.027;-99999;-99999;-99999;0.501416083 21.983282;25.920815;-170.334;-99999;-99999;-99999;0.510352977 93.939911;51.715382;-103.167;-99999;-99999;-99999;0.52435265 145.961258;62.854355;-128.014;-99999;-99999;-99999;0.907504821 27.975254;9.882795;-173.08;-99999;-99999;-99999;0.224950341 36.938347;7.777064;-144.017;-99999;-99999;-99999;0.188948903 242;22;-107.489;0.508402;-0.187714;-0.840411;0.462058711 151.967621;64.73214;-132.011;-99999;-99999;-99999;0.423506194 183.010956;83.980003;-112.001;-99999;-99999;-99999;0.636905075 135.950333;89.328209;-110.017;-99999;-99999;-99999;0.618469985 67.783577;41.714779;-112.021;-99999;-99999;-99999;0.977805431 229.999695;275.998535;-155.287;-99999;-99999;-99999;0.788273734 82.341736;177.73085;-138.02;-99999;-99999;-99999;0.042009032 133.957901;65.800621;-105.394;-99999;-99999;-99999;0.65408323 282;40;-153.764;-99999;-99999;-99999;0.397612034 43.992447;211.964233;-118.538;0.453624;0.051104;-0.889727;0.217185591 147.959305;137.807236;-96.9198;-99999;-99999;-99999;0.249712066 83.940994;128.543915;-106.021;-0.155647;-0.858007;0.489487;0.115647126 270.438416;58;-138;-99999;-99999;-99999;0.388315092 268;397.716919;-158;0.283378;0.676988;0.679253;0.634505481 99.928139;82.900406;-156.025;-99999;-99999;-99999;0.557420026 67.940514;89.718262;-148.887;-99999;-99999;-99999;0.03134121 220.057205;178;-142;-99999;-99999;-99999;0.094779424 107.942123;75.725891;-100.909;-99999;-99999;-99999;0.625323693 266;124.000008;-115.546;-0.38039;0.793031;0.475821;0.377250838 33.980797;69.90905;-167.075;-99999;-99999;-99999;0.495036341 13.301342;65.967331;-122.002;-99999;-99999;-99999;0.65469535 11.386827;85.982452;-126.001;-99999;-99999;-99999;0.342517892 244;104.387344;-122;-99999;-99999;-99999;0.660443657 258;58;-125.585;-99999;-99999;-99999;0.099006632 140.860672;157.679474;-126.024;-99999;-99999;-99999;0.813740281 29.978346;49.897434;-163.745;-99999;-99999;-99999;0.127706029 45.985752;170.632507;-150.005;-99999;-99999;-99999;0.066887383 163.99086;23.956739;-154.233;-99999;-99999;-99999;0.324222913 147.959564;88.134941;-118.014;-99999;-99999;-99999;0.550914279 214;38;-78.9594;-0.306621;-0.222736;0.925404;0.995937081 142.948181;223.600677;-118.332;-99999;-99999;-99999;0.545013958 21.985844;47.932945;-164.78;-99999;-99999;-99999;0.749574952 35.974327;55.878399;-164.959;-99999;-99999;-99999;0.039955874 45.973461;129.874298;-127.386;-0.475757;-0.687255;-0.548941;0.662605508 111.950272;317.716614;-147.072;-99999;-99999;-99999;0.744806503 266;74.042282;-140;0.844937;-0.429944;-0.318166;0.16814914 51.9491;5.758923;-111.376;-99999;-99999;-99999;0.814255741 244;67.467705;-158;-99999;-99999;-99999;0.234421404 65.448151;33.672928;-150.024;-99999;-99999;-99999;0.121038684 85.934502;123.635735;-112.023;-99999;-99999;-99999;0.702626375 11.996019;83.606216;-122.001;-99999;-99999;-99999;0.298678079 61.940041;49.716003;-155.383;-99999;-99999;-99999;0.789611762 214;47.231461;-80;-99999;-99999;-99999;0.622267638 276;128;-145.307;-99999;-99999;-99999;0.176753464 15.988764;29.946783;-169.269;-99999;-99999;-99999;0.480600918 248;80;-111.076;0.135053;-0.787181;0.601753;0.962443091 137.962479;91.822311;-170.413;-0.139318;0.298297;0.944251;0.212244978 270;42;-159.007;-0.253736;-0.201981;0.94595;0.986465519 -0.003235;1.366353;-178.001;-99999;-99999;-99999;0.8056891 17.992868;67.966217;-165.624;-99999;-99999;-99999;0.859322938 10.881762;131.999985;-160;-99999;-99999;-99999;0.757693365 16.76491;198;-146;-99999;-99999;-99999;0.829450812 103.944069;63.7351;-99.645;-99999;-99999;-99999;0.125541905 39.970978;57.862537;-165.449;-0.041424;-0.006956;0.999117;0.989367793 37.994953;169.976105;-162.709;-0.226916;0.241725;0.94344;0.863192682 67.931206;53.674168;-128.969;-99999;-99999;-99999;0.236317739 142.788147;135.76741;-102.017;-99999;-99999;-99999;0.699891011 260;68;-132.971;0.610736;0.061972;0.789406;0.341105644 189.998764;72.912132;-126;-99999;-99999;-99999;0.164536845 121.936867;49.522026;-144.022;-99999;-99999;-99999;0.178670726 139.968994;157.71196;-150.021;-99999;-99999;-99999;0.719370383 53.939949;16.659061;-124.021;-99999;-99999;-99999;0.585298334 21.99045;93.954765;-145.103;-99999;-99999;-99999;0.788663937 278;176;-102.85;-99999;-99999;-99999;0.163269919 281.435974;324;-158;-99999;-99999;-99999;0.325918653 33.971397;27.864521;-168.971;-99999;-99999;-99999;0.404271783 112.579948;23.693731;-152.023;-99999;-99999;-99999;0.619321166 67.998947;371.994995;-139.136;-99999;-99999;-99999;0.112703891 224;70;-113.022;-99999;-99999;-99999;0.76316064 121.952873;25.77681;-166.177;-99999;-99999;-99999;0.539955466 190.990997;52;-106;-0.635936;-0.381652;0.670766;0.315064317 222;32;-78.333;-99999;-99999;-99999;0.630741466 94.169235;85.650887;-116.026;-0.267774;0.963211;-0.02284;0.308502863 143.847229;272.901154;-119.217;-0.432963;0.53746;0.723657;0.17833778 230.587845;18;-126;-99999;-99999;-99999;0.116654321 123.944923;49.739151;-157.449;-99999;-99999;-99999;0.760287796 5.995047;27.97654;-168.697;-99999;-99999;-99999;0.179592454 276;158.763184;-138;-99999;-99999;-99999;0.2068347 189.945374;335.342194;-124.019;-0.309053;0.939891;-0.145227;0.348564295 262;64;-132.91;-99999;-99999;-99999;0.543679287 268;200;-117.531;-99999;-99999;-99999;0.769338884 17.990438;75.954712;-127.938;-99999;-99999;-99999;0.635915193 141.948807;131.757523;-105.008;-99999;-99999;-99999;0.482460788 26;224;-133.791;-99999;-99999;-99999;0.44683973 109.536552;19.670593;-142.024;-99999;-99999;-99999;0.166845185 178.633286;113.933083;-124.005;-99999;-99999;-99999;0.896770685 259.383636;60;-156;-99999;-99999;-99999;0.651146144 242;78;-112.282;0.130848;-0.794285;0.593288;0.108845103 237.055511;180.148911;-118.235;-99999;-99999;-99999;0.329374072 274.335266;170;-148;-99999;-99999;-99999;0.717112517 83.965134;267.834869;-136.582;-99999;-99999;-99999;0.423841952 238;47.365707;-80;-99999;-99999;-99999;0.827779525 249.723633;185.737396;-114.661;-0.511943;0.756627;0.40673;0.755202552 167.965378;151.142044;-136.012;-99999;-99999;-99999;0.761247606 276;210;-154.899;-99999;-99999;-99999;0.358189594 104.779312;7.670036;-150.024;-99999;-99999;-99999;0.462352494 191.983597;207.922363;-148.938;-99999;-99999;-99999;0.508431967 282;300;-146.761;-99999;-99999;-99999;0.145408378 169.990982;85.957275;-97.1414;-99999;-99999;-99999;0.142730077 63.065231;41.716866;-160.021;-99999;-99999;-99999;0.740806801 23.977272;0.25249;-174.008;-99999;-99999;-99999;0.590585166 220.110855;56;-92;-0.385716;0.832272;0.398178;0.456314711 202;28.558569;-98;-99999;-99999;-99999;0.373643201 199.948532;365.812317;-110.018;0.351288;-0.873517;0.336995;0.348179825 246;68;-159.148;0.25121;0.361216;0.898007;0.509858147 175.996811;37.984882;-155.191;0.286667;-0.133401;0.948697;0.947654689 49.950188;17.764061;-165.605;-99999;-99999;-99999;0.054452333 39.234367;141.922089;-136.006;-99999;-99999;-99999;0.810971326 149.968185;73.849289;-112.557;-99999;-99999;-99999;0.700152438 225.386536;8;-146;-99999;-99999;-99999;0.981464846 246;4;-156.952;-99999;-99999;-99999;0.042784844 210;82;-113.09;-0.092737;0.349722;0.932252;0.258912125 220;14;-108.213;-0.251737;-0.894783;-0.368772;0.901498619 185.994217;97.972595;-135.966;-99999;-99999;-99999;0.759746892 2;62.51997;-92;-99999;-99999;-99999;0.590739731 131.95195;57.861027;-114.017;0.542618;-0.786714;-0.294358;0.361018422 177.998871;23.617279;-158;-99999;-99999;-99999;0.38280494 119.094131;49.746597;-108.019;-99999;-99999;-99999;0.106979558 91.9328;13.449223;-114.024;-99999;-99999;-99999;0.384250268 195.991852;171.961426;-145.7;0.063866;0.133013;0.989054;0.280400474 276;190;-158.173;-99999;-99999;-99999;0.233762134 169.225952;75.940216;-156.004;-99999;-99999;-99999;0.898042738 282;32;-153.804;-99999;-99999;-99999;0.341022187 69.251343;75.702087;-120.022;-99999;-99999;-99999;0.070345943 49.9431;15.730478;-154.775;-99999;-99999;-99999;0.743693943 258;68;-159.119;-99999;-99999;-99999;0.437396144 268;184;-160.789;-99999;-99999;-99999;0.787361285 51.976685;172.456009;-130.008;0.755042;-0.655151;-0.026241;0.700659146 296;150;-150.172;-99999;-99999;-99999;0.548182618 292;88.99762;-124;0.44574;-0.596613;0.66736;0.268966698 161.984299;82.1231;-100.006;-0.171094;-0.487413;0.856245;0.240612302 109.307091;15.731047;-112.02;-99999;-99999;-99999;0.509790327 175.974213;152.918015;-134.009;-99999;-99999;-99999;0.879834214 238;228.546661;-152;-99999;-99999;-99999;0.273419786 229.034683;10;-122;0.723388;-0.688456;-0.052327;0.89723109 21.988054;57.94342;-165.298;-99999;-99999;-99999;0.23142065 73.938583;25.709103;-169.297;-99999;-99999;-99999;0.927882002 112.380898;89.674988;-156.024;-99999;-99999;-99999;0.370820879 298;68;-151.681;-99999;-99999;-99999;0.593311227 258;376;-154.498;-99999;-99999;-99999;0.394705332 73.995491;359.978668;-140.34;-99999;-99999;-99999;0.793524171 200.764313;32;-98;-0.938567;-0.220117;0.265783;0.244555832 159.976013;68.937042;-138.008;0.149088;-0.939803;0.30748;0.192249193 187.997971;75.990395;-145.021;-0.651677;0.528818;-0.543755;0.861816948 97.741936;-0.356439;-142.026;-99999;-99999;-99999;0.274804372 247.544846;36;-102;-99999;-99999;-99999;0.59376684 45.977623;129.637558;-154.008;-99999;-99999;-99999;0.313353632 276;62.000004;-154.857;-99999;-99999;-99999;0.978220563 266;48;-133.963;-99999;-99999;-99999;0.39463112 127.927345;142.666092;-118.026;-99999;-99999;-99999;0.295541963 66.889053;71.697159;-126.022;-99999;-99999;-99999;0.263695457 278;160;-133.629;-99999;-99999;-99999;0.494378939 207.965668;339.425507;-122.012;0.127716;0.98665;-0.101042;0.194323271 99.94281;57.729076;-100.653;-99999;-99999;-99999;0.640231884 254;84;-105.587;-99999;-99999;-99999;0.00853949 179.924622;397.643005;-103.76;-99999;-99999;-99999;0.02165917 133.936264;127.698158;-114.603;-99999;-99999;-99999;0.760879726 264;201.999985;-157.499;-99999;-99999;-99999;0.904170451 206;84;-115.003;-0.521081;0.437029;0.733131;0.657002377 286;174;-147.258;0.007548;-0.287147;-0.957857;0.160764593 161.98027;97.906532;-100.952;-99999;-99999;-99999;0.563491028 225.999985;8.607794;-122;-99999;-99999;-99999;0.5445624 14;153.276382;-162;-99999;-99999;-99999;0.657747098 53.674847;157.889542;-154.008;-0.348492;0.92287;0.163904;0.854358213 188.677887;37.999886;-152;-99999;-99999;-99999;0.226153204 105.945335;241.726257;-103.707;-99999;-99999;-99999;0.844526143 145.962372;69.539963;-118.013;-99999;-99999;-99999;0.491736746 107.292885;39.705482;-164.022;-99999;-99999;-99999;0.336294992 211.99913;120.677071;-131.989;-99999;-99999;-99999;0.488465442 -0.000003;54.286304;-96;-99999;-99999;-99999;0.144291704 276;128.849243;-142;-99999;-99999;-99999;0.176176524 -0.000891;55.995781;-115.892;-99999;-99999;-99999;0.668934322 63.967381;49.712051;-118.021;-99999;-99999;-99999;0.107080212 68.798149;71.71241;-116.021;-99999;-99999;-99999;0.63818103 262;42;-152.829;-99999;-99999;-99999;0.749707461 93.118889;87.627808;-126.028;-99999;-99999;-99999;0.295319145 101.931625;91.67617;-159.487;-99999;-99999;-99999;0.780063166 246;71.798218;-156;-99999;-99999;-99999;0.172671246 77.937775;99.705292;-155.204;0.132364;-0.261186;0.95617;0.281082665 36.549732;183.988815;-92.0008;-0.631497;0.144856;0.761727;0.856343269 222;10;-125.248;-99999;-99999;-99999;0.582017692 95.924706;1.643425;-132.109;-99999;-99999;-99999;0.154141284 276;74;-156.355;-99999;-99999;-99999;0.472849998 294;138.535629;-152;-99999;-99999;-99999;0.151063007 93.939255;13.134275;-108.021;-99999;-99999;-99999;0.870492171 242;217.999985;-154.662;0.142397;-0.084549;0.986192;0.155034132 40.476913;9.764545;-150.017;-99999;-99999;-99999;0.537357704 60.558674;81.732094;-138.02;-99999;-99999;-99999;0.336316957 133.966751;1.842515;-160.631;-99999;-99999;-99999;0.096527555 103.920044;127.70533;-136.028;-99999;-99999;-99999;0.215143728 9.993814;61.502769;-142.002;-99999;-99999;-99999;0.743083322 109.996506;139.655579;-110.026;-99999;-99999;-99999;0.908838565 276;86.454803;-152;-99999;-99999;-99999;0.063132027 263.476135;392;-152;-99999;-99999;-99999;0.746605539 35.964279;-0.169189;-172.423;-99999;-99999;-99999;0.820128139 165.834488;137.861176;-108.01;-99999;-99999;-99999;0.268233002 28.148588;25.892563;-170.008;-99999;-99999;-99999;0.916861732 156.560806;215.113052;-147.837;-0.11474;0.079758;0.990189;0.354859942 282.58252;368;-156;-99999;-99999;-99999;0.869897556 242;38.7458;-126;-99999;-99999;-99999;0.647101367 89.927879;3.658421;-120.836;-99999;-99999;-99999;0.033788935 103.936966;3.701439;-162.173;-99999;-99999;-99999;0.866052371 232;59.516109;-98;-99999;-99999;-99999;0.316989197 282;20;-154.841;0.012608;0.042283;0.999026;0.461304782 114.518402;153.623047;-122.028;-99999;-99999;-99999;0.339967409 185.982468;180.134369;-148.006;-99999;-99999;-99999;0.958527747 69.035309;45.659069;-134.025;-99999;-99999;-99999;0.361835606 161.450165;273.671814;-110.024;-0.432643;0.375042;0.819856;0.441622635 1.474949;41.995556;-174;-99999;-99999;-99999;0.608182187 149.947006;159.296524;-148.019;-99999;-99999;-99999;0.594940187 113.939087;83.711502;-104.948;-99999;-99999;-99999;0.642775756 147.961792;93.541115;-156.013;-99999;-99999;-99999;0.510944507 142.76329;236.42572;-113.821;-99999;-99999;-99999;0.685863669 127.952835;39.776627;-160.801;-0.137326;-0.257997;0.956336;0.427663304 57.969898;151.875992;-108.011;-0.431961;0.718342;0.545339;0.194442147 175.994019;71.971703;-160.307;-99999;-99999;-99999;0.460108197 235.996201;333.982025;-91.2156;-99999;-99999;-99999;0.623645286 34.161942;9.802217;-130.015;-99999;-99999;-99999;0.99494462 185.999374;46.227741;-150;-99999;-99999;-99999;0.955970466 7.998128;88.404976;-124.001;-99999;-99999;-99999;0.716279915 83.941895;47.724773;-102.421;-99999;-99999;-99999;0.482842795 39.981625;127.773643;-116.006;-99999;-99999;-99999;0.263630519 222;58.786243;-96;-99999;-99999;-99999;0.447382209 5.283572;83.999336;-102;-99999;-99999;-99999;0.447038614 170.025757;223.720367;-145.723;-99999;-99999;-99999;0.241460486 258.414673;64;-130;0.608438;0.346544;0.71394;0.910872465 292.818542;100;-114;-99999;-99999;-99999;0.688727767 191.832199;179.937897;-144.005;-99999;-99999;-99999;0.533495115 296;212.000015;-148.828;-99999;-99999;-99999;0.058083301 103.93325;17.683855;-119.495;-99999;-99999;-99999;0.48171555 105.93531;82.833221;-106.023;-99999;-99999;-99999;0.985665232 238.545258;44;-86;-99999;-99999;-99999;0.17420373 20.276665;192;-148;-99999;-99999;-99999;0.047368793 193.92215;89.999741;-98;-99999;-99999;-99999;0.384043694 285.008301;108;-100;-99999;-99999;-99999;0.568685921 159.927002;279.653381;-114.106;-99999;-99999;-99999;0.235933606 227.996872;160.22789;-102.466;0.002491;0.251341;0.967895;0.538814868 218;57.278709;-98;-99999;-99999;-99999;0.31401784 257.049957;50;-110;-99999;-99999;-99999;0.231285489 256;82;-107.773;-99999;-99999;-99999;0.953278462 33.981789;75.91375;-166.239;-99999;-99999;-99999;0.099109473 246;27.444405;-146;0.38516;-0.912164;0.14003;0.610836661 234.000015;94.978477;-110;-99999;-99999;-99999;0.742976932 242;20;-161.633;-0.216079;0.026657;0.976012;0.300875562 230;104;-132.619;-99999;-99999;-99999;0.783646043 117.948158;54.710052;-104.018;-99999;-99999;-99999;0.060315081 19.981022;1.910115;-173.247;-99999;-99999;-99999;0.717844802 254;72;-147.717;-99999;-99999;-99999;0.160464422 41.950253;8.00693;-156.017;-99999;-99999;-99999;0.902507349 61.937878;43.705757;-154.005;-99999;-99999;-99999;0.311205198 95.927879;14.038115;-122.025;-99999;-99999;-99999;0.841026989 270;134;-149.244;0.020702;-0.056906;0.998165;0.960344131 71.960167;164.75293;-156.014;-99999;-99999;-99999;0.496085483 47.94677;14.923656;-122.019;-99999;-99999;-99999;0.926726967 145.927643;369.657288;-96.987;-99999;-99999;-99999;0.79493323 215.994598;241.974396;-134.902;-99999;-99999;-99999;0.858910704 105.934059;7.397376;-156.023;-99999;-99999;-99999;0.915897075 244.453583;24;-96;-99999;-99999;-99999;0.671090105 197.999298;109.996674;-151.148;-99999;-99999;-99999;0.810654592 258;36;-153.019;-99999;-99999;-99999;0.372002146 211.99942;171.163361;-144;-99999;-99999;-99999;0.460478426 240.625015;157.08493;-101.527;0.078074;0.09584;0.99233;0.219532299 109.943245;38.183735;-168.02;-99999;-99999;-99999;0.576215747 190.658783;47.999439;-134;-99999;-99999;-99999;0.859886697 57.977032;168.765335;-100.008;0.370429;-0.857591;-0.35682;0.899119612 0.170586;61.999607;-172;-99999;-99999;-99999;0.072184002 137.946609;111.563957;-154.019;-99999;-99999;-99999;0.966832089 117.952217;57.760521;-102.018;-99999;-99999;-99999;0.321819565 241.873718;42;-82;-99999;-99999;-99999;0.914284439 9.995427;64.38089;-156.002;0.441157;-0.893234;-0.08668;0.314078841 181.997452;81.987907;-99.8662;0.415765;-0.909471;-0.001159;0.690967451 216;24;-84.8369;-99999;-99999;-99999;0.648985543 206;70;-107.218;-99999;-99999;-99999;0.742656442 186.289703;2;-158;-99999;-99999;-99999;0.12290179 202;30;-123.164;-99999;-99999;-99999;0.692229484 254.013184;189.818985;-122.007;-0.573445;0.662626;-0.481755;0.37998317 288.733154;62.000004;-152;-99999;-99999;-99999;0.084126233 288;58;-152.043;-99999;-99999;-99999;0.827348371 99.266899;253.610092;-104.142;-99999;-99999;-99999;0.261960573 73.939247;125.010239;-126.021;-99999;-99999;-99999;0.157069607 91.984734;375.927704;-139.181;0.207385;-0.119536;0.970929;0.042287724 278;197.616821;-114;-99999;-99999;-99999;0.826026458 294;86.803612;-134;-99999;-99999;-99999;0.975418888 109.63105;19.712822;-116.021;-99999;-99999;-99999;0.704291925 103.931801;121.676994;-157.452;-99999;-99999;-99999;0.526250854 51.946198;15.745178;-163.398;-99999;-99999;-99999;0.380232047 120.102692;299.077484;-131.899;-99999;-99999;-99999;0.265594052 228;212.000015;-149.028;-99999;-99999;-99999;0.375737763 137.95929;63.807144;-109.906;-99999;-99999;-99999;0.008192304 274.372253;162;-148;-99999;-99999;-99999;0.154411951 254;136;-149.977;-99999;-99999;-99999;0.39139628 246;68;-128.403;-99999;-99999;-99999;0.182689704 254;182;-156.814;-99999;-99999;-99999;0.332506078 208;49.630779;-126;0.610328;-0.756432;0.235179;0.758853828 110.546738;21.674492;-144.024;0.929089;-0.074432;0.362289;0.831594283 212.12323;98;-126;-99999;-99999;-99999;0.191446988 48.432453;111.873314;-160.009;-99999;-99999;-99999;0.969017837 57.938175;21.70718;-157.187;-99999;-99999;-99999;0.018890003 26;382;-136.482;-99999;-99999;-99999;0.622560963 290;85.50116;-150;-99999;-99999;-99999;0.58869727 209.450607;38;-116;-99999;-99999;-99999;0.605250582 266;94;-102.914;-99999;-99999;-99999;0.767766593 177.931656;349.373199;-126.024;-99999;-99999;-99999;0.53109035 199.099228;24;-126;-99999;-99999;-99999;0.438008242 200;84.509674;-138;-99999;-99999;-99999;0.463432013 170.30838;201.830902;-148.193;-99999;-99999;-99999;0.004225751 256;12;-156.412;-99999;-99999;-99999;0.639790285 282;193.201035;-130;-99999;-99999;-99999;0.702898679 190.429611;24;-144;-0.866876;-0.122174;0.483322;0.357817659 75.938049;29.706568;-168.882;-99999;-99999;-99999;0.474554883 260;22;-157.528;-99999;-99999;-99999;0.827556724 153.308334;13.936587;-166.005;-99999;-99999;-99999;0.401264434 180.659912;63.977859;-138.002;-99999;-99999;-99999;0.733403753 262;47.447964;-156;0.872703;-0.213818;0.438944;0.212691935 137.966446;27.841097;-161.483;-99999;-99999;-99999;0.41316992 107.946648;67.211517;-98.0187;-0.434048;0.096153;0.895744;0.831580947 55.994953;253.976074;-157.056;0.049938;-0.114968;0.992113;0.86072135 200.000015;70;-106.434;0.044484;0.379077;0.924295;0.865471778 78.495766;235.81871;-116.013;-0.635551;-0.266563;0.724582;0.986387244 33.999992;233.999969;-156.68;-99999;-99999;-99999;0.702146831 125.212769;127.68261;-152.024;-99999;-99999;-99999;0.260626501 147.981628;7.912957;-162.994;-99999;-99999;-99999;0.757350231 171.987396;72.979912;-136.004;-99999;-99999;-99999;0.242495569 250;44;-111.455;-99999;-99999;-99999;0.593158468 195.999969;83.999855;-158.962;-99999;-99999;-99999;0.850727519 103.927399;88.726532;-114.026;-99999;-99999;-99999;0.098712801 252;360;-154.049;-99999;-99999;-99999;0.718734615 99.98307;393.919769;-143.155;-0.140678;0.234784;0.961814;0.01016583 112.878593;47.719856;-164.021;-0.581734;-0.808217;0.091491;0.196042273 173.967102;198.352051;-150.012;-99999;-99999;-99999;0.008959654 41.986034;165.964691;-122.005;-99999;-99999;-99999;0.674089653 67.946945;108.885704;-152.019;-99999;-99999;-99999;0.064910775 202;83.614151;-152;-99999;-99999;-99999;0.915832377 81.537094;83.687836;-112.023;-99999;-99999;-99999;0.4575792 64.687218;61.711697;-120.021;-0.999396;-0.034751;-0.000787;0.292832704 228;14.985474;-114;0.51683;-0.802503;0.29812;0.746869403 241.881821;28;-108;0.560722;-0.074431;-0.824652;0.836176291 13.989614;23.950808;-170.552;-99999;-99999;-99999;0.746676146 0.522112;53.99268;-122.001;0.568065;-0.740692;-0.358716;0.894458926 185.334229;57.993252;-120.001;-99999;-99999;-99999;0.879205843 171.998627;5.993516;-164.889;-99999;-99999;-99999;0.644253286 149.959961;108.67849;-110.014;-99999;-99999;-99999;0.139488859 191.091827;189.93158;-148.005;-99999;-99999;-99999;0.153657241 97.762039;3.681983;-162.024;-99999;-99999;-99999;0.752130686 189.993774;120.93383;-124.002;-99999;-99999;-99999;0.927198222 232;32;-120.511;-99999;-99999;-99999;0.431713876 234.000015;63.005474;-114;-99999;-99999;-99999;0.855850881 185.998123;65.991112;-147.832;-99999;-99999;-99999;0.270373578 105.967262;365.28537;-138.012;-99999;-99999;-99999;0.071778114 206;3.120715;-142;-99999;-99999;-99999;0.649359587 238;82;-108.035;-99999;-99999;-99999;0.332701398 43.946392;14.819826;-144.019;-99999;-99999;-99999;0.291866443 275.667694;84;-116;0.36902;-0.91869;0.140829;0.996301636 245.998718;387.993958;-153.561;-99999;-99999;-99999;0.174779229 280.141022;78;-156;-0.243783;0.068494;0.967408;0.38351074 235.994919;383.975891;-153.394;-99999;-99999;-99999;0.354706666 79.939384;63.71291;-106.048;-99999;-99999;-99999;0.729736138 29.999756;225.290588;-132;-99999;-99999;-99999;0.267480564 97.945572;15.7422;-103.089;-99999;-99999;-99999;0.724195534 218.288086;52;-114;-99999;-99999;-99999;0.46461552 218;44;-117.418;-0.470291;0.717971;-0.513171;0.168604691 204;24;-104.243;-99999;-99999;-99999;0.352056238 129.950134;86.506966;-104.018;0.008571;0.742042;0.670298;0.855232963 157.991165;-0.041772;-161.314;-99999;-99999;-99999;0.898254327 181.972702;209.870712;-148.189;-99999;-99999;-99999;0.541509709 25.980055;33.905533;-167.372;-99999;-99999;-99999;0.308168543 8;162;-162.736;-99999;-99999;-99999;0.878701034 234.348846;134.038849;-129.466;-99999;-99999;-99999;0.01686595 165.963943;148.48877;-120.013;-99999;-99999;-99999;0.368715411 191.479385;47.999752;-138;-99999;-99999;-99999;0.541789233 145.980209;1.906255;-161.55;-99999;-99999;-99999;0.534216914 113.894394;222.235275;-133.967;-99999;-99999;-99999;0.375397503 199.998901;143.994736;-96.8099;-99999;-99999;-99999;0.972275843 298;188;-132.753;0.211575;0.842157;0.495992;0.014913321 79.936798;71.700653;-109.092;0.057337;0.194586;0.979208;0.228038609 57.948029;47.753853;-162.584;-99999;-99999;-99999;0.326710133 83.937782;62.178234;-106.022;-99999;-99999;-99999;0.250819749 17.984423;11.926217;-171.86;-99999;-99999;-99999;0.342245536 222;9.3285;-136;-99999;-99999;-99999;0.375112189 294;28;-154.662;-99999;-99999;-99999;0.316148732 159.990555;12.877966;-160.003;-99999;-99999;-99999;0.689171381 3.999718;100.637886;-142;-99999;-99999;-99999;0.481520053 266;60;-144.96;-99999;-99999;-99999;0.562367307 218.428192;54;-106;-99999;-99999;-99999;0.925746681 222;61.513344;-126;-99999;-99999;-99999;0.127272269 249.999435;391.997345;-153.115;-99999;-99999;-99999;0.477899738 232.444153;16;-110;-99999;-99999;-99999;0.806059853 266;74;-156.896;-0.105749;-0.138931;0.98464;0.573261439 196.328247;28;-134;-99999;-99999;-99999;0.023583205 25.983374;53.921253;-164.299;-0.101823;0.129607;0.986324;0.687070041 230.280563;139.387543;-107.497;-99999;-99999;-99999;0.920523638 203.07254;44;-96;-99999;-99999;-99999;0.185575567 244.512589;42;-96;-99999;-99999;-99999;0.90975955 234.188263;167.200699;-103.043;-99999;-99999;-99999;0.134311219 185.318207;75.983238;-136.001;-0.563854;-0.030071;0.825327;0.214920772 15.98576;9.932552;-171.955;-99999;-99999;-99999;0.005824956 72.039711;35.708965;-110.022;-0.691171;-0.443748;0.570413;0.662427494 175.930496;365.670807;-96.518;-99999;-99999;-99999;0.262190221 179.999939;7.999726;-162.535;-99999;-99999;-99999;0.476311182 288;140;-149.507;-99999;-99999;-99999;0.933951397 272;80;-156.537;0.10128;-0.062891;0.992868;0.197692556 212;118;-150.173;-99999;-99999;-99999;0.337319444 266.730927;36;-144;0.71209;-0.700185;0.051658;0.186044965 244;229.418396;-152;-99999;-99999;-99999;0.559217497 95.939873;45.715252;-103.947;-99999;-99999;-99999;0.011951834 61.989773;241.951553;-158.898;-99999;-99999;-99999;0.522582276 242;100.442375;-108;-0.668333;0.708402;0.226931;0.37129954 37.961353;2.877146;-170.014;-99999;-99999;-99999;0.098558872 115.951767;67.771561;-96.6243;-99999;-99999;-99999;0.319578225 63.941608;7.72344;-110.179;-99999;-99999;-99999;0.710675957 167.990494;53.954998;-158.95;-99999;-99999;-99999;0.61794112 31.971615;9.86556;-173.515;-99999;-99999;-99999;0.476396917 276;338;-151.75;0.5696;-0.100701;0.81573;0.145947251 202.623108;54;-102;-0.256964;0.12701;0.958039;0.120157576 37.974117;61.877411;-165.528;-99999;-99999;-99999;0.161338528 49.967701;125.846992;-136.892;-99999;-99999;-99999;0.048796255 202;10;-132.806;-99999;-99999;-99999;0.632376438 131.944885;89.738945;-155.077;-99999;-99999;-99999;0.237545698 176.286911;53.979862;-158.001;-99999;-99999;-99999;0.664452224 188.920273;45.998898;-128;-99999;-99999;-99999;0.927826816 123.876373;269.116486;-141.896;0.363406;0.931609;0.0064;0.863300963 40.622238;83.882454;-162.009;-99999;-99999;-99999;0.471041328 95.957321;151.797882;-84.4197;-99999;-99999;-99999;0.925468691 67.064842;385.998383;-136;-99999;-99999;-99999;0.113752313 179.993546;75.011208;-140.002;-99999;-99999;-99999;0.132931535 189.204865;39.999992;-156;-0.885526;-0.456852;-0.084437;0.530056403 203.972229;304.606781;-100.01;-99999;-99999;-99999;0.905587481 202;3.612018;-144;-99999;-99999;-99999;0.605641151 141.852692;109.780159;-158.016;-99999;-99999;-99999;0.878113919 77.928558;92.06205;-132.025;-99999;-99999;-99999;0.502049951 214;10.090138;-128;0.007931;-0.995634;0.093004;0.07533785 113.944695;3.738064;-160.939;-99999;-99999;-99999;0.08713641 92.084175;37.727318;-102.02;0.275113;0.184664;0.943511;0.59992431 83.943886;163.286118;-108.02;-99999;-99999;-99999;0.286382081 251.999847;385.999268;-152.786;-99999;-99999;-99999;0.417950565 89.963158;85.690796;-162.023;-99999;-99999;-99999;0.733942215 31.984581;88.140442;-162.005;-99999;-99999;-99999;0.462156217 127.950714;84.254028;-166.017;-99999;-99999;-99999;0.904532677 71.034744;31.642511;-136.027;-99999;-99999;-99999;0.945956539 143.93544;160.964111;-136.023;-99999;-99999;-99999;0.130319671 254;37.966255;-134;-99999;-99999;-99999;0.729347206 186.972534;99.975166;-124.002;-99999;-99999;-99999;0.499631522 59.940411;65.717766;-139.582;-99999;-99999;-99999;0.86936022 211.998199;201.991425;-150.553;-99999;-99999;-99999;0.371721238 220;76;-109.031;-99999;-99999;-99999;0.495940735 89.933372;123.772156;-110.023;-99999;-99999;-99999;0.217754502 111.942085;41.725708;-109.071;-99999;-99999;-99999;0.555443251 66.429787;59.68063;-134.024;-99999;-99999;-99999;0.879797733 27.995811;137.980164;-161.084;0.135653;-0.156908;0.978253;0.900617151 25.987635;77.862396;-162.004;-99999;-99999;-99999;0.94392194 117.919106;322.19873;-131.967;-99999;-99999;-99999;0.425396231 133.542221;115.697906;-144.022;-99999;-99999;-99999;0.225335334 77.932281;84.008514;-118.024;-99999;-99999;-99999;0.643532661 282;82.682404;-132;-99999;-99999;-99999;0.736687693 133.942505;89.993256;-120.02;-99999;-99999;-99999;0.613989728 225.999985;11.657539;-134;-99999;-99999;-99999;0.216326191 93.528481;-0.34849;-126.026;-99999;-99999;-99999;0.117312147 115.945938;49.743935;-106.016;-99999;-99999;-99999;0.252702194 106.030777;15.664103;-132.025;-99999;-99999;-99999;0.939382682 65.938446;11.708463;-112.531;-99999;-99999;-99999;0.197980288 170.425415;71.952957;-160.003;-99999;-99999;-99999;0.121195239 193.972672;154.993378;-99.9884;-99999;-99999;-99999;0.278085458 225.881866;179.018051;-124.532;-99999;-99999;-99999;0.569912943 131.95755;91.79895;-170.607;-99999;-99999;-99999;0.22547541 147.786011;67.824791;-124.013;-99999;-99999;-99999;0.624576316 131.956619;63.794525;-105.262;-99999;-99999;-99999;0.664945039 240;21.889368;-92;0.839701;-0.41197;0.353811;0.804554586 293.409973;360;-162;-99999;-99999;-99999;0.674194953 18;188;-144.808;-99999;-99999;-99999;0.101007499 104.393166;-0.28839;-164.021;-99999;-99999;-99999;0.858338314 117.930275;88.439827;-118.024;-99999;-99999;-99999;0.39855554 298;174;-109.921;-99999;-99999;-99999;0.709329961 125.876389;279.028107;-143.992;-99999;-99999;-99999;0.518382911 83.990845;375.956635;-137.381;-99999;-99999;-99999;0.078638062 268.010834;84;-154;-99999;-99999;-99999;0.131733337 139.9319;160.275742;-136.024;-99999;-99999;-99999;0.561873235 183.996658;67.984184;-131.159;-99999;-99999;-99999;0.131853159 266;77.583595;-130;-99999;-99999;-99999;0.240242165 71.938393;85.708206;-153.496;-99999;-99999;-99999;0.650602563 29.975872;31.885725;-167.884;-99999;-99999;-99999;0.333325273 17.880407;71.952003;-128.004;0.814689;-0.170239;0.554347;0.580755528 173.996811;27.984798;-155.247;0.353348;0.017493;0.935328;0.432875737 137.909485;309.533936;-111.118;-99999;-99999;-99999;0.902290706 212.88324;18;-114;-99999;-99999;-99999;0.212178889 262;60;-156.935;-99999;-99999;-99999;0.855947624 19.974197;0.011191;-158.009;-0.672658;0.737735;-0.057259;0.402206231 184.809906;59.992329;-152.001;-99999;-99999;-99999;0.127949163 204;38.792931;-128;-99999;-99999;-99999;0.393143777 254;184;-163.986;-99999;-99999;-99999;0.787548889 55.957211;73.797325;-163.231;-0.039675;0.12452;0.991424;0.470553681 282;306;-148.699;-99999;-99999;-99999;0.949867168 203.769882;171.515533;-121.492;-0.293667;0.938239;0.182938;0.893450251 37.983932;135.923889;-140.551;-0.942324;-0.20552;-0.264174;0.546477152 262;191.092117;-136;-0.198853;0.976666;-0.081123;0.978770798 25.293484;75.921852;-140.006;-99999;-99999;-99999;0.298486394 33.975567;53.88427;-164.358;-99999;-99999;-99999;0.939804983 108.535629;21.664249;-138.025;-99999;-99999;-99999;0.20601519 0;58;-93.7273;-99999;-99999;-99999;0.172742407 77.935143;25.692818;-167.101;-99999;-99999;-99999;0.885049378 65.016418;65.695297;-130.023;-99999;-99999;-99999;0.859667348 81.028984;33.732407;-102.02;-99999;-99999;-99999;0.163826619 224;54;-84.8298;0.056881;0.92085;0.385746;0.323929244 61.953972;122.630508;-120.016;-99999;-99999;-99999;0.071112825 47.97303;124.749962;-114.009;-99999;-99999;-99999;0.157257755 11.995534;61.978855;-165.399;-99999;-99999;-99999;0.649828447 252;60.725693;-124;-99999;-99999;-99999;0.214084783 274;128.765198;-140;-99999;-99999;-99999;0.733178014 68.881233;319.9599;-132.003;-99999;-99999;-99999;0.608098436 181.997772;59.989449;-157.16;-99999;-99999;-99999;0.36081035 214;16;-98.6992;-99999;-99999;-99999;0.196152507 292;330;-169.116;-99999;-99999;-99999;0.158633199 41.948723;12.218781;-148.018;-99999;-99999;-99999;0.702704326 107.926872;133.653656;-111.055;-99999;-99999;-99999;0.879898883 67.944534;57.737293;-108.078;-99999;-99999;-99999;0.570620133 222;48;-117.178;-99999;-99999;-99999;0.062921057 45.966118;67.839531;-163.405;-99999;-99999;-99999;0.302622845 260;102;-101.484;-99999;-99999;-99999;0.468396093 212;79.554947;-112;-0.054701;0.442168;0.895263;0.270686267 110.589096;31.703789;-160.022;-99999;-99999;-99999;0.757457279 40;370;-141.059;-0.155091;-0.260721;0.952875;0.841060287 93.932831;-0.318142;-164.188;-99999;-99999;-99999;0.698809007 179.995834;75.98027;-160.017;-99999;-99999;-99999;0.179316278 123.032356;300.980438;-127.885;-99999;-99999;-99999;0.469988836 37.960186;1.81142;-113.814;-99999;-99999;-99999;0.267727655 272;204;-155.096;-99999;-99999;-99999;0.733994875 61.968357;175.850128;-113.087;0.66053;-0.512056;-0.549089;0.842268237 251.610611;182;-164;0.466637;0.391262;0.793199;0.594289369 77.95816;214.910004;-138.015;-0.410097;-0.848396;0.33473;0.537421952 93.924019;125.640121;-139.893;-99999;-99999;-99999;0.262222163 87.949005;230.560165;-116.018;-99999;-99999;-99999;0.183549375 198;26;-127.715;-99999;-99999;-99999;0.326344828 21.987118;53.938984;-164.883;-99999;-99999;-99999;0.496145383 205.535812;32;-110;-99999;-99999;-99999;0.183652768 107.919853;128.96402;-126.028;-99999;-99999;-99999;0.442027695 145.689133;77.839584;-106.012;-99999;-99999;-99999;0.196299105 108.24295;343.795013;-98.0152;-99999;-99999;-99999;0.039897991 23.990248;73.953819;-167.505;-99999;-99999;-99999;0.410157199 85.943428;41.732048;-100.993;-99999;-99999;-99999;0.790156048 45.9711;89.863113;-161.891;-99999;-99999;-99999;0.665687546 65.702087;189.879303;-158.009;-99999;-99999;-99999;0.953953309 232;236;-136.321;-99999;-99999;-99999;0.993385717 157.985489;29.931313;-157.498;-99999;-99999;-99999;0.083023398 186.111206;51.994549;-140;-0.664766;-0.746264;-0.034291;0.212324942 125.952576;35.775398;-162.481;-99999;-99999;-99999;0.948244529 288;83.913727;-132;-99999;-99999;-99999;0.754848581 163.991928;17.961786;-155.375;-99999;-99999;-99999;0.107833145 290;56;-152.136;-99999;-99999;-99999;0.161542418 72.952324;77.699615;-116.022;-99999;-99999;-99999;0.35265001 214;7.254173;-140;-99999;-99999;-99999;0.354928059 77.938332;89.707924;-158.68;-99999;-99999;-99999;0.975038222 17.982763;-0.047579;-174.006;-0.066931;-0.34412;0.936537;0.504776903 197.999863;83.581543;-134;-99999;-99999;-99999;0.677094716 278;164.723541;-158;-99999;-99999;-99999;0.15867119 73.940132;124.218048;-122.021;-99999;-99999;-99999;0.751475606 165.965317;147.109589;-142.012;-99999;-99999;-99999;0.861788733 296;76;-152.303;-99999;-99999;-99999;0.768425399 13.99114;63.181629;-140.003;0.448294;-0.874711;0.184157;0.945967042 167.928696;319.662262;-105.689;-99999;-99999;-99999;0.701398772 103.941917;13.099443;-110.02;-99999;-99999;-99999;0.221009925 117.922195;163.631485;-140.433;-99999;-99999;-99999;0.312267078 141.964874;53.833622;-159.709;-99999;-99999;-99999;0.203242976 290;78;-152.974;-0.262642;-0.092443;0.960455;0.511189593 75.935249;87.693329;-152.945;-99999;-99999;-99999;0.903333454 71.94059;31.718603;-169.472;0.035457;-0.213136;0.976379;0.400741531 193.987869;185.94252;-144.444;0.080887;0.491405;0.867167;0.651496423 186.147766;85.982513;-120.001;0.869447;-0.477397;0.127098;0.872764887 152.983582;91.839104;-114.012;-99999;-99999;-99999;0.48984706 284;87.193542;-120;-99999;-99999;-99999;0.622771079 264;208;-156.294;-99999;-99999;-99999;0.434044298 298;34;-154.32;-99999;-99999;-99999;0.540849644 296;188.060043;-132;-99999;-99999;-99999;0.60950299 262;70.730988;-158;-0.221585;-0.081478;0.971731;0.568365265 50.163834;-0.22288;-108.017;-0.275652;0.568175;0.775366;0.815057357 71.955811;160.165421;-108.016;-0.44116;0.775788;0.451144;0.351442046 185.07164;89.981682;-112.001;-99999;-99999;-99999;0.820499865 95.946037;21.744455;-101.239;-99999;-99999;-99999;0.593997845 92.498322;3.652457;-124.026;-99999;-99999;-99999;0.135515587 71.950821;165.767075;-127.45;-99999;-99999;-99999;0.317107035 115.925903;90.546204;-124.026;-99999;-99999;-99999;0.074631858 47.949898;11.090892;-116.018;-99999;-99999;-99999;0.992459201 176.793991;111.927429;-140.005;-99999;-99999;-99999;0.831345702 103.010635;85.641945;-150.027;-99999;-99999;-99999;0.906448992 51.961208;73.816269;-163.074;-99999;-99999;-99999;0.61018328 33.957153;4.442745;-152.015;-99999;-99999;-99999;0.03093343 83.944611;35.737659;-100.503;-99999;-99999;-99999;0.795462964 75.982933;297.919159;-140.866;-0.407753;-0.199523;0.891026;0.550936386 227.146912;381.947937;-152.004;-99999;-99999;-99999;0.292485112 67.974236;217.87796;-147.878;-99999;-99999;-99999;0.543424906 83.924576;91.976616;-138.027;-99999;-99999;-99999;0.230885408 282;162;-156.295;-99999;-99999;-99999;0.825353027 201.791412;78;-112;-0.204578;0.888015;0.411799;0.117315602 207.077377;28;-118;-99999;-99999;-99999;0.248186721 17.999071;127.995605;-163.506;-0.060814;-0.205638;0.976737;0.961834424 67.999451;381.997406;-138.583;-99999;-99999;-99999;0.725375908 280;92.991028;-106;0.353901;-0.573675;0.738682;0.360327926 16.301811;95.97419;-142.002;-99999;-99999;-99999;0.009090739 230;6;-151.243;-99999;-99999;-99999;0.667384703 236;1.196507;-156;0.292351;-0.230702;0.928067;0.542072993 43.959511;24.08671;-168.014;-99999;-99999;-99999;0.004785593 147.964478;70.394768;-118.012;-99999;-99999;-99999;0.011504423 292;372;-157.113;-99999;-99999;-99999;0.653602818 113.77903;35.726067;-112.02;-99999;-99999;-99999;0.746851177 208.514847;16;-120;-99999;-99999;-99999;0.961831659 111.927261;155.655472;-108.962;-99999;-99999;-99999;0.160103145 240;26;-109.049;0.481413;-0.07608;-0.873186;0.717157276 71.942436;65.727371;-107.93;-99999;-99999;-99999;0.057901742 153.921356;343.627502;-105.119;-99999;-99999;-99999;0.133294601 30.717304;85.917854;-154.006;-99999;-99999;-99999;0.228619477 258;80.243988;-112;0.078985;-0.98454;0.156342;0.669262609 79.948334;129.75528;-101.313;-99999;-99999;-99999;0.65346134 250;26;-158.32;-99999;-99999;-99999;0.841636381 35.954025;7.782246;-139.534;-0.685984;0.701284;-0.193979;0.794633741 276;392;-155.657;-99999;-99999;-99999;0.007721136 43.998856;245.994583;-155.465;0.044674;-0.100473;0.993936;0.189692607 244;84;-106.338;-99999;-99999;-99999;0.706539822 212.88562;375.877411;-146.009;0.725427;-0.5947;0.346537;0.219196152 39.98457;123.926933;-160.372;-99999;-99999;-99999;0.290147001 217.262253;385.873199;-140.009;-99999;-99999;-99999;0.690827885 222;54;-131.272;-99999;-99999;-99999;0.801458336 210;17.642784;-100;-0.545857;-0.775097;0.318222;0.710119929 108.882393;19.710697;-162.021;-99999;-99999;-99999;0.130544883 236;95.056343;-108;-99999;-99999;-99999;0.334923077 3.998574;50.690777;-106.001;-99999;-99999;-99999;0.030203492 29.959341;-0.192574;-140.447;-99999;-99999;-99999;0.942241998 33.803314;157.976532;-160.002;-99999;-99999;-99999;0.210922871 294;154;-151.218;-99999;-99999;-99999;0.143153261 236.777206;36;-124;-99999;-99999;-99999;0.583006848 189.99733;99.987343;-151.639;-99999;-99999;-99999;0.688209949 37.996723;173.984482;-89.9288;-0.567851;0.040662;0.822126;0.691576104 197.999985;77.999939;-121.771;-0.600663;0.629537;0.492836;0.216755157 105.181221;171.715881;-160.021;-99999;-99999;-99999;0.690214337 184;1.043151;-160;-99999;-99999;-99999;0.421700963 125.935165;95.692924;-149.473;-99999;-99999;-99999;0.667194371 231.988525;352.011414;-108.004;-99999;-99999;-99999;0.548095596 65.992752;315.965668;-130.122;0.401602;0.122827;0.90754;0.960881801 194;46.960938;-110;-99999;-99999;-99999;0.479670284 93.972374;351.869171;-108.851;-99999;-99999;-99999;0.957835833 109.930328;41.67001;-151.013;-99999;-99999;-99999;0.866243854 266;128;-149.486;-99999;-99999;-99999;0.186031349 25.986401;63.935589;-166.572;-99999;-99999;-99999;0.176336833 186.781311;55.99715;-114;-99999;-99999;-99999;0.803512395 197.739914;166.690186;-135.852;-99999;-99999;-99999;0.704581181 99.940132;41.716412;-105.059;-99999;-99999;-99999;0.385708283 298;187.473587;-144;-99999;-99999;-99999;0.741476583 208;42;-110.953;-99999;-99999;-99999;0.199247203 76.346535;81.695938;-114.023;-99999;-99999;-99999;0.190798038 288;83.170044;-128;-99999;-99999;-99999;0.308303538 236.695419;20;-160;-99999;-99999;-99999;0.78745124 123.938255;49.890804;-132.022;-99999;-99999;-99999;0.600417122 87.928406;-0.339079;-120.005;-99999;-99999;-99999;0.477421783 212;9.842334;-134;-99999;-99999;-99999;0.460557896 211.996094;223.981522;-148.28;-99999;-99999;-99999;0.801177093 113.932335;46.065464;-150.024;-99999;-99999;-99999;0.040392632 137.943069;111.709824;-148.02;-99999;-99999;-99999;0.736211986 99.929962;5.851843;-156.025;-99999;-99999;-99999;0.975533148 234.000015;57.256371;-106;-99999;-99999;-99999;0.494786371 55.600147;65.761917;-154.018;-99999;-99999;-99999;0.999951051 97.251953;205.709518;-149.791;-99999;-99999;-99999;0.836353341 187.984528;175.926712;-145.913;-99999;-99999;-99999;0.615756599 143.011276;147.746841;-104.019;-99999;-99999;-99999;0.930696196 277.065704;332;-158;-99999;-99999;-99999;0.960398751 101.920654;84.809166;-142.028;-99999;-99999;-99999;0.610528866 15.99298;68.454582;-160.002;-99999;-99999;-99999;0.433389478 202;19.282389;-124;-0.715389;-0.323699;0.619224;0.576791509 95.944954;29.73933;-101.195;-99999;-99999;-99999;0.726537295 254;232.748901;-152;-99999;-99999;-99999;0.557757434 106.702538;85.623642;-136.028;-99999;-99999;-99999;0.935408138 106.243233;46.73415;-162.728;-99999;-99999;-99999;0.476130983 250;64.402023;-116;-99999;-99999;-99999;0.498511656 193.999969;73.957733;-108;-99999;-99999;-99999;0.706023283 174.977066;77.953255;-120.003;-99999;-99999;-99999;0.058952686 61.943371;39.731781;-163.579;0.043326;-0.362792;0.930862;0.861556729 19.998785;135.994247;-160.72;-99999;-99999;-99999;0.069115874 7.996538;43.983604;-171.435;-99999;-99999;-99999;0.712538804 184.350372;87.983711;-108.001;-99999;-99999;-99999;0.425158356 -0.001633;55.992268;-131.147;-99999;-99999;-99999;0.631230424 115.342682;169.647079;-146.026;-99999;-99999;-99999;0.119141528 21.987738;81.941925;-135.1;-99999;-99999;-99999;0.047907597 141.959335;67.057243;-116.014;-99999;-99999;-99999;0.509072325 153.962448;131.822113;-102.671;-99999;-99999;-99999;0.897440182 270;90;-105.26;-99999;-99999;-99999;0.732647725 117.94133;91.722099;-164.139;-99999;-99999;-99999;0.843415211 24.909737;73.933846;-156.005;-99999;-99999;-99999;0.265384652 107.542938;35.653557;-144.026;-99999;-99999;-99999;0.928120047 116.003418;253.164841;-100.542;-99999;-99999;-99999;0.310759397 171.929016;363.663788;-95.8866;-99999;-99999;-99999;0.004307296 179.989334;117.246552;-108.004;-99999;-99999;-99999;0.128710921 79.186493;25.695122;-110.023;-99999;-99999;-99999;0.130394394 112.837326;361.772614;-108.017;-99999;-99999;-99999;0.804696617 65.932686;31.68119;-155.088;-99999;-99999;-99999;0.88002028 203.970093;319.858307;-95.1506;0.050613;0.408151;0.91151;0.733933318 12.957767;79.980042;-116.001;-99999;-99999;-99999;0.339387199 272;81.823082;-120;-99999;-99999;-99999;0.371885086 242;32;-129.724;-99999;-99999;-99999;0.482861876 230;58;-94.3497;0.229125;0.729088;0.644928;0.007259461 191.209702;99.997093;-96.0002;-99999;-99999;-99999;0.262659545 39.962452;9.041894;-172.013;-0.476296;0.163351;0.863979;0.395882184 284;4;-154.733;-99999;-99999;-99999;0.45182857 268.738434;174;-158;-99999;-99999;-99999;0.713640508 214.944534;54;-118;-99999;-99999;-99999;0.530074219 167.996597;17.983885;-168.025;-99999;-99999;-99999;0.764237311 61.973648;167.875198;-159.724;-99999;-99999;-99999;0.995443357 139.95462;62.045547;-126.016;-99999;-99999;-99999;0.290005297 -0.00297;19.985933;-168.334;-99999;-99999;-99999;0.071952108 296;38;-153.101;-99999;-99999;-99999;0.22450795 105.940773;41.71949;-106.768;-99999;-99999;-99999;0.958214164 266.369019;184;-154;0.561993;0.611577;-0.5569;0.229227942 260.343597;56;-152;-99999;-99999;-99999;0.26203593 203.999588;123.172607;-122;-99999;-99999;-99999;0.195863152 198;6.822674;-148;-99999;-99999;-99999;0.333891485 153.962723;139.82341;-99.2254;-99999;-99999;-99999;0.062356286 102.260475;249.462433;-102.801;-99999;-99999;-99999;0.52428121 254;80.091743;-112;-99999;-99999;-99999;0.607721745 112.350685;19.691776;-150.023;-99999;-99999;-99999;0.108711178 147.978149;25.896511;-162.539;-99999;-99999;-99999;0.666548541 69.935181;21.69298;-164.463;-99999;-99999;-99999;0.395872164 87.933601;97.851616;-158.023;-99999;-99999;-99999;0.465554045 185.997665;70.429619;-146.001;-99999;-99999;-99999;0.344187371 57.973682;170.662247;-108.009;-99999;-99999;-99999;0.997538735 286;389.436981;-156;-99999;-99999;-99999;0.383170791 156.732391;79.895821;-104.008;-99999;-99999;-99999;0.909775034 31.314714;175.987427;-154.001;-99999;-99999;-99999;0.546464883 194.651703;28;-138;-99999;-99999;-99999;0.275603152 258;132;-150.484;-99999;-99999;-99999;0.566725615 228;58.780319;-100;-99999;-99999;-99999;0.06003591 169.995453;19.978455;-154.554;-99999;-99999;-99999;0.035323217 212.504318;62.000004;-104;0.607137;0.088192;0.789688;0.656158727 250;68;-128.452;-99999;-99999;-99999;0.316066352 59.947838;0.682305;-106.018;-99999;-99999;-99999;0.728921983 39.682945;5.787788;-162.016;-99999;-99999;-99999;0.894470161 171.993759;45.970421;-155.68;-99999;-99999;-99999;0.768686077 93.920219;86.718391;-130.028;0.525779;0.835364;-0.160386;0.511686833 109.823143;35.72958;-108.02;-99999;-99999;-99999;0.03707983 62.226501;177.848236;-142.011;-99999;-99999;-99999;0.870731674 101.944557;14.028777;-106.019;0.235277;-0.792091;0.563238;0.580970274 230;104.873329;-138;-99999;-99999;-99999;0.902076888 154.246292;234.172104;-115.03;-99999;-99999;-99999;0.313890446 230.119415;14;-124;0.915044;-0.214318;-0.341706;0.301563257 39.99844;223.992599;-154.996;-99999;-99999;-99999;0.211309983 117.949837;25.762411;-167.041;-99999;-99999;-99999;0.303754846 161.985992;49.933689;-158.507;-99999;-99999;-99999;0.096480161 109.92202;89.083733;-128.027;-99999;-99999;-99999;0.142111093 190.960464;73.996864;-152;-99999;-99999;-99999;0.95097661 173.971176;154.651657;-130.01;-99999;-99999;-99999;0.751903975 262.047089;179.79332;-103.448;-99999;-99999;-99999;0.021848655 127.932388;124.608025;-148.024;-99999;-99999;-99999;0.293705353 244;130;-148.44;-99999;-99999;-99999;0.954592877 63.970436;185.85997;-148.406;0.743202;-0.099865;-0.661572;0.631361602 231.999039;272.930878;-136;-0.661469;0.748941;-0.039324;0.707626453 284;72;-154.67;-99999;-99999;-99999;0.479649087 252;220;-155.573;-99999;-99999;-99999;0.254620374 163.994568;19.974247;-169.311;-99999;-99999;-99999;0.758588888 280;10;-153.494;0.154494;0.19092;0.969372;0.388127185 190;20.29196;-150;-99999;-99999;-99999;0.698260526 62.682991;47.702114;-152.022;-99999;-99999;-99999;0.896879456 42.794552;149.916901;-142.006;-99999;-99999;-99999;0.081391208 143.977005;7.891059;-161.574;-99999;-99999;-99999;0.047320268 202;52;-101.937;-99999;-99999;-99999;0.64844777 264;52;-151.154;-99999;-99999;-99999;0.042086819 70.766769;169.786667;-140.016;-99999;-99999;-99999;0.553941148 81.927742;87.657753;-122.322;-99999;-99999;-99999;0.386633611 69.927948;30.577438;-126.025;-99999;-99999;-99999;0.428889167 221.999954;203.999817;-146.756;-99999;-99999;-99999;0.612480482 253.193497;16;-158;-99999;-99999;-99999;0.797045245 10.303189;63.988026;-104.001;-99999;-99999;-99999;0.634080285 262;36;-159.324;0.176296;0.217582;0.959989;0.462544179 189.997559;97.988464;-152.36;-99999;-99999;-99999;0.260659037 185.991623;120.552689;-144.003;-99999;-99999;-99999;0.736754436 282;74;-155.264;-99999;-99999;-99999;0.526585956 99.930855;15.903308;-120.024;-99999;-99999;-99999;0.05558137 127.926521;131.651978;-126.696;-99999;-99999;-99999;0.513527538 286;116.219902;-104;-99999;-99999;-99999;0.352354199 85.933815;103.686539;-155.89;-99999;-99999;-99999;0.851951498 206;48.825321;-114;0.399694;-0.899593;0.176003;0.365754869 244;24;-160.708;-0.391362;-0.230521;0.890896;0.756814151 177.997955;35.990292;-156.434;-99999;-99999;-99999;0.62499848 240;34;-91.0511;-99999;-99999;-99999;0.38821119 145.954849;97.091759;-148.016;-99999;-99999;-99999;0.461353392 14.57995;214;-120;-99999;-99999;-99999;0.680354687 204;44;-107;-99999;-99999;-99999;0.945668517 26.908413;-0.149674;-120.011;-99999;-99999;-99999;0.98840448 85.986496;359.936035;-138.624;-99999;-99999;-99999;0.296114871 284;56;-152.429;-99999;-99999;-99999;0.056500629 99.9366;75.699692;-104.554;-99999;-99999;-99999;0.696321981 222;56.834259;-102;-99999;-99999;-99999;0.773273716 -0.001329;35.993702;-170.19;-99999;-99999;-99999;0.725960277 107.677826;45.732414;-170.02;-99999;-99999;-99999;0.427498718 203.142624;173.86264;-112.307;-0.445885;0.895076;-0.005096;0.908795353 210;85.105087;-154;-99999;-99999;-99999;0.400447688 199.998978;117.995087;-140.659;-99999;-99999;-99999;0.158454383 85.935074;65.692482;-108.109;-99999;-99999;-99999;0.893949695 230;56.705395;-106;-99999;-99999;-99999;0.582412672 205.062637;369.825531;-140.013;-99999;-99999;-99999;0.742007014 238;32;-82.3312;0.911481;-0.400434;0.094103;0.909660852 87.94371;129.041702;-100.02;-99999;-99999;-99999;0.539324881 147.980957;11.909842;-163.161;-99999;-99999;-99999;0.063363172 73.94265;62.550873;-106.02;-99999;-99999;-99999;0.196770382 129.959534;17.808359;-161.617;-99999;-99999;-99999;0.532532185 165.924011;328.754272;-118.027;-99999;-99999;-99999;0.897956051 85.932686;75.681175;-110.783;-99999;-99999;-99999;0.640929045 108.581795;15.670002;-142.024;-99999;-99999;-99999;0.385234691 108.778938;35.659615;-130.025;-99999;-99999;-99999;0.963061574 127.943321;53.731564;-147.402;-99999;-99999;-99999;0.126785774 253.514603;78;-122;0.215929;-0.850059;0.48039;0.053350025 59.936131;28.053205;-154.022;-99999;-99999;-99999;0.452169244 248;12;-159.371;-99999;-99999;-99999;0.642590147 64.623917;257.91803;-128.006;-99999;-99999;-99999;0.657734514 126.534439;63.784847;-102.016;0.440497;-0.28317;0.851926;0.557882834 159.985428;39.930981;-156.878;-99999;-99999;-99999;0.435052865 268;22;-156.938;-0.161006;0.167272;0.972675;0.3857424 43.954586;6.266634;-114.016;-99999;-99999;-99999;0.039803377 9.991982;21.962023;-170.006;-99999;-99999;-99999;0.722912487 88.956947;89.631363;-140.027;-99999;-99999;-99999;0.943938412 183.989777;117.483101;-136.004;0.415344;-0.903193;-0.108309;0.779046697 284;342;-161.802;-99999;-99999;-99999;0.52614313 85.990051;379.952881;-137.428;0.236899;-0.051759;0.970155;0.112773548 25.999702;187.998596;-154.537;-99999;-99999;-99999;0.155246338 117.948395;15.755591;-163.38;-99999;-99999;-99999;0.547844206 208;8.825441;-134;-99999;-99999;-99999;0.601850169 157.977768;65.311333;-154.008;-99999;-99999;-99999;0.819748715 39.950089;11.104549;-138.018;-99999;-99999;-99999;0.334131689 208;49.884552;-96;-99999;-99999;-99999;0.536643316 204.834885;6;-136;-99999;-99999;-99999;0.548558567 47.993713;181.970245;-85.0677;-0.241768;-0.177066;0.954042;0.751534062 95.922012;128.015976;-132.027;-99999;-99999;-99999;0.364569208 225.999985;105.481354;-132;-99999;-99999;-99999;0.910032631 137.961136;100.140732;-170.014;-99999;-99999;-99999;0.406606854 255.623383;138.428314;-116.705;-99999;-99999;-99999;0.391841842 282.863953;328;-166;-99999;-99999;-99999;0.608859451 50.808392;213.947083;-144.004;-99999;-99999;-99999;0.050048715 218;46;-115.654;-0.47936;0.480141;-0.734629;0.176658699 183.99295;107.966606;-150.585;-99999;-99999;-99999;0.425701266 250.777496;108;-116;-99999;-99999;-99999;0.668096476 198;34;-134.22;-0.912677;0.354895;0.202658;0.407032063 270;62.000004;-156.43;-0.231404;0.039031;0.972075;0.793685659 115.947411;19.7509;-165.305;-99999;-99999;-99999;0.612582414 117.928688;159.662247;-150.806;-99999;-99999;-99999;0.234421045 109.078918;29.661144;-142.025;-99999;-99999;-99999;0.116464731 131.953995;51.782093;-159.289;-99999;-99999;-99999;0.642830991 234.000015;16.851265;-92;0.458385;-0.886993;-0.055907;0.399423064 87.140747;167.695557;-120.023;-99999;-99999;-99999;0.661904784 97.931549;83.675804;-109.051;-99999;-99999;-99999;0.119142677 165.996063;11.981285;-167.402;-99999;-99999;-99999;0.239189502 224;88;-111.393;-99999;-99999;-99999;0.75855506 167.990784;49.956379;-157.738;-99999;-99999;-99999;0.735411599 244;62.282654;-108;-0.051557;0.359247;0.931817;0.916737154 181.982025;161.133392;-148.006;-99999;-99999;-99999;0.937737164 55.947411;65.750923;-149.754;-99999;-99999;-99999;0.833022482 69.827042;35.661491;-126.025;-99999;-99999;-99999;0.357937843 2;68;-88.6765;0.825602;0.101013;0.555137;0.763764121 242;100.975067;-112;-99999;-99999;-99999;0.269951289 121.948257;37.75494;-162.413;-99999;-99999;-99999;0.699377149 103.959457;337.343109;-100.014;-0.239767;-0.645307;0.725321;0.607785354 201.973068;365.324738;-156.009;-0.136445;-0.612482;0.778619;0.955423917 298;90;-148.769;-99999;-99999;-99999;0.041731341 6.916584;65.99617;-100;-99999;-99999;-99999;0.312568355 88.596695;307.871429;-142.01;0.950392;0.265136;0.162659;0.495913062 254;73.877563;-152;-99999;-99999;-99999;0.347521134 139.964951;43.833984;-160.362;-99999;-99999;-99999;0.064650091 131.892517;224.38298;-139.957;-99999;-99999;-99999;0.852320555 187.930481;164.83403;-120.753;-99999;-99999;-99999;0.542657884 241.788345;70;-156;-99999;-99999;-99999;0.556471014 154.648041;87.882004;-102.009;-99999;-99999;-99999;0.951095864 260.392303;54;-130;0.819158;-0.089493;0.566543;0.657153136 17.992636;91.633499;-138.003;-99999;-99999;-99999;0.970765013 190;0;-155.392;-99999;-99999;-99999;0.081983116 27.973831;-0.123946;-174.833;-99999;-99999;-99999;0.517692752 194.180725;46;-136;-99999;-99999;-99999;0.739856038 216;42.054924;-120;-99999;-99999;-99999;0.035951775 102.270073;225.633347;-118.015;-99999;-99999;-99999;0.296517537 62.922688;41.694759;-152.023;-99999;-99999;-99999;0.048746485 264.714844;152;-132;-99999;-99999;-99999;0.093864876 159.992661;9.965246;-167.141;-99999;-99999;-99999;0.231691196 43.990772;161.245499;-94.0032;-99999;-99999;-99999;0.385798747 83.929947;85.413582;-116.025;-99999;-99999;-99999;0.81370146 101.921509;87.314529;-124.028;-99999;-99999;-99999;0.459175839 73.933815;11.686531;-113.657;-99999;-99999;-99999;0.604989908 167.888107;23.98107;-168.001;-99999;-99999;-99999;0.663818123 3.248808;66;-92;-99999;-99999;-99999;0.06093891 184.237839;99.973351;-112.002;-99999;-99999;-99999;0.02913793 218;44.49004;-78;-99999;-99999;-99999;0.993329551 109.931114;103.673721;-156.977;-0.167047;-0.064507;0.983836;0.962644767 228;12.961705;-136;-99999;-99999;-99999;0.711549122 0;72.764069;-88;-99999;-99999;-99999;0.933844052 73.933723;27.532991;-114.023;-99999;-99999;-99999;0.4245343 123.934723;148.141983;-156.023;0.014394;0.407158;0.913244;0.817715725 34;390;-136.779;-0.07833;-0.000118;0.996927;0.506020429 246;86;-104.361;-99999;-99999;-99999;0.432548457 274;84.76722;-112;-99999;-99999;-99999;0.876770145 67.947334;81.750549;-162.41;-99999;-99999;-99999;0.317088011 75.249756;81.687431;-118.023;-99999;-99999;-99999;0.128325904 264.887146;120;-100;-99999;-99999;-99999;0.392860614 121.92485;134.602386;-142.026;-99999;-99999;-99999;0.494624411 79.943161;49.730789;-102.309;-99999;-99999;-99999;0.122538065 276;136;-149.47;-99999;-99999;-99999;0.900160837 242;20;-97.0037;-99999;-99999;-99999;0.139358009 196;46.657154;-142;-99999;-99999;-99999;0.684654619 244;76.531837;-118;0.233963;-0.963805;0.12783;0.916778864 216;46.596638;-128;-0.192239;0.715535;0.671605;0.283872088 10.151611;67.988205;-106.001;-99999;-99999;-99999;0.931294965 152.762634;73.850471;-120.011;0.780919;-0.552855;0.290719;0.063034657 169.98494;75.928642;-133.295;-99999;-99999;-99999;0.037027146 284;92;-109.589;-99999;-99999;-99999;0.726412771 224;66;-115.388;-99999;-99999;-99999;0.70503719 73.155251;73.710373;-112.021;-99999;-99999;-99999;0.619174683 79.94693;173.748642;-143.681;-99999;-99999;-99999;0.559396005 169.936661;296.28183;-102.022;-99999;-99999;-99999;0.659614544 276;188;-147.195;-0.334266;0.437429;-0.834819;0.769372639 155.715302;157.766541;-142.017;-99999;-99999;-99999;0.783865697 154.90152;77.854546;-122.011;-99999;-99999;-99999;0.755653191 298;58;-152.214;-99999;-99999;-99999;0.683836181 61.929554;22.633652;-140.025;-99999;-99999;-99999;0.146959601 55.975525;159.117111;-156.009;-99999;-99999;-99999;0.003373807 191.956985;294.449249;-118.015;-99999;-99999;-99999;0.844364642 105.944191;31.735678;-105.193;-99999;-99999;-99999;0.993452577 201.957672;339.282837;-114.015;-0.252024;0.967685;0.008324;0.642068503 57.940807;15.719644;-116.826;-99999;-99999;-99999;0.628944043 199.065018;46;-118;0.14372;-0.986155;0.082724;0.684238299 97.931908;111.67749;-157.698;-99999;-99999;-99999;0.843920237 244;136;-146.564;-99999;-99999;-99999;0.873490588 67.937668;9.704791;-112.129;-99999;-99999;-99999;0.356765065 193.999619;75.998161;-123.367;-99999;-99999;-99999;0.843194095 117.944473;81.737;-102;-99999;-99999;-99999;0.982792988 191.953384;338.631226;-138.016;-99999;-99999;-99999;0.360766449 294;106.000008;-112.233;0.779118;-0.302584;0.549015;0.28036338 129.959;23.805824;-162.611;-99999;-99999;-99999;0.691076417 51.976665;157.006683;-150.008;-0.573538;0.81579;-0.074445;0.422532945 201.979279;291.901855;-149.705;-99999;-99999;-99999;0.887131644 5.998244;53.991684;-171.082;-99999;-99999;-99999;0.994153887 145.971115;43.863178;-159.33;-99999;-99999;-99999;0.734135898 163.986191;61.934563;-159.754;-99999;-99999;-99999;0.028220639 216;162;-100.708;-99999;-99999;-99999;0.003047673 234.157501;16;-146;-99999;-99999;-99999;0.517858885 165.965759;151.837753;-111.111;-99999;-99999;-99999;0.93637033 195.733734;18;-136;-99999;-99999;-99999;0.492671357 66.751419;43.670521;-146.024;-99999;-99999;-99999;0.350929022 57.678474;17.687519;-130.023;-99999;-99999;-99999;0.14136907 138.593445;226.407074;-115.47;-99999;-99999;-99999;0.150916745 264;44;-158.735;0.185002;-0.352179;0.917466;0.441126865 67.946556;101.746887;-154.453;-99999;-99999;-99999;0.976484982 177.998566;27.993195;-157.264;-99999;-99999;-99999;0.71436405 266;54;-133.339;-99999;-99999;-99999;0.185142923 60.967422;19.670351;-134.024;-99999;-99999;-99999;0.437075414 128.311417;55.741112;-120.019;-99999;-99999;-99999;0.992156282 288;164.948898;-126;-99999;-99999;-99999;0.621270357 222;178.468811;-144;-99999;-99999;-99999;0.29542659 244;92;-102.075;-99999;-99999;-99999;0.102351082 153.920975;386.328125;-116.028;-99999;-99999;-99999;0.487757569 208.783173;44;-82;-99999;-99999;-99999;0.812414407 221.99791;178.962143;-133.982;-99999;-99999;-99999;0.463027734 83.480095;27.731829;-102.02;-99999;-99999;-99999;0.168828104 149.060303;75.848083;-110.011;-99999;-99999;-99999;0.100029319 65.353477;67.713234;-120.021;-99999;-99999;-99999;0.947543698 231.990295;349.954041;-96.801;-99999;-99999;-99999;0.09907565 292;44;-152.692;-0.235031;-0.040674;0.971136;0.833102545 109.920326;130.355667;-138.028;0.410959;-0.839786;-0.354785;0.595680269 208;78;-111.326;-99999;-99999;-99999;0.292883768 177.991638;77.172073;-134.003;-99999;-99999;-99999;0.228061164 181.971359;217.864304;-148.593;-99999;-99999;-99999;0.293128441 216;9.712023;-136;-0.081452;-0.970578;0.22659;0.705309252 214.004654;133.233704;-103.994;-99999;-99999;-99999;0.338327073 97.920731;85.642349;-126.028;0.047313;0.982411;-0.180641;0.755583503 23.999542;161.997833;-163.834;-99999;-99999;-99999;0.952301476 124.05899;89.694824;-116.023;-99999;-99999;-99999;0.118779837 92.870522;9.644352;-126.026;-99999;-99999;-99999;0.530082877 27.912804;83.922272;-148.006;-99999;-99999;-99999;0.119081476 292;172;-158.603;-99999;-99999;-99999;0.84227814 73.938492;123.708679;-129.39;-99999;-99999;-99999;0.542867362 111.931335;171.674774;-152.878;0.538528;0.35622;-0.763607;0.644792829 195.999649;83.141052;-140;-99999;-99999;-99999;0.712366014 175.99736;32.693314;-156.001;-99999;-99999;-99999;0.775529512 155.302795;23.930897;-162.005;-99999;-99999;-99999;0.550503601 213.197586;173.133209;-109.498;-99999;-99999;-99999;0.191020869 43.995136;179.976959;-86.8391;-0.434483;-0.104077;0.894647;0.508608008 54;368;-140.336;-99999;-99999;-99999;0.397560132 240;137.906601;-140;-99999;-99999;-99999;0.990152521 39.957493;6.96831;-116.015;-99999;-99999;-99999;0.704826563 92.582802;5.651433;-124.026;-99999;-99999;-99999;0.322086016 243.184692;44;-120;0.573191;-0.819339;-0.01166;0.542767158 173.358551;79.947319;-150.004;-99999;-99999;-99999;0.516959737 212.172653;108;-156;-99999;-99999;-99999;0.818271922 243.633652;179.076172;-110.729;-99999;-99999;-99999;0.743382818 107.683357;15.665924;-138.025;-99999;-99999;-99999;0.015906269 157.990417;19.954655;-168.753;-99999;-99999;-99999;0.841290666 113.965302;375.835663;-144.018;-99999;-99999;-99999;0.839419491 35.996159;163.981796;-92.9371;-0.725467;-0.288491;0.624876;0.465505581 165.993805;26.963326;-164.002;-99999;-99999;-99999;0.183519625 274.349609;168;-160;0.008818;0.541261;0.840808;0.31357211 147.940765;158.763855;-118.021;-99999;-99999;-99999;0.15227042 258;300;-147.958;-99999;-99999;-99999;0.88061965 163.990128;29.953249;-155.208;-0.213284;0.142323;0.966568;0.823415356 101.103966;5.652973;-146.026;-99999;-99999;-99999;0.744241439 40.048084;133.914307;-120.006;-99999;-99999;-99999;0.15147016 252;90;-102.598;0.112416;-0.104684;0.988132;0.945624823 228;54.462444;-88;-99999;-99999;-99999;0.912074414 27.997751;181.989349;-126.19;-99999;-99999;-99999;0.683669477 103.951332;275.769501;-147.399;-99999;-99999;-99999;0.251619232 262;193.145584;-112;-0.185168;0.662979;0.725377;0.907976557 162.132492;79.891083;-122.008;-99999;-99999;-99999;0.26747207 232;26.859552;-80;0.247031;-0.564158;0.787846;0.841684974 258;8;-155.6;-99999;-99999;-99999;0.812285648 169.990891;80.603462;-100.003;-99999;-99999;-99999;0.096046643 188.728592;89.984268;-134.001;0.956692;-0.116623;0.266721;0.341691352 25.999992;203.999969;-100.603;-99999;-99999;-99999;0.847593637 203.109695;86;-124;-99999;-99999;-99999;0.540039075 254;60;-108.743;-99999;-99999;-99999;0.011009208 73.933052;23.68292;-114.684;-99999;-99999;-99999;0.36811653 268;14;-155.366;-99999;-99999;-99999;0.096580827 5.996099;58.662838;-128.001;-99999;-99999;-99999;0.806354633 107.034508;41.651203;-146.026;-99999;-99999;-99999;0.684572918 3.994656;7.97469;-173.965;-99999;-99999;-99999;0.278133303 282;217.999985;-146.839;-99999;-99999;-99999;0.086996951 77.956657;171.794693;-156.984;-99999;-99999;-99999;0.441683974 232;54;-125.732;-99999;-99999;-99999;0.588964147 123.953842;17.781368;-162.924;-99999;-99999;-99999;0.286705979 268.419983;156;-136;-99999;-99999;-99999;0.172905554 208;11.550066;-126;-99999;-99999;-99999;0.129089453 63.999462;361.997437;-141.05;-99999;-99999;-99999;0.095191026 270;127.267204;-148;-99999;-99999;-99999;0.569720289 204;26.60508;-96;-99999;-99999;-99999;0.443450997 248;90;-102.203;0.047636;-0.191024;0.980429;0.806147094 99.767395;127.628716;-124.028;-99999;-99999;-99999;0.210541844 272;79.362686;-134;-99999;-99999;-99999;0.569676908 75.107872;41.731148;-104.02;-99999;-99999;-99999;0.258937072 16;232;-156.247;-99999;-99999;-99999;0.400949743 288;152;-150.541;-99999;-99999;-99999;0.093627804 10.812844;75.987091;-110.001;-99999;-99999;-99999;0.989745133 145.888702;331.041229;-119.983;-99999;-99999;-99999;0.53719541 183.957001;292.093414;-144.015;0.110883;-0.990178;0.085165;0.163585201 -0.000057;91.999725;-128.994;-99999;-99999;-99999;0.599772984 194.314728;12;-150;-99999;-99999;-99999;0.492829926 198;8;-137.725;-0.785356;-0.352994;0.508538;0.523804312 286;86.508751;-138;0.154794;-0.959119;-0.236915;0.904390976 53.973011;158.794754;-144.009;-99999;-99999;-99999;0.627407542 13.79446;75.973114;-120.002;-99999;-99999;-99999;0.480160705 27.963322;0.573722;-152.013;-99999;-99999;-99999;0.734976666 193.932907;164.980392;-135.969;-0.407689;0.899963;0.154457;0.055429887 212;3.193315;-144;-99999;-99999;-99999;0.997992998 212.461899;22;-90;-0.619313;-0.548277;0.561999;0.380222629 292;5.444559;-156;-99999;-99999;-99999;0.516903258 32;238.000015;-156.769;-99999;-99999;-99999;0.024697333 171.996094;23.981504;-154.404;0.289977;-0.00678;0.957009;0.684718768 284;323.348206;-154;-99999;-99999;-99999;0.739604039 240;70.462402;-128;-99999;-99999;-99999;0.889892263 125.955879;23.791012;-164.351;-99999;-99999;-99999;0.979071861 183.845718;55.989662;-142.001;-99999;-99999;-99999;0.537706708 65.997971;339.990387;-146.791;-99999;-99999;-99999;0.441615204 18;190;-163.858;-99999;-99999;-99999;0.275444839 236;49.848183;-84;0.591585;0.798369;-0.112399;0.893241775 117.951561;61.770596;-99.0805;-99999;-99999;-99999;0.107678451 153.945755;160.568298;-134.019;-99999;-99999;-99999;0.514570984 121.939766;50.280022;-152.021;0.609945;-0.778352;0.148778;0.838810626 107.938911;169.982529;-160.021;-99999;-99999;-99999;0.856005465 114.743912;45.727097;-164.02;-99999;-99999;-99999;0.969215903 266;4;-154.465;-99999;-99999;-99999;0.089284962 165.99675;1.984525;-166.077;-99999;-99999;-99999;0.038014167 53.960461;77.812737;-163.44;0.12325;0.003757;0.992369;0.047651615 234.234665;165.026993;-102.64;-99999;-99999;-99999;0.128256002 201.710571;46;-106;-99999;-99999;-99999;0.033170634 5.998324;57.992062;-169.231;-99999;-99999;-99999;0.908848185 190.137772;41.999901;-148;-99999;-99999;-99999;0.133269746 204;36;-107.874;-0.727892;0.136889;-0.671888;0.500094654 216;120;-148.306;-99999;-99999;-99999;0.953177786 271.635193;46;-142;-99999;-99999;-99999;0.949291442 208;85.175171;-142;-99999;-99999;-99999;0.341717201 238;56.809494;-104;-99999;-99999;-99999;0.327693289 266;62.000004;-157.253;-0.154238;0.074399;0.985229;0.121196441 256;35.504742;-138;-99999;-99999;-99999;0.113981485 153.977768;51.17487;-158.008;0.093802;0.144355;0.98507;0.390421507 67.928871;26.949909;-126.025;-0.708648;0.56022;-0.428918;0.102304776 181.988129;116.440987;-132.004;0.522061;-0.850711;0.061177;0.753401325 177.996338;83.361259;-96.0013;-99999;-99999;-99999;0.3678269 200.000015;0;-153.418;-0.079001;-0.640175;0.764156;0.807028174 105.951622;327.279449;-110.017;-0.140558;-0.856418;0.496781;0.369521206 258.002014;149.34053;-130.001;-99999;-99999;-99999;0.549024417 294;12;-154.479;0.221584;-0.064576;0.973001;0.077962382 198;45.657051;-120;-99999;-99999;-99999;0.916081643 270;102;-97.331;-99999;-99999;-99999;0.284668646 43.99472;175.974991;-87.0428;-99999;-99999;-99999;0.565205197 37.96701;35.843758;-165.053;-99999;-99999;-99999;0.265951589 212;10.155166;-128;-99999;-99999;-99999;0.728574388 247.443634;106.000008;-120;-99999;-99999;-99999;0.64211826 101.922783;125.634277;-119.33;-99999;-99999;-99999;0.580444034 89.928329;9.660553;-119.331;-99999;-99999;-99999;0.186988128 220;104.894524;-134;-99999;-99999;-99999;0.143987979 158.573608;13.959309;-168.003;-99999;-99999;-99999;0.224303006 134.097458;149.663376;-122.025;-99999;-99999;-99999;0.797482636 79.941078;59.720913;-104.304;-99999;-99999;-99999;0.423643878 274;191.263977;-140;-99999;-99999;-99999;0.695273517 107.386902;33.652424;-134.026;-99999;-99999;-99999;0.766915929 268;36;-159.245;-99999;-99999;-99999;0.859415542 139.954437;58.725559;-132.016;-99999;-99999;-99999;0.623841918 53.956135;61.792248;-163.37;-99999;-99999;-99999;0.40852515 200.000015;86;-158.946;-99999;-99999;-99999;0.938224767 1.270326;86;-98;-99999;-99999;-99999;0.955261941 194;46.476734;-116;-99999;-99999;-99999;0.677059086 113.942856;43.729343;-109.284;-99999;-99999;-99999;0.46959473 298;116;-151.756;-99999;-99999;-99999;0.093937764 272;70;-156.449;-99999;-99999;-99999;0.524986014 11.999999;148;-159.844;-99999;-99999;-99999;0.164078906 183.785645;156.647675;-103.883;-99999;-99999;-99999;0.682474242 119.936523;46.87394;-126.022;-99999;-99999;-99999;0.736538019 65.946175;111.469009;-144.019;-99999;-99999;-99999;0.014929725 93.923851;85.601891;-120.027;-99999;-99999;-99999;0.526404892 113.924347;299.498962;-137.9;-99999;-99999;-99999;0.571744874 59.954556;77.78476;-163.561;-99999;-99999;-99999;0.089413899 43.977047;101.891281;-163.451;-99999;-99999;-99999;0.923812066 37.967014;27.843769;-168.541;-99999;-99999;-99999;0.712154814 175.993149;77.967567;-159.568;-99999;-99999;-99999;0.272096031 238;102.220421;-128;-99999;-99999;-99999;0.828317315 75.697968;165.749268;-122.019;-99999;-99999;-99999;0.9672521 54.45953;27.750463;-164.019;-99999;-99999;-99999;0.977523021 188.02504;95.980415;-124.001;-99999;-99999;-99999;0.710985952 276.522827;220;-148;-99999;-99999;-99999;0.626512306 280;81.187965;-128;0.259883;-0.930753;0.257216;0.77356381 154.64859;67.85997;-128.01;-99999;-99999;-99999;0.151204128 46.596107;139.900589;-110.007;-0.452475;0.186658;0.872024;0.553001224 214.730042;381.869629;-142.01;-99999;-99999;-99999;0.282276954 9.990163;5.95341;-173.075;-99999;-99999;-99999;0.336566274 262;26;-158.214;-99999;-99999;-99999;0.272429414 125.933365;91.68441;-122.776;-99999;-99999;-99999;0.416566128 276;146;-148.962;-99999;-99999;-99999;0.035903703 254;62.000004;-115.687;-99999;-99999;-99999;0.13539617 133.958435;69.803162;-103.409;-99999;-99999;-99999;0.252542525 157.385666;33.926018;-158.005;-99999;-99999;-99999;0.429662046 83.928505;1.661393;-118.801;-99999;-99999;-99999;0.96820555 292;189.5;-104;-99999;-99999;-99999;0.84005481 103.944023;57.734867;-100.463;-99999;-99999;-99999;0.817234511 67.941551;82.628998;-154.021;-99999;-99999;-99999;0.842055063 5.999301;86.260132;-112;0.566571;0.815637;0.117186;0.765346667 225.999985;60;-130.77;-99999;-99999;-99999;0.704718372 215.958862;175.482803;-124.686;-0.358544;0.923965;-0.133175;0.879812537 200.743317;30;-104;-0.899667;-0.281614;-0.333604;0.235364886 153.65036;31.913708;-160.006;-99999;-99999;-99999;0.367661253 225.999985;94.948868;-114;-99999;-99999;-99999;0.176258893 16;195.25882;-132;-99999;-99999;-99999;0.611919699 73.941231;37.721642;-106.384;-99999;-99999;-99999;0.960621827 217.997681;229.989044;-143.277;-99999;-99999;-99999;0.366508717 77.943176;53.730873;-103.057;-99999;-99999;-99999;0.744206064 194.786469;77.999619;-156;-0.650367;0.737369;0.182507;0.849310232 224.35463;54;-116;-0.422836;0.310562;-0.851329;0.241339035 35.050068;223.995041;-108;-99999;-99999;-99999;0.808515725 114.115028;260.23233;-103.448;-0.418441;0.037541;0.907468;0.10787404 40.962551;11.760263;-146.018;-99999;-99999;-99999;0.208095206 77.954491;149.784439;-98.9806;-99999;-99999;-99999;0.727411791 217.726196;104;-134;-99999;-99999;-99999;0.337822969 9.995259;62.236053;-118.002;-99999;-99999;-99999;0.909120194 166.18248;223.544785;-145.952;-99999;-99999;-99999;0.42315897 244;27.053741;-158;0.137974;-0.896568;0.420867;0.720856721 21.979435;3.902596;-172.875;-99999;-99999;-99999;0.125377109 274;8;-153.308;-99999;-99999;-99999;0.802089025 157.930359;263.670227;-108.908;-99999;-99999;-99999;0.86034957 201.995026;179.976456;-147.197;-99999;-99999;-99999;0.239939023 63.941856;35.724613;-164.722;-99999;-99999;-99999;0.418469419 238;44;-78.6857;-99999;-99999;-99999;0.806591138 15.302238;200;-142;-99999;-99999;-99999;0.960203291 95.924103;11.773946;-130.027;0.537944;-0.608836;0.58304;0.288667041 190;6;-154.851;-99999;-99999;-99999;0.663670981 143.956802;88.072571;-114.015;0.384938;0.890068;0.244136;0.060670046 288;87.083107;-146;-99999;-99999;-99999;0.622141063 68.412056;51.665081;-136.025;-99999;-99999;-99999;0.111954279 280;128.995407;-130;0.176653;0.840399;0.512371;0.463615332 246;36;-107.568;-99999;-99999;-99999;0.154799629 233.991226;352.376251;-98.0031;-0.267319;0.732106;0.626547;0.338559818 113.937012;46.175579;-158.022;-99999;-99999;-99999;0.487455058 103.961296;357.816681;-115.632;-99999;-99999;-99999;0.085030115 69.451408;79.692322;-126.023;-99999;-99999;-99999;0.336870927 75.942665;59.728432;-104.672;-99999;-99999;-99999;0.71128321 222;12.923135;-100;-0.079787;-0.951465;0.297235;0.059762866 55.955288;67.788223;-162.77;-99999;-99999;-99999;0.053706624 58.2234;61.748978;-156.019;-99999;-99999;-99999;0.968282056 227.696884;172.295532;-106.253;-99999;-99999;-99999;0.893790082 208.109802;60;-102;0.051156;0.132057;0.989921;0.784098914 258;106.000008;-101.67;-99999;-99999;-99999;0.169349746 202;76;-109.584;0.105209;0.582402;0.806064;0.947146347 234.965927;22;-138;-99999;-99999;-99999;0.341116418 272;179.755493;-150;-99999;-99999;-99999;0.850214958 208.00766;125.589119;-115.989;-99999;-99999;-99999;0.899672627 133.956406;51.793495;-159.69;-99999;-99999;-99999;0.529404459 119.942276;45.726601;-115.616;-99999;-99999;-99999;0.618993932 252;10;-157.336;-99999;-99999;-99999;0.569168042 145.936172;162.519363;-126.022;-99999;-99999;-99999;0.031700409 265.239532;82;-110;-99999;-99999;-99999;0.643243879 152.439651;101.827538;-112.013;-99999;-99999;-99999;0.279792163 153.987778;9.942078;-165.909;-99999;-99999;-99999;0.653360628 29.962631;3.823008;-154.84;-99999;-99999;-99999;0.66203759 258;187.355759;-150;-99999;-99999;-99999;0.784228371 133.420853;55.752117;-130.018;-99999;-99999;-99999;0.923795581 268;386;-151.817;0.261121;0.049205;0.964051;0.047064356 119.937172;173.702438;-159.009;-99999;-99999;-99999;0.752009395 97.927895;129.15625;-150.025;-99999;-99999;-99999;0.579827178 52;362;-141.614;-99999;-99999;-99999;0.614178768 276;26;-155.552;-99999;-99999;-99999;0.191469466 284;318;-151.004;-99999;-99999;-99999;0.552496505 245.1754;108;-126;-99999;-99999;-99999;0.121017412 73.959167;191.80661;-109.504;0.482654;0.299212;-0.823114;0.401874236 7.323735;59.977261;-138.002;-99999;-99999;-99999;0.797247603 179.979813;165.904358;-150.032;-99999;-99999;-99999;0.41433611 191.995453;145.978561;-96.911;-99999;-99999;-99999;0.47242267 87.938362;127.708061;-105.728;-0.172398;-0.78374;0.596683;0.298555911 161.959442;149.807892;-140.628;-99999;-99999;-99999;0.838783154 216;42.514584;-122;-99999;-99999;-99999;0.87257221 10;386;-131.172;-99999;-99999;-99999;0.092905798 175.961853;229.819351;-147.506;-99999;-99999;-99999;0.460810643 19.002151;85.957176;-134.003;-99999;-99999;-99999;0.264349169 114.543533;35.696754;-122.022;-99999;-99999;-99999;0.017604028 255.587769;48;-124;-99999;-99999;-99999;0.013950067 75.936623;30.34099;-110.022;-0.674394;-0.47545;0.564924;0.607018335 121.952255;19.388186;-164.017;-99999;-99999;-99999;0.730504294 25.978867;19.899902;-171.726;-99999;-99999;-99999;0.995279931 179.995224;103.977409;-94.247;-99999;-99999;-99999;0.172361548 238;64;-129.084;-99999;-99999;-99999;0.561923109 208;23.059078;-94;-99999;-99999;-99999;0.662707462 224;78;-110.346;-99999;-99999;-99999;0.62421066 133.961044;33.815506;-161.826;-99999;-99999;-99999;0.938179886 156.955872;157.764771;-136.017;-99999;-99999;-99999;0.111812301 122.147232;59.772781;-102.017;-99999;-99999;-99999;0.305004953 189.993652;149.969971;-97.4215;0.040323;0.23433;0.971321;0.791126821 83.946373;128.792557;-100.019;-99999;-99999;-99999;0.055610079 85.002342;17.703276;-108.022;-99999;-99999;-99999;0.30682385 43.959972;33.810421;-164.877;-99999;-99999;-99999;0.541973597 244.773422;46;-98;0.876948;0.22284;0.425798;0.087597481 65.169014;33.691784;-120.023;-99999;-99999;-99999;0.423848448 117.382622;117.630165;-132.027;-99999;-99999;-99999;0.800222224 64.275093;165.816193;-138.014;-0.452001;0.878532;-0.154521;0.019702487 189.53833;28;-156;-99999;-99999;-99999;0.060179781 258.752289;44;-132;0.407099;-0.429875;0.805901;0.79222059 131.946915;49.748554;-135.079;-99999;-99999;-99999;0.845100539 129.922318;224.457886;-146.011;-99999;-99999;-99999;0.075669071 183.996841;83.985016;-158.53;-99999;-99999;-99999;0.353212916 154.660278;81.87384;-108.009;-99999;-99999;-99999;0.428750766 175.992035;81.962296;-156.863;-99999;-99999;-99999;0.299603146 160.386505;213.292664;-147.586;-99999;-99999;-99999;0.931921417 69.336685;179.849579;-158.011;-99999;-99999;-99999;0.580991671 191.232895;75.998047;-158;-99999;-99999;-99999;0.469962218 179.946716;282.522827;-128.019;-99999;-99999;-99999;0.785423401 37.95293;10.726624;-134.017;-99999;-99999;-99999;0.697143386 95.494293;335.851288;-132.011;-99999;-99999;-99999;0.790149569 137.942276;98.746552;-128.02;-99999;-99999;-99999;0.715053672 252.917191;268.02948;-118.441;-0.950089;0.166198;0.264025;0.48285296 129.961685;3.81856;-160.476;-99999;-99999;-99999;0.448192741 39.957237;5.384541;-166.015;-99999;-99999;-99999;0.850704088 147.963943;102.451645;-162.013;-99999;-99999;-99999;0.90009114 225.999985;42;-76.5411;-99999;-99999;-99999;0.784393701 157.974182;79.401451;-116.009;-99999;-99999;-99999;0.117078378 10;166;-163.058;-99999;-99999;-99999;0.729311352 210;48;-85.2235;-99999;-99999;-99999;0.925867007 274;2;-153.017;-99999;-99999;-99999;0.293442497 101.944702;29.738077;-103.232;-99999;-99999;-99999;0.438894436 53.955109;57.787384;-163.421;-99999;-99999;-99999;0.087656263 135.937073;213.70195;-154.342;-99999;-99999;-99999;0.233975177 71.938545;38.896736;-166.022;-99999;-99999;-99999;0.228558733 26.517416;175.991943;-144.001;-99999;-99999;-99999;0.317216562 31.989668;107.951065;-165.07;-99999;-99999;-99999;0.057265815 141.959991;89.810501;-162.244;-99999;-99999;-99999;0.472963551 141.955582;88.411331;-112.016;-99999;-99999;-99999;0.390394225 55.982079;171.915131;-162.904;-99999;-99999;-99999;0.577058227 272;98;-100.753;-99999;-99999;-99999;0.88057035 71.893417;181.806854;-110.014;-99999;-99999;-99999;0.116541889 65.960068;162.744354;-144.014;-0.258102;0.900018;-0.351213;0.296548645 225.999985;182.88623;-144;-0.85758;0.483103;0.176542;0.805867951 205.981018;353.910126;-160.329;-99999;-99999;-99999;0.56462058 177.923615;395.638184;-104.634;-99999;-99999;-99999;0.329661178 206;84.321014;-148;-99999;-99999;-99999;0.265215725 266;230;-154.785;-99999;-99999;-99999;0.528491776 0;78;-90.9811;-99999;-99999;-99999;0.335889924 123.933189;183.643753;-154.023;-99999;-99999;-99999;0.740488069 201.05397;46;-104;-99999;-99999;-99999;0.366805544 220;150;-99.0136;-99999;-99999;-99999;0.860029429 139.51944;55.784409;-136.016;-99999;-99999;-99999;0.582176818 109.936157;168.004593;-158.022;-99999;-99999;-99999;0.289962608 162.055405;151.802887;-138.015;0.585427;0.667878;-0.45958;0.524122761 39.97287;65.871506;-165.116;-99999;-99999;-99999;0.429886907 175.966766;203.845871;-148.407;-99999;-99999;-99999;0.358468948 35.96133;3.816841;-115.879;-99999;-99999;-99999;0.85464034 242;260;-126.785;-99999;-99999;-99999;0.13203826 59.963699;158.495483;-128.013;-99999;-99999;-99999;0.071306548 284;48;-153.911;-99999;-99999;-99999;0.731062927 246;312;-145.779;-99999;-99999;-99999;0.457844356 280;126.861908;-118;-99999;-99999;-99999;0.143442174 105.941696;37.723869;-106.56;-99999;-99999;-99999;0.270422015 20;236;-158.637;-99999;-99999;-99999;0.67132538 228;82;-108.763;-99999;-99999;-99999;0.13406375 39.996361;222.153198;-116.001;-99999;-99999;-99999;0.37075264 177.235001;47.983707;-156.001;-99999;-99999;-99999;0.430273134 118.929123;153.667038;-152.025;-99999;-99999;-99999;0.302193781 198;16;-131.017;-99999;-99999;-99999;0.694609758 171.958481;235.803375;-150.507;-0.066108;0.512343;0.856233;0.868267577 233.155502;178.090851;-114.297;-99999;-99999;-99999;0.06870386 286;323.731201;-166;0.564949;0.688168;0.455255;0.359823962 27.976305;15.887774;-172.331;-99999;-99999;-99999;0.672892758 3.314024;57.993259;-112;-99999;-99999;-99999;0.079984832 236;24;-110.757;-99999;-99999;-99999;0.479796294 65.927582;28.662645;-142.025;-99999;-99999;-99999;0.534809418 276;46;-155.722;-99999;-99999;-99999;0.217690532 256;72;-128.325;0.336155;-0.496757;0.800145;0.757256322 263.584412;336;-120;0.904203;0.322652;0.279843;0.818399909 111.954727;369.785583;-117.886;-99999;-99999;-99999;0.151721035 95.289886;381.921082;-140.006;0.117235;0.157248;0.980576;0.435886042 296;78;-152.223;-99999;-99999;-99999;0.565005424 135.643311;224.380066;-115.232;-99999;-99999;-99999;0.99991369 19.988083;49.943562;-165.208;-99999;-99999;-99999;0.08301432 51.938374;16.842258;-134.022;-99999;-99999;-99999;0.5015843 33.995201;173.977264;-108.485;-99999;-99999;-99999;0.38178651 26.239079;75.918976;-144.006;-99999;-99999;-99999;0.345729235 264;6;-154.976;-0.121976;0.07411;0.989762;0.079640622 222;36;-77.31;-99999;-99999;-99999;0.780907381 45.956085;15.79201;-169.012;-99999;-99999;-99999;0.311926351 177.999359;17.996969;-161.564;-99999;-99999;-99999;0.749458829 190;38;-157.574;-99999;-99999;-99999;0.310184724 219.562973;44;-122;-99999;-99999;-99999;0.116924388 5.032389;61.98568;-148.001;-99999;-99999;-99999;0.74906059 41.983456;149.164856;-144.006;-99999;-99999;-99999;0.779828466 228;17.610188;-86;-99999;-99999;-99999;0.308957628 257.162628;36;-156;-99999;-99999;-99999;0.837125154 237.562943;175.728516;-108.944;-99999;-99999;-99999;0.571109884 210.469086;98;-134;-99999;-99999;-99999;0.230434293 129.948395;87.755562;-105.725;-99999;-99999;-99999;0.982602001 44.398338;13.741725;-138.019;-99999;-99999;-99999;0.315596967 117.948479;75.755989;-99.2573;-99999;-99999;-99999;0.172387995 234.000015;34;-122.637;-99999;-99999;-99999;0.353590907 270;50;-157.133;-99999;-99999;-99999;0.067194102 33.96249;-0.177668;-166.618;-99999;-99999;-99999;0.963727996 81.934601;81.690262;-110.967;-99999;-99999;-99999;0.984771289 19.989349;69.949554;-155.548;-99999;-99999;-99999;0.469600845 17.988249;41.158524;-166.004;-0.242263;-0.084799;0.966498;0.444754261 270;78.696823;-128;-99999;-99999;-99999;0.583059698 45.947113;8.935644;-158.019;-99999;-99999;-99999;0.497456303 280;186;-148.449;-99999;-99999;-99999;0.009443489 87.96859;292.591614;-140.011;-99999;-99999;-99999;0.694229741 103.937103;43.702084;-165.371;-99999;-99999;-99999;0.490116151 258;26;-158.116;-99999;-99999;-99999;0.881391036 167.08429;15.976145;-160.002;-99999;-99999;-99999;0.111766132 250;28.690351;-146;-99999;-99999;-99999;0.440764345 139.942368;156.07962;-154.02;-99999;-99999;-99999;0.769408056 246;216;-155.671;0.179276;-0.188987;0.965476;0.658775917 49.96822;127.165413;-126.011;-0.141263;-0.758622;-0.636032;0.322069529 272.26532;22;-156;-0.215213;0.139588;0.966539;0.399328779 26.120642;390;-134;-99999;-99999;-99999;0.271660449 111.936119;21.697433;-154.161;-99999;-99999;-99999;0.638826559 127.9319;105.677452;-141.47;-99999;-99999;-99999;0.847075028 268;123.012947;-112;-99999;-99999;-99999;0.416373775 125.943481;105.851746;-162.02;-99999;-99999;-99999;0.953543338 195.999985;77.119797;-112;-99999;-99999;-99999;0.142311218 213.171463;16;-106;-99999;-99999;-99999;0.001569642 11.991492;27.959709;-169.629;-99999;-99999;-99999;0.918427746 29.979399;53.770969;-164.007;-0.000428;0.134804;0.990872;0.810395837 69.944176;59.735607;-107.036;-99999;-99999;-99999;0.654136141 166.603165;337.633545;-124.025;-99999;-99999;-99999;0.561376551 266;56;-156.603;0.081922;0.06945;0.994216;0.095503349 81.944435;41.736839;-100.767;-99999;-99999;-99999;0.78715069 5.997209;62.476967;-156.001;-99999;-99999;-99999;0.612362274 182.592941;157.911346;-140.007;-99999;-99999;-99999;0.010863604 229.999283;146.052505;-102.794;-99999;-99999;-99999;0.543877651 20.002533;95.963913;-146.003;-99999;-99999;-99999;0.92123111 270;76;-156.559;-99999;-99999;-99999;0.761411044 196;47.77256;-106;-99999;-99999;-99999;0.99577598 227.9832;397.920471;-142.96;0.493639;-0.352606;-0.794978;0.123188765 286;42;-153.839;-99999;-99999;-99999;0.226262803 270.045258;52;-136;-99999;-99999;-99999;0.683260076 204.50444;172.339844;-125.933;-99999;-99999;-99999;0.093863905 225.999985;14.18107;-92;-99999;-99999;-99999;0.318601701 165.987671;85.941559;-98.0881;-99999;-99999;-99999;0.829776966 276;83.172905;-122;-99999;-99999;-99999;0.764451029 129.940643;115.718887;-156.34;-99999;-99999;-99999;0.414446095 35.976242;61.88747;-165.722;-99999;-99999;-99999;0.100123527 175.960388;209.840469;-147.324;-99999;-99999;-99999;0.249386636 69.958809;132.619232;-100.014;-99999;-99999;-99999;0.364685201 284;386;-154.848;-99999;-99999;-99999;0.893159514 97.926529;174.061356;-130.026;-99999;-99999;-99999;0.059453761 27.983028;77.919624;-152.067;-99999;-99999;-99999;0.525120349 107.931526;121.675667;-157.171;-99999;-99999;-99999;0.473138801 250;6;-156.646;-99999;-99999;-99999;0.502035988 177.997375;41.987564;-155.326;-99999;-99999;-99999;0.503558706 89.944565;129.204712;-98.0195;0.332923;-0.942951;-0.00241;0.180493066 134.884781;151.660934;-126.025;-99999;-99999;-99999;0.15903088 210;9.422379;-134;0.25521;-0.944675;0.206048;0.156731726 41.948219;12.381597;-136.018;-99999;-99999;-99999;0.649705587 97.945976;23.744137;-101.584;-99999;-99999;-99999;0.972000451 256.932098;342;-146;-99999;-99999;-99999;0.928694827 64.827927;53.717342;-116.021;-99999;-99999;-99999;0.199521272 211.987274;297.939697;-149.593;0.061941;-0.339116;0.938703;0.327509683 51.950588;31.311802;-164.017;-99999;-99999;-99999;0.565082094 165.995987;13.962861;-168.001;-99999;-99999;-99999;0.609813386 296.845459;112;-114;-99999;-99999;-99999;0.281073573 286;32;-154.214;-99999;-99999;-99999;0.274356007 89.933006;171.682709;-123.455;-99999;-99999;-99999;0.194761054 221.999908;209.999542;-148.118;-0.107009;0.276435;0.955056;0.874430507 73.933792;15.686411;-113.705;-99999;-99999;-99999;0.175044519 183.420898;155.148438;-111.663;-99999;-99999;-99999;0.106221707 137.950989;89.627708;-112.017;-99999;-99999;-99999;0.036447772 254;180.752609;-160;-99999;-99999;-99999;0.115897178 271.321686;46;-146;-99999;-99999;-99999;0.295391611 23.987309;87.939896;-141.509;-99999;-99999;-99999;0.535799454 232;69.006645;-128;-99999;-99999;-99999;0.878964226 235.999542;303.997864;-150.783;-99999;-99999;-99999;0.472202443 242;11.082961;-160;-99999;-99999;-99999;0.837418059 69.997314;357.987305;-141.113;-99999;-99999;-99999;0.93800726 0.321874;174;-162;0.17593;-0.083783;0.980831;0.177139602 69.997543;361.988342;-139.804;-99999;-99999;-99999;0.868750825 97.932846;13.681942;-116.507;0.131002;-0.930382;-0.342385;0.090777304 290;395.196259;-160;-99999;-99999;-99999;0.10029422 147.967529;65.004456;-156.011;-99999;-99999;-99999;0.113328616 214;102;-133.641;-99999;-99999;-99999;0.516999798 157.969025;115.853363;-105.898;-99999;-99999;-99999;0.552767122 19.985909;35.933258;-167.138;-99999;-99999;-99999;0.191825203 95.935707;129.769867;-104.023;-99999;-99999;-99999;0.233394643 191.982834;211.918793;-148.758;-99999;-99999;-99999;0.545677525 149.955276;147.788147;-101.086;-99999;-99999;-99999;0.618185427 66.546227;31.6924;-118.023;-99999;-99999;-99999;0.400368799 210;49.512085;-90;-0.583556;0.779341;0.228232;0.820671094 98.523796;3.643465;-142.026;-99999;-99999;-99999;0.199342477 89.973289;337.873505;-112.835;-99999;-99999;-99999;0.970896179 163.978745;75.89933;-132.997;-99999;-99999;-99999;0.071609848 101.946259;21.745462;-103.081;-99999;-99999;-99999;0.179049297 57.9366;18.847902;-124.022;-0.501661;0.781705;-0.370505;0.845578632 187.998825;77.994408;-158.982;-99999;-99999;-99999;0.257916781 23.997416;135.987762;-160.93;-99999;-99999;-99999;0.532159932 177.999634;11.998271;-162.757;-99999;-99999;-99999;0.833938302 139.958054;85.928879;-106.015;-99999;-99999;-99999;0.413715665 187.994263;137.972824;-97.1976;-99999;-99999;-99999;0.574251579 270;78.997345;-126;-99999;-99999;-99999;0.187220637 64.739548;39.681232;-150.024;-99999;-99999;-99999;0.74897792 254.530167;64;-110;-99999;-99999;-99999;0.95624743 236.964996;24;-140;-99999;-99999;-99999;0.702084388 139.936676;207.712677;-154.766;-0.03436;0.068784;0.99704;0.050782682 297.924927;360;-164;0.353468;-0.1291;0.926495;0.542016078 144.486404;157.701157;-120.022;-99999;-99999;-99999;0.702093485 244;28.320284;-154;-99999;-99999;-99999;0.968212365 174.290253;149.884232;-146.009;-99999;-99999;-99999;0.633478199 54.996773;209.923798;-110.006;-99999;-99999;-99999;0.548637426 278;70;-155.665;-0.152754;0.128965;0.979813;0.372999459 268;63.096584;-138;-99999;-99999;-99999;0.427530533 87.940125;47.716393;-103.404;-99999;-99999;-99999;0.335105082 114.549385;27.730106;-114.02;-99999;-99999;-99999;0.277057677 47.943157;18.867319;-146.02;-99999;-99999;-99999;0.033467645 286;170;-109.055;-99999;-99999;-99999;0.084183897 106.341141;43.641521;-136.027;-99999;-99999;-99999;0.656443786 171.974274;145.878189;-110.724;-99999;-99999;-99999;0.580955666 238;30;-127.785;-99999;-99999;-99999;0.569406532 143.951599;103.770775;-149.067;-99999;-99999;-99999;0.277448241 240;41.202068;-122;-99999;-99999;-99999;0.979869092 141.962677;66.797119;-110.013;-99999;-99999;-99999;0.446202933 87.945091;31.739948;-100.068;-99999;-99999;-99999;0.782856722 110.935608;37.678135;-152.024;-99999;-99999;-99999;0.660039316 211.997818;205.98967;-149.668;-99999;-99999;-99999;0.328782753 55.969994;161.32103;-138.011;-99999;-99999;-99999;0.646940365 195.988968;195.947784;-148.582;0.003503;0.150099;0.988665;0.878269885 238.958298;22;-154;0.85706;-0.328906;-0.396572;0.83439252 222;44;-77.5106;-0.091332;0.237995;0.966963;0.564576004 225.999985;102.122612;-142;-99999;-99999;-99999;0.171790796 177.99501;79.564987;-104.002;-99999;-99999;-99999;0.599474027 51.963974;87.829369;-161.499;-0.058366;-0.219778;0.973802;0.581238061 196.595016;6;-152;-99999;-99999;-99999;0.346996303 33.991318;131.958893;-161.421;-99999;-99999;-99999;0.014475784 217.669235;54;-90;-99999;-99999;-99999;0.932911674 162.134918;229.596954;-152.683;-99999;-99999;-99999;0.770683303 35.985989;105.933655;-164.84;-99999;-99999;-99999;0.342539719 134.812866;153.709778;-154.022;-99999;-99999;-99999;0.527935572 149.941742;160.272766;-136.02;-99999;-99999;-99999;0.005949162 264;56;-148.77;-99999;-99999;-99999;0.079309038 87.956573;261.794312;-115.536;-99999;-99999;-99999;0.13665728 228;100.812271;-122;-99999;-99999;-99999;0.287912796 278.717041;194;-106;-0.39707;0.799014;0.451567;0.109334212 -0.001395;55.377483;-124;-99999;-99999;-99999;0.268906223 225.999985;10.579413;-142;-99999;-99999;-99999;0.799754008 180.229523;63.976509;-136.002;-99999;-99999;-99999;0.110375192 191.87738;162.161865;-110.716;-99999;-99999;-99999;0.799398207 179.997864;45.989872;-155.167;-99999;-99999;-99999;0.074486994 280;98.546387;-102;-99999;-99999;-99999;0.383540371 117.863686;230.966309;-109.9;-99999;-99999;-99999;0.137866399 109.944901;51.739014;-102.912;-99999;-99999;-99999;0.611165335 296.891388;182;-158;-99999;-99999;-99999;0.010445136 16.992626;85.964561;-132.003;-99999;-99999;-99999;0.929013345 224;2;-150.776;-99999;-99999;-99999;0.349226802 235.966965;20;-110;-99999;-99999;-99999;0.158452448 161.986496;43.936039;-156.656;-99999;-99999;-99999;0.646718542 138.580215;89.751534;-120.018;-99999;-99999;-99999;0.157693894 282;197.236038;-122;-99999;-99999;-99999;0.27066496 87.935898;121.696396;-155.87;-99999;-99999;-99999;0.60969594 47.992249;221.963318;-107.867;-99999;-99999;-99999;0.84834931 125.940819;89.719696;-110.493;-99999;-99999;-99999;0.36935625 195.291412;36;-142;-99999;-99999;-99999;0.427250749 157.958481;157.803391;-152.356;0.202243;0.536887;0.819055;0.755293209 95.925224;0.697596;-150.026;-99999;-99999;-99999;0.321501113 268;77.613586;-140;0.757246;-0.505641;-0.413407;0.19141216 229.740036;72;-120;-99999;-99999;-99999;0.894549355 272;46;-157.518;-99999;-99999;-99999;0.652338676 109.940262;15.717075;-162.103;-99999;-99999;-99999;0.209055115 59.978249;167.511856;-94.0076;-99999;-99999;-99999;0.083292022 77.98143;301.912048;-139.371;-99999;-99999;-99999;0.435617391 51.944443;15.736859;-119.363;-99999;-99999;-99999;0.569765965 262;84;-105.735;-99999;-99999;-99999;0.933986529 109.926086;47.649914;-135.337;0.35189;-0.766284;-0.537571;0.942559636 129.952484;83.774986;-102.098;-99999;-99999;-99999;0.228792174 81.949295;157.2603;-102.018;-99999;-99999;-99999;0.030058136 1.999947;102.146065;-140;-99999;-99999;-99999;0.921164187 229.986984;397.938354;-147.349;0.395763;-0.285671;0.872791;0.308454634 153.264771;83.869469;-106.01;-99999;-99999;-99999;0.969332408 67.440132;39.662079;-144.025;-99999;-99999;-99999;0.447864071 139.971085;15.863035;-161.552;-99999;-99999;-99999;0.949364397 45.626667;21.797451;-168.015;-99999;-99999;-99999;0.989991847 173.994003;83.971497;-96.6959;-99999;-99999;-99999;0.891296282 234.000015;24;-83.6653;-99999;-99999;-99999;0.888691446 169.987274;77.236153;-114.004;-99999;-99999;-99999;0.005515122 242;53.126087;-100;-99999;-99999;-99999;0.861035726 232;62.000004;-131.074;-99999;-99999;-99999;0.261383489 187.995407;117.978256;-104.427;-99999;-99999;-99999;0.486615224 75.42009;21.688957;-166.023;-99999;-99999;-99999;0.468665949 268;81.066994;-120;0.080446;-0.963009;0.257181;0.309405857 45.977936;144.898499;-120.008;-0.862944;0.490569;0.121115;0.868694411 187.925125;73.989738;-132.001;-99999;-99999;-99999;0.407471503 65.989494;265.950256;-154.236;-99999;-99999;-99999;0.077242268 183.99762;75.988716;-159.488;-99999;-99999;-99999;0.91626284 37.96645;19.841091;-170.861;-99999;-99999;-99999;0.696326131 112.026138;238.884109;-103.416;-99999;-99999;-99999;0.521365548 16;240;-159.68;-0.165989;0.107792;0.980219;0.556284338 -0.000658;55.727524;-112;-99999;-99999;-99999;0.17053949 237.126114;12;-156;-99999;-99999;-99999;0.052719076 238;24.748295;-138;-99999;-99999;-99999;0.611165461 97.932465;89.68013;-160.594;-0.276158;-0.305146;0.911385;0.892011881 298;138;-153.845;-99999;-99999;-99999;0.152732924 266;65.238342;-142;0.750545;0.401873;-0.524576;0.008041841 171.26947;93.956894;-96.0032;-99999;-99999;-99999;0.51659817 123.932709;96.246628;-148.024;-99999;-99999;-99999;0.437539495 68.968048;47.660755;-134.025;-99999;-99999;-99999;0.177296013 1.997144;29.986471;-168.026;-99999;-99999;-99999;0.195094232 189.978821;221.899719;-148.099;-99999;-99999;-99999;0.808469419 265.114288;72;-140;-99999;-99999;-99999;0.020242465 29.964157;4.694142;-124.013;-99999;-99999;-99999;0.120054 67.943413;-0.268032;-106.295;-99999;-99999;-99999;0.98447983 214;54.654606;-106;-99999;-99999;-99999;0.837186793 33.963604;-0.172385;-114.545;-99999;-99999;-99999;0.554531848 99.932579;5.115588;-160.024;-99999;-99999;-99999;0.326601334 53.936886;21.756184;-142.022;-99999;-99999;-99999;0.170872322 63.950695;125.447853;-126.017;-99999;-99999;-99999;0.911984773 125.951103;54.898403;-108.017;-99999;-99999;-99999;0.974766834 117.528992;41.713547;-118.021;-99999;-99999;-99999;0.313682245 268;396;-156.375;0.281381;0.627544;0.725957;0.381350609 256;6;-155.582;-99999;-99999;-99999;0.056781179 139.958771;64.63179;-114.014;-99999;-99999;-99999;0.586093625 155.971375;68.544823;-136.01;-99999;-99999;-99999;0.618899441 106.616722;37.646393;-140.026;-99999;-99999;-99999;0.164996449 149.940567;162.493179;-124.021;-99999;-99999;-99999;0.96554922 239.996719;387.490082;-154.001;-99999;-99999;-99999;0.731497752 238.266052;150.759064;-101.873;-99999;-99999;-99999;0.640601165 165.990158;39.953285;-154.963;-99999;-99999;-99999;0.849559888 61.018276;233.918625;-140.006;-0.9598;0.059276;0.274354;0.582144442 208.70401;66;-104;0.193678;0.60525;0.772114;0.828214903 14;382;-134.78;-99999;-99999;-99999;0.87792174 143.885956;249.22496;-110.545;-99999;-99999;-99999;0.13657349 192.895355;166.634872;-114.127;-99999;-99999;-99999;0.786067093 177.965576;241.836945;-153.159;-99999;-99999;-99999;0.335726797 208;54;-100.622;-99999;-99999;-99999;0.657955495 158.341888;211.320877;-147.312;0.053863;0.143364;0.988203;0.053091202 208;125.667473;-112;-99999;-99999;-99999;0.942923593 219.35318;52;-82;-99999;-99999;-99999;0.687743678 69.694992;41.661289;-128.025;-99999;-99999;-99999;0.625477831 196;62.000004;-104.332;-99999;-99999;-99999;0.655463843 80.685471;27.712807;-106.021;-99999;-99999;-99999;0.354257842 160.343857;226.639938;-149.467;-99999;-99999;-99999;0.896418397 295.619019;302;-152;-99999;-99999;-99999;0.899343574 180.915253;87.968742;-150.002;-99999;-99999;-99999;0.315017183 211.960663;375.921051;-116.014;-99999;-99999;-99999;0.614463492 67.935524;35.694603;-160.276;-99999;-99999;-99999;0.195137538 39.996773;201.984695;-96.4725;-99999;-99999;-99999;0.545501262 91.756111;65.696526;-106.023;-99999;-99999;-99999;0.166771598 6;174;-162.937;-99999;-99999;-99999;0.161162325 -0.000144;50.169338;-100;-99999;-99999;-99999;0.569699463 169.992218;49.963131;-157.533;-99999;-99999;-99999;0.228443595 215.993958;245.97139;-133.577;-99999;-99999;-99999;0.401297276 107.56279;19.664213;-134.025;-99999;-99999;-99999;0.666098171 214;110;-154.854;0.107355;-0.545448;0.831241;0.918739363 147.95903;119.805984;-103.331;-99999;-99999;-99999;0.114900387 131.946884;57.748451;-124.506;-99999;-99999;-99999;0.995397352 114.907547;363.761627;-110.018;-99999;-99999;-99999;0.253584144 41.991219;173.510025;-156.003;-99999;-99999;-99999;0.781939433 210;20;-107.423;-0.671732;-0.546037;-0.500619;0.568641911 205.996826;187.984985;-150.625;-99999;-99999;-99999;0.77955404 93.933235;125.683777;-155.586;-99999;-99999;-99999;0.65346662 284;82;-154.522;-99999;-99999;-99999;0.107959694 274;161.226715;-152;-99999;-99999;-99999;0.742756521 73.989571;325.950592;-137.404;-99999;-99999;-99999;0.75610545 96.582413;337.839996;-126.012;-99999;-99999;-99999;0.838490367 268;130.112457;-130;-99999;-99999;-99999;0.019334005 137.969299;11.854606;-160.787;-99999;-99999;-99999;0.099654743 284;314;-150.224;0.277057;0.14153;0.950373;0.172585968 290;86.492157;-136;-99999;-99999;-99999;0.427332929 202;46.787239;-116;-99999;-99999;-99999;0.72404607 108.529694;23.676178;-126.024;-99999;-99999;-99999;0.481050091 185.998932;61.136517;-114;-0.999726;-0.023083;-0.003961;0.59702499 49.982239;158.707016;-158.006;-99999;-99999;-99999;0.420952844 246;28.885176;-142;0.305566;-0.881651;0.359611;0.971601922 95.940552;61.718479;-101.829;-99999;-99999;-99999;0.029502713 4;153.362488;-160;-99999;-99999;-99999;0.727982045 297.597809;90;-146;-99999;-99999;-99999;0.104775967 13.992836;65.651886;-154.003;-99999;-99999;-99999;0.124288988 93.923386;127.637115;-126.641;0.225627;-0.954895;-0.193049;0.518662098 155.951004;183.767944;-151.063;0.168726;-0.185054;0.968136;0.069432608 245.600281;46;-100;-99999;-99999;-99999;0.979203131 110.314659;45.662804;-148.025;-99999;-99999;-99999;0.009252839 63.932404;30.665661;-152.024;-99999;-99999;-99999;0.95797868 270.084412;52;-146;-99999;-99999;-99999;0.194182646 56.931973;175.870499;-138.01;-99999;-99999;-99999;0.524581923 139.973495;1.874454;-160.632;-99999;-99999;-99999;0.78406082 252;134;-149.496;-99999;-99999;-99999;0.860777753 189.999847;48.258774;-144;-99999;-99999;-99999;0.418230466 33.970459;15.860082;-172.417;-0.028498;-0.255027;0.966514;0.944293654 185.999008;51.763485;-124;-0.898995;-0.414926;0.140158;0.286096382 224;65.335228;-120;-99999;-99999;-99999;0.670953401 0.734351;90;-100;0.756724;0.533905;0.377245;0.170960408 232;100.042969;-120;-99999;-99999;-99999;0.879715197 163.989578;33.950634;-155.547;-99999;-99999;-99999;0.197851012 83.934608;99.6903;-156.364;0.235458;-0.247396;0.93987;0.377377711 90.692734;53.710293;-104.021;-99999;-99999;-99999;0.714142154 99.939758;12.748728;-110.021;0.036328;-0.996805;0.071131;0.868351372 39.959244;-0.193036;-111.8;-99999;-99999;-99999;0.165089307 42.937283;9.802118;-170.015;-99999;-99999;-99999;0.620888161 292;20;-155.025;0.051988;0.144477;0.988142;0.797602517 67.939041;38.37484;-164.021;-99999;-99999;-99999;0.046065515 113.948051;73.799355;-98.0182;-99999;-99999;-99999;0.659975037 266;376;-153.392;-99999;-99999;-99999;0.323388418 138.16925;226.468903;-138.486;-99999;-99999;-99999;0.711394597 32;374;-140.866;0.019898;-0.258363;0.965843;0.367353599 288;190.162994;-136;0.167473;0.904895;0.391302;0.587863687 232;20;-85.1014;-99999;-99999;-99999;0.700193568 47.400265;103.87365;-162.009;-99999;-99999;-99999;0.645046692 151.441833;222.185501;-130.596;-99999;-99999;-99999;0.760975139 68.391174;85.697937;-130.022;-99999;-99999;-99999;0.524196912 233.470825;176.601151;-108.069;-99999;-99999;-99999;0.825646073 260;2;-155.259;-99999;-99999;-99999;0.654254791 99.411072;87.642097;-118.027;-99999;-99999;-99999;0.075992912 258;68;-145.287;-99999;-99999;-99999;0.345245349 97.92556;14.139957;-128.026;-99999;-99999;-99999;0.560345725 250;114.288002;-130;-99999;-99999;-99999;0.430023596 135.939468;154.308319;-154.021;-99999;-99999;-99999;0.351625254 246.685654;30;-98;-99999;-99999;-99999;0.428215409 101.940071;191.716156;-154.962;0.114157;-0.052428;0.992078;0.208348455 200.000015;43.59446;-130;-99999;-99999;-99999;0.626643155 298;93.918381;-124;0.370998;-0.493003;0.786961;0.09630413 139.970291;19.859297;-161.561;-99999;-99999;-99999;0.620496231 127.873695;343.681488;-106.024;0.73426;-0.222106;0.641507;0.715375295 122.68766;131.636429;-134.027;-99999;-99999;-99999;0.337328591 67.932335;31.679522;-156.778;-99999;-99999;-99999;0.715258388 280;131.093887;-138;0.022723;0.967565;-0.251598;0.206775196 244;36;-129.079;-99999;-99999;-99999;0.297942916 91.938835;59.7103;-103.576;-99999;-99999;-99999;0.099085425 145.956314;141.793106;-97.118;-99999;-99999;-99999;0.44829661 47.97089;129.885971;-132.01;-0.453523;-0.849487;0.269609;0.016932728 188.370911;185.925995;-150.005;-99999;-99999;-99999;0.745021855 296;378;-156.405;-99999;-99999;-99999;0.852946893 262.970551;52;-132;-99999;-99999;-99999;0.968635498 28.863365;79.925491;-158.006;-99999;-99999;-99999;0.155480446 3.999995;108.306198;-154;-99999;-99999;-99999;0.699700877 225.999985;105.162628;-130;-99999;-99999;-99999;0.71561851 119.902901;223.912491;-139.98;-99999;-99999;-99999;0.383367564 280;120;-102.617;-99999;-99999;-99999;0.959516569 109.941948;41.725048;-107.833;-99999;-99999;-99999;0.829013753 64.814819;85.713745;-136.021;-99999;-99999;-99999;0.926996109 175.94458;293.73114;-138.019;0.217228;-0.884429;0.413035;0.444557621 203.969635;367.725098;-150.011;0.217373;-0.971044;-0.099104;0.708854966 133.925903;225.623962;-146.756;0.318182;-0.872684;-0.370381;0.126039418 71.996315;353.982544;-143.395;-99999;-99999;-99999;0.345036299 91.960609;151.813431;-83.2593;-99999;-99999;-99999;0.950689415 177.428558;155.904465;-152.007;-99999;-99999;-99999;0.045217442 89.924927;86.352005;-120.026;-99999;-99999;-99999;0.067263777 75.935799;116.71701;-140.023;-99999;-99999;-99999;0.783987647 177.964096;233.829971;-148.831;-99999;-99999;-99999;0.523201432 46.487995;17.739241;-148.019;-99999;-99999;-99999;0.110548591 290;180;-103.539;0.126294;-0.192654;0.973105;0.6790959 ================================================ FILE: examples/data/input_data/Moureze/Sections_EW.csv ================================================ X;Y;0;PART_ID;Cutoff 298;372;-158.251;1;0.384161599 296.226807;372;-158.147;1;0.823710832 296.1362;372;-158.136;1;0.039695134 296;372;-158.12;1;0.917741761 295.487976;372;-158;1;0.903192752 294;372;-157.652;1;0.025113279 293.523773;372;-157.524;1;0.547702907 292;372;-157.113;1;0.128870538 290.73938;372;-156.739;1;0.961683412 290;372;-156.52;1;0.708647047 288.058472;372;-156;1;0.938660455 288;372;-155.984;1;0.795681281 287.981232;372;-155.981;1;0.127398688 286;372;-155.655;1;0.686708685 285.623291;372;-155.623;1;0.201524242 284;372;-155.484;1;0.159921528 283.468781;372;-155.469;1;0.708078765 282;372;-155.425;1;0.076759116 281.412628;372;-155.413;1;0.692810882 280;372;-155.382;1;0.179791355 279.363312;372;-155.363;1;0.641482867 278;372;-155.323;1;0.639242649 277.265137;372;-155.265;1;0.770643891 276;372;-155.165;1;0.886128259 275.093536;372;-155.094;1;0.723762095 274;372;-155.008;1;0.334053672 272.881195;372;-154.881;1;0.715849855 272;372;-154.782;1;0.200971833 270.579895;372;-154.58;1;0.072609954 270;372;-154.498;1;0.555812807 268.12677;372;-154.127;1;0.980290574 268;372;-154.102;1;0.9452363 267.351746;372;-154;1;0.63487998 266;372;-153.788;1;0.107220216 265.783813;372;-153.784;1;0.130578086 264;372;-153.749;1;0.500410067 263.774963;372;-153.775;1;0.342311169 262;372;-153.977;1;0.416953335 261.980499;372;-153.98;1;0.962620518 261.880951;372;-154;1;0.628009487 260.308044;372;-154.308;1;0.960091337 260;372;-154.368;1;0.410499329 258.665955;372;-154.666;1;0.044911964 258;372;-154.814;1;0.345832288 256.957489;372;-154.957;1;0.77181446 256;372;-155.089;1;0.573119224 255.13916;372;-155.139;1;0.787446714 254;372;-155.206;1;0.680800615 253.212555;372;-155.213;1;0.022615686 252;372;-155.223;1;0.465254988 251.195206;372;-155.195;1;0.382839604 249.999969;372;-155.154;1;0.591003231 249.141861;372;-155.142;1;0.757812184 248;372;-155.126;1;0.804137981 247.998886;372;-155.126;1;0.024547745 247.097748;372;-155.098;1;0.618523671 246;372;-155.064;1;0.691191597 245.999512;372;-155.064;1;0.86049754 245.997223;372;-155.063;1;0.658892721 244.989105;372;-154.989;1;0.001431419 244;372;-154.916;1;0.61411601 243.9991;372;-154.916;1;0.735591206 243.994812;372;-154.916;1;0.910767658 242.782196;372;-154.782;1;0.019016589 242;372;-154.696;1;0.142422305 241.998535;372;-154.696;1;0.21768247 241.991592;372;-154.695;1;0.908968325 240.474609;372;-154.475;1;0.054842282 240;372;-154.406;1;0.132778372 239.997833;372;-154.405;1;0.024479547 239.987549;372;-154.403;1;0.448765714 239.94928;372;-154.396;1;0.687753755 238.337631;372;-154.088;1;0.119127491 238.025986;372;-154.026;1;0.112968467 238;372;-154.021;1;0.783699925 237.996979;372;-154.02;1;0.743288278 237.919098;372;-154;1;0.10980532 236.084686;372;-153.523;1;0.794024906 236.01506;372;-153.505;1;0.669742133 236;372;-153.501;1;0.572770605 235.995956;372;-153.5;1;0.700083932 235.976746;372;-153.496;1;0.733338369 235.29126;372;-153.291;1;0.109129244 234.000015;372;-152.906;1;0.205565154 233.994797;372;-152.904;1;0.126697778 233.96994;372;-152.899;1;0.646556571 232.475281;372;-152.475;1;0.242762447 232;372;-152.341;1;0.033881852 231.993454;372;-152.339;1;0.42109094 230.476059;372;-152.013;1;0.661748449 230.440048;372;-152.007;1;0.802398689 230.403793;372;-152.004;1;0.082680555 230.354141;372;-152;1;0.597201666 230;372;-151.969;1;0.42641367 229.965469;372;-151.965;1;0.027369061 228;372;-151.791;1;0.06722491 227.990677;372;-151.79;1;0.414068779 227.791122;372;-151.791;1;0.658851505 226.039978;372;-151.801;1;0.506573572 225.999985;372;-151.801;1;0.782580579 225.989258;372;-151.801;1;0.254208968 225.818771;372;-151.819;1;0.004266681 224.080994;372;-152;1;0.207078484 224.075211;372;-152.001;1;0.56660595 224.006088;372;-152.006;1;0.521766161 224;372;-152.007;1;0.316173878 223.987885;372;-152.008;1;0.082051179 223.930206;372;-152.011;1;0.650154223 222.28009;372;-152.28;1;0.815119064 222;372;-152.326;1;0.158345838 221.986496;372;-152.328;1;0.957136824 221.922241;372;-152.332;1;0.137829604 220.531052;372;-152.531;1;0.847777507 220;372;-152.607;1;0.978057147 219.985046;372;-152.609;1;0.277452816 219.91391;372;-152.604;1;0.18700933 218.662613;372;-152.663;1;0.263153706 218;372;-152.693;1;0.630495581 217.983475;372;-152.694;1;0.724232438 217.904709;372;-152.673;1;0.203401496 216.572144;372;-152.572;1;0.900089455 216;372;-152.529;1;0.889217371 215.981689;372;-152.528;1;0.773563201 214.075699;372;-152.056;1;0.813566887 214.012955;372;-152.013;1;0.439604185 214;372;-152.004;1;0.099662024 213.994003;372;-152;1;0.722625614 213.979614;372;-151.99;1;0.404924141 213.737457;372;-151.819;1;0.328862488 212;372;-150.752;1;0.373831169 211.97699;372;-150.738;1;0.263648929 211.478729;372;-150.433;1;0.916361085 211.178253;372;-150.009;1;0.732009859 211.173965;372;-150;1;0.36258254 210.374893;372;-148.41;1;0.790316406 210.326691;372;-148.327;1;0.202368067 210.144089;372;-148.01;1;0.9118012 210.139832;372;-148;1;0.538543113 210.0737;372;-147.838;1;0.459093432 210;372;-147.574;1;0.92148247 209.563751;372;-146.01;1;0.83587341 209.560181;372;-146;1;0.701127467 209.515381;372;-145.874;1;0.382328471 209.348816;372;-145.349;1;0.512063984 208.924652;372;-144.011;1;0.582676777 208.921143;372;-144;1;0.202469614 208.39444;372;-142.394;1;0.119937942 208.378632;372;-142.346;1;0.868657298 208.303482;372;-142.131;1;0.349702599 208.246552;372;-142;1;0.527418446 208.104309;372;-141.674;1;0.405684376 208;372;-141.438;1;0.482597249 207.367172;372;-140.012;1;0.581955138 207.363541;372;-140;1;0.357478862 207.310059;372;-139.82;1;0.216788179 207.07457;372;-139.075;1;0.782630301 206.739319;372;-138.013;1;0.902734855 206.738937;372;-138;1;0.417958073 206.701614;372;-136.752;1;0.382267075 206.697693;372;-136.698;1;0.350515121 206.648468;372;-136.013;1;0.812558275 206.649933;372;-136;1;0.946031742 206.783676;372;-134.784;1;0.279317836 206.847351;372;-134.205;1;0.748717555 206.863968;372;-134.014;1;0.178723744 206.866898;372;-134;1;0.204570524 207.067368;372;-133.067;1;0.381556629 207.246368;372;-132.235;1;0.964988032 207.298859;372;-132.014;1;0.789713663 207.303024;372;-132;1;0.386026096 207.464066;372;-131.464;1;0.03871871 207.793655;372;-130.367;1;0.716186159 207.914169;372;-130.014;1;0.172893466 207.922134;372;-130;1;0.876639772 207.9505;372;-129.951;1;0.942328409 208;372;-129.864;1;0.140277272 208.08374;372;-129.718;1;0.264794369 208.607513;372;-128.608;1;0.359475807 208.887558;372;-128.014;1;0.625401382 208.896194;372;-128;1;0.08496158 209.321457;372;-127.321;1;0.501688256 209.961441;372;-126.3;1;0.401291512 210;372;-126.254;1;0.350042142 210.115082;372;-126.115;1;0.051942129 210.201324;372;-126.011;1;0.041862203 210.204773;372;-126;1;0.046074275 210.617691;372;-124.669;1;0.022672067 210.635666;372;-124.636;1;0.308294965 210.967239;372;-124.013;1;0.378685336 210.964798;372;-124;1;0.324794367 210.744232;372;-122.796;1;0.693688434 210.734741;372;-122.735;1;0.568984228 210.623917;372;-122.014;1;0.00870513 210.61557;372;-122;1;0.758322357 210.333832;372;-121.538;1;0.864627783 210;372;-120.964;1;0.499452742 209.439072;372;-120;1;0.379642346 209.416351;372;-119.961;1;0.800725177 209.251099;372;-119.75;1;0.326444532 208.445663;372;-118.446;1;0.717204346 208.179749;372;-118.015;1;0.162247211 208.171555;372;-118;1;0.221923242 208;372;-117.686;1;0.254041738 207.243729;372;-116.299;1;0.181986907 207.047333;372;-116.016;1;0.697011261 207.037979;372;-116;1;0.772379847 206.917755;372;-115.799;1;0.715201843 206.565384;372;-114.565;1;0.251510921 206.403931;372;-114;1;0.643248701 206.170563;372;-113.183;1;0.282260705 206.108444;372;-113.005;1;0.20182025 206.092163;372;-112.092;1;0.833483188 206.090515;372;-112;1;0.196766112 206.056961;372;-110.119;1;0.089168318 206.055496;372;-110.056;1;0.381585489 206.054581;372;-110.016;1;0.190731157 206.054489;372;-110;1;0.617319374 206.043076;372;-108.166;1;0.207445091 206.046814;372;-108.047;1;0.536102128 206.047775;372;-108.016;1;0.661255896 206.046356;372;-108;1;0.448050737 206;372;-107.478;1;0.859150694 205.883804;372;-106.17;1;0.089525671 205.880219;372;-106.016;1;0.080823036 205.875687;372;-106;1;0.841169955 205.826416;372;-105.826;1;0.878501242 205.761536;372;-105.598;1;0.779296342 205.013184;372;-104.016;1;0.615460065 204.999847;372;-104;1;0.611349892 204.633331;372;-103.555;1;0.084609033 204;372;-102.917;1;0.433743242 203.952942;372;-102.87;1;0.522960991 202.459595;372;-102.256;1;0.161454168 202.202759;372;-102.203;1;0.023250417 202.182953;372;-102.199;1;0.244613559 202;372;-102.172;1;0.917338074 201.950775;372;-102.164;1;0.473646847 200.104584;372;-102.064;1;0.827792682 200.061188;372;-102.061;1;0.920948877 200.000015;372;-102.058;1;0.301948711 199.948502;372;-102.054;1;0.789849706 198.310349;372;-102.31;1;0.038527708 198.200211;372;-102.328;1;0.817148576 198;372;-102.363;1;0.726381534 197.946121;372;-102.373;1;0.236512567 197.689194;372;-102.418;1;0.007141926 196.597809;372;-102.598;1;0.252675906 196;372;-102.696;1;0.636562238 195.943802;372;-102.705;1;0.003643771 194.878784;372;-102.879;1;0.077376019 194.217285;372;-102.986;1;0.831992192 194;372;-103.015;1;0.593328167 193.941544;372;-103.023;1;0.537125222 193.054504;372;-103.055;1;0.791437738 192.29071;372;-103.082;1;0.658742955 192.008682;372;-103.123;1;0.760157713 191.999985;372;-103.123;1;0.883778182 191.650818;372;-103.128;1;0.277236327 191.013931;372;-103.014;1;0.410221007 190;372;-102.833;1;0.812357319 189.937515;372;-102.822;1;0.077312303 188.240875;372;-102.028;1;0.854319416 188.093277;372;-102;1;0.305826356 188;372;-101.982;1;0.821056743 187.977982;372;-101.978;1;0.216924186 187.938263;372;-101.97;1;0.884316319 187.633331;372;-101.861;1;0.724698923 186;372;-100.944;1;0.638416753 185.934494;372;-100.907;1;0.363834508 185.64566;372;-100.771;1;0.122975576 184.404068;372;-100.023;1;0.416799127 184.36087;372;-100;1;0.930752695 184.082001;372;-99.8493;1;0.332101188 184;372;-99.8049;1;0.762642698 183.574753;372;-99.5748;1;0.565395137 182;372;-98.7223;1;0.790175538 181.932236;372;-98.6856;1;0.250748133 181.670761;372;-98.5602;1;0.259750477 180.414688;372;-98;1;0.08874392 180;372;-97.815;1;0.582800562 179.931244;372;-97.7844;1;0.155101787 179.671341;372;-97.6713;1;0.121926305 179.604828;372;-97.6424;1;0.67220394 178;372;-97.0477;1;0.590151953 177.930344;372;-97.0219;1;0.499276777 177.59964;372;-96.9133;1;0.986208007 176.607147;372;-96.6071;1;0.392853948 176;372;-96.4198;1;0.674066538 175.929504;372;-96.3981;1;0.707686336 175.697617;372;-96.3279;1;0.633091514 174.634247;372;-96;1;0.532079654 174.032181;372;-95.8143;1;0.326577598 174.000015;372;-95.8052;1;0.794971338 173.727615;372;-95.7276;1;0.451498768 173.59108;372;-95.6887;1;0.330751663 172;372;-95.2398;1;0.260719285 171.928223;372;-95.2196;1;0.991102769 171.58783;372;-95.1466;1;0.680062067 171.025528;372;-95.0255;1;0.54614356 170;372;-94.8046;1;0.791056785 169.927719;372;-94.7891;1;0.647920195 169.584991;372;-94.7258;1;0.043379951 168.553055;372;-94.5531;1;0.783605703 168;372;-94.4605;1;0.719234511 167.927292;372;-94.4483;1;0.855639442 167.582581;372;-94.4092;1;0.564563844 166.284363;372;-94.2843;1;0.066326799 166.000015;372;-94.257;1;0.398541431 165.926926;372;-94.25;1;0.842049593 165.58049;372;-94.2277;1;0.717821761 164.170914;372;-94.1709;1;0.60876526 164;372;-94.164;1;0.437139364 163.92659;372;-94.1611;1;0.099163865 163.629898;372;-94.1436;1;0.784507125 162.096832;372;-94.0968;1;0.515895015 162;372;-94.0939;1;0.268569126 161.977615;372;-94.0932;1;0.054311118 160.027771;372;-94.0278;1;0.765657248 160;372;-94.0268;1;0.921621411 159.971146;372;-94.0259;1;0.67592319 159.926376;372;-94.0236;1;0.740535222 159.162567;372;-94;1;0.418591578 158.274811;372;-93.9726;1;0.545796598 157.999985;372;-93.9536;1;0.525228595 157.95018;372;-93.9502;1;0.068361244 157.926468;372;-93.9486;1;0.760700507 157.578522;372;-93.9347;1;0.431909427 156.012573;372;-93.9673;1;0.84120153 156;372;-93.9679;1;0.268344507 155.969406;372;-93.9694;1;0.209117075 155.346283;372;-94;1;0.348553837 154.273209;372;-94.0527;1;0.479422859 154.047119;372;-94.0471;1;0.510816057 154;372;-94.046;1;0.627000055 153.926941;372;-94.0442;1;0.241149782 152.271927;372;-94.2069;1;0.878167918 152.208801;372;-94.2088;1;0.491647672 152;372;-94.215;1;0.028416334 151.927307;372;-94.2172;1;0.298727971 151.583511;372;-94.2417;1;0.727948465 150.444595;372;-94.4446;1;0.289464368 150;372;-94.5238;1;0.119023816 149.927704;372;-94.5367;1;0.943105087 148.738861;372;-94.7389;1;0.337617078 148.268509;372;-94.8189;1;0.012929067 148;372;-94.8494;1;0.586556314 147.989151;372;-94.8506;1;0.15381211 147.588898;372;-94.9505;1;0.671481858 147.076065;372;-95.0761;1;0.055054648 146;372;-95.3395;1;0.817304534 145.928802;372;-95.3569;1;0.880869417 145.540375;372;-95.5404;1;0.135484032 145.424881;372;-95.5949;1;0.450224448 144.33519;372;-96;1;0.955828108 144.268311;372;-96.0249;1;0.508453916 144.165649;372;-96.1656;1;0.301467439 144;372;-96.3928;1;0.84154156 143.322235;372;-97.3222;1;0.397465114 143.055344;372;-97.6882;1;0.823549319 142.894012;372;-98;1;0.316318959 142.881073;372;-98.025;1;0.551851344 143.241379;372;-99.2414;1;0.806411258 143.282394;372;-99.3799;1;0.214073308 143.504715;372;-100;1;0.564878077 143.513855;372;-100.026;1;0.323423101 143.926987;372;-100.375;1;0.78137761 144;372;-100.431;1;0.515808358 144.30484;372;-100.664;1;0.567426105 145.68013;372;-102;1;0.981600661 145.707138;372;-102.026;1;0.639332867 146;372;-102.278;1;0.706977868 146.333481;372;-102.564;1;0.330000248 147.286209;372;-104;1;0.466109311 147.303986;372;-104.027;1;0.76926695 146.908615;372;-104.909;1;0.858593947 146.419281;372;-106;1;0.770466803 146.28949;372;-106.289;1;0.618761007 146.198685;372;-106.492;1;0.661392843 146.233917;372;-106.88;1;0.598823146 146.072083;372;-107.217;1;0.679921106 146;372;-107.296;1;0.185086249 145.664978;372;-107.665;1;0.924508401 145.360641;372;-108;1;0.201093137 145.336258;372;-108.027;1;0.624436683 145.019989;372;-108.388;1;0.060275405 144.703186;372;-108.703;1;0.73974697 144;372;-109.402;1;0.593743722 143.700195;372;-109.7;1;0.736529309 143.398575;372;-110;1;0.902114435 143.371826;372;-110.027;1;0.287025201 143.179733;372;-110.265;1;0.482374939 142.75975;372;-110.76;1;0.488400142 142;372;-111.655;1;0.050437203 141.84169;372;-111.842;1;0.744905125 141.78569;372;-111.908;1;0.434439559 141.716736;372;-112;1;0.501733252 141.431015;372;-112.382;1;0.134918771 140.943253;372;-112.943;1;0.052811334 140.276169;372;-113.71;1;0.237920288 140;372;-113.89;1;0.196635348 139.933334;372;-113.933;1;0.115308897 139.830917;372;-114;1;0.164987542 139.745941;372;-114.055;1;0.782209239 139.419876;372;-114.244;1;0.55710431 138.704849;372;-114.705;1;0.915490873 138;372;-115.159;1;0.533372834 137.927841;372;-115.205;1;0.33958968 137.391647;372;-115.392;1;0.689246488 136.4198;372;-115.73;1;0.802533252 136;372;-115.795;1;0.987570474 135.929459;372;-115.806;1;0.119844302 135.823074;372;-115.823;1;0.506229515 134.702133;372;-116;1;0.380839208 134.25827;372;-116.07;1;0.981694521 134.082794;372;-116.083;1;0.924732674 134;372;-116.089;1;0.788890793 133.931168;372;-116.094;1;0.221280359 132.251572;372;-116.101;1;0.088264262 132.096359;372;-116.096;1;0.751441474 132;372;-116.093;1;0.429816401 131.932953;372;-116.091;1;0.726228025 130.959122;372;-116;1;0.094323724 130.906799;372;-115.995;1;0.875200419 130.164383;372;-115.924;1;0.625899424 130;372;-115.918;1;0.894500656 129.93483;372;-115.916;1;0.598947305 129.911957;372;-115.912;1;0.396879191 128.933426;372;-115.736;1;0.94800036 128;372;-115.582;1;0.378252223 127.936806;372;-115.572;1;0.394978518 127.639236;372;-115.511;1;0.519226979 127.467606;372;-115.468;1;0.634066371 126;372;-115.098;1;0.483655919 125.938858;372;-115.083;1;0.447125591 125.651001;372;-115.026;1;0.537260811 124.757408;372;-114.757;1;0.349976972 124;372;-114.53;1;0.797448905 123.551613;372;-114.395;1;0.886320982 122.241531;372;-114.02;1;0.878814777 122.206848;372;-114;1;0.347187107 122.100761;372;-113.939;1;0.341044366 122;372;-113.889;1;0.654504557 121.943207;372;-113.861;1;0.09879739 121.860794;372;-113.861;1;0.320241827 121.760834;372;-113.861;1;0.147818834 121.314728;372;-114;1;0.179322491 121.251747;372;-114.02;1;0.32067719 120.243042;372;-114.243;1;0.636932988 120;372;-114.297;1;0.01482394 119.346512;372;-114.442;1;0.201780855 118.665787;372;-114.666;1;0.69638117 118;372;-114.885;1;0.320419338 117.947876;372;-114.902;1;0.536169842 117.368065;372;-115.368;1;0.906344272 116.581512;372;-116;1;0.724184547 116.283073;372;-116.24;1;0.857056516 116.260712;372;-116.261;1;0.080282182 116;372;-116.505;1;0.724333993 115.95034;372;-116.551;1;0.277302214 115.218842;372;-117.219;1;0.014134916 114.362717;372;-118;1;0.334794199 114.247353;372;-118.105;1;0.557398465 114.189697;372;-118.19;1;0.42294535 114;372;-118.468;1;0.460608898 113.952972;372;-118.536;1;0.054740407 113.32296;372;-119.323;1;0.719435562 112.780685;372;-120;1;0.178078538 112.767914;372;-120.016;1;0.115547871 112.652771;372;-120.653;1;0.827105882 112.481773;372;-121.598;1;0.00671062 112.491493;372;-122;1;0.689683319 112.491875;372;-122.016;1;0.487098512 113.621696;372;-123.579;1;0.634824688 114;372;-123.921;1;0.293087006 114.087547;372;-124;1;0.962270111 114.105453;372;-124.016;1;0.011194959 116;372;-125.342;1;0.962909088 116.254463;372;-125.52;1;0.543293717 117.026764;372;-126;1;0.945597535 117.054405;372;-126.017;1;0.878021131 117.950279;372;-126.692;1;0.156216477 118;372;-126.736;1;0.080554651 119.06575;372;-127.672;1;0.036020351 119.407547;372;-128;1;0.863555662 119.948761;372;-128.519;1;0.109621874 120;372;-128.575;1;0.755011177 120.946144;372;-129.594;1;0.439341349 121.224266;372;-130;1;0.906236589 121.947807;372;-131.056;1;0.613176541 122;372;-131.151;1;0.800559683 122.466873;372;-132;1;0.402327451 122.510963;372;-132.08;1;0.438312188 122.80706;372;-132.807;1;0.005288489 122.886833;372;-133.003;1;0.153836005 123.199554;372;-134;1;0.998550639 123.205269;372;-134.018;1;0.61630258 123.10865;372;-134.858;1;0.662141247 123.089836;372;-135.09;1;0.882361845 123.015945;372;-136;1;0.920040765 123.014503;372;-136.018;1;0.271694967 122.708603;372;-136.709;1;0.221652147 122.485107;372;-137.213;1;0.462811311 122.055748;372;-138;1;0.123284305 122.046516;372;-138.017;1;0.90468474 122.032631;372;-138.033;1;0.592639486 122;372;-138.07;1;0.323227859 121.612579;372;-138.508;1;0.174153993 121.173904;372;-139.174;1;0.222672207 120.629433;372;-140;1;0.239933984 120.421272;372;-140.316;1;0.100475982 120.372772;372;-140.373;1;0.108238718 120;372;-140.81;1;0.650808424 119.955994;372;-140.862;1;0.839629028 119.408485;372;-141.408;1;0.25338819 118.815842;372;-142;1;0.584844321 118.492081;372;-142.323;1;0.857434657 118.385971;372;-142.386;1;0.344255788 118;372;-142.614;1;0.821707642 117.959274;372;-142.639;1;0.498548458 117.038742;372;-143.039;1;0.889532423 116.204613;372;-143.401;1;0.818131661 116;372;-143.408;1;0.554939406 115.961838;372;-143.409;1;0.224269835 115.782005;372;-143.376;1;0.788494086 115.416588;372;-143.417;1;0.037055381 114;372;-143.574;1;0.666061594 113.963974;372;-143.578;1;0.990872514 113.794281;372;-143.554;1;0.165439743 113.561043;372;-143.561;1;0.06795814 112;372;-143.607;1;0.470114727 111.966034;372;-143.609;1;0.571178057 111.805992;372;-143.581;1;0.840085926 111.5616;372;-143.562;1;0.550327024 110;372;-143.439;1;0.829445196 109.967972;372;-143.437;1;0.177045861 109.817039;372;-143.408;1;0.321603792 109.34446;372;-143.344;1;0.904925723 108;372;-143.162;1;0.512339969 107.969849;372;-143.158;1;0.075205775 107.827744;372;-143.119;1;0.152101473 106.891441;372;-142.891;1;0.059110509 106;372;-142.675;1;0.707394956 105.971611;372;-142.668;1;0.197685751 105.866867;372;-142.64;1;0.219963651 104.229736;372;-142.23;1;0.046862842 104.000824;372;-142.172;1;0.072604214 104;372;-142.172;1;0.870261112 103.310555;372;-142;1;0.947030777 102.118973;372;-141.703;1;0.329011274 102;372;-141.668;1;0.831511679 101.975159;372;-141.661;1;0.228830479 101.581451;372;-141.581;1;0.517059555 100.086365;372;-141.28;1;0.453788304 100.000008;372;-141.264;1;0.847901907 99.976997;372;-141.26;1;0.689769134 99.10997;372;-141.11;1;0.056856285 98.07946;372;-140.932;1;0.307292063 98;372;-140.918;1;0.070718806 97.978821;372;-140.914;1;0.969104522 96.703239;372;-140.703;1;0.223476725 96.072639;372;-140.599;1;0.327496056 95.999992;372;-140.588;1;0.147636849 95.980629;372;-140.584;1;0.019006276 95.876526;372;-140.569;1;0.828535266 94.373123;372;-140.373;1;0.62765757 94;372;-140.324;1;0.759679068 93.982445;372;-140.322;1;0.016481966 93.093781;372;-140.19;1;0.563229033 92.079048;372;-140.036;1;0.594911349 92.032402;372;-140.032;1;0.743967866 92;372;-140.03;1;0.514515916 91.984177;372;-140.029;1;0.371690696 91.803688;372;-140;1;0.811187465 90.769341;372;-139.836;1;0.573920896 90.053047;372;-139.72;1;0.186328625 90;372;-139.711;1;0.528958796 89.985855;372;-139.708;1;0.73817008 89.643929;372;-139.644;1;0.388879974 88.04705;372;-139.343;1;0.383828945 88;372;-139.332;1;0.042097843 87.987457;372;-139.329;1;0.055566846 87.123451;372;-139.123;1;0.58315449 86.04142;372;-138.866;1;0.379539537 86;372;-138.857;1;0.97022159 85.98896;372;-138.854;1;0.414917532 85.958153;372;-138.848;1;0.96719285 84.473;372;-138.473;1;0.462514866 84.009041;372;-138.356;1;0.205070658 84;372;-138.354;1;0.176480722 82.046898;372;-138.035;1;0.035786581 82.032623;372;-138.033;1;0.204488033 82;372;-138.027;1;0.110251758 81.991783;372;-138.026;1;0.195054095 81.677231;372;-138;1;0.80900629 80.025803;372;-137.864;1;0.340974714 80;372;-137.863;1;0.608051694 79.993111;372;-137.863;1;0.776053112 79.960625;372;-137.866;1;0.811572196 79.870872;372;-137.871;1;0.434071814 78;372;-137.972;1;0.040763461 77.973564;372;-137.974;1;0.432927981 77.53083;372;-137.998;1;0.560238492 77.51783;372;-138;1;0.73289922 77.505692;372;-138.002;1;0.78294076 76.159271;372;-138.159;1;0.394903355 76;372;-138.178;1;0.610808914 75.995575;372;-138.178;1;0.680974182 75.974686;372;-138.182;1;0.241722918 74.404045;372;-138.404;1;0.652118396 74;372;-138.461;1;0.730081029 73.996628;372;-138.462;1;0.967806045 73.980721;372;-138.464;1;0.716970312 72.636986;372;-138.637;1;0.643899601 72;372;-138.719;1;0.21109539 71.997543;372;-138.719;1;0.981624076 71.985947;372;-138.72;1;0.806568929 70.846123;372;-138.846;1;0.271532889 70;372;-138.939;1;0.181546048 69.998322;372;-138.94;1;0.389078671 69.990372;372;-138.94;1;0.901356175 69.033974;372;-139.034;1;0.407191261 68;372;-139.136;1;0.947720169 67.998947;372;-139.136;1;0.3819365 67.99395;372;-139.136;1;0.765849095 67.211067;372;-139.211;1;0.322214583 66;372;-139.327;1;0.272261597 65.999428;372;-139.328;1;0.258339225 65.996712;372;-139.328;1;0.896753803 65.390144;372;-139.39;1;0.476489561 63.999767;372;-139.533;1;0.032491216 63.998669;372;-139.533;1;0.45635688 63.564583;372;-139.565;1;0.1527751 61.999954;372;-139.677;1;0.798333992 61.682545;372;-139.683;1;0.378910006 60;372;-139.713;1;0.76694318 59.69619;372;-139.696;1;0.68407064 59.296177;372;-139.674;1;0.99454639 58;372;-139.654;1;0.295297386 57.618999;372;-139.619;1;0.198827131 56;372;-139.472;1;0.917302274 55.401508;372;-139.402;1;0.610319225 54;372;-139.237;1;0.036697404 53.149593;372;-139.15;1;0.884811106 52;372;-139.031;1;0.671496901 50.977245;372;-138.977;1;0.784255449 50.000004;372;-138.926;1;0.699795138 48.951942;372;-138.952;1;0.701897753 47.999996;372;-138.976;1;0.674606096 47.090855;372;-139.091;1;0.041847394 46;372;-139.229;1;0.881578158 45.358646;372;-139.359;1;0.570989937 44;372;-139.634;1;0.212901483 43.702774;372;-139.703;1;0.443881549 42.421349;372;-140;1;0.749912378 42.071022;372;-140.071;1;0.882704006 42;372;-140.085;1;0.043983761 40.408146;372;-140.408;1;0.32104336 40;372;-140.491;1;0.042673445 38.709949;372;-140.71;1;0.943833913 38;372;-140.831;1;0.495685054 36.979664;372;-140.98;1;0.364585634 36;372;-141.123;1;0.455616215 35.197262;372;-141.197;1;0.798150891 34;372;-141.308;1;0.228191631 33.309849;372;-141.31;1;0.634268149 32;372;-141.313;1;0.321714851 31.258694;372;-141.259;1;0.279013621 30;372;-141.167;1;0.796329663 28.990602;372;-140.991;1;0.157142313 28;372;-140.818;1;0.630810995 26.519003;372;-140.519;1;0.80504964 26;372;-140.414;1;0.31891705 24.097015;372;-140;1;0.672104478 23.999998;372;-139.979;1;0.800333672 23.974417;372;-139.974;1;0.256775788 22;372;-139.63;1;0.811275594 21.572119;372;-139.572;1;0.960955555 20;372;-139.36;1;0.229048723 19.261337;372;-139.261;1;0.344465781 18;372;-139.094;1;0.724794209 16.921587;372;-138.922;1;0.986663666 16;372;-138.775;1;0.190687986 14.447661;372;-138.448;1;0.365618957 14;372;-138.353;1;0.228286142 12.727297;372;-138;1;0.907807285 11.999999;372;-137.798;1;0.768740641 11.696889;372;-137.697;1;0.431304595 10;372;-137.131;1;0.185433692 8.607534;372;-136.608;1;0.725101328 8;372;-136.379;1;0.519542195 6.864918;372;-136;1;0.962465245 6;372;-135.711;1;0.185280809 5.589578;372;-135.59;1;0.124496014 4;372;-135.119;1;0.837548693 2.551749;372;-134.552;1;0.275735575 2;372;-134.335;1;0.517547164 1.144296;372;-134;1;0.244836682 0;372;-133.637;1;0.15649061 298;334;-167.595;2;0.090518688 297.609344;334;-167.609;2;0.566182761 296;334;-167.668;2;0.126427613 295.720337;334;-167.72;2;0.922592425 294.220612;334;-168;2;0.351946922 294.034668;334;-168.035;2;0.541583261 294;334;-168.041;2;0.922459564 292.32251;334;-168.323;2;0.718136532 292;334;-168.377;2;0.082436456 290.489349;334;-168.489;2;0.281959398 290;334;-168.526;2;0.879388723 288.4617;334;-168.462;2;0.993876925 288;334;-168.442;2;0.771754976 286.030975;334;-168.031;2;0.834161134 286;334;-168.025;2;0.102335418 285.882721;334;-168;2;0.751035427 284;334;-166.661;2;0.068722689 283.541473;334;-166;2;0.124549525 282.505249;334;-164.505;2;0.579335197 282.154968;334;-164;2;0.174715249 282;334;-163.776;2;0.208164395 281.061737;334;-162;2;0.046868057 280;334;-160.772;2;0.815183104 279.459625;334;-160;2;0.925598394 278.201141;334;-158.201;2;0.436370502 278.142365;334;-158.117;2;0.615883239 278.066742;334;-158;2;0.815064841 278;334;-157.807;2;0.655457242 277.458038;334;-156;2;0.825038906 277.2229;334;-155.223;2;0.168755531 276.852875;334;-154;2;0.743931943 276;334;-152.552;2;0.997151493 275.357574;334;-152;2;0.748602474 274;334;-150.834;2;0.96045315 272.043152;334;-150;2;0.012670636 272;334;-149.982;2;0.233510951 271.97934;334;-149.979;2;0.775048667 270;334;-149.761;2;0.969017812 269.762115;334;-149.762;2;0.834234318 268;334;-149.769;2;0.164538207 267.774475;334;-149.774;2;0.952881516 266;334;-149.82;2;0.6271019 265.824646;334;-149.825;2;0.858756619 264;334;-149.872;2;0.795886418 263.846069;334;-149.846;2;0.805931981 262;334;-149.54;2;0.320292088 260.677643;334;-148.678;2;0.883777389 260;334;-148.236;2;0.829878801 259.63855;334;-148;2;0.143137481 259.477753;334;-147.478;2;0.331914509 259.022736;334;-146;2;0.755117923 259.125427;334;-145.125;2;0.068042835 259.257599;334;-144;2;0.372354814 259.461975;334;-143.462;2;0.858936389 259.98465;334;-142.086;2;0.43205631 260;334;-142.043;2;0.658566799 260.011383;334;-142.011;2;0.458205408 260.015472;334;-142;2;0.635645157 260.054932;334;-141.914;2;0.083041304 260.703186;334;-140.703;2;0.270283523 261.07959;334;-140;2;0.042145114 261.416565;334;-139.417;2;0.987239835 262;334;-138.406;2;0.732853984 262.153473;334;-138.153;2;0.733202293 262.246582;334;-138;2;0.893919531 262.90863;334;-136.909;2;0.78740629 263.459808;334;-136;2;0.509580264 263.647003;334;-135.647;2;0.598771543 264;334;-134.981;2;0.034711411 264.328827;334;-134.329;2;0.77245968 264.494507;334;-134;2;0.817168005 264.998901;334;-132.999;2;0.622131752 265.502228;334;-132;2;0.616058994 265.611298;334;-131.611;2;0.007635936 266;334;-130.226;2;0.369714007 266.031525;334;-130.032;2;0.890312348 266.036652;334;-130;2;0.862718159 266.310852;334;-128.311;2;0.41276162 266.361298;334;-128;2;0.650736869 266.292114;334;-126.292;2;0.190581191 266.280273;334;-126;2;0.619905634 266;334;-124.779;2;0.317687911 265.821259;334;-124;2;0.132515301 265.68988;334;-123.69;2;0.03617586 264.973938;334;-122;2;0.354541396 264.201996;334;-120.202;2;0.824341179 264.115265;334;-120;2;0.014118126 264;334;-119.593;2;0.87337001 263.983002;334;-119.533;2;0.17904081 263.669495;334;-118;2;0.26835645 263.585022;334;-117.585;2;0.452834154 263.262329;334;-116;2;0.445422815 263.020691;334;-115.021;2;0.136661413 262.76886;334;-114;2;0.155173302 262;334;-112.115;2;0.059619326 261.953278;334;-112;2;0.625921883 261.900085;334;-111.9;2;0.479398237 260.888519;334;-110;2;0.600851848 260.30368;334;-108.304;2;0.783499999 260.198975;334;-108;2;0.497362211 260.077209;334;-106.077;2;0.182164085 260.072327;334;-106;2;0.112359543 260.23172;334;-104.232;2;0.983211727 260.252594;334;-104;2;0.101577585 260.477905;334;-102.478;2;0.384848427 260.548645;334;-102;2;0.639193521 260.697266;334;-100.697;2;0.905169315 260.776825;334;-100;2;0.686948984 260.246674;334;-98.2467;2;0.601414911 260.172089;334;-98;2;0.421707216 260;334;-97.4309;2;0.395768429 258.333771;334;-96.3338;2;0.206304169 258;334;-96.114;2;0.558296396 257.826874;334;-96;2;0.429421213 256;334;-95.4498;2;0.546698771 255.280838;334;-95.2808;2;0.477883316 254;334;-94.9799;2;0.512860333 252.629547;334;-94.6296;2;0.972470716 252;334;-94.4686;2;0.352947702 250.362701;334;-94;2;0.906565105 250;334;-93.8707;2;0.095027987 249.799072;334;-93.7991;2;0.424766788 248;334;-93.1576;2;0.85501557 247.998932;334;-93.1573;2;0.261115304 246.613251;334;-92.6132;2;0.869934005 246;334;-92.3725;2;0.041710819 245.999542;334;-92.3723;2;0.400527145 244.960403;334;-92;2;0.249502394 244.003128;334;-91.657;2;0.139233433 244;334;-91.6559;2;0.639270694 243.999161;334;-91.6556;2;0.596280844 243.995193;334;-91.6546;2;0.476757829 243.543777;334;-91.5438;2;0.301082101 242;334;-91.1649;2;0.318711504 241.998642;334;-91.1645;2;0.065923342 241.088409;334;-91.0884;2;0.403456384 240.007523;334;-90.998;2;0.841839529 240;334;-90.9971;2;0.898209751 239.997986;334;-90.9968;2;0.530287434 239.988403;334;-90.9968;2;0.540672721 239.033356;334;-91.0334;2;0.628851958 238;334;-91.0729;2;0.330378111 237.997162;334;-91.073;2;0.768559517 237.983688;334;-91.0737;2;0.790439638 237.133179;334;-91.1332;2;0.308872247 236;334;-91.2124;2;0.858494804 235.996201;334;-91.2127;2;0.007324393 235.978165;334;-91.215;2;0.529973491 235.299026;334;-91.299;2;0.264215268 234.000015;334;-91.4598;2;0.285028411 233.995117;334;-91.4604;2;0.995086764 233.971786;334;-91.4644;2;0.367130443 233.546967;334;-91.547;2;0.782687295 232;334;-91.8474;2;0.738084929 231.99382;334;-91.8486;2;0.194020369 231.873383;334;-91.8734;2;0.77364451 231.258698;334;-92;2;0.170045278 230.214981;334;-92.215;2;0.763276313 230.028244;334;-92.2534;2;0.957709882 230;334;-92.2625;2;0.295736463 229.992432;334;-92.2649;2;0.353556125 229.956345;334;-92.2798;2;0.1130284 228.698975;334;-92.699;2;0.651308802 228;334;-92.932;2;0.986617104 227.990829;334;-92.9351;2;0.362685383 227.948746;334;-92.957;2;0.667144319 227.249176;334;-93.2492;2;0.610415586 225.999985;334;-93.7709;2;0.977231369 225.989044;334;-93.7755;2;0.740192016 225.936981;334;-93.8021;2;0.537367186 225.84198;334;-93.842;2;0.515114501 225.465927;334;-94;2;0.533733338 224.433685;334;-94.4337;2;0.347867127 224;334;-94.6159;2;0.327169753 223.987183;334;-94.6213;2;0.16233925 223.034348;334;-95.0343;2;0.38491583 222.055176;334;-95.4588;2;0.549564459 222;334;-95.4896;2;0.983793636 221.985168;334;-95.4979;2;0.861377403 221.665924;334;-95.6659;2;0.504694641 221.031113;334;-96;2;0.351692196 220.355545;334;-96.3555;2;0.504628937 220.063278;334;-96.5093;2;0.504102715 220;334;-96.5454;2;0.367347974 219.982971;334;-96.5551;2;0.8929919 219.744034;334;-96.7019;2;0.511405278 219.113266;334;-97.1133;2;0.370126638 218.425339;334;-97.5619;2;0.197349272 218;334;-97.7788;2;0.533775548 217.980652;334;-97.7886;2;0.861978442 217.859955;334;-97.86;2;0.264813845 217.622955;334;-98;2;0.177877632 217.611191;334;-98.007;2;0.23328908 216.583801;334;-98.5838;2;0.828449658 216.273712;334;-98.7579;2;0.479055788 216;334;-98.9238;2;0.060961789 215.978241;334;-98.937;2;0.413250273 215.275589;334;-99.2756;2;0.91760192 214;334;-99.8903;2;0.866870641 213.92598;334;-99.926;2;0.551129813 213.774719;334;-99.9989;2;0.309673579 213.772461;334;-100;2;0.020034945 213.658951;334;-100.056;2;0.011982587 213.54184;334;-100.098;2;0.600917878 212.443619;334;-100.444;2;0.140470106 212;334;-100.583;2;0.86393199 211.973389;334;-100.592;2;0.581065619 211.846466;334;-100.619;2;0.110659915 210.822357;334;-100.822;2;0.276142819 210;334;-100.986;2;0.918463998 209.970993;334;-100.992;2;0.959651317 209.11528;334;-101.115;2;0.45071729 208.116699;334;-101.26;2;0.544870602 208;334;-101.28;2;0.930679181 207.968582;334;-101.286;2;0.115417623 207.68129;334;-101.32;2;0.293131974 207.366318;334;-101.366;2;0.868812981 206.48111;334;-101.497;2;0.205460947 206;334;-101.541;2;0.745400094 205.966156;334;-101.545;2;0.058309217 205.597382;334;-101.597;2;0.497868903 204.239426;334;-101.792;2;0.659136646 204;334;-101.823;2;0.850189034 203.963684;334;-101.827;2;0.588119852 203.845932;334;-101.846;2;0.601156977 203.690475;334;-101.87;2;0.57127098 203.02742;334;-102;2;0.673786116 202.9599;334;-102.013;2;0.286802211 202.198059;334;-102.198;2;0.549093595 202;334;-102.246;2;0.485742573 201.961166;334;-102.256;2;0.948946088 200.605133;334;-102.605;2;0.645282462 200.561493;334;-102.616;2;0.067498234 200.000015;334;-102.802;2;0.926581891 199.958618;334;-102.816;2;0.072579593 199.073212;334;-103.073;2;0.639318737 198.185654;334;-103.331;2;0.514642059 198;334;-103.391;2;0.238485624 197.956024;334;-103.405;2;0.468465851 197.564194;334;-103.564;2;0.334744629 196.488571;334;-104;2;0.967388772 196.4487;334;-104.016;2;0.726888813 196.178192;334;-104.178;2;0.841903352 196;334;-104.285;2;0.246440216 195.953369;334;-104.313;2;0.674855002 195.404602;334;-104.565;2;0.441871342 194.856934;334;-104.857;2;0.843633412 194;334;-105.314;2;0.631438601 193.554001;334;-105.552;2;0.44838081 193.552689;334;-105.553;2;0.119215509 192.222046;334;-106;2;0.681812976 192.168167;334;-106.018;2;0.949731336 192.064285;334;-106.064;2;0.54351678 191.999985;334;-106.093;2;0.117527018 190.679733;334;-106.68;2;0.482693141 190;334;-106.982;2;0.219187295 189.945633;334;-107.006;2;0.589012425 189.27713;334;-107.277;2;0.749486094 188.28331;334;-107.68;2;0.844196349 188;334;-107.799;2;0.074191967 187.943176;334;-107.823;2;0.103289741 187.859192;334;-107.859;2;0.241678687 187.730957;334;-107.914;2;0.575496253 187.586517;334;-108;2;0.212799972 186.591766;334;-108.592;2;0.739952781 186.304169;334;-108.763;2;0.781565834 186;334;-108.971;2;0.646101027 185.389496;334;-109.39;2;0.427493601 184.498383;334;-110;2;0.396220103 184.467102;334;-110.021;2;0.636129941 184.289993;334;-110.29;2;0.35467352 184;334;-110.73;2;0.850484421 183.750259;334;-111.108;2;0.689109296 183.439621;334;-111.44;2;0.658127104 183.03862;334;-111.867;2;0.960447113 183.090317;334;-112;2;0.056127382 183.785339;334;-113.785;2;0.894557921 183.82666;334;-113.891;2;0.826198869 183.856079;334;-114;2;0.126683332 183.861984;334;-114.022;2;0.552615565 183.912231;334;-114.135;2;0.452352104 184;334;-114.38;2;0.630806867 184.338913;334;-115.326;2;0.690307147 184.370438;334;-116;2;0.431556926 184.371445;334;-116.022;2;0.829588833 184.416641;334;-116.417;2;0.945410515 184.532333;334;-117.428;2;0.686537996 184.510696;334;-118;2;0.620756967 184.509872;334;-118.022;2;0.20518669 184.544357;334;-118.544;2;0.54536936 184.550201;334;-118.633;2;0.205069537 184.694199;334;-120;2;0.046616298 184.696457;334;-120.021;2;0.064068669 184.825897;334;-120.826;2;0.038807343 184.900711;334;-121.291;2;0.268151069 185.051483;334;-122;2;0.414083439 185.055984;334;-122.021;2;0.082919973 185.874313;334;-123.874;2;0.691360467 185.92981;334;-124;2;0.260521024 185.936234;334;-124.015;2;0.32127177 185.939041;334;-124.021;2;0.223631954 185.93959;334;-124.022;2;0.250329292 185.941422;334;-124.027;2;0.693716507 186;334;-124.172;2;0.85629549 186.740402;334;-126;2;0.389463466 186.74855;334;-126.02;2;0.615566371 186.704865;334;-126.705;2;0.414578809 186.667145;334;-127.296;2;0.274117042 186.612503;334;-128;2;0.525490184 186.610962;334;-128.02;2;0.772752195 186.443359;334;-128.443;2;0.395258937 186;334;-129.564;2;0.217979415 185.943314;334;-129.707;2;0.454045449 185.874496;334;-129.874;2;0.605499137 185.822983;334;-130;2;0.455293627 185.814804;334;-130.02;2;0.855826321 185.622192;334;-130.308;2;0.329043614 185.118301;334;-131.118;2;0.810609575 184.56987;334;-132;2;0.65809825 184.557404;334;-132.02;2;0.622833536 184.326004;334;-132.326;2;0.228100873 184;334;-132.757;2;0.21914635 183.825378;334;-132.988;2;0.347774272 183.378647;334;-133.379;2;0.311045966 182.917816;334;-133.782;2;0.066299446 182.400269;334;-134;2;0.546748434 182.118759;334;-134.119;2;0.052617166 182;334;-134.169;2;0.075993606 181.94165;334;-134.193;2;0.343892624 181.392822;334;-134.231;2;0.018220746 180.484909;334;-134.485;2;0.739049084 180;334;-134.621;2;0.267025612 179.940063;334;-134.637;2;0.373212931 178.580902;334;-134.581;2;0.967025115 178.509644;334;-134.578;2;0.730297425 178;334;-134.44;2;0.905737385 177.938171;334;-134.423;2;0.599942703 177.67366;334;-134.268;2;0.122615911 176.628448;334;-134;2;0.604438479 176;334;-133.839;2;0.715447658 175.936111;334;-133.822;2;0.106862592 175.623856;334;-133.562;2;0.033311863 175.510513;334;-133.511;2;0.811765377 174.000015;334;-132.828;2;0.223776067 173.933929;334;-132.798;2;0.527350091 172.207291;334;-132.207;2;0.824264945 172.067978;334;-132.16;2;0.749195984 172;334;-132.109;2;0.994569652 171.931931;334;-132.059;2;0.179720318 171.889816;334;-132.024;2;0.834152796 171.853607;334;-132;2;0.311969914 171.797089;334;-131.963;2;0.00818304 170;334;-131.099;2;0.324682965 169.928986;334;-131.065;2;0.611513026 169.58551;334;-130.762;2;0.935386182 168.429901;334;-130;2;0.081128742 168;334;-129.717;2;0.252592945 167.925095;334;-129.667;2;0.172819134 167.750519;334;-129.425;2;0.204093462 166.568039;334;-128.021;2;0.086555047 166.559525;334;-128;2;0.92893214 166.413635;334;-127.643;2;0.119680555 166.000015;334;-126.632;2;0.546983304 165.9646;334;-126.546;2;0.239553188 165.854248;334;-126.166;2;0.293678958 165.800583;334;-126;2;0.118725186 165.705048;334;-125.705;2;0.485000742 165.160263;334;-124.023;2;0.673310043 165.149017;334;-124;2;0.402136001 164.975723;334;-123.644;2;0.308333959 164.049667;334;-122.363;2;0.483169996 164;334;-122.291;2;0.338591967 163.800171;334;-122;2;0.985586173 163.785492;334;-121.979;2;0.496510243 162;334;-120.413;2;0.273780678 161.556305;334;-120.023;2;0.173101013 161.539993;334;-120;2;0.174701945 161.28009;334;-119.628;2;0.083183104 160.458466;334;-118.904;2;0.932639493 160;334;-118.556;2;0.849366578 159.297272;334;-118.024;2;0.009083295 159.275223;334;-118;2;0.451133088 158.840332;334;-117.533;2;0.123234489 158.407104;334;-117.121;2;0.07033353 157.999985;334;-116.575;2;0.320886217 157.917374;334;-116.464;2;0.751563672 157.520462;334;-116.025;2;0.449129917 157.498322;334;-116;2;0.998946758 156.998474;334;-115.435;2;0.562107868 156.504776;334;-114.931;2;0.29790962 156;334;-114.407;2;0.732084626 155.91806;334;-114.322;2;0.649456139 155.615875;334;-114.026;2;0.497578441 155.565399;334;-114;2;0.046939225 154.87178;334;-113.639;2;0.81497072 154.482208;334;-113.502;2;0.460560807 154;334;-113.288;2;0.766441826 153.059814;334;-112.871;2;0.999564171 152.740952;334;-112.741;2;0.583695704 152;334;-112.438;2;0.051592316 151.917877;334;-112.404;2;0.798521134 151.611725;334;-112.332;2;0.674700856 151.075699;334;-112.187;2;0.262187644 150.312759;334;-112.108;2;0.906823906 150.08725;334;-112.087;2;0.612869098 150;334;-112.079;2;0.509906918 149.612167;334;-112.044;2;0.90275903 149.024078;334;-112;2;0.474791176 148;334;-111.923;2;0.157322736 147.917419;334;-111.916;2;0.60902017 147.916504;334;-111.917;2;0.159256296 147.567169;334;-112;2;0.069765843 146.302292;334;-112.302;2;0.849378915 146.229691;334;-112.32;2;0.981009575 146;334;-112.332;2;0.40896286 145.916275;334;-112.337;2;0.518256413 145.113678;334;-112.456;2;0.72036181 144.673599;334;-112.674;2;0.052719391 144;334;-113.007;2;0.327290461 143.914932;334;-113.049;2;0.26181124 143.399643;334;-113.4;2;0.599568823 142.517731;334;-114;2;0.336712369 142.490814;334;-114.018;2;0.4645338 142.342148;334;-114.342;2;0.448668254 142.189346;334;-114.675;2;0.352096014 142.096161;334;-115.375;2;0.190435445 142;334;-115.651;2;0.066552254 141.909622;334;-115.91;2;0.53673976 141.878098;334;-116;2;0.258911574 141.874496;334;-116.01;2;0.776835094 141.308975;334;-117.309;2;0.329268551 141.213913;334;-117.527;2;0.886220316 141.137802;334;-118;2;0.736950191 141.100418;334;-118.232;2;0.919501511 140.680542;334;-118.681;2;0.594724131 140;334;-119.407;2;0.749058568 139.713303;334;-119.713;2;0.061367618 139.611633;334;-119.822;2;0.638837877 139.534744;334;-120;2;0.029712799 139.346405;334;-120.436;2;0.146440579 138.854614;334;-120.855;2;0.383622695 138.368149;334;-121.268;2;0.355067836 138;334;-121.569;2;0.289548066 137.762405;334;-121.762;2;0.938893267 137.516785;334;-121.963;2;0.705089043 137.446396;334;-122;2;0.615391591 136.500916;334;-122.501;2;0.801663833 136;334;-122.766;2;0.870075194 135.881134;334;-122.829;2;0.444720082 135.126892;334;-123.051;2;0.245354348 135.067276;334;-123.067;2;0.676673843 134;334;-123.361;2;0.37928574 133.775513;334;-123.422;2;0.1119293 133.405167;334;-123.405;2;0.67733698 132.715256;334;-123.373;2;0.379682395 132;334;-123.286;2;0.056020206 131.890381;334;-123.273;2;0.131738565 130.341934;334;-122.342;2;0.313308998 130;334;-122.136;2;0.154880536 129.882629;334;-122.066;2;0.904170638 129.816208;334;-122;2;0.401580442 129.280334;334;-121.469;2;0.787458564 128.945786;334;-120.946;2;0.145677671 128.357147;334;-120.026;2;0.069235448 128.352509;334;-120;2;0.806553308 128.015457;334;-118.106;2;0.722373315 128;334;-118.016;2;0.09301588 127.999596;334;-118.013;2;0.490790844 128;334;-118.007;2;0.794186811 128.000412;334;-118;2;0.8094795 128.000427;334;-118;2;0.896196069 128.101379;334;-116.387;2;0.18020077 128.096497;334;-116.096;2;0.538050519 128.095215;334;-116.021;2;0.661888625 128.095596;334;-116;2;0.761729876 128.12796;334;-114.223;2;0.228372485 128.124359;334;-114.124;2;0.045848847 128.120682;334;-114.024;2;0.462068302 128.112244;334;-114;2;0.767679844 128;334;-113.685;2;0.001360867 127.527428;334;-112.358;2;0.966761372 127.337532;334;-112;2;0.250387206 127.261139;334;-111.856;2;0.896018321 126;334;-110.376;2;0.246678728 125.834572;334;-110.182;2;0.763217619 125.673271;334;-110;2;0.208879093 125.410614;334;-109.703;2;0.499292639 124;334;-108.646;2;0.131049439 123.168823;334;-108.023;2;0.413236836 123.141373;334;-108;2;0.506270397 122.956551;334;-107.846;2;0.949681154 122.722565;334;-107.716;2;0.336355444 122;334;-107.332;2;0.764100769 121.184166;334;-106.899;2;0.250930164 120.598282;334;-106.598;2;0.417600787 120;334;-106.291;2;0.783120386 119.845215;334;-106.211;2;0.945420825 119.513947;334;-106.021;2;0.757224695 119.477974;334;-106;2;0.433379971 118.624054;334;-105.491;2;0.535207849 118;334;-105.152;2;0.250070405 117.94091;334;-105.12;2;0.929381821 116.192139;334;-104.192;2;0.100825753 116;334;-104.09;2;0.949059747 115.867531;334;-104.02;2;0.023275747 115.845192;334;-104;2;0.22454283 115.46566;334;-103.663;2;0.950241185 114.970436;334;-103.466;2;0.635739539 114;334;-103.042;2;0.739936756 112.468811;334;-102.371;2;0.529032576 112.201172;334;-102.182;2;0.702361078 112.183418;334;-102.183;2;0.521904419 112.047813;334;-102.193;2;0.449502953 112;334;-102.191;2;0.310053284 110.334579;334;-102.109;2;0.610711902 110.084587;334;-102.085;2;0.110977901 110;334;-102.076;2;0.811447537 109.950897;334;-102.071;2;0.594999689 109.897545;334;-102.071;2;0.887666356 108.088982;334;-102.089;2;0.959698838 108;334;-102.09;2;0.825975892 107.953194;334;-102.09;2;0.014937541 107.882561;334;-102.108;2;0.879040661 106.807426;334;-102.461;2;0.269476066 106.54303;334;-102.543;2;0.958780774 106;334;-102.712;2;0.215320907 105.018593;334;-103.019;2;0.377669135 104.159805;334;-103.286;2;0.242513163 104;334;-103.363;2;0.205748685 103.756981;334;-103.479;2;0.365128785 103.583832;334;-103.584;2;0.936330133 102.897285;334;-104;2;0.779193434 102.338638;334;-104.339;2;0.741666926 102;334;-104.544;2;0.738614765 101.959442;334;-104.569;2;0.232891856 101.768394;334;-104.723;2;0.522975179 101.156006;334;-105.156;2;0.434110114 100.000008;334;-105.974;2;0.940653323 99.984612;334;-105.985;2;0.128543046 99.962852;334;-106;2;0.272149986 99.961464;334;-106.001;2;0.949771125 99.78109;334;-106.157;2;0.621002773 98.834503;334;-106.834;2;0.245680056 98;334;-107.432;2;0.452038899 97.964645;334;-107.457;2;0.115212351 97.762665;334;-107.63;2;0.298684793 97.691582;334;-107.692;2;0.0086147 97.335915;334;-108;2;0.433266679 96.620422;334;-108.62;2;0.33605498 95.999992;334;-109.158;2;0.042676299 95.843216;334;-109.294;2;0.249135746 95.559639;334;-109.56;2;0.365774055 95.250748;334;-109.849;2;0.078409183 95.117088;334;-110;2;0.967729482 94.593285;334;-110.593;2;0.275437068 94;334;-111.265;2;0.297642334 93.967743;334;-111.302;2;0.505609468 93.661911;334;-111.662;2;0.943937005 93.392776;334;-111.979;2;0.324676373 93.383156;334;-112;2;0.57261173 92.951233;334;-112.951;2;0.776594047 92.540016;334;-113.857;2;0.623912969 92.477669;334;-114;2;0.456313642 92.472969;334;-114.011;2;0.937923695 92.447243;334;-114.447;2;0.92948608 92.446442;334;-114.461;2;0.819962174 92.330307;334;-116;2;0.911764415 92.329498;334;-116.011;2;0.339040562 92.534523;334;-116.535;2;0.645480939 92.932655;334;-117.552;2;0.515519114 93.125275;334;-118;2;0.836824525 93.130043;334;-118.011;2;0.795745761 93.258926;334;-118.161;2;0.059878407 93.95002;334;-119.109;2;0.431290596 94;334;-119.159;2;0.264684358 94.157875;334;-119.317;2;0.013605808 94.811317;334;-120;2;0.431665539 95.965172;334;-121.205;2;0.58730209 95.999992;334;-121.235;2;0.697962125 96.894638;334;-122;2;0.190130018 96.909386;334;-122.013;2;0.561205035 97.061729;334;-122.183;2;0.315632043 97.92366;334;-123.075;2;0.535089292 98;334;-123.151;2;0.991950472 98.853767;334;-124;2;0.161837118 98.867195;334;-124.013;2;0.553471576 98.943108;334;-124.194;2;0.182571421 99.745636;334;-125.746;2;0.891066106 99.81398;334;-125.878;2;0.127760132 99.77137;334;-126;2;0.644909084 99.31337;334;-127.313;2;0.211762077 99.131203;334;-127.836;2;0.573403048 99.071228;334;-128;2;0.654010817 99.066437;334;-128.013;2;0.882558759 98.711517;334;-128.712;2;0.869424327 98.056717;334;-130;2;0.005137755 98.037605;334;-130.038;2;0.511236445 98;334;-130.112;2;0.604622006 97.964615;334;-130.181;2;0.741857253 97.832085;334;-130.405;2;0.01394794 97.458099;334;-131.375;2;0.96917262 97.432991;334;-131.433;2;0.86236065 97.185905;334;-132;2;0.156200521 97.180717;334;-132.012;2;0.17715421 96.979607;334;-132.98;2;0.867335708 96.797394;334;-133.856;2;0.143257055 96.75692;334;-134;2;0.786624978 96.753685;334;-134.011;2;0.440297614 96.601814;334;-134.602;2;0.973549326 96.32032;334;-135.696;2;0.192725233 96.202682;334;-136;2;0.305036688 96.198433;334;-136.011;2;0.709666518 96.10865;334;-136.109;2;0.175638953 95.999992;334;-136.227;2;0.544543504 95.150749;334;-137.151;2;0.994467655 94.485077;334;-137.875;2;0.834599215 94.381821;334;-138;2;0.294402775 94.373604;334;-138.01;2;0.853488191 94.189697;334;-138.19;2;0.251474605 94;334;-138.375;2;0.509467592 93.742554;334;-138.627;2;0.989262169 93.191292;334;-139.191;2;0.284069746 92.40168;334;-140;2;0.621077203 92.39299;334;-140.009;2;0.549340785 92.189293;334;-140.189;2;0.184869964 92.171371;334;-140.205;2;0.304691849 92;334;-140.324;2;0.610518302 91.975258;334;-140.342;2;0.114223517 91.239761;334;-141.24;2;0.147824697 91.039841;334;-141.484;2;0.006266549 90.66832;334;-141.942;2;0.885088992 90.631371;334;-142;2;0.472107551 90.626289;334;-142.008;2;0.56017612 90.562057;334;-142.081;2;0.372701165 90.307495;334;-142.307;2;0.061523415 90;334;-142.581;2;0.305806194 89.249199;334;-143.249;2;0.006673785 88.430534;334;-143.978;2;0.168623536 88.361603;334;-144;2;0.753768371 88.088516;334;-144.089;2;0.795370005 88;334;-144.117;2;0.37037006 86.578079;334;-144.578;2;0.790331196 86.063576;334;-144.745;2;0.59722524 86;334;-144.771;2;0.380072836 85.983078;334;-144.777;2;0.987899335 85.903404;334;-144.812;2;0.983879069 84.985275;334;-144.985;2;0.221863181 84;334;-145.172;2;0.828000774 83.985039;334;-145.174;2;0.80745917 83.91452;334;-145.19;2;0.246673375 83.268036;334;-145.268;2;0.75978647 82;334;-145.42;2;0.11092633 81.986847;334;-145.422;2;0.684812272 81.92485;334;-145.437;2;0.966613744 81.510391;334;-145.51;2;0.455818667 80;334;-145.778;2;0.985893193 79.988609;334;-145.78;2;0.767111865 79.934875;334;-145.794;2;0.361063589 79.814049;334;-145.814;2;0.411098429 78.71611;334;-146;2;0.735451435 78.103714;334;-146.104;2;0.464351903 78;334;-146.121;2;0.48261341 77.99025;334;-146.123;2;0.515236923 76.573097;334;-146.573;2;0.325537509 76.030495;334;-146.745;2;0.381958693 76;334;-146.753;2;0.028610263 75.991875;334;-146.756;2;0.147451301 74.986816;334;-146.987;2;0.569672292 74.025047;334;-147.208;2;0.504155656 74;334;-147.214;2;0.311475755 73.993317;334;-147.215;2;0.376858604 73.30909;334;-147.309;2;0.01167737 72.020294;334;-147.486;2;0.665334198 72;334;-147.49;2;0.499953584 71.994591;334;-147.49;2;0.760753014 71.969017;334;-147.49;2;0.585198676 71.418114;334;-147.418;2;0.142548159 70;334;-147.233;2;0.109452631 69.995628;334;-147.232;2;0.943931527 68.595909;334;-146;2;0.84839825 68.013802;334;-145.488;2;0.583234848 68;334;-145.483;2;0.747477926 67.996315;334;-145.482;2;0.06438082 67.987129;334;-145.472;2;0.403308931 67.414551;334;-144.019;2;0.839192467 67.403564;334;-144.001;2;0.754584437 67.403023;334;-144;2;0.909002398 67.380997;334;-143.948;2;0.239006988 67.072166;334;-143.072;2;0.769522614 66.696198;334;-142.006;2;0.151409658 66.69371;334;-142;2;0.751248179 66.003052;334;-140.457;2;0.124312539 66;334;-140.449;2;0.118715977 65.875771;334;-140.14;2;0.53047457 65.792984;334;-140;2;0.097026631 65.504051;334;-139.512;2;0.841339987 65.490273;334;-139.49;2;0.530049436 64.555847;334;-138;2;0.631418585 64.449638;334;-137.831;2;0.41000709 64.266052;334;-137.627;2;0.206545853 64;334;-137.27;2;0.6889102 63.352665;334;-136.402;2;0.412552122 63.170944;334;-136.155;2;0.401888309 63.118198;334;-136.077;2;0.897303869 63.03334;334;-136;2;0.081821075 62.041943;334;-135.096;2;0.167418465 62;334;-135.063;2;0.129130254 61.83625;334;-134.934;2;0.096027047 60.785145;334;-134.204;2;0.469948285 60.314041;334;-134;2;0.775333399 60;334;-133.864;2;0.554683352 59.759701;334;-133.76;2;0.70783295 59.679947;334;-133.725;2;0.765823884 58.557606;334;-133.351;2;0.918731875 58.312111;334;-133.233;2;0.06672621 58;334;-133.135;2;0.060114669 57.260853;334;-132.904;2;0.851427938 56.70047;334;-132.7;2;0.357246594 56.66909;334;-132.689;2;0.404812468 56.199947;334;-132.589;2;0.72008279 56;334;-132.534;2;0.119170699 54.587078;334;-132.141;2;0.402504151 54.109959;334;-132;2;0.25001671 54;334;-131.967;2;0.55675076 53.953838;334;-131.954;2;0.507564688 53.592609;334;-131.847;2;0.994207325 52.702686;334;-131.577;2;0.631781612 52.174801;334;-131.435;2;0.879723155 52;334;-131.397;2;0.329100957 51.232777;334;-131.233;2;0.257696141 51.04034;334;-131.192;2;0.952379124 50.000004;334;-131.047;2;0.119072828 49.743866;334;-131.011;2;0.267634226 48.84914;334;-130.814;2;0.653192362 48.812145;334;-130.812;2;0.390191229 48.19191;334;-130.787;2;0.10662159 47.999996;334;-130.797;2;0.485546726 47.511925;334;-130.823;2;0.256518635 46.908978;334;-130.909;2;0.788534274 46.033604;334;-131.034;2;0.266656226 46;334;-131.045;2;0.376859487 45.283104;334;-131.283;2;0.869120757 44.85685;334;-131.425;2;0.657554084 44.206413;334;-132;2;0.296187148 44.096878;334;-132.097;2;0.346322943 44;334;-132.183;2;0.4348004 43.361973;334;-132.747;2;0.856486297 43.075233;334;-133.037;2;0.100838576 43.057716;334;-133.058;2;0.914860524 42.83469;334;-133.317;2;0.211843702 42.177685;334;-134;2;0.284919992 42.090584;334;-134.091;2;0.414728702 42;334;-134.185;2;0.282664237 41.625317;334;-134.574;2;0.771802062 40.9688;334;-134.969;2;0.477148756 40.408257;334;-135.305;2;0.439085554 40;334;-135.449;2;0.41425577 39.591583;334;-135.592;2;0.155258207 39.490829;334;-135.627;2;0.275364355 38.373615;334;-135.922;2;0.280413366 38;334;-135.803;2;0.655310393 37.710365;334;-135.71;2;0.257401827 37.607464;334;-135.677;2;0.29674823 36.170052;334;-135.118;2;0.867511638 36;334;-135.053;2;0.425137023 34.478386;334;-134.478;2;0.349411346 34.452316;334;-134.469;2;0.551512779 34.044334;334;-134.287;2;0.073445181 34;334;-134.276;2;0.716051605 32.957157;334;-134.024;2;0.705156124 32.88641;334;-134;2;0.746057561 32.224285;334;-133.779;2;0.494342946 32.124958;334;-133.751;2;0.02201512 32;334;-133.746;2;0.349971953 31.735031;334;-133.735;2;0.622878274 30;334;-133.602;2;0.086906756 29.569227;334;-133.569;2;0.469769571 28.511066;334;-133.489;2;0.240682368 28;334;-133.529;2;0.931502638 27.658573;334;-133.659;2;0.372348023 27.464579;334;-133.732;2;0.205413362 26.16803;334;-134;2;0.922506152 26.031572;334;-134.032;2;0.910543213 26;334;-134.039;2;0.870758827 24.407372;334;-134.407;2;0.978266771 23.999998;334;-134.502;2;0.034984444 23.114361;334;-135.114;2;0.835010456 22.372103;334;-135.628;2;0.14485501 22;334;-135.895;2;0.91279361 21.998577;334;-135.896;2;0.044373338 21.946047;334;-135.946;2;0.750053103 21.889696;334;-136;2;0.151075775 20.943779;334;-136.944;2;0.542381429 20;334;-137.885;2;0.372827331 19.948055;334;-137.948;2;0.981927324 19.904974;334;-138;2;0.4441953 19.891699;334;-138.016;2;0.681797235 18.83;334;-138.83;2;0.602296053 18;334;-139.466;2;0.519214045 17.65476;334;-139.655;2;0.455276253 17.022131;334;-140;2;0.654194194 16.360867;334;-140.361;2;0.847530248 16;334;-140.558;2;0.879233582 15.043016;334;-141.043;2;0.605729327 14;334;-141.572;2;0.248368689 13.718599;334;-141.719;2;0.181773596 13.178985;334;-142;2;0.663318326 12.404093;334;-142.404;2;0.176206315 11.999999;334;-142.615;2;0.433374105 11.032784;334;-143.033;2;0.169943582 10;334;-143.479;2;0.289362807 9.618011;334;-143.618;2;0.093557823 8.567728;334;-144;2;0.08686446 8.087115;334;-144.087;2;0.568686787 8;334;-144.103;2;0.843139651 6.394006;334;-144.394;2;0.553589344 6;334;-144.465;2;0.40283678 4.547631;334;-144.548;2;0.742188751 4;334;-144.579;2;0.337604824 2.577587;334;-144.578;2;0.897877722 2;334;-144.577;2;0.394846558 0.676644;334;-144.677;2;0.116694002 0;334;-144.728;2;0.184984353 298;302;-152.685;3;0.631867842 296.154022;302;-152.154;3;0.733889813 296;302;-152.11;3;0.72073938 295.619019;302;-152;3;0.136787716 294;302;-151.471;3;0.330957557 293.193695;302;-151.194;3;0.628977477 292;302;-150.784;3;0.554145263 290.112701;302;-150.113;3;0.502912868 290;302;-150.073;3;0.666144649 289.779755;302;-150;3;0.188862548 288;302;-149.435;3;0.642266391 287.155426;302;-149.155;3;0.622408359 286;302;-148.773;3;0.068828951 284.314911;302;-148.315;3;0.220268298 284;302;-148.229;3;0.753226162 283.15744;302;-148;3;0.798780781 282;302;-147.775;3;0.321972181 281.721008;302;-147.721;3;0.542607194 280;302;-147.387;3;0.106935816 279.34021;302;-147.34;3;0.972803645 278;302;-147.246;3;0.752452171 277.274139;302;-147.274;3;0.65416532 276;302;-147.324;3;0.076130088 275.375183;302;-147.375;3;0.724667661 274;302;-147.488;3;0.68328458 273.560211;302;-147.56;3;0.799064388 272;302;-147.818;3;0.98560388 271.841614;302;-147.842;3;0.675012442 270.775085;302;-148;3;0.534858616 270.10022;302;-148.1;3;0.285713091 270;302;-148.115;3;0.737940013 268.13855;302;-148.139;3;0.050014489 268;302;-148.14;3;0.835665326 267.422058;302;-148.064;3;0.063793099 266.284637;302;-148.285;3;0.902642004 266;302;-148.34;3;0.477819884 264.267975;302;-148.268;3;0.567096985 264;302;-148.257;3;0.597567197 262.495117;302;-148.095;3;0.307747624 262.103119;302;-148.103;3;0.253137614 262;302;-148.105;3;0.008303037 260.72583;302;-148;3;0.209333576 260.315674;302;-147.942;3;0.874049918 260;302;-147.905;3;0.97240968 259.887939;302;-147.888;3;0.104482432 258;302;-147.599;3;0.621480419 257.543304;302;-147.543;3;0.665958359 256;302;-147.356;3;0.726933189 255.312546;302;-147.313;3;0.444468612 254;302;-147.229;3;0.263209016 253.265671;302;-147.266;3;0.280742662 252;302;-147.329;3;0.223476457 251.406952;302;-147.407;3;0.683258716 250;302;-147.592;3;0.221775751 249.664581;302;-147.665;3;0.118278646 248.105469;302;-148;3;0.273401644 248.02179;302;-148.022;3;0.794368071 248;302;-148.027;3;0.093726483 246.434921;302;-148.435;3;0.092809444 246;302;-148.548;3;0.921107811 244.823654;302;-148.824;3;0.222903354 244;302;-149.017;3;0.228718421 243.172012;302;-149.172;3;0.61562697 242;302;-149.392;3;0.786074169 241.502213;302;-149.502;3;0.748355641 240;302;-149.835;3;0.348808844 239.864639;302;-149.865;3;0.29142501 239.253036;302;-150;3;0.505208428 238.227066;302;-150.227;3;0.134503168 238.001251;302;-150.277;3;0.780632067 238;302;-150.277;3;0.013987587 237.999146;302;-150.278;3;0.781986185 236.692139;302;-150.692;3;0.606232213 236;302;-150.912;3;0.414558132 235.997818;302;-150.912;3;0.471280976 235.134247;302;-151.134;3;0.979371418 234.000015;302;-151.426;3;0.27607618 233.999298;302;-151.426;3;0.444304396 233.99588;302;-151.426;3;0.809941792 233.504654;302;-151.505;3;0.076621972 232;302;-151.744;3;0.474898994 231.99881;302;-151.744;3;0.730233626 231.72374;302;-151.724;3;0.542105388 230.006821;302;-151.596;3;0.940243882 230;302;-151.596;3;0.53078068 229.998169;302;-151.596;3;0.447352376 229.512634;302;-151.513;3;0.093803142 228.009827;302;-151.255;3;0.590924291 228;302;-151.253;3;0.109065489 227.99736;302;-151.253;3;0.390981587 227.086548;302;-151.087;3;0.10823766 226.013367;302;-150.891;3;0.697391139 225.999985;302;-150.888;3;0.633952139 225.996399;302;-150.887;3;0.071884806 225.976044;302;-150.882;3;0.904936305 224.669388;302;-150.669;3;0.503044431 224;302;-150.561;3;0.363929029 223.991058;302;-150.559;3;0.766785561 222.102325;302;-150.102;3;0.146381798 222.016693;302;-150.082;3;0.71454059 222;302;-150.072;3;0.772216034 221.99408;302;-150.069;3;0.967960972 221.729416;302;-150;3;0.84469664 220.027283;302;-149.557;3;0.868757395 220;302;-149.543;3;0.806853045 219.988556;302;-149.538;3;0.093186842 219.300293;302;-149.3;3;0.644943896 218.028244;302;-148.861;3;0.551161632 218;302;-148.846;3;0.940297077 217.991074;302;-148.841;3;0.818025241 216.282806;302;-148.283;3;0.034093508 216;302;-148.19;3;0.152411315 215.417404;302;-148;3;0.969207109 215.352036;302;-147.979;3;0.197831792 215.283524;302;-147.951;3;0.787951552 214.029312;302;-147.577;3;0.509040218 214;302;-147.568;3;0.662330099 213.987549;302;-147.565;3;0.128198096 213.406693;302;-147.407;3;0.63780412 212.069824;302;-147.043;3;0.580339817 212;302;-147.021;3;0.237683465 211.985626;302;-147.017;3;0.475613713 210.687271;302;-146.687;3;0.713617078 210.132736;302;-146.546;3;0.44776575 210;302;-146.482;3;0.418409754 209.983627;302;-146.474;3;0.814345654 208.459198;302;-146;3;0.995432706 208.155869;302;-145.906;3;0.397524951 208;302;-145.777;3;0.581368861 206.74649;302;-144.745;3;0.611280034 206.740204;302;-144.74;3;0.85051108 206;302;-144.145;3;0.456329716 205.97876;302;-144.128;3;0.089005279 205.86731;302;-144.008;3;0.434101495 205.866745;302;-144;3;0.940910814 205.858215;302;-143.887;3;0.467516731 205.866516;302;-143.867;3;0.764237254 205.978531;302;-143.587;3;0.212762306 206;302;-143.467;3;0.579802998 206.222549;302;-142.223;3;0.897312062 206.262344;302;-142;3;0.126229855 206.521332;302;-140.551;3;0.253741148 206.529129;302;-140.529;3;0.982009436 206.711853;302;-140.008;3;0.568932991 206.714966;302;-140;3;0.326612386 207.080872;302;-139.081;3;0.157603867 207.197372;302;-138.788;3;0.168541174 207.56987;302;-138.008;3;0.512719444 207.572617;302;-138;3;0.014837621 207.684387;302;-137.684;3;0.732112208 208;302;-136.793;3;0.191375122 208.083633;302;-136.557;3;0.142015458 208.200165;302;-136.2;3;0.021605411 208.228943;302;-136.112;3;0.614407847 208.233994;302;-136.008;3;0.789808703 208.234512;302;-136;3;0.744969956 208.344864;302;-134.345;3;0.227617372 208.359222;302;-134.129;3;0.763466184 208.349533;302;-134.008;3;0.829803241 208.349991;302;-134;3;0.807445001 208.439484;302;-132.439;3;0.3518927 208.457779;302;-132.12;3;0.912554043 208.45575;302;-132.008;3;0.729433474 208.45694;302;-132;3;0.712259441 208.651367;302;-130.678;3;0.890285095 208.656998;302;-130.657;3;0.871944633 208.830597;302;-130.008;3;0.600571183 208.835037;302;-130;3;0.458852174 209.248184;302;-129.248;3;0.594496665 209.934097;302;-128;3;0.926852832 209.957474;302;-127.957;3;0.887369743 209.977798;302;-127.92;3;0.446846166 210;302;-127.89;3;0.598731335 210.092239;302;-127.763;3;0.907405883 210.542313;302;-127.258;3;0.243234339 210.877258;302;-126.877;3;0.960854573 211.642548;302;-126.007;3;0.805324233 211.646637;302;-126;3;0.82160516 211.753571;302;-125.809;3;0.193573767 211.776093;302;-125.776;3;0.367705592 211.979568;302;-125.475;3;0.477593486 212;302;-125.448;3;0.006260799 212.62146;302;-124.621;3;0.419291229 212.664337;302;-124.564;3;0.347396891 213.081619;302;-124.007;3;0.45286445 213.084732;302;-124;3;0.041548677 213.370407;302;-123.37;3;0.195736355 213.981339;302;-122.024;3;0.534403336 213.994385;302;-122;3;0.125591913 213.996368;302;-121.996;3;0.936631237 214;302;-121.99;3;0.369079459 214.128296;302;-121.754;3;0.333842318 214.625397;302;-120.65;3;0.091590545 214.634949;302;-120.635;3;0.748510724 215.038467;302;-120.006;3;0.201195115 215.041702;302;-120;3;0.679438901 215.36908;302;-119.369;3;0.445890967 215.983231;302;-118.186;3;0.360949971 216;302;-118.153;3;0.378221782 216.052246;302;-118.052;3;0.591211255 216.076248;302;-118.006;3;0.95155375 216.07901;302;-118;3;0.839206609 216.68869;302;-116.71;3;0.22223638 216.694946;302;-116.695;3;0.491758133 216.973801;302;-116.006;3;0.238561445 216.976013;302;-116;3;0.326778229 217.267578;302;-115.268;3;0.165363721 217.772156;302;-114;3;0.553528292 217.837021;302;-113.837;3;0.395324674 217.985291;302;-113.465;3;0.324842831 218;302;-113.42;3;0.58923639 218.061646;302;-113.232;3;0.228524082 218.071823;302;-113.17;3;0.215750749 218.392014;302;-112.392;3;0.865677071 218.516876;302;-112.088;3;0.178562564 218.550629;302;-112.005;3;0.516960461 218.55426;302;-112;3;0.119598345 219.165695;302;-111.166;3;0.471690266 219.987396;302;-110.045;3;0.193557932 220;302;-110.031;3;0.945516461 220.015289;302;-110.015;3;0.09072348 220.029892;302;-110;3;0.5754408 220.096649;302;-109.93;3;0.609038334 221.048386;302;-109.048;3;0.29173567 221.989304;302;-108.177;3;0.469902136 222;302;-108.166;3;0.582113391 222.064178;302;-108.099;3;0.143895587 222.087997;302;-108.088;3;0.028968252 222.268219;302;-108.004;3;0.111283123 222.273575;302;-108;3;0.76827146 223.297211;302;-107.297;3;0.34248855 223.991043;302;-106.821;3;0.143291427 224;302;-106.818;3;0.255559984 224.611023;302;-106.611;3;0.589746106 225.882889;302;-106.181;3;0.786497482 225.992569;302;-106.126;3;0.025344463 225.999985;302;-106.122;3;0.66774247 226.025742;302;-106.109;3;0.541293924 226.089294;302;-106.089;3;0.911611303 226.382385;302;-106;3;0.756022456 227.622223;302;-105.622;3;0.953437589 227.992508;302;-105.509;3;0.579540036 228;302;-105.508;3;0.796879285 229.279358;302;-105.279;3;0.756279698 229.971497;302;-105.156;3;0.339912122 229.995255;302;-105.145;3;0.487481052 230;302;-105.145;3;0.959314541 230.05014;302;-105.147;3;0.652711743 231.04245;302;-105.042;3;0.081369578 231.996353;302;-104.942;3;0.768377358 232;302;-104.941;3;0.615642075 232.793976;302;-104.794;3;0.717235721 233.966095;302;-104.577;3;0.39455769 233.997345;302;-104.568;3;0.06959272 234.000015;302;-104.568;3;0.144432461 234.48671;302;-104.487;3;0.659964555 235.717728;302;-104.281;3;0.821643209 235.998154;302;-104.207;3;0.583433773 236;302;-104.207;3;0.788473076 236.169418;302;-104.169;3;0.880516177 236.186951;302;-104.166;3;0.751016447 236.907211;302;-104.001;3;0.470036676 236.907227;302;-104;3;0.901079571 236.952805;302;-102.955;3;0.97332077 236.951782;302;-102.952;3;0.834505182 236.756424;302;-102.379;3;0.00735863 236.43985;302;-102;3;0.096190735 236.310242;302;-101.845;3;0.898155082 236;302;-101.72;3;0.490838921 235.998306;302;-101.72;3;0.171442152 235.668518;302;-101.669;3;0.813760458 234.014099;302;-101.412;3;0.669424145 234.000015;302;-101.409;3;0.019138299 233.997574;302;-101.409;3;0.386571132 233.379089;302;-101.379;3;0.403889207 232.653702;302;-101.344;3;0.841116769 232;302;-101.256;3;0.944148652 231.996674;302;-101.255;3;0.704970898 231.27327;302;-101.273;3;0.930015176 230.710007;302;-101.287;3;0.557750227 230;302;-101.226;3;0.344177106 229.995636;302;-101.226;3;0.646035592 229.256287;302;-101.256;3;0.334621298 228.718246;302;-101.278;3;0.947112598 228;302;-101.261;3;0.704226081 227.994461;302;-101.261;3;0.055225748 227.276016;302;-101.276;3;0.284884028 226.075729;302;-101.301;3;0.977660103 225.999985;302;-101.301;3;0.340650119 225.993149;302;-101.301;3;0.95108312 225.325562;302;-101.326;3;0.371620806 224.089691;302;-101.37;3;0.005362548 224;302;-101.371;3;0.534219659 223.991745;302;-101.371;3;0.030230752 223.387268;302;-101.387;3;0.545313202 222.104324;302;-101.422;3;0.201035166 222;302;-101.425;3;0.847552391 221.990204;302;-101.425;3;0.021126745 221.47728;302;-101.477;3;0.685073362 220.115311;302;-101.615;3;0.453957001 220;302;-101.624;3;0.193147375 219.988541;302;-101.625;3;0.695190302 219.892029;302;-101.641;3;0.154324558 219.682663;302;-101.683;3;0.511565949 218.24527;302;-101.968;3;0.087708569 218.108917;302;-102;3;0.776140335 218.020493;302;-102.02;3;0.37818863 218;302;-102.025;3;0.00862461 217.986725;302;-102.028;3;0.117596103 217.952988;302;-102.038;3;0.200277753 216.534882;302;-102.535;3;0.109509306 216;302;-102.722;3;0.042650158 215.984741;302;-102.728;3;0.184695823 215.059174;302;-103.059;3;0.467972591 214.456512;302;-103.275;3;0.468284038 214;302;-103.445;3;0.788866946 213.982635;302;-103.451;3;0.753764852 213.809814;302;-103.525;3;0.612538523 213.619431;302;-103.619;3;0.427989633 213.278702;302;-103.788;3;0.674466876 212.82338;302;-104;3;0.754533129 212.26181;302;-104.262;3;0.36179714 212;302;-104.384;3;0.549932542 211.980408;302;-104.393;3;0.057595448 211.293137;302;-104.694;3;0.735426975 210.869644;302;-104.87;3;0.12475967 210;302;-105.231;3;0.810297221 209.978104;302;-105.24;3;0.790252548 209.438843;302;-105.439;3;0.472768708 209.41658;302;-105.447;3;0.973505695 208.317184;302;-106;3;0.129812627 208.300491;302;-106.008;3;0.355068091 208.102478;302;-106.102;3;0.190734131 208;302;-106.151;3;0.865121518 207.975708;302;-106.163;3;0.382988521 207.528763;302;-106.455;3;0.688078144 206.860992;302;-106.861;3;0.719413988 206;302;-107.384;3;0.311795134 205.973206;302;-107.401;3;0.040422874 205.629044;302;-107.629;3;0.413571256 205.070175;302;-108;3;0.124972199 205.055344;302;-108.01;3;0.061923373 204.44339;302;-108.443;3;0.36160576 204;302;-108.758;3;0.178980041 203.970596;302;-108.778;3;0.983358827 203.561218;302;-108.99;3;0.393936326 203.191315;302;-109.191;3;0.486600454 202;302;-109.841;3;0.50554568 201.968033;302;-109.858;3;0.818950035 201.882721;302;-109.883;3;0.831811783 201.616211;302;-109.959;3;0.745058856 201.415131;302;-110;3;0.058614387 200.238785;302;-110.239;3;0.921192907 200.000015;302;-110.287;3;0.985657342 199.965576;302;-110.294;3;0.14964576 199.591904;302;-110.295;3;0.107438801 198.059021;302;-110.059;3;0.749180015 198;302;-110.05;3;0.321555192 197.96315;302;-110.044;3;0.668630601 197.829178;302;-110;3;0.775125147 196.375046;302;-109.52;3;0.409093322 196;302;-109.427;3;0.098635295 195.960831;302;-109.418;3;0.893344869 194.501541;302;-108.438;3;0.537786694 194.329788;302;-108.33;3;0.949712093 194;302;-108.121;3;0.692517038 193.958694;302;-108.095;3;0.075341269 193.858337;302;-108;3;0.359807142 192.482498;302;-106.693;3;0.982133333 191.999985;302;-106.219;3;0.529114741 191.956787;302;-106.176;3;0.961400531 191.84137;302;-106.015;3;0.958879594 191.827637;302;-106;3;0.600398727 191.396652;302;-105.523;3;0.375947396 190.304474;302;-104.304;3;0.373290564 190.045624;302;-104.016;3;0.974829559 190.023483;302;-104;3;0.904805589 190;302;-103.983;3;0.873771068 189.94252;302;-103.943;3;0.092277915 189.711075;302;-103.778;3;0.6601934 188.535309;302;-102.689;3;0.024286611 188;302;-102.218;3;0.72821239 187.953568;302;-102.177;3;0.054548132 187.785278;302;-102.016;3;0.64866619 187.768204;302;-102;3;0.84018119 187.306641;302;-101.558;3;0.885488711 186.112289;302;-100.551;3;0.00262402 186;302;-100.479;3;0.90890722 185.952103;302;-100.448;3;0.209167734 185.496704;302;-100;3;0.621819768 184.182877;302;-98.7075;3;0.413480069 184;302;-98.6034;3;0.936567593 183.988876;302;-98.5971;3;0.24335742 183.729279;302;-98.3281;3;0.166885657 183.445389;302;-98;3;0.320927025 182;302;-96.3295;3;0.45466144 181.730072;302;-96.0175;3;0.20319568 181.714767;302;-96;3;0.025574089 181.523605;302;-95.7807;3;0.558472869 180;302;-94.2837;3;0.397438864 179.72934;302;-94.0178;3;0.293605304 179.71138;302;-94;3;0.155270138 179.487091;302;-93.7777;3;0.458148077 178;302;-92.6396;3;0.710335123 177.989716;302;-92.6317;3;0.008918358 176.475891;302;-92.0183;3;0.672300548 176.441681;302;-92;3;0.122830822 176.027695;302;-91.778;3;0.774705747 176;302;-91.769;3;0.436497633 175.657242;302;-91.6572;3;0.012620417 175.493164;302;-91.6037;3;0.806979315 174.000015;302;-91.1742;3;0.390293902 173.946274;302;-91.1587;3;0.010722667 173.690186;302;-91.2273;3;0.012283019 173.270813;302;-91.2708;3;0.940592522 172;302;-91.4027;3;0.201152844 171.944397;302;-91.4085;3;0.43772462 171.583694;302;-91.5785;3;0.232763102 171.579559;302;-91.5796;3;0.041610994 170;302;-91.996;3;0.917664195 169.996841;302;-91.9968;3;0.34804667 169.984863;302;-92;3;0.79164141 169.907959;302;-92.0203;3;0.235793285 168.508423;302;-92.5084;3;0.837231129 168.121521;302;-92.6434;3;0.296174716 168;302;-92.6925;3;0.484755836 167.940277;302;-92.7167;3;0.374256952 167.539154;302;-92.9275;3;0.778370524 167.114731;302;-93.1147;3;0.028594544 166.000015;302;-93.6065;3;0.768978357 165.818848;302;-93.6864;3;0.578027935 165.736008;302;-93.736;3;0.809233789 165.643326;302;-93.7915;3;0.525486628 165.293335;302;-94;3;0.783537907 164.48288;302;-94.4829;3;0.74254704 164;302;-94.7706;3;0.713313707 163.935898;302;-94.8088;3;0.897129564 163.63031;302;-95.0198;3;0.853448827 163.269882;302;-95.2699;3;0.782600654 162.217514;302;-96;3;0.115280851 162.089096;302;-96.0891;3;0.694046222 162;302;-96.1509;3;0.650635041 161.933624;302;-96.197;3;0.286398078 161.563477;302;-96.4985;3;0.037093604 160.98381;302;-96.9838;3;0.159741157 160;302;-97.8076;3;0.590055492 159.895264;302;-97.8953;3;0.395133138 159.770187;302;-98;3;0.74242836 159.741272;302;-98.0242;3;0.030637436 159.365509;302;-98.3526;3;0.02566602 158.864578;302;-98.8646;3;0.27205508 157.999985;302;-99.7482;3;0.164930484 157.875443;302;-99.8755;3;0.105764602 157.753586;302;-100;3;0.385650743 157.729095;302;-100.025;3;0.365958409 157.286041;302;-100.392;3;0.05909499 156.827682;302;-100.828;3;0.444878091 156;302;-101.615;3;0.348626987 155.926926;302;-101.684;3;0.616835297 155.777634;302;-101.778;3;0.644296768 155.421677;302;-102;3;0.543307502 155.129257;302;-102.183;3;0.098710645 154.466721;302;-102.467;3;0.985549362 154;302;-102.667;3;0.611352145 153.925598;302;-102.699;3;0.077356008 153.571991;302;-102.882;3;0.825502175 153.132019;302;-103.132;3;0.614663776 152;302;-103.776;3;0.234033196 151.924362;302;-103.819;3;0.959887446 151.84227;302;-103.842;3;0.812039691 151.290985;302;-104;3;0.125494951 150.287216;302;-104.287;3;0.432317961 150;302;-104.369;3;0.186131556 148.732162;302;-104.732;3;0.204927791 148.651627;302;-104.755;3;0.241985504 148;302;-105.011;3;0.363513457 147.922852;302;-105.042;3;0.157284242 147.556015;302;-105.137;3;0.952509628 147.233856;302;-105.234;3;0.700997034 146;302;-105.603;3;0.266166723 145.921738;302;-105.627;3;0.499749833 145.686447;302;-105.686;3;0.561373619 145.547394;302;-105.722;3;0.169451843 144.316315;302;-106;3;0.531215039 144.176559;302;-106.032;3;0.640238235 144.055618;302;-106.056;3;0.586048406 144;302;-106.067;3;0.955833214 143.794952;302;-106.107;3;0.738817494 142.350677;302;-106.351;3;0.569937761 142;302;-106.41;3;0.680465897 141.919479;302;-106.423;3;0.181983539 141.529343;302;-106.536;3;0.146973978 140.709335;302;-106.709;3;0.269063274 140;302;-106.859;3;0.250768846 139.918411;302;-106.877;3;0.647811278 139.458618;302;-107.074;3;0.972116353 139.170639;302;-107.171;3;0.335783539 138;302;-107.564;3;0.256697895 137.855347;302;-107.613;3;0.139928821 137.69101;302;-107.691;3;0.133273679 137.041092;302;-108;3;0.404883901 136.335464;302;-108.335;3;0.16024851 136.275345;302;-108.364;3;0.904738218 136;302;-108.524;3;0.939572949 135.914581;302;-108.573;3;0.275258917 135.684677;302;-108.794;3;0.391432908 135.227615;302;-109.228;3;0.826128171 134.412872;302;-110;3;0.145046581 134.404083;302;-110.008;3;0.226408995 134.258911;302;-110.259;3;0.427951476 134.202286;302;-110.357;3;0.916790107 134;302;-110.713;3;0.251441979 133.53418;302;-111.534;3;0.828186633 133.273331;302;-111.994;3;0.971626832 133.270889;302;-112;3;0.123885348 133.047211;302;-112.557;3;0.338512146 132.920425;302;-112.92;3;0.392894786 132.551926;302;-113.976;3;0.314591947 132.543777;302;-114;3;0.799307211 132.407211;302;-114.407;3;0.125032392 132;302;-115.621;3;0.205628689 131.904907;302;-115.905;3;0.115936698 131.89827;302;-115.925;3;0.350990032 131.887497;302;-115.955;3;0.413249447 131.871964;302;-115.99;3;0.266546733 131.867783;302;-116;3;0.024838935 131.313782;302;-117.314;3;0.170893673 131.05275;302;-117.933;3;0.582169603 131.016129;302;-118;3;0.229527365 130.657562;302;-118.658;3;0.658535776 130.358841;302;-119.205;3;0.04571149 130;302;-119.773;3;0.75634599 129.91217;302;-119.912;3;0.212143438 129.865158;302;-119.987;3;0.439317265 129.854843;302;-120;3;0.220698843 129.324646;302;-120.691;3;0.350662694 129.062195;302;-121.062;3;0.875150678 128.398361;302;-122;3;0.714921775 128.233246;302;-122.233;3;0.580380968 128.181091;302;-122.307;3;0.156257338 128;302;-122.519;3;0.69779111 127.318352;302;-123.318;3;0.32912369 127.302376;302;-123.337;3;0.701670809 126.887009;302;-123.885;3;0.482754938 126.776611;302;-124;3;0.825766127 126.396843;302;-124.397;3;0.443377411 126.394371;302;-124.399;3;0.545848733 126;302;-124.846;3;0.773626435 125.563072;302;-125.341;3;0.920530251 125.454201;302;-125.454;3;0.958424123 125.04184;302;-125.882;3;0.858079701 124.909683;302;-126;3;0.830051158 124.519958;302;-126.349;3;0.795006434 124.430717;302;-126.431;3;0.867310567 124;302;-126.826;3;0.890790738 123.454582;302;-127.328;3;0.020088078 123.389153;302;-127.389;3;0.627796788 122.739929;302;-128;3;0.309479526 122.465721;302;-128.258;3;0.577484379 122.359322;302;-128.359;3;0.83954046 122;302;-128.701;3;0.982351235 121.873703;302;-128.822;3;0.927779269 121.358261;302;-129.358;3;0.057723134 121.305267;302;-129.413;3;0.537092985 120.833771;302;-129.903;3;0.429329596 120.750793;302;-130;3;0.105116391 120.491913;302;-130.304;3;0.885283874 120.404854;302;-130.405;3;0.632192295 120;302;-130.874;3;0.754059187 119.507103;302;-131.446;3;0.383872899 119.477783;302;-131.478;3;0.774272559 119.07383;302;-131.917;3;0.432802891 119.006653;302;-132;3;0.644493686 118.699043;302;-132.378;3;0.531963591 118.549438;302;-132.549;3;0.856956056 118;302;-133.178;3;0.451628697 117.616463;302;-133.616;3;0.969942022 117.612976;302;-133.62;3;0.00343963 117.276405;302;-133.936;3;0.306792311 117.214607;302;-134;3;0.676868302 116.920784;302;-134.304;3;0.702096265 116.591187;302;-134.591;3;0.11727298 116;302;-135.107;3;0.063050159 115.522865;302;-135.523;3;0.498049594 115.338318;302;-135.684;3;0.97948168 114.824471;302;-136;3;0.728269332 114.778336;302;-136.028;3;0.173453725 114.368889;302;-136.369;3;0.401440189 114;302;-136.676;3;0.566082291 113.924545;302;-136.738;3;0.013055726 113.453674;302;-137.05;3;0.441568936 113.208214;302;-137.208;3;0.49679941 112.149467;302;-137.889;3;0.26713899 112.085709;302;-138;3;0.465841226 112.054482;302;-138.054;3;0.802742229 112;302;-138.15;3;0.249123127 111.325768;302;-139.326;3;0.609713144 111.193748;302;-139.556;3;0.142435374 111.192787;302;-140;3;0.860859868 111.192528;302;-140.121;3;0.293235452 112;302;-141.188;3;0.6202501 112.421417;302;-141.745;3;0.402373113 112.66243;302;-141.99;3;0.001922023 112.663818;302;-142;3;0.490941152 112.772469;302;-142.772;3;0.285911132 112.89138;302;-143.618;3;0.007033181 113.030174;302;-143.963;3;0.003337968 112.999977;302;-144;3;0.732932791 112.549393;302;-144.549;3;0.213758848 112.279106;302;-144.879;3;0.388442916 112.038185;302;-145.237;3;0.944760046 112;302;-145.236;3;0.562484689 111.944122;302;-145.234;3;0.181695866 111.503647;302;-145.504;3;0.031220653 111.446304;302;-145.539;3;0.072912288 110.916794;302;-146;3;0.032297193 110.426811;302;-146.427;3;0.232076813 110;302;-146.799;3;0.623975583 109.792503;302;-146.979;3;0.497550505 109.26651;302;-147.267;3;0.489423832 108.036377;302;-147.938;3;0.646046671 108;302;-147.951;3;0.094220137 107.963814;302;-147.964;3;0.728688699 107.861794;302;-148;3;0.773273575 107.737732;302;-148.044;3;0.201498747 106.505005;302;-148.505;3;0.194040405 106;302;-148.694;3;0.508629268 105.957214;302;-148.71;3;0.860888544 105.755959;302;-148.768;3;0.132617931 105.021469;302;-149.021;3;0.387408233 104;302;-149.374;3;0.610864333 103.959671;302;-149.388;3;0.527412698 103.516502;302;-149.517;3;0.952768272 102;302;-149.958;3;0.177008081 101.967094;302;-149.967;3;0.503373239 101.944588;302;-149.974;3;0.227541472 101.840759;302;-150;3;0.380543214 101.788544;302;-150.013;3;0.552813172 101.587593;302;-150.043;3;0.423622608 100.302528;302;-150.303;3;0.742145314 100.000008;302;-150.364;3;0.393289294 99.964348;302;-150.371;3;0.402312025 99.777145;302;-150.342;3;0.034577172 98.054688;302;-150.055;3;0.129873569 98;302;-150.046;3;0.902937117 97.797974;302;-150.012;3;0.569144299 97.773033;302;-150;3;0.375324177 97.656944;302;-149.945;3;0.838288933 95.999992;302;-148.772;3;0.422179782 95.967239;302;-148.749;3;0.178967807 95.812614;302;-148.633;3;0.686381314 95.495804;302;-148;3;0.744284174 94.991371;302;-146.991;3;0.929300531 94.495567;302;-146;3;0.763014169 94;302;-145.009;3;0.196757314 93.64447;302;-144.298;3;0.243626566 93.488426;302;-144.11;3;0.092993154 93.414375;302;-144.012;3;0.409642308 93.411377;302;-144;3;0.832257373 93.205666;302;-143.206;3;0.371806592 92.960968;302;-142.261;3;0.480663334 92.871849;302;-142.012;3;0.72321527 92.864632;302;-142;3;0.103915353 92;302;-140.595;3;0.333418182 91.966896;302;-140.541;3;0.19037662 91.82119;302;-140.158;3;0.115285069 91.610413;302;-140;3;0.149793771 90;302;-138.79;3;0.658384645 89.157967;302;-138.158;3;0.212365491 89.001137;302;-138.014;3;0.488979058 88.954895;302;-138;3;0.617675275 88;302;-137.713;3;0.291765408 87.970169;302;-137.704;3;0.49135826 87.829727;302;-137.676;3;0.80303195 87.656967;302;-137.657;3;0.336526426 86;302;-137.475;3;0.19074459 85.972328;302;-137.472;3;0.6809683 85.842117;302;-137.477;3;0.764961815 85.511436;302;-137.511;3;0.35248564 84;302;-137.668;3;0.057252853 83.974609;302;-137.671;3;0.570003486 83.855148;302;-137.691;3;0.124134601 83.72171;302;-137.722;3;0.264136148 82.51857;302;-138;3;0.109235725 82.097412;302;-138.097;3;0.321084955 82;302;-138.12;3;0.594740983 81.976921;302;-138.125;3;0.775890808 81.86834;302;-138.152;3;0.474144411 80.548523;302;-138.549;3;0.792081083 80;302;-138.713;3;0.913606333 79.979218;302;-138.719;3;0.769260147 79.881393;302;-138.748;3;0.043934681 79.024559;302;-139.025;3;0.797857528 78;302;-139.355;3;0.187796106 77.981445;302;-139.361;3;0.905916069 77.843079;302;-139.399;3;0.51108185 77.514175;302;-139.514;3;0.209554651 76.129189;302;-140;3;0.112201591 76.033546;302;-140.034;3;0.916900435 76;302;-140.045;3;0.993990247 75.938065;302;-140.067;3;0.245182164 74.534912;302;-140.535;3;0.983337216 74.013649;302;-140.709;3;0.077635752 74;302;-140.711;3;0.95389707 73.946152;302;-140.719;3;0.267847071 73.046135;302;-141.046;3;0.145884392 72;302;-141.426;3;0.211544131 71.987595;302;-141.431;3;0.075768945 71.929131;302;-141.443;3;0.588261573 71.585526;302;-141.586;3;0.413642869 70.638733;302;-141.978;3;0.042276817 70.586273;302;-141.989;3;0.471464057 70.560669;302;-142;3;0.435576571 70.171448;302;-142.171;3;0.865348785 70;302;-142.247;3;0.882017918 68.783043;302;-142.783;3;0.986050509 68;302;-143.128;3;0.565081228 67.991211;302;-143.132;3;0.946516349 67.328354;302;-143.328;3;0.018429345 66.989014;302;-143.429;3;0.79616267 66.774834;302;-144;3;0.991421258 66.660179;302;-144.306;3;0.521181807 66.469398;302;-144.469;3;0.791821442 66;302;-144.872;3;0.416625205 65.393112;302;-145.393;3;0.650427508 64.685974;302;-146;3;0.90898465 64.316818;302;-146.317;3;0.243787046 64.043327;302;-146.552;3;0.639278329 64;302;-146.579;3;0.439715421 63.994595;302;-146.582;3;0.492626351 63.972252;302;-146.607;3;0.745538758 62.993671;302;-146.994;3;0.877424427 62.075397;302;-147.356;3;0.34752324 62;302;-147.403;3;0.345617091 61.631508;302;-147.631;3;0.051610016 61.352238;302;-147.805;3;0.74024516 60.980122;302;-148;3;0.712719144 60.337276;302;-148.337;3;0.560890481 60;302;-148.514;3;0.419181351 59.996998;302;-148.516;3;0.113203818 58.888523;302;-148.889;3;0.532909123 58.007839;302;-149.185;3;0.19669893 58.001308;302;-149.188;3;0.107951866 58;302;-149.188;3;0.176510661 57.983505;302;-149.188;3;0.248416534 57.336586;302;-149.337;3;0.203056933 56;302;-149.644;3;0.843026298 55.995686;302;-149.645;3;0.968712399 55.990601;302;-149.644;3;0.747884445 55.691406;302;-149.691;3;0.213212607 54;302;-149.96;3;0.345345944 53.999195;302;-149.96;3;0.149050095 53.939091;302;-149.939;3;0.646836007 52.002174;302;-149.262;3;0.690938331 52;302;-149.259;3;0.551072449 51.999554;302;-149.258;3;0.616622251 51.20586;302;-148;3;0.309934242 51.232124;302;-147.232;3;0.106742833 51.273949;302;-146.009;3;0.935424082 51.27475;302;-146.003;3;0.829186589 51.274666;302;-146;3;0.732526254 51.275898;302;-145.986;3;0.046906111 51.378853;302;-145.379;3;0.184523381 51.612659;302;-144;3;0.238698633 51.719742;302;-143.72;3;0.396997128 52;302;-142.986;3;0.368026582 52.272305;302;-142.272;3;0.449162116 52.365459;302;-142.028;3;0.067215424 52.375618;302;-142.006;3;0.002763501 52.37878;302;-142;3;0.583083447 52.379005;302;-142;3;0.492876186 53.128883;302;-141.129;3;0.958678596 54;302;-140.117;3;0.194906683 54.054039;302;-140.054;3;0.909250803 54.085697;302;-140.017;3;0.503117968 54.105381;302;-140.001;3;0.603364222 54.106045;302;-140;3;0.20266592 55.115334;302;-139.115;3;0.319178225 55.997463;302;-138.342;3;0.172000296 56;302;-138.34;3;0.399599757 56.189129;302;-138.189;3;0.951063393 56.42485;302;-138.001;3;0.895080574 56.425407;302;-138;3;0.855043751 57.002766;302;-137.003;3;0.622505174 57.551571;302;-136.055;3;0.228129841 57.570599;302;-136.027;3;0.119420085 57.57304;302;-136.001;3;0.782709547 57.572727;302;-136;3;0.308926511 57.426617;302;-135.427;3;0.79460968 57.070248;302;-134.028;3;0.782233655 57.060028;302;-134.001;3;0.020462672 57.058697;302;-134;3;0.750409342 57.039326;302;-133.983;3;0.766531074 56.974773;302;-133.894;3;0.179116 56;302;-132.574;3;0.089948178 55.996994;302;-132.57;3;0.372341463 55.775124;302;-132.223;3;0.420979601 55.689342;302;-132.001;3;0.270180313 55.688343;302;-132;3;0.521644487 54;302;-130.283;3;0.945352611 53.942093;302;-130.224;3;0.627247097 53.789829;302;-130.001;3;0.97311423 53.789085;302;-130;3;0.115132778 52;302;-128.143;3;0.691310215 51.998394;302;-128.142;3;0.79207075 51.832256;302;-128.001;3;0.801800083 51.831425;302;-128;3;0.697306821 50.055996;302;-126.827;3;0.28649727 50.000004;302;-126.79;3;0.547194438 49.998981;302;-126.789;3;0.05981938 48.269951;302;-126;3;0.863346795 48.003883;302;-125.879;3;0.195429273 47.999996;302;-125.877;3;0.691341829 47.999439;302;-125.877;3;0.392534364 47.996819;302;-125.877;3;0.71240772 47.851963;302;-125.852;3;0.194349084 45.999775;302;-125.534;3;0.405482408 45.998707;302;-125.534;3;0.990325942 45.495541;302;-125.496;3;0.787781863 43.999958;302;-125.38;3;0.800174834 43.360817;302;-125.361;3;0.372248242 42;302;-125.319;3;0.11112761 41.305191;302;-125.305;3;0.097190259 40;302;-125.279;3;0.187172532 39.185184;302;-125.185;3;0.223169862 38;302;-125.049;3;0.689388508 36.783466;302;-124.783;3;0.841160399 36;302;-124.612;3;0.318977777 34.322678;302;-124;3;0.177716253 34;302;-123.868;3;0.425487556 33.657135;302;-123.657;3;0.883647186 32;302;-122.638;3;0.457862436 30.963524;302;-122;3;0.037897939 30;302;-121.044;3;0.232763075 28.903278;302;-120;3;0.297498941 28;302;-119.073;3;0.60639788 26.777555;302;-118;3;0.049574326 26;302;-117.54;3;0.74733777 24.873106;302;-116.873;3;0.540698584 23.999998;302;-116.356;3;0.158909348 23.031115;302;-116;3;0.432988583 22;302;-115.621;3;0.809130631 21.483742;302;-115.484;3;0.625479819 20;302;-115.09;3;0.50473016 18.880146;302;-114.88;3;0.231874971 18;302;-114.715;3;0.980054893 16.497597;302;-114.498;3;0.319656323 16;302;-114.426;3;0.027363893 14.274864;302;-114.275;3;0.787481677 14;302;-114.251;3;0.573834883 12.194776;302;-114;3;0.338612421 11.999999;302;-113.973;3;0.908955904 11.968566;302;-113.969;3;0.932162581 10;302;-113.695;3;0.699109498 9.608806;302;-113.609;3;0.070770108 8;302;-113.254;3;0.782387222 6.675788;302;-112.676;3;0.374823886 6;302;-112.381;3;0.171940713 5.687286;302;-112;3;0.821109684 4.246702;302;-110.247;3;0.681046977 4.044001;302;-110;3;0.275207381 4.405949;302;-108.608;3;0.714119021 4.443085;302;-108.443;3;0.231783941 4.543004;302;-108;3;0.78999149 4.338341;302;-107.392;3;0.908014096 4.146627;302;-106.147;3;0.890455286 4.124059;302;-106;3;0.246933587 4;302;-105.912;3;0.63793214 3.777151;302;-105.747;3;0.341916035 3.512412;302;-105.512;3;0.133284574 2;302;-104.171;3;0.446236689 1.806828;302;-104;3;0.763815465 0;302;-103.033;3;0.325249476 298;234;-157.742;4;0.020227795 297.669891;234;-157.67;4;0.780091643 296;234;-157.307;4;0.238271839 295.096039;234;-157.096;4;0.347147254 294;234;-156.84;4;0.040398725 292.498138;234;-156.498;4;0.245857581 292;234;-156.385;4;0.385187773 290.509827;234;-156;4;0.182918857 290.200043;234;-155.92;4;0.638126988 290;234;-155.851;4;0.057304955 289.735718;234;-155.736;4;0.00692821 288;234;-155.151;4;0.039767096 286.421173;234;-154.421;4;0.678996055 286;234;-154.226;4;0.534207482 285.47522;234;-154;4;0.63432049 284;234;-153.364;4;0.502557731 283.116119;234;-153.116;4;0.746663048 282;234;-152.804;4;0.455855704 280.809357;234;-152.809;4;0.074676216 280;234;-152.813;4;0.853751021 279.056061;234;-153.056;4;0.417403978 278;234;-153.328;4;0.397353613 277.492615;234;-153.493;4;0.589365798 276;234;-153.978;4;0.293242992 275.981293;234;-153.981;4;0.815361237 275.886353;234;-154;4;0.533712261 274.310791;234;-154.311;4;0.592322357 274;234;-154.372;4;0.811775924 272.554382;234;-154.554;4;0.022483591 272;234;-154.624;4;0.262295546 270.664551;234;-154.665;4;0.958740526 270;234;-154.685;4;0.141322164 268.631805;234;-154.632;4;0.124435049 268;234;-154.607;4;0.490125508 266.414886;234;-154.415;4;0.535988556 266;234;-154.365;4;0.692325739 264.279755;234;-154.28;4;0.404202861 264;234;-154.266;4;0.817047603 262.058746;234;-154.059;4;0.439554478 262;234;-154.052;4;0.27912468 261.682892;234;-154;4;0.526226585 260;234;-153.722;4;0.986553689 259.620697;234;-153.621;4;0.932606248 258;234;-153.19;4;0.021815976 256.569031;234;-152.569;4;0.269198015 256;234;-152.322;4;0.891481121 255.470566;234;-152;4;0.028227324 254;234;-151.105;4;0.380821621 252.536407;234;-150;4;0.238562141 252.294922;234;-149.705;4;0.985762255 252;234;-149.406;4;0.028987504 250.392014;234;-148;4;0.938359433 250;234;-147.657;4;0.420951348 248.334656;234;-146;4;0.136718945 248;234;-145.716;4;0.302341191 246.467926;234;-144;4;0.819253938 246;234;-143.476;4;0.335091214 244.493668;234;-142;4;0.342450997 244;234;-141.516;4;0.630395942 242.207779;234;-140.208;4;0.859189411 242.014404;234;-140.067;4;0.15478563 242;234;-140.056;4;0.491033769 241.933395;234;-140.005;4;0.378567294 241.923477;234;-140;4;0.37030512 240;234;-139.096;4;0.457351436 238.703262;234;-138.703;4;0.645113253 238;234;-138.49;4;0.643139026 236.198318;234;-138;4;0.136390833 236;234;-137.964;4;0.377553037 235.956741;234;-137.957;4;0.320278031 234.000015;234;-137.606;4;0.765409699 233.550079;234;-137.55;4;0.792572234 233.448944;234;-137.537;4;0.706090469 232;234;-137.432;4;0.090529022 231.368683;234;-137.369;4;0.097057144 229.999969;234;-137.271;4;0.8553432 229.222122;234;-137.222;4;0.099372492 227.999908;234;-137.146;4;0.085100107 227.109497;234;-137.109;4;0.149664884 226.002197;234;-137.064;4;0.937735055 225.999985;234;-137.064;4;0.440838225 225.999466;234;-137.064;4;0.522712318 225.074036;234;-137.074;4;0.229219018 224.003662;234;-137.086;4;0.618458529 224;234;-137.086;4;0.64293407 223.999023;234;-137.086;4;0.233346584 223.250473;234;-137.25;4;0.334838793 222.536819;234;-137.407;4;0.980330952 222;234;-137.491;4;0.081644214 221.998428;234;-137.491;4;0.444530675 221.608795;234;-137.609;4;0.301384835 221.45871;234;-137.654;4;0.70985701 220.302536;234;-138;4;0.222234117 220.299988;234;-138.001;4;0.488950923 220.079163;234;-138.079;4;0.946420904 220;234;-138.107;4;0.175911252 219.997726;234;-138.108;4;0.014124072 218.668198;234;-138.668;4;0.635710455 218.197067;234;-138.867;4;0.150541661 218;234;-138.951;4;0.268333642 217.996933;234;-138.952;4;0.105989574 217.982361;234;-138.959;4;0.907678543 217.315903;234;-139.316;4;0.981463312 216.060654;234;-139.987;4;0.520339111 216.037369;234;-140;4;0.555581343 216.034836;234;-140.001;4;0.93059656 216.014175;234;-140.014;4;0.902541733 216;234;-140.023;4;0.666111956 214.778839;234;-140.779;4;0.668421555 214;234;-141.261;4;0.573418356 213.995102;234;-141.264;4;0.652215304 213.971802;234;-141.279;4;0.837720984 213.559494;234;-141.559;4;0.587890084 212.912827;234;-142;4;0.63866801 212.369858;234;-142.37;4;0.886770642 212;234;-142.622;4;0.979713789 211.994095;234;-142.626;4;0.353142565 211.967972;234;-142.643;4;0.750809319 211.157516;234;-143.158;4;0.203558594 210;234;-143.893;4;0.205224464 209.934402;234;-143.934;4;0.767055319 209.879822;234;-143.969;4;0.833582271 209.831619;234;-144;4;0.780684393 209.827759;234;-144.002;4;0.794126326 208.617569;234;-144.618;4;0.185640663 208;234;-144.931;4;0.103294866 207.973145;234;-144.945;4;0.60938137 207.131989;234;-145.132;4;0.75293726 206.352676;234;-145.305;4;0.83663102 206;234;-145.455;4;0.658297077 205.617371;234;-145.617;4;0.329460351 205.28952;234;-145.757;4;0.649582176 204;234;-145.933;4;0.972592285 203.988998;234;-145.935;4;0.465585437 203.942993;234;-145.943;4;0.108695381 203.791672;234;-145.971;4;0.188836807 202.731064;234;-145.995;4;0.173598428 202.44519;234;-146;4;0.561972657 202.21347;234;-146.004;4;0.90474014 202.007523;234;-146.008;4;0.504969569 202;234;-146.008;4;0.289005156 200.190552;234;-146.035;4;0.990294178 200.028442;234;-146.028;4;0.397529344 200.000015;234;-146.027;4;0.039066781 199.985596;234;-146.027;4;0.481443852 198.643341;234;-146.006;4;0.74745936 198.358353;234;-146;4;0.53398485 198.276108;234;-145.998;4;0.540148277 198.200226;234;-145.999;4;0.11600287 198.123642;234;-145.999;4;0.49265704 198.005615;234;-146;4;0.549597979 198;234;-146;4;0.737242067 196.020172;234;-146.02;4;0.935804411 196;234;-146.02;4;0.699220287 195.981812;234;-146.021;4;0.538989342 194.074997;234;-146.061;4;0.084778099 194.060226;234;-146.06;4;0.585002795 194;234;-146.059;4;0.834279077 193.979828;234;-146.058;4;0.391623897 193.742767;234;-146.065;4;0.133002334 192.485062;234;-146.092;4;0.956229703 192.109161;234;-146.109;4;0.803450837 191.999985;234;-146.114;4;0.460907469 191.977798;234;-146.115;4;0.631732177 190.254227;234;-146.187;4;0.50628799 190.189255;234;-146.189;4;0.59937045 190;234;-146.196;4;0.806755127 189.975739;234;-146.197;4;0.595547694 189.860138;234;-146.211;4;0.032210671 188.335922;234;-146.336;4;0.79399898 188;234;-146.363;4;0.078624617 187.973663;234;-146.366;4;0.189848854 187.848236;234;-146.391;4;0.035759625 186.597885;234;-146.598;4;0.207820484 186;234;-146.697;4;0.372357324 185.971649;234;-146.702;4;0.436903816 185.836685;234;-146.744;4;0.479515199 184.956238;234;-146.956;4;0.100765295 184;234;-147.187;4;0.682610652 183.969711;234;-147.194;4;0.911098696 183.820297;234;-147.254;4;0.045173189 183.388596;234;-147.389;4;0.715207123 182;234;-147.821;4;0.202756963 181.863388;234;-147.863;4;0.346927079 181.424576;234;-148;4;0.787409534 181.38768;234;-148.011;4;0.693313158 181.237991;234;-148.077;4;0.384139807 180.346008;234;-148.346;4;0.976419563 180;234;-148.451;4;0.933175468 179.966019;234;-148.461;4;0.027753601 178.714859;234;-148.715;4;0.099882292 178.133545;234;-148.833;4;0.901476309 178;234;-148.893;4;0.885381039 177.964111;234;-148.909;4;0.026095627 177.009338;234;-149.009;4;0.600115316 176.101059;234;-149.105;4;0.070768793 176;234;-149.129;4;0.256658144 175.962097;234;-149.138;4;0.542973806 175.165878;234;-149.166;4;0.139180777 174.148743;234;-149.202;4;0.800408748 174.000015;234;-149.219;4;0.027402693 173.960022;234;-149.224;4;0.631688381 173.278442;234;-149.278;4;0.292669506 172.156189;234;-149.368;4;0.069646042 172;234;-149.377;4;0.992137414 171.957993;234;-149.38;4;0.643284039 171.472641;234;-149.473;4;0.980078226 171.29747;234;-149.506;4;0.063424941 170.108292;234;-149.706;4;0.715036093 170;234;-149.73;4;0.422440973 169.785858;234;-149.78;4;0.791304217 169.781326;234;-149.781;4;0.973490288 169.179398;234;-150;4;0.229390412 168.314285;234;-150.314;4;0.176702458 168;234;-150.428;4;0.057765956 167.392899;234;-150.649;4;0.859968791 166.815857;234;-150.816;4;0.691868011 166.182663;234;-150.999;4;0.108380657 166.000015;234;-151.04;4;0.842190278 165.957458;234;-151.049;4;0.934202911 165.35672;234;-151.357;4;0.660445523 164.101028;234;-152;4;0.224998954 164.034225;234;-152.034;4;0.222391559 164;234;-152.052;4;0.318931575 163.999115;234;-152.052;4;0.007090025 163.96637;234;-152.062;4;0.143129418 163.933365;234;-152.071;4;0.326454681 162.604462;234;-152.604;4;0.454547673 162;234;-152.847;4;0.122223241 161.980545;234;-152.855;4;0.134528582 161.719513;234;-152.933;4;0.650035246 161.177704;234;-153.178;4;0.571279283 160;234;-153.71;4;0.942741766 159.990692;234;-153.714;4;0.111261223 159.772064;234;-153.772;4;0.477854649 159.714539;234;-153.787;4;0.454558024 159.113495;234;-154;4;0.110925098 158.291092;234;-154.291;4;0.66734211 157.999985;234;-154.394;4;0.650619527 157.995758;234;-154.396;4;0.689075139 157.70903;234;-154.471;4;0.923804889 156.734039;234;-154.734;4;0.625716269 156;234;-154.932;4;0.025600746 155.994629;234;-154.934;4;0.532316376 155.763718;234;-154.941;4;0.510026339 155.066055;234;-155.066;4;0.238078608 154;234;-155.257;4;0.002042888 153.988373;234;-155.259;4;0.094295392 153.695831;234;-155.255;4;0.644807372 153.268127;234;-155.268;4;0.434794349 152;234;-155.306;4;0.272474538 151.977905;234;-155.307;4;0.847268856 151.668198;234;-155.255;4;0.26699838 151.199326;234;-155.199;4;0.358091678 150;234;-155.058;4;0.89576548 149.966537;234;-155.054;4;0.115524662 148.84906;234;-154.849;4;0.27717258 148.258652;234;-154.741;4;0.1487349 148;234;-154.56;4;0.145904468 147.955261;234;-154.529;4;0.951988127 147.576309;234;-154.331;4;0.98239854 146.562836;234;-154;4;0.807020895 146;234;-153.816;4;0.93096986 145.727371;234;-153.727;4;0.452611176 145.504196;234;-153.655;4;0.375950979 144;234;-152.287;4;0.661677655 143.71402;234;-152.027;4;0.290206117 143.726196;234;-152;4;0.845584005 143.812073;234;-151.812;4;0.17870113 144;234;-151.401;4;0.495865117 144.423782;234;-150.473;4;0.728595457 144.439423;234;-150.439;4;0.811936475 144.608536;234;-150.072;4;0.472287599 144.726929;234;-150;4;0.026105813 145.519485;234;-149.519;4;0.304113324 145.975113;234;-149.243;4;0.608739055 146;234;-149.231;4;0.786382717 146.322906;234;-149.074;4;0.231178634 146.815414;234;-148.815;4;0.394124916 147.743546;234;-148.329;4;0.710368741 147.967468;234;-148.229;4;0.146333186 148;234;-148.22;4;0.674188712 148.010086;234;-148.218;4;0.860579197 148.052628;234;-148.204;4;0.76331946 148.166687;234;-148.167;4;0.832393098 148.23877;234;-148.143;4;0.169324378 148.723343;234;-148;4;0.505999908 149.709015;234;-147.709;4;0.467507135 150;234;-147.623;4;0.606539986 150.045731;234;-147.61;4;0.767276482 151.331924;234;-147.332;4;0.629773238 151.422104;234;-147.312;4;0.659471129 152;234;-147.096;4;0.834324268 152.721634;234;-146.827;4;0.746024387 152.805069;234;-146.805;4;0.906020582 154;234;-146.495;4;0.910648735 154.075714;234;-146.475;4;0.617546104 154.136566;234;-146.455;4;0.621666209 154.353775;234;-146.354;4;0.451710625 155.109894;234;-146;4;0.823329783 155.716293;234;-145.716;4;0.064091146 156;234;-145.584;4;0.273718765 156.083786;234;-145.544;4;0.399355319 156.502853;234;-145.318;4;0.06307973 157.022675;234;-145.023;4;0.602098062 157.999985;234;-144.467;4;0.939197316 158.107666;234;-144.406;4;0.841631659 158.115601;234;-144.4;4;0.359053593 158.132507;234;-144.377;4;0.863062777 158.232422;234;-144.232;4;0.136841789 158.393402;234;-144;4;0.231328711 159.050827;234;-143.051;4;0.31223496 159.559418;234;-142.317;4;0.276802005 159.681137;234;-142;4;0.733345357 159.769699;234;-141.77;4;0.338090469 160;234;-141.171;4;0.239192065 160.107285;234;-140.892;4;0.713722377 160.288391;234;-140.288;4;0.91436573 160.317001;234;-140.193;4;0.834405459 160.373886;234;-140;4;0.146632903 160.546661;234;-139.414;4;0.815027116 160.708313;234;-138.708;4;0.694480002 160.870651;234;-138;4;0.684227346 161.081207;234;-137.081;4;0.26051626 161.106659;234;-136.97;4;0.131310974 161.340546;234;-136;4;0.305278432 161.378876;234;-135.841;4;0.32102174 161.379868;234;-135.836;4;0.295941575 161.379898;234;-135.831;4;0.1284785 161.322342;234;-135.322;4;0.805697349 161.172638;234;-134;4;0.782101428 161.142822;234;-133.737;4;0.782167123 160.819199;234;-133.017;4;0.705679053 160.791138;234;-132.791;4;0.56442223 160.693054;234;-132;4;0.349230508 160.675583;234;-131.859;4;0.871351807 160.566254;234;-131.627;4;0.908108098 160.074173;234;-130.842;4;0.55812086 160;234;-130.262;4;0.914566927 159.96907;234;-130.02;4;0.82424647 159.959656;234;-130;4;0.400252937 159.923782;234;-129.924;4;0.043916656 159.408035;234;-128.828;4;0.141989985 159.291;234;-128;4;0.531358125 159.197235;234;-127.337;4;0.436623784 159.179413;234;-127.179;4;0.348173434 159.04567;234;-126;4;0.585953547 158.923599;234;-124.924;4;0.48095359 158.841415;234;-124.199;4;0.936955384 158.838501;234;-124;4;0.334261315 158.830566;234;-123.461;4;0.017069115 158.840179;234;-122.84;4;0.39996685 158.853165;234;-122.001;4;0.065283211 158.853348;234;-122;4;0.632271068 158.805634;234;-120.806;4;0.636261037 158.784317;234;-120.27;4;0.062611769 158.651367;234;-120;4;0.138244327 158.574539;234;-119.844;4;0.3055605 158.164932;234;-118.469;4;0.024242884 157.999985;234;-118.277;4;0.596426765 157.760742;234;-118;4;0.404012959 157.655212;234;-117.878;4;0.01023788 156.651993;234;-116.735;4;0.312749789 156;234;-116.229;4;0.329030553 155.864456;234;-116.124;4;0.827867643 155.634949;234;-116;4;0.108093069 154.554825;234;-115.418;4;0.395826994 154.271683;234;-115.252;4;0.443558073 154.183365;234;-115.203;4;0.147432417 154.032471;234;-115.162;4;0.950268589 154;234;-115.158;4;0.738053317 153.344849;234;-115.068;4;0.517978047 153.029388;234;-115.029;4;0.680896792 152.464172;234;-114.961;4;0.782457341 152;234;-114.928;4;0.466694493 151.722748;234;-114.909;4;0.980062533 150.915146;234;-114.915;4;0.73696097 150.74585;234;-114.916;4;0.072447578 150.327454;234;-114.856;4;0.282877871 150;234;-114.878;4;0.367123364 149.129669;234;-114.936;4;0.295613311 148.940918;234;-114.941;4;0.738776766 148.442581;234;-114.955;4;0.737807181 148;234;-115;4;0.895659155 147.898453;234;-115.01;4;0.361059284 147.612778;234;-115.039;4;0.480124806 146.934601;234;-114.935;4;0.38036138 146.347198;234;-114.844;4;0.196739141 146;234;-114.85;4;0.855800081 145.803604;234;-114.854;4;0.156178455 145.470169;234;-114.762;4;0.262214433 144.771957;234;-114.772;4;0.206135675 144.572723;234;-114.775;4;0.294925829 144;234;-114.736;4;0.955997491 143.177383;234;-114.679;4;0.86714609 143.095795;234;-114.678;4;0.682391737 142.646179;234;-114.646;4;0.303733802 142;234;-114.6;4;0.181324714 141.882935;234;-114.592;4;0.260615507 141.579834;234;-114.61;4;0.241170374 140.44278;234;-114.443;4;0.909039004 140.021851;234;-114.381;4;0.792027073 140;234;-114.377;4;0.456270514 139.989166;234;-114.376;4;0.830585411 139.970322;234;-114.374;4;0.088077349 139.942215;234;-114.364;4;0.213026216 139.883331;234;-114.345;4;0.355983742 138.877579;234;-114;4;0.004379237 138.018387;234;-113.705;4;0.05414795 138;234;-113.695;4;0.889209943 137.370956;234;-113.371;4;0.735382181 136.501968;234;-112.923;4;0.075341969 136;234;-112.638;4;0.760930441 135.766052;234;-112.505;4;0.557425736 135.018204;234;-112;4;0.730692442 134;234;-111.312;4;0.846529665 133.655609;234;-111.079;4;0.985404918 133.216293;234;-110.786;4;0.349164914 133.053146;234;-110.707;4;0.089592528 132.665451;234;-110.489;4;0.441221301 132.214005;234;-110.214;4;0.91209057 132;234;-110.084;4;0.481091015 131.862518;234;-110;4;0.803111063 130.2202;234;-109;4;0.760565516 130;234;-108.891;4;0.311782206 128.192978;234;-108;4;0.783148234 128.157593;234;-107.983;4;0.824591773 128;234;-107.897;4;0.952174229 127.772423;234;-107.772;4;0.426486727 127.451874;234;-107.598;4;0.361014786 126;234;-107.079;4;0.58471435 125.985268;234;-107.073;4;0.676297174 124.844788;234;-106.696;4;0.215908901 124.666992;234;-106.667;4;0.521878595 124.465721;234;-106.634;4;0.864547172 124;234;-106.531;4;0.962185919 123.36367;234;-106.391;4;0.056459971 122.381485;234;-106.172;4;0.058151065 122.161026;234;-106.161;4;0.638205337 122;234;-106.153;4;0.631002194 120.177742;234;-106.059;4;0.577359369 120.089645;234;-106.051;4;0.930223898 120.054558;234;-106.055;4;0.43505599 120;234;-106.06;4;0.620685662 119.924164;234;-106.068;4;0.849617289 118.249542;234;-106.25;4;0.928479191 118;234;-106.277;4;0.216409269 117.943314;234;-106.283;4;0.815693077 116.900139;234;-106.574;4;0.516929711 116.641624;234;-106.642;4;0.713091349 116;234;-106.809;4;0.497178544 115.054504;234;-107.055;4;0.112420311 115.043488;234;-107.057;4;0.894249058 114.381958;234;-107.312;4;0.282445051 114;234;-107.445;4;0.098843409 113.588509;234;-107.589;4;0.069612906 112.479187;234;-107.975;4;0.062398137 112.415215;234;-108;4;0.695346848 112.115562;234;-108.116;4;0.763359527 112;234;-108.16;4;0.253899043 111.907814;234;-108.196;4;0.319768959 111.069923;234;-108.455;4;0.975807768 110.589149;234;-108.589;4;0.236983818 110;234;-108.753;4;0.787257201 109.913963;234;-108.777;4;0.350963637 108.972168;234;-108.972;4;0.96788479 108.935928;234;-108.98;4;0.44291257 108;234;-109.224;4;0.433833955 107.921196;234;-109.244;4;0.520066739 107.31675;234;-109.317;4;0.820513922 106.300896;234;-109.438;4;0.853953206 106;234;-109.486;4;0.073322327 105.927971;234;-109.497;4;0.208235985 105.568703;234;-109.541;4;0.750981068 105.544037;234;-109.544;4;0.937217724 104.021286;234;-109.738;4;0.465333429 104;234;-109.74;4;0.55445462 103.768562;234;-109.769;4;0.322684052 102.239365;234;-109.954;4;0.929063272 102;234;-109.985;4;0.91488379 101.986839;234;-109.987;4;0.720973943 101.936615;234;-109.993;4;0.633366781 101.903748;234;-110;4;0.01099219 100.322052;234;-110.322;4;0.026114183 100.230209;234;-110.341;4;0.457852253 100.000008;234;-110.386;4;0.613746298 99.938644;234;-110.398;4;0.149949106 99.508186;234;-110.514;4;0.580499715 98.731209;234;-110.731;4;0.612914933 98;234;-110.936;4;0.190415035 97.940384;234;-110.952;4;0.844475182 97.205261;234;-111.205;4;0.353236009 96.521629;234;-111.441;4;0.371402333 95.999992;234;-111.635;4;0.62337239 95.942162;234;-111.657;4;0.07972568 95.73735;234;-111.737;4;0.345876318 95.543465;234;-111.814;4;0.641360493 94.970566;234;-112;4;0.54328196 94.909157;234;-112.02;4;0.73921571 94.257019;234;-112.257;4;0.0755443 94.201332;234;-112.277;4;0.001622258 94;234;-112.322;4;0.011985515 93.944061;234;-112.334;4;0.086514042 93.64045;234;-112.403;4;0.643296481 92.719826;234;-112.675;4;0.793086619 92.686272;234;-112.686;4;0.860677509 92;234;-112.908;4;0.845480885 91.861443;234;-112.953;4;0.00943927 91.150406;234;-113.15;4;0.647251289 90.385818;234;-113.362;4;0.479007388 90;234;-113.49;4;0.615492395 89.616135;234;-113.616;4;0.135474201 89.297005;234;-113.721;4;0.771417434 88.154495;234;-113.91;4;0.256870177 88;234;-113.934;4;0.607910931 87.942825;234;-113.943;4;0.046487475 87.574028;234;-114;4;0.790962073 86.211266;234;-114.211;4;0.140120988 86.177948;234;-114.216;4;0.601071097 86;234;-114.258;4;0.149793454 85.952621;234;-114.269;4;0.704318991 85.631905;234;-114.319;4;0.093957606 84.406296;234;-114.406;4;0.0054545 84;234;-114.435;4;0.353072044 83.861015;234;-114.445;4;0.539473425 82.668159;234;-114.668;4;0.616833778 82.070282;234;-114.78;4;0.936546988 82;234;-114.802;4;0.018532309 81.756439;234;-114.877;4;0.49423014 81.181465;234;-115.181;4;0.609855083 80;234;-115.807;4;0.525101039 79.959526;234;-115.829;4;0.969906456 79.883102;234;-115.883;4;0.16028037 79.719254;234;-116;4;0.186244204 79.158653;234;-116.4;4;0.394652631 78.762848;234;-116.763;4;0.074163064 78;234;-117.462;4;0.514231888 77.71949;234;-117.719;4;0.580626818 77.594963;234;-117.834;4;0.772102214 77.448997;234;-118;4;0.931903711 77.368431;234;-118.092;4;0.981559619 76.780083;234;-118.78;4;0.384917212 76;234;-119.693;4;0.10407563 75.963829;234;-119.735;4;0.902851696 75.884064;234;-119.831;4;0.664435119 75.85762;234;-119.858;4;0.009086538 75.793579;234;-119.923;4;0.088627413 75.720665;234;-120;4;0.459790843 74.886444;234;-120.886;4;0.775574075 74;234;-121.828;4;0.616146634 73.96611;234;-121.864;4;0.092043604 73.915428;234;-121.915;4;0.318412148 73.89257;234;-121.938;4;0.612895866 73.818062;234;-122;4;0.253838344 73.806656;234;-122.009;4;0.420506001 72.819374;234;-122.819;4;0.78132157 72;234;-123.492;4;0.187726084 71.720695;234;-123.721;4;0.50684715 71.46608;234;-123.93;4;0.718376921 71.364067;234;-124;4;0.532087103 71.320427;234;-124.03;4;0.719368012 70.574608;234;-124.575;4;0.501907521 70;234;-124.994;4;0.399113825 69.970879;234;-125.015;4;0.397147936 69.833878;234;-125.09;4;0.441381512 69.353622;234;-125.354;4;0.302228504 68.234993;234;-125.968;4;0.834309359 68.16745;234;-126;4;0.254434558 68.147575;234;-126.009;4;0.740919059 68.066467;234;-126.066;4;0.974779201 68;234;-126.113;4;0.15967081 66.891907;234;-126.892;4;0.391315059 66.165665;234;-127.402;4;0.418744891 66;234;-127.523;4;0.888151304 65.724068;234;-127.724;4;0.288056243 65.373177;234;-127.98;4;0.510130413 65.355598;234;-128;4;0.531078978 64.725433;234;-128.725;4;0.214536586 64;234;-129.561;4;0.540032822 63.97802;234;-129.586;4;0.126942216 63.834137;234;-129.834;4;0.655680807 63.738018;234;-130;4;0.423322418 63.733604;234;-130.008;4;0.033156213 63.477314;234;-131.477;4;0.079798032 63.402302;234;-131.907;4;0.712094457 63.40274;234;-132;4;0.875882719 63.402775;234;-132.007;4;0.176896017 63.272224;234;-133.272;4;0.372174565 63.206436;234;-133.91;4;0.165430053 63.209877;234;-134;4;0.407824833 63.210155;234;-134.007;4;0.100735025 62.925117;234;-134.925;4;0.867580664 62.61808;234;-135.914;4;0.559837692 62.600536;234;-136;4;0.883547942 62.599133;234;-136.007;4;0.305719663 62.577961;234;-136.066;4;0.150444632 62.424812;234;-136.425;4;0.619688649 62;234;-137.42;4;0.539470737 61.826687;234;-137.827;4;0.126271984 61.763481;234;-137.975;4;0.383795563 61.754227;234;-138;4;0.742823708 61.282642;234;-139.283;4;0.279880786 61.057579;234;-139.895;4;0.058834319 61.027927;234;-140;4;0.45034435 61.026226;234;-140.006;4;0.212582452 61.013248;234;-140.087;4;0.825288947 60.841835;234;-140.842;4;0.538202557 60.578754;234;-142;4;0.582017858 60.577457;234;-142.006;4;0.471917739 60.590553;234;-142.591;4;0.564215444 60.620564;234;-143.931;4;0.052242043 60.624565;234;-144;4;0.406221184 60.624886;234;-144.006;4;0.588443141 60.841911;234;-144.842;4;0.968327042 61.12458;234;-145.931;4;0.162423812 61.145012;234;-146;4;0.459833363 61.146648;234;-146.006;4;0.495172708 61.635033;234;-146.968;4;0.449250751 62;234;-147.56;4;0.020515258 62.271091;234;-148;4;0.251085579 62.274578;234;-148.006;4;0.452307152 62.594822;234;-148.595;4;0.601839092 63.319584;234;-149.928;4;0.930800917 63.365158;234;-150;4;0.363211842 63.368813;234;-150.006;4;0.956612057 63.99398;234;-151.929;4;0.012505028 64;234;-151.949;4;0.086802128 64.015503;234;-152;4;0.094195871 64.017227;234;-152.006;4;0.234916487 64.015388;234;-152.015;4;0.216438766 64;234;-152.097;4;0.099273653 63.696918;234;-153.697;4;0.693292813 63.652073;234;-153.934;4;0.521493489 63.634186;234;-154;4;0.317566094 63.62603;234;-154.03;4;0.676183704 63.600765;234;-154.076;4;0.074848825 63.173088;234;-155.173;4;0.440471169 62.850609;234;-156;4;0.168773673 62.848747;234;-156.005;4;0.004236672 62.70578;234;-156.309;4;0.749136621 62.582207;234;-156.582;4;0.945378056 62.073082;234;-157.708;4;0.973532293 62;234;-157.903;4;0.984124946 61.987888;234;-157.935;4;0.401429057 61.961483;234;-157.961;4;0.021551946 61.922989;234;-158;4;0.791573111 60.961727;234;-158.962;4;0.767549301 60.219769;234;-159.704;4;0.065160826 60;234;-159.908;4;0.150969346 59.979843;234;-159.927;4;0.792589898 59.943806;234;-159.932;4;0.875817095 59.934208;234;-159.934;4;0.414978656 59.619659;234;-160;4;0.107832012 58.28017;234;-160.28;4;0.939116239 58;234;-160.339;4;0.259959533 57.991703;234;-160.34;4;0.53035537 57.960888;234;-160.337;4;0.205366568 56.230328;234;-160.23;4;0.836234116 56;234;-160.216;4;0.442966841 55.99295;234;-160.216;4;0.870142753 54.821762;234;-160;4;0.708683015 54.016247;234;-159.852;4;0.498797347 54;234;-159.847;4;0.92584582 53.994049;234;-159.845;4;0.337367674 53.768284;234;-159.768;4;0.669933814 52.018764;234;-159.172;4;0.889855054 52;234;-159.165;4;0.388300705 51.994987;234;-159.163;4;0.813026514 51.947811;234;-159.141;4;0.231983633 50.589073;234;-158.589;4;0.614855994 50.000004;234;-158.35;4;0.861914835 49.995846;234;-158.348;4;0.396784601 49.17942;234;-158.001;4;0.562563906 49.177055;234;-158;4;0.833897964 48.028912;234;-157.344;4;0.566920263 47.999996;234;-157.329;4;0.749460756 47.996586;234;-157.328;4;0.924724665 47.983753;234;-157.324;4;0.315953613 46.969257;234;-156.969;4;0.155785523 46;234;-156.63;4;0.24916669 45.997337;234;-156.629;4;0.887898092 45.984749;234;-156.627;4;0.061811136 44.314915;234;-156.315;4;0.392742557 44;234;-156.256;4;0.490111887 43.998047;234;-156.256;4;0.290013186 42.132839;234;-156.133;4;0.979690937 42.004944;234;-156.124;4;0.698811251 42;234;-156.124;4;0.664152824 41.99868;234;-156.124;4;0.415629634 41.992435;234;-156.125;4;0.773291075 40.181133;234;-156.181;4;0.706281931 40;234;-156.187;4;0.469690086 39.99921;234;-156.187;4;0.834322458 38.27602;234;-156.276;4;0.143891751 38.001469;234;-156.29;4;0.706975642 38;234;-156.29;4;0.759326602 37.999409;234;-156.29;4;0.323916929 36.445618;234;-156.446;4;0.630600161 36.000416;234;-156.49;4;0.464855389 36;234;-156.49;4;0.963375389 35.99926;234;-156.49;4;0.422632841 34.621101;234;-156.621;4;0.281712538 33.999992;234;-156.68;4;0.54659636 32.823055;234;-156.823;4;0.763522237 32;234;-156.923;4;0.987636748 31.051491;234;-157.051;4;0.926129168 30;234;-157.194;4;0.943918487 29.301167;234;-157.301;4;0.885493603 28;234;-157.501;4;0.714635259 27.557398;234;-157.557;4;0.891139234 26;234;-157.756;4;0.993109343 25.782551;234;-157.783;4;0.858182547 23.999998;234;-157.999;4;0.55115384 23.999531;234;-158;4;0.994658259 23.995695;234;-158;4;0.725267441 22.126656;234;-158.127;4;0.966362809 22;234;-158.135;4;0.248574298 20.190582;234;-158.191;4;0.562685732 20;234;-158.196;4;0.961373409 18.105576;234;-158.106;4;0.972408006 18;234;-158.101;4;0.276694637 16.884295;234;-158;4;0.60683971 16;234;-157.92;4;0.486229823 15.910666;234;-157.911;4;0.112056637 14;234;-157.704;4;0.093082872 13.712922;234;-157.713;4;0.489912923 11.999999;234;-157.595;4;0.723570688 11.570397;234;-157.57;4;0.133035638 10.490489;234;-157.51;4;0.415088041 10;234;-157.584;4;0.786507905 9.6212;234;-157.621;4;0.021544704 8.289224;234;-157.752;4;0.600576772 8;234;-157.806;4;0.105247849 7.846506;234;-157.847;4;0.373103379 7.710776;234;-157.882;4;0.126708831 6.686484;234;-158;4;0.236533319 6.073254;234;-158.073;4;0.095127752 6;234;-158.082;4;0.361793513 5.837634;234;-158.108;4;0.216672827 4.398876;234;-158.399;4;0.104841115 4;234;-158.48;4;0.494870461 2.787105;234;-158.787;4;0.328244274 2;234;-158.987;4;0.624055358 1.212726;234;-159.213;4;0.319109121 0;234;-159.561;4;0.129646982 298;200;-150.593;5;0.129399816 296.554413;200;-150.554;5;0.570183234 296;200;-150.539;5;0.007243261 294.353668;200;-150.354;5;0.856047136 294;200;-150.314;5;0.507897539 292.209717;200;-150.21;5;0.470548769 292;200;-150.198;5;0.694692664 290.306946;200;-150.307;5;0.427257311 290;200;-150.327;5;0.242594925 288.63089;200;-150.631;5;0.849330422 288;200;-150.771;5;0.7898503 287.167053;200;-151.167;5;0.61750168 286;200;-151.722;5;0.520991843 285.81546;200;-151.815;5;0.746528123 285.451324;200;-152;5;0.914274122 284.381927;200;-152.382;5;0.430764377 284;200;-152.518;5;0.425007563 282.868561;200;-152.869;5;0.001083699 282;200;-153.137;5;0.021504576 281.29187;200;-153.292;5;0.925695323 280;200;-153.574;5;0.112561451 279.644501;200;-153.644;5;0.224923312 278;200;-153.973;5;0.525070496 277.976196;200;-153.976;5;0.155436308 277.819672;200;-154;5;0.950741142 276.240295;200;-154.24;5;0.339214438 276;200;-154.277;5;0.79579536 274.438202;200;-154.438;5;0.627006022 274;200;-154.483;5;0.809236765 272.719635;200;-154.72;5;0.856223397 272;200;-154.852;5;0.521644381 271.086945;200;-155.087;5;0.842301779 270;200;-155.366;5;0.19840928 269.545319;200;-155.545;5;0.339800459 268.391449;200;-156;5;0.263148323 268.110626;200;-156.111;5;0.528868403 268;200;-156.154;5;0.733261831 266.731659;200;-156.732;5;0.745792261 266;200;-157.065;5;0.124359132 265.382141;200;-157.382;5;0.549035646 264.179474;200;-158;5;0.423426533 264.049957;200;-158.05;5;0.767511583 264;200;-158.069;5;0.110940696 262.606537;200;-158.607;5;0.910727791 262;200;-158.84;5;0.231511453 261.163086;200;-159.163;5;0.110877263 260;200;-159.612;5;0.394339199 259.681305;200;-159.681;5;0.058149514 258.224579;200;-160;5;0.496341655 258.16745;200;-160.012;5;0.085980764 258.03833;200;-160.038;5;0.496646545 258;200;-160.046;5;0.016002222 256.37439;200;-160.374;5;0.901625069 256;200;-160.45;5;0.179532459 254.673538;200;-160.674;5;0.197963146 254;200;-160.787;5;0.25272774 252.884018;200;-160.884;5;0.12300775 252;200;-160.961;5;0.824861668 250.959;200;-160.959;5;0.40878559 250;200;-160.957;5;0.959757799 248.737991;200;-160.738;5;0.671588863 248;200;-160.61;5;0.893098929 246.117035;200;-160.117;5;0.481772538 246;200;-160.086;5;0.056963786 245.669769;200;-160;5;0.714108276 244;200;-158.735;5;0.979307655 243.760391;200;-158;5;0.266458403 243.644409;200;-157.644;5;0.374994528 243.108047;200;-156;5;0.40518636 243.400986;200;-155.401;5;0.920060577 243.956696;200;-154.265;5;0.481034728 243.970932;200;-154;5;0.83241507 243.958832;200;-153.959;5;0.022492001 243.383423;200;-152;5;0.748335406 242;200;-150.768;5;0.688046636 241.138474;200;-150;5;0.826282578 240;200;-148.986;5;0.716574147 239;200;-148.253;5;0.712984254 238.639648;200;-148;5;0.62818662 238;200;-147.551;5;0.913805407 237.650421;200;-147.306;5;0.354429522 236.935349;200;-146.935;5;0.562739784 236;200;-146.451;5;0.260976508 234.856995;200;-146;5;0.584128419 234.000015;200;-145.662;5;0.359926859 233.547272;200;-145.547;5;0.118788429 232;200;-145.156;5;0.898604904 231.105377;200;-145.105;5;0.274205427 230;200;-145.043;5;0.448973935 228.986237;200;-144.986;5;0.694876896 228;200;-144.931;5;0.147290626 227.034042;200;-145.034;5;0.457125435 225.999985;200;-145.145;5;0.724305172 225.289963;200;-145.29;5;0.0891896 224;200;-145.554;5;0.201613786 223.666382;200;-145.666;5;0.501768673 222.675217;200;-146;5;0.281825775 222.209045;200;-146.209;5;0.141715112 222;200;-146.303;5;0.198689842 220.828247;200;-146.828;5;0.4517416 219.999878;200;-147.2;5;0.502706589 219.999298;200;-147.2;5;0.830012206 219.49794;200;-147.498;5;0.144089691 218.653122;200;-148;5;0.50264867 218.243469;200;-148.243;5;0.788717147 218;200;-148.388;5;0.201620623 217.998077;200;-148.389;5;0.22513629 216.962753;200;-148.963;5;0.877318067 216;200;-149.496;5;0.123994572 215.999359;200;-149.496;5;0.60751846 215.996277;200;-149.498;5;0.83946773 215.651443;200;-149.651;5;0.043429936 214.869339;200;-150;5;0.449688782 214.268005;200;-150.268;5;0.947332003 214;200;-150.387;5;0.76022289 213.998917;200;-150.388;5;0.226817612 213.99382;200;-150.389;5;0.929044804 212.740128;200;-150.74;5;0.645083936 212;200;-150.947;5;0.02545018 211.998367;200;-150.948;5;0.24839355 211.990616;200;-150.949;5;0.821493547 211.119629;200;-151.12;5;0.189923137 210;200;-151.339;5;0.631830734 209.997681;200;-151.339;5;0.578070478 209.986649;200;-151.34;5;0.402017418 209.36496;200;-151.365;5;0.919001107 208;200;-151.42;5;0.545130444 207.996826;200;-151.42;5;0.316335326 207.316086;200;-151.316;5;0.783103371 206.015701;200;-151.117;5;0.401225303 206;200;-151.114;5;0.990828643 205.995789;200;-151.114;5;0.937912754 205.981689;200;-151.11;5;0.44139077 204.730118;200;-150.73;5;0.524270965 204;200;-150.509;5;0.432118606 203.994553;200;-150.507;5;0.982710184 202.378128;200;-150.002;5;0.628887691 202.366379;200;-150;5;0.693025597 202.323273;200;-149.992;5;0.014395304 202;200;-149.899;5;0.869220553 201.858536;200;-149.859;5;0.589434038 200.000015;200;-149.327;5;0.154519796 199.991684;200;-149.324;5;0.884787408 199.951981;200;-149.322;5;0.119239772 199.248947;200;-149.249;5;0.993077766 198;200;-149.12;5;0.998674161 197.990112;200;-149.119;5;0.813088248 197.943024;200;-149.119;5;0.857633582 197.108353;200;-149.108;5;0.129043303 196;200;-149.094;5;0.249777285 195.988495;200;-149.094;5;0.798196959 195.933762;200;-149.101;5;0.066162789 195.209961;200;-149.21;5;0.177441807 194;200;-149.392;5;0.634543631 193.986877;200;-149.394;5;0.864882264 193.924484;200;-149.401;5;0.90055623 193.487152;200;-149.487;5;0.405527954 191.999985;200;-149.779;5;0.1555534 191.815308;200;-149.815;5;0.528562946 190.905563;200;-149.994;5;0.784825114 190.83165;200;-150;5;0.772027559 190.831131;200;-150;5;0.677365051 190.057587;200;-150.058;5;0.523444849 190;200;-150.062;5;0.710742389 188.19606;200;-150.196;5;0.103421156 188.068314;200;-150.206;5;0.772507278 188;200;-150.204;5;0.492694614 187.981644;200;-150.204;5;0.480541429 187.792664;200;-150.201;5;0.829324829 186.551498;200;-150.169;5;0.334372874 186.212646;200;-150.213;5;0.737752875 186;200;-150.24;5;0.942923394 185.97966;200;-150.243;5;0.088351337 184.203278;200;-150.188;5;0.027258348 184.187866;200;-150.188;5;0.015134454 184;200;-150.181;5;0.995225368 183.977615;200;-150.181;5;0.394719306 183.534424;200;-150.167;5;0.503821834 182.276779;200;-150.136;5;0.867028099 182.137344;200;-150.137;5;0.957666482 182;200;-150.138;5;0.541845547 181.97551;200;-150.139;5;0.991880441 180.185165;200;-150.101;5;0.026745081 180.103027;200;-150.103;5;0.99880941 180;200;-150.106;5;0.638622724 179.973358;200;-150.106;5;0.417951715 178.710129;200;-150.01;5;0.683835524 178.565704;200;-150;5;0.037102337 178.116272;200;-149.969;5;0.863275362 178;200;-149.958;5;0.296455134 177.971115;200;-149.956;5;0.234813354 177.95311;200;-149.953;5;0.583998832 177.824371;200;-149.935;5;0.243567098 176;200;-149.716;5;0.880522033 175.968811;200;-149.712;5;0.906838426 175.666351;200;-149.666;5;0.789406197 175.380554;200;-149.623;5;0.581147672 174.000015;200;-149.326;5;0.865067355 173.965988;200;-149.319;5;0.345142361 173.152863;200;-149.153;5;0.128394701 172.126801;200;-148.943;5;0.708038076 172;200;-148.922;5;0.761661867 171.958771;200;-148.915;5;0.393557381 171.820923;200;-148.902;5;0.04827426 170.690018;200;-148.69;5;0.544647046 170;200;-148.561;5;0.95997403 169.979202;200;-148.557;5;0.273449693 168.343536;200;-148.205;5;0.304009815 168.179398;200;-148.179;5;0.219680733 168;200;-148.151;5;0.960431034 167.932205;200;-148.14;5;0.49658995 167.58403;200;-148.077;5;0.2685621 167.294128;200;-148;5;0.47677143 166.000015;200;-147.655;5;0.330998482 165.91655;200;-147.632;5;0.953044707 165.515884;200;-147.516;5;0.155503242 164.090393;200;-147.102;5;0.53177672 164;200;-147.08;5;0.591458385 163.903442;200;-147.056;5;0.368674726 162.674927;200;-146.675;5;0.47015978 162.464859;200;-146.61;5;0.853824778 162;200;-146.453;5;0.583161894 161.897202;200;-146.419;5;0.678783077 161.323685;200;-146.235;5;0.008823892 160.672272;200;-146;5;0.198582901 160;200;-145.757;5;0.114641436 159.887726;200;-145.717;5;0.721558704 159.65123;200;-145.651;5;0.621682766 158.103302;200;-145.224;5;0.09052609 157.999985;200;-145.198;5;0.54109693 157.885529;200;-145.168;5;0.244329408 157.66478;200;-145.118;5;0.730196921 157.468948;200;-145.084;5;0.612605692 157.05098;200;-145.051;5;0.733916892 156.434357;200;-145.002;5;0.261281706 156;200;-144.95;5;0.089998047 155.892532;200;-144.937;5;0.352387329 154.834991;200;-144.835;5;0.248079014 154.344345;200;-144.788;5;0.346558758 154;200;-144.782;5;0.561016915 153.891983;200;-144.78;5;0.634530952 153.645828;200;-144.848;5;0.872897139 153.035675;200;-145.036;5;0.110934194 152;200;-145.355;5;0.7667643 151.900085;200;-145.386;5;0.035654235 151.641998;200;-145.561;5;0.61792988 151.591827;200;-145.592;5;0.528673102 150.930954;200;-146;5;0.251620321 150.355453;200;-146.355;5;0.25314654 150.337418;200;-146.367;5;0.829140153 150;200;-146.726;5;0.933778543 149.383209;200;-147.383;5;0.318277617 148.804276;200;-148;5;0.157553473 148.791748;200;-148.013;5;0.24914663 148.612473;200;-148.272;5;0.716416429 148.521606;200;-148.394;5;0.776160549 148.456802;200;-148.457;5;0.796809803 148;200;-148.897;5;0.263789512 147.918747;200;-148.976;5;0.099694687 147.816696;200;-149.11;5;0.565739321 147.451202;200;-149.451;5;0.083070757 146.864136;200;-150;5;0.847072882 146.678558;200;-150.173;5;0.396888469 146.506165;200;-150.336;5;0.086391851 146.396347;200;-150.396;5;0.683891253 146;200;-150.615;5;0.3343252 145.107437;200;-151.107;5;0.84204223 144.217773;200;-151.598;5;0.992749377 144;200;-151.712;5;0.184891087 143.933914;200;-151.746;5;0.190943001 143.934006;200;-151.763;5;0.740385674 143.80011;200;-151.8;5;0.644895112 143.084122;200;-152;5;0.072867422 142.92366;200;-152.045;5;0.711621516 142.35994;200;-152.18;5;0.267932324 142.201477;200;-152.201;5;0.986099665 142.069107;200;-152.219;5;0.970190284 142;200;-152.23;5;0.190074604 140.464905;200;-152.465;5;0.597263222 140;200;-152.536;5;0.750950666 139.9375;200;-152.546;5;0.123850394 139.640671;200;-152.558;5;0.798703548 138.628632;200;-152.629;5;0.44328936 138;200;-152.673;5;0.274808477 137.936554;200;-152.677;5;0.754389138 137.6353;200;-152.673;5;0.447308589 136.702805;200;-152.703;5;0.410652429 136;200;-152.725;5;0.124558331 135.935669;200;-152.727;5;0.113327102 135.630173;200;-152.7;5;0.434041042 134.660782;200;-152.661;5;0.279144089 134;200;-152.634;5;0.642174953 133.934769;200;-152.631;5;0.850345976 133.625061;200;-152.595;5;0.881270958 132.539673;200;-152.54;5;0.939333538 132;200;-152.512;5;0.465148661 131.933975;200;-152.509;5;0.00876197 131.620514;200;-152.459;5;0.648350311 130.36853;200;-152.369;5;0.466710481 130;200;-152.342;5;0.745293268 129.933258;200;-152.337;5;0.918779422 129.616562;200;-152.292;5;0.153961885 128.194626;200;-152.195;5;0.170619934 128;200;-152.181;5;0.076484246 127.932686;200;-152.177;5;0.946444863 127.613403;200;-152.134;5;0.311525605 126.067352;200;-152.067;5;0.767243009 126;200;-152.064;5;0.340632077 125.932289;200;-152.062;5;0.659385611 125.117813;200;-152.04;5;0.277987232 124.16996;200;-152.024;5;0.175817394 124.038635;200;-152.039;5;0.762141311 124;200;-152.043;5;0.05691614 123.932129;200;-152.051;5;0.728236358 122.746292;200;-152.19;5;0.537324905 122.226662;200;-152.227;5;0.873540161 122;200;-152.243;5;0.585636133 121.768959;200;-152.259;5;0.923012716 120.453964;200;-152.454;5;0.71694743 120.089142;200;-152.508;5;0.375408584 120;200;-152.514;5;0.339901131 119.698227;200;-152.532;5;0.717517545 118.69561;200;-152.696;5;0.604817561 118;200;-152.809;5;0.675242176 117.933189;200;-152.82;5;0.543733759 117.617264;200;-152.848;5;0.292693116 116.90731;200;-152.907;5;0.738713311 116;200;-152.983;5;0.393236215 115.933723;200;-152.988;5;0.021970718 115.620361;200;-152.994;5;0.252818444 115.017998;200;-153.018;5;0.435494879 114;200;-153.059;5;0.547599912 113.934311;200;-153.062;5;0.094987983 113.623665;200;-153.038;5;0.823770155 112.998451;200;-152.998;5;0.027472526 112;200;-152.935;5;0.608075696 111.93483;200;-152.931;5;0.304141574 111.576836;200;-152.915;5;0.423987367 110.879669;200;-152.88;5;0.434500023 110;200;-152.835;5;0.375109214 109.869858;200;-152.828;5;0.337386473 108.767197;200;-152.767;5;0.527932713 108;200;-152.725;5;0.327837445 107.99913;200;-152.725;5;0.211436952 107.877563;200;-152.713;5;0.406656502 106.776588;200;-152.755;5;0.736086047 106.755493;200;-152.755;5;0.40702064 106;200;-152.776;5;0.165111599 105.636986;200;-152.786;5;0.557367627 105.218376;200;-152.797;5;0.647089967 104.792984;200;-152.793;5;0.571411569 104;200;-152.785;5;0.218383548 103.700668;200;-152.782;5;0.975251666 102.854279;200;-152.854;5;0.420928608 102.84594;200;-152.855;5;0.621403712 102;200;-152.918;5;0.747870972 101.615128;200;-152.946;5;0.786693469 101.054413;200;-153.054;5;0.761415408 100.432426;200;-153.175;5;0.038973169 100.000008;200;-153.194;5;0.287279507 99.563599;200;-153.214;5;0.118079546 99.271507;200;-153.272;5;0.742668311 98;200;-153.52;5;0.599492139 97.916862;200;-153.536;5;0.322441613 97.574081;200;-153.574;5;0.229382975 97.55291;200;-153.576;5;0.224608439 96.046104;200;-153.765;5;0.292917505 95.999992;200;-153.769;5;0.54360773 95.784134;200;-153.784;5;0.796987494 95.574242;200;-153.799;5;0.37776081 95.522827;200;-153.796;5;0.18704153 94;200;-153.745;5;0.36460873 93.735809;200;-153.736;5;0.959029094 93.620659;200;-153.732;5;0.453698565 93.209274;200;-153.744;5;0.323822378 92;200;-153.688;5;0.921915186 91.67292;200;-153.673;5;0.998154884 91.40036;200;-153.66;5;0.142839644 90;200;-153.512;5;0.092383367 89.879074;200;-153.5;5;0.436817103 89.499466;200;-153.499;5;0.247025283 89.436897;200;-153.499;5;0.241082733 88;200;-153.499;5;0.045064774 87.861;200;-153.499;5;0.471975733 87.547218;200;-153.547;5;0.429480055 87.41095;200;-153.568;5;0.261709023 86;200;-153.76;5;0.203384093 85.788925;200;-153.789;5;0.185188011 85.039406;200;-153.891;5;0.40262027 84.873138;200;-153.961;5;0.765971768 84.786476;200;-154;5;0.138170759 84.683876;200;-154.046;5;0.212676629 84.222878;200;-154.223;5;0.094150015 84;200;-154.308;5;0.526758687 82.7771;200;-154.777;5;0.793906258 82;200;-155.075;5;0.902829344 81.95874;200;-155.091;5;0.901174667 81.764893;200;-155.2;5;0.413627325 81.269524;200;-155.27;5;0.082768728 80;200;-155.449;5;0.971634276 79.961014;200;-155.454;5;0.009680309 79.777458;200;-155.462;5;0.576048584 79.451622;200;-155.452;5;0.178623331 78;200;-155.403;5;0.283599592 77.963013;200;-155.402;5;0.83356201 77.33651;200;-155.337;5;0.944604087 76.13163;200;-155.21;5;0.583134987 76;200;-155.203;5;0.135652046 75.964935;200;-155.201;5;0.378818804 75.799843;200;-155.2;5;0.722324262 75.181175;200;-155.181;5;0.792340103 74;200;-155.146;5;0.126139751 73.966972;200;-155.145;5;0.795516109 73.811478;200;-155.143;5;0.479039722 73.139847;200;-155.14;5;0.424414853 72;200;-155.135;5;0.78826302 71.969048;200;-155.135;5;0.012958853 71.823303;200;-155.135;5;0.11011977 71.16925;200;-155.169;5;0.765475836 70;200;-155.23;5;0.454994882 69.971176;200;-155.231;5;0.27523732 69.835449;200;-155.231;5;0.393880713 69.252518;200;-155.253;5;0.124479242 68;200;-155.299;5;0.092200145 67.973274;200;-155.3;5;0.987365744 67.847389;200;-155.293;5;0.335608472 67.284584;200;-155.285;5;0.149332845 66;200;-155.266;5;0.650822293 65.975281;200;-155.266;5;0.557113465 65.066399;200;-155.066;5;0.873421775 64.086044;200;-154.852;5;0.946292935 64;200;-154.837;5;0.669544354 63.977074;200;-154.833;5;0.005678938 63.868908;200;-154.763;5;0.434354698 62.834869;200;-154;5;0.241937437 62.795048;200;-153.971;5;0.667057041 62;200;-152.591;5;0.970871294 61.702694;200;-152.075;5;0.580980016 61.658306;200;-152.008;5;0.578398406 61.65604;200;-152;5;0.030349348 61.512527;200;-151.513;5;0.679176668 61.100384;200;-150.113;5;0.57939955 61.041973;200;-150.008;5;0.431308449 61.038593;200;-150;5;0.423640616 60.843529;200;-149.552;5;0.331089782 60.39946;200;-148.399;5;0.393980656 60.248493;200;-148.008;5;0.853410296 60.247894;200;-148;5;0.880185201 60.228989;200;-147.757;5;0.48159661 60;200;-147.387;5;0.427764466 59.977993;200;-147.352;5;0.135999563 59.424843;200;-146.328;5;0.714829293 59.073799;200;-146.008;5;0.70649181 59.070488;200;-146;5;0.753122736 58.348621;200;-144.349;5;0.48963668 58.289413;200;-144.213;5;0.610416513 58.183563;200;-144.007;5;0.518189602 58.186562;200;-144;5;0.271960022 58.219688;200;-143.918;5;0.456718208 58.273289;200;-143.709;5;0.143134653 58.619282;200;-142.619;5;0.165196042 58.813335;200;-142.008;5;0.743122853 58.823639;200;-142;5;0.515712199 58.915188;200;-141.93;5;0.200600322 59.403358;200;-141.403;5;0.181971407 59.863117;200;-140.907;5;0.510260396 59.975986;200;-140.78;5;0.799891392 60;200;-140.741;5;0.682245561 60.281914;200;-140.282;5;0.735285142 60.455074;200;-140;5;0.10778638 61.042934;200;-139.043;5;0.577291183 61.666145;200;-138.028;5;0.623385975 61.668449;200;-138;5;0.265112858 61.693405;200;-137.693;5;0.613159489 61.818439;200;-136.157;5;0.435692976 61.862343;200;-136.01;5;0.227388681 61.856976;200;-136;5;0.434880662 61.673439;200;-135.673;5;0.94559645 60.808044;200;-134.134;5;0.757318346 60.758114;200;-134.009;5;0.349165539 60.751308;200;-134;5;0.247726369 60;200;-132.983;5;0.311105937 59.379345;200;-132.143;5;0.275716564 59.292519;200;-132.009;5;0.183485497 59.286926;200;-132;5;0.773144856 58.08012;200;-130.12;5;0.771372808 58.017696;200;-130.018;5;0.048321261 58.011921;200;-130.008;5;0.980005328 58.006512;200;-130;5;0.126747087 58;200;-129.99;5;0.761362698 56.768612;200;-128.113;5;0.705966613 56.698357;200;-128;5;0.158210796 56.696178;200;-127.997;5;0.991386707 56;200;-127.015;5;0.28880739 55.978683;200;-126.985;5;0.269246726 55.905613;200;-126.895;5;0.368603183 55.163937;200;-126.007;5;0.39933003 55.156704;200;-126;5;0.366842664 55.137669;200;-125.981;5;0.997853054 54;200;-124.852;5;0.23699982 53.980869;200;-124.833;5;0.326184499 53.007969;200;-124.069;5;0.597565192 52.91798;200;-124.006;5;0.132087252 52.91172;200;-124;5;0.289657468 52;200;-123.08;5;0.073548913 51.983013;200;-123.063;5;0.494264152 51.90303;200;-122.996;5;0.319058588 51.755219;200;-122.675;5;0.65794345 51.446648;200;-122;5;0.191677413 50.980846;200;-120.981;5;0.803488107 50.532551;200;-120;5;0.266961549 50.447113;200;-119.813;5;0.952486866 50.927326;200;-118.927;5;0.721643895 51.430088;200;-118;5;0.309531258 51.630447;200;-117.63;5;0.044399524 51.762978;200;-117.386;5;0.799688896 51.913685;200;-117.094;5;0.821532298 51.997116;200;-117.02;5;0.03999937 52;200;-117.016;5;0.939293213 52.432796;200;-116.433;5;0.449149343 52.7495;200;-116.006;5;0.818265713 52.756626;200;-116;5;0.745273808 52.845936;200;-115.925;5;0.186716395 53.403584;200;-115.404;5;0.514753749 54;200;-114.846;5;0.421959733 54.013531;200;-114.833;5;0.194194142 54.420448;200;-114.42;5;0.517423374 54.828598;200;-114.007;5;0.572772254 54.833176;200;-114;5;0.20154734 54.884617;200;-113.926;5;0.767090828 55.329624;200;-113.33;5;0.766388092 55.980415;200;-112.457;5;0.545213223 56;200;-112.419;5;0.812705201 56.142658;200;-112.143;5;0.321334281 56.216187;200;-112;5;0.106097471 56.822876;200;-110.823;5;0.78332607 57.189262;200;-110.112;5;0.89834046 57.228012;200;-110.007;5;0.769211773 57.229305;200;-110;5;0.925623789 57.245453;200;-109.911;5;0.839973971 57.415466;200;-109.415;5;0.346089106 57.898464;200;-108.007;5;0.767035533 57.898991;200;-108;5;0.281994803 57.905899;200;-107.906;5;0.365708482 57.952412;200;-107.273;5;0.492916998 58;200;-106.809;5;0.282818945 58.067322;200;-106.154;5;0.208696522 58.090424;200;-106.09;5;0.309612383 58.120823;200;-106.007;5;0.081769825 58.121761;200;-106;5;0.608325413 58.142658;200;-105.844;5;0.551227814 58.015755;200;-104.016;5;0.368432363 58.015129;200;-104.007;5;0.454102521 58.016632;200;-104;5;0.159437731 58.024998;200;-103.963;5;0.965865926 58.100521;200;-102.101;5;0.117762793 58.104332;200;-102.006;5;0.564128853 58.106236;200;-102;5;0.606999449 58.155155;200;-101.833;5;0.623753483 58.2267;200;-100.952;5;0.321771882 58.321823;200;-100.322;5;0.898700604 58.356632;200;-100.091;5;0.974050901 58.330578;200;-100.006;5;0.721284291 58.330387;200;-100;5;0.162394894 58.313198;200;-99.4312;5;0.890372309 58.441216;200;-98.4412;5;0.766717306 58.497486;200;-98.0061;5;0.560487549 58.49913;200;-98;5;0.518807458 58.689484;200;-97.2994;5;0.47315133 58.56971;200;-96.5697;5;0.707804979 58.477142;200;-96.0057;5;0.187944634 58.478184;200;-96;5;0.5605581 58.586807;200;-95.4027;5;0.63793944 58.135468;200;-94.7296;5;0.896707763 58;200;-94.2128;5;0.233990919 57.99799;200;-94.2052;5;0.840632432 57.141659;200;-94;5;0.837229732 56;200;-93.7265;5;0.655259689 55.98682;200;-93.7233;5;0.247315955 55.886395;200;-93.6308;5;0.143158057 55.606262;200;-93.6063;5;0.579018994 54;200;-93.4658;5;0.598610977 53.988529;200;-93.4648;5;0.018725581 53.926506;200;-93.4299;5;0.275593038 53.409084;200;-93.4091;5;0.029393414 52;200;-93.3523;5;0.250142853 51.990093;200;-93.3519;5;0.686373582 51.946682;200;-93.3376;5;0.021323538 51.371231;200;-93.3712;5;0.405147167 50.000004;200;-93.4513;5;0.124048407 49.991493;200;-93.4518;5;0.005430227 49.511856;200;-93.5119;5;0.180988579 48.024712;200;-93.6982;5;0.784547279 47.999996;200;-93.6946;5;0.038565703 47.992756;200;-93.6935;5;0.979686798 47.964745;200;-93.6936;5;0.338822991 47.734467;200;-93.7345;5;0.199365885 46.24012;200;-94;5;0.172829288 46.093891;200;-94.026;5;0.413544762 46.067623;200;-94.0283;5;0.208500402 46.034622;200;-94.0346;5;0.680760041 46;200;-94.0412;5;0.82102339 44.35537;200;-94.3554;5;0.445271763 44;200;-94.4232;5;0.806633038 43.99498;200;-94.4242;5;0.757823997 42.732922;200;-94.7329;5;0.579900224 42.013348;200;-94.9089;5;0.184155053 42;200;-94.9115;5;0.709833683 41.995934;200;-94.9122;5;0.629602922 41.951977;200;-94.9236;5;0.991735137 41.117382;200;-95.1174;5;0.592704435 40.808613;200;-95.1891;5;0.395988048 40;200;-95.4647;5;0.728794055 39.996788;200;-95.4658;5;0.285004079 39.645321;200;-95.6453;5;0.492434882 38.950996;200;-96;5;0.199601187 38.949039;200;-96.001;5;0.319061978 38.209114;200;-96.2091;5;0.807296975 38;200;-96.2679;5;0.157781636 37.997513;200;-96.2686;5;0.91110267 37.435631;200;-96.3994;5;0.022969575 36.745937;200;-96.7459;5;0.410334784 36;200;-97.1207;5;0.83896438 35.99815;200;-97.1216;5;0.503856221 35.989391;200;-97.1242;5;0.579924725 35.379158;200;-97.3792;5;0.678594925 34;200;-97.9555;5;0.505866769 33.998703;200;-97.956;5;0.526546861 33.99258;200;-97.9576;5;0.987016951 33.967228;200;-97.9672;5;0.992044121 33.880875;200;-98;5;0.765148546 32.517437;200;-98.5174;5;0.286125927 32;200;-98.7138;5;0.756657253 31.999172;200;-98.7141;5;0.183533269 31.995256;200;-98.7155;5;0.391688828 31.091911;200;-99.0919;5;0.142038665 30;200;-99.5469;5;0.19177797 29.680216;200;-99.6802;5;0.430448446 28.91403;200;-99.9995;5;0.245588554 28.912436;200;-100;5;0.744525287 28.279701;200;-100.28;5;0.428863402 28;200;-100.403;5;0.387298872 26.892628;200;-100.893;5;0.341183399 25.999952;200;-101.287;5;0.266716282 25.543596;200;-101.544;5;0.622596415 24.731604;200;-102;5;0.866927908 24.26325;200;-102.263;5;0.604751528 23.999998;200;-102.411;5;0.257600849 23.961441;200;-102.433;5;0.758899114 23.033144;200;-103.033;5;0.028669933 22.75939;200;-103.21;5;0.488505379 22;200;-103.765;5;0.515570335 21.86446;200;-103.864;5;0.55494814 21.679071;200;-104;5;0.798558697 21.210157;200;-104.628;5;0.910192592 20.930458;200;-104.93;5;0.947431282 20;200;-105.937;5;0.946551206 19.982763;200;-105.983;5;0.384318825 19.9762;200;-106;5;0.299495509 19.43133;200;-107.431;5;0.138847563 19.214851;200;-108;5;0.697735712 19.069979;200;-109.07;5;0.726997129 18.944057;200;-110;5;0.519709814 18.911131;200;-110.911;5;0.149222919 18.87178;200;-112;5;0.294768199 18.890795;200;-112.891;5;0.716974516 18.914473;200;-114;5;0.250774835 19.019363;200;-115.019;5;0.438197796 19.120268;200;-116;5;0.290753178 19.187992;200;-117.188;5;0.077743602 19.234282;200;-118;5;0.011996389 19.09796;200;-119.098;5;0.300715089 18.985964;200;-120;5;0.672173102 18.623911;200;-120.624;5;0.105087829 18;200;-121.699;5;0.266032477 17.889496;200;-121.89;5;0.461868317 17.825371;200;-122;5;0.721414398 16.863443;200;-122.863;5;0.854535331 16;200;-123.638;5;0.346502861 15.82701;200;-123.827;5;0.797765015 15.668275;200;-124;5;0.389723553 14.979067;200;-124.979;5;0.03030863 14.260388;200;-126;5;0.045502984 14.19724;200;-126.197;5;0.831478936 14;200;-126.813;5;0.459250134 13.874064;200;-127.453;5;0.869305147 13.830323;200;-127.83;5;0.774131533 13.810672;200;-128;5;0.694072527 13.807672;200;-129.444;5;0.567817869 13.856156;200;-129.856;5;0.115953597 13.873077;200;-130;5;0.412169021 13.982388;200;-130.556;5;0.27442695 14;200;-130.786;5;0.011216685 14.092903;200;-132;5;0.634491757 14.114719;200;-132.115;5;0.6736377 14.473243;200;-134;5;0.460600059 14.558764;200;-134.559;5;0.986119563 14.779354;200;-136;5;0.718429793 14.825164;200;-136.825;5;0.432283589 14.890386;200;-138;5;0.093261412 14.982459;200;-138.982;5;0.663362415 15.07782;200;-140;5;0.203620783 15.214046;200;-141.214;5;0.176464076 15.302238;200;-142;5;0.719459749 15.65266;200;-143.653;5;0.604769339 15.726309;200;-144;5;0.753724611 16;200;-144.679;5;0.037639812 16.531897;200;-146;5;0.505472588 17.829264;200;-147.795;5;0.840129306 17.857388;200;-147.857;5;0.599657706 17.921856;200;-148;5;0.129799627 18;200;-148.146;5;0.367272389 19.34585;200;-150;5;0.967571865 20;200;-151.626;5;0.138723539 20.241436;200;-152;5;0.913801653 20.26218;200;-152.262;5;0.311020967 20.264856;200;-152.296;5;0.482018532 20.258335;200;-154;5;0.138011574 20.207539;200;-154.208;5;0.01177347 20;200;-155.055;5;0.23843946 19.814278;200;-155.814;5;0.981574812 19.768822;200;-156;5;0.374052222 19.289038;200;-157.289;5;0.835579889 19.024416;200;-158;5;0.361151134 18.685017;200;-158.685;5;0.446531385 18.033493;200;-160;5;0.622772793 18.020617;200;-160.021;5;0.306621148 18;200;-160.054;5;0.8179877 17.213493;200;-161.213;5;0.448407473 16.680159;200;-162;5;0.550448432 16.237228;200;-162.237;5;0.767008863 16;200;-162.364;5;0.508470679 14.9348;200;-162.935;5;0.00581022 14;200;-163.435;5;0.490654107 13.538446;200;-163.538;5;0.3395066 11.999999;200;-163.882;5;0.614123324 11.890286;200;-163.89;5;0.911184353 10.491365;200;-164;5;0.543787735 10.035733;200;-164.036;5;0.510170348 10;200;-164.039;5;0.891634734 8.181179;200;-164.181;5;0.134164198 8;200;-164.195;5;0.698419389 6.180269;200;-164.18;5;0.895840166 6;200;-164.179;5;0.99350162 4.17873;200;-164.179;5;0.34174061 4;200;-164.179;5;0.967822332 2.173473;200;-164.173;5;0.825457967 2;200;-164.173;5;0.433149752 0.209167;200;-164.209;5;0.25478212 0;200;-164.213;5;0.654400352 268;200;-122.198;5;0.08182241 267.736267;200;-122;5;0.040330996 266.558746;200;-121.118;5;0.001687085 266;200;-120.767;5;0.800576727 265.686493;200;-120.571;5;0.842897088 265.517212;200;-120;5;0.750849932 265.313599;200;-119.314;5;0.817938444 265.935547;200;-118;5;0.543892671 265.978424;200;-117.979;5;0.504871616 265.978912;200;-117.979;5;0.222645179 266;200;-117.974;5;0.388410855 267.616364;200;-117.616;5;0.134264209 268;200;-117.531;5;0.83222987 269.373322;200;-117.373;5;0.3639617 270;200;-117.301;5;0.558213745 271.272614;200;-117.273;5;0.306541284 272;200;-117.256;5;0.62716062 273.335144;200;-117.335;5;0.132893227 274;200;-117.374;5;0.461578302 275.318298;200;-118;5;0.852438979 275.54068;200;-119.541;5;0.243065299 275.606964;200;-120;5;0.155022955 274.819;200;-120.819;5;0.623156948 274;200;-121.67;5;0.588819751 273.757355;200;-121.757;5;0.304230431 273.081085;200;-122;5;0.235483744 272.285461;200;-122.285;5;0.502800184 272;200;-122.362;5;0.884725204 270.438293;200;-122.438;5;0.087440968 270;200;-122.46;5;0.975978974 268.227478;200;-122.227;5;0.186059152 298;160;-154.162;7;0.333867845 296.049988;160;-154.05;7;0.94068502 296;160;-154.047;7;0.639036884 295.901215;160;-154.048;7;0.371621939 294.111603;160;-154.112;7;0.315740768 294;160;-154.116;7;0.025936378 293.760742;160;-154.129;7;0.242999969 292.194244;160;-154.194;7;0.799964215 292;160;-154.202;7;0.262704086 291.623657;160;-154.231;7;0.742766583 290.329956;160;-154.33;7;0.003207057 290;160;-154.355;7;0.661997251 288.47171;160;-154.472;7;0.697006589 288;160;-154.508;7;0.769799414 286.662231;160;-154.662;7;0.370021867 286;160;-154.739;7;0.250776287 284.878815;160;-154.879;7;0.452318673 284;160;-154.989;7;0.861167826 283.116852;160;-155.117;7;0.213494036 282;160;-155.279;7;0.227415302 281.361359;160;-155.361;7;0.004715025 280;160;-155.537;7;0.983293025 279.5625;160;-155.562;7;0.801610809 278;160;-155.654;7;0.877150721 277.605865;160;-155.606;7;0.469757821 276.264465;160;-155.443;7;0.083749753 276;160;-155.2;7;0.043506273 274.695435;160;-154;7;0.165448313 274.431335;160;-152.431;7;0.921937747 274.358704;160;-152;7;0.543443409 274.260101;160;-150.26;7;0.254998671 274.245361;160;-150;7;0.964460836 274.270782;160;-148.271;7;0.79982257 274.27478;160;-148;7;0.215753526 274.459412;160;-146.459;7;0.139858607 274.514465;160;-146;7;0.95181432 274.840485;160;-144.84;7;0.619069512 275.076782;160;-144;7;0.681237972 275.456451;160;-143.456;7;0.965241628 276;160;-142.678;7;0.112915834 276.493591;160;-142.494;7;0.754970226 277.81308;160;-142;7;0.624037817 277.956268;160;-141.956;7;0.418833996 278;160;-141.943;7;0.981745569 279.488464;160;-141.488;7;0.379733677 280;160;-141.332;7;0.988568672 280.933838;160;-140.934;7;0.042031208 282;160;-140.479;7;0.08548393 282.335724;160;-140.336;7;0.446207123 283.122528;160;-140;7;0.473204936 283.507843;160;-139.508;7;0.077653941 284;160;-138.879;7;0.604414558 284.347961;160;-138.348;7;0.721760717 284.575897;160;-138;7;0.729223527 284.607635;160;-136.608;7;0.640806025 284.59787;160;-136;7;0.328798318 284;160;-135.348;7;0.346416409 282.641907;160;-134.642;7;0.28730008 282;160;-134.308;7;0.965125602 280.402832;160;-134;7;0.80101609 280;160;-133.922;7;0.010423082 279.908966;160;-133.909;7;0.734041989 278;160;-133.629;7;0.196188521 277.103302;160;-133.103;7;0.41483485 276;160;-132.457;7;0.204215764 275.220764;160;-132;7;0.779717709 274.264008;160;-130.264;7;0.422826421 274.1185;160;-130;7;0.479763105 274;160;-129.785;7;0.069107519 273.129974;160;-128;7;0.750625631 272.302643;160;-126.303;7;0.762202172 272.155121;160;-126;7;0.045106362 272;160;-125.682;7;0.894620744 271.231995;160;-124;7;0.6272079 271.018036;160;-123.018;7;0.44017221 270.796204;160;-122;7;0.313979519 271.115295;160;-121.115;7;0.959769273 271.517609;160;-120;7;0.930921826 271.645477;160;-119.645;7;0.683880664 272;160;-118.663;7;0.498064671 272.287476;160;-118.287;7;0.476029989 272.507782;160;-118;7;0.14771372 273.155182;160;-117.155;7;0.159822817 274;160;-116.053;7;0.234790474 274.019592;160;-116.02;7;0.873042253 274.031128;160;-116;7;0.497152082 274.761444;160;-114.761;7;0.410013635 275.210419;160;-114;7;0.923446232 275.255829;160;-113.256;7;0.511437284 275.332489;160;-112;7;0.400608869 275.078247;160;-111.078;7;0.087613683 274.780823;160;-110;7;0.321446759 274;160;-108.457;7;0.70738079 273.561829;160;-108;7;0.807745494 272;160;-106.373;7;0.852722157 271.254883;160;-106;7;0.168847547 270;160;-105.372;7;0.050756988 269.151062;160;-105.151;7;0.611397948 268.000488;160;-104.851;7;0.909164984 268;160;-104.851;7;0.313603642 267.996887;160;-104.85;7;0.880652318 266.547516;160;-104.548;7;0.723358549 266.04187;160;-104.442;7;0.847341932 266;160;-104.433;7;0.363490295 264.275787;160;-104.073;7;0.782871058 264.138611;160;-104.052;7;0.431008338 264.033966;160;-104.034;7;0.016626668 264;160;-104.028;7;0.12401402 263.835907;160;-104;7;0.651696541 263.211578;160;-103.893;7;0.281269017 262.281525;160;-103.808;7;0.435385609 262;160;-103.753;7;0.185072817 261.834625;160;-103.721;7;0.116146342 261.704803;160;-103.705;7;0.569528421 260.687775;160;-103.576;7;0.8816185 260.450775;160;-103.549;7;0.471573271 260.280243;160;-103.547;7;0.991162746 260;160;-103.532;7;0.883241935 259.506165;160;-103.506;7;0.17809178 258.643982;160;-103.46;7;0.046609738 258;160;-103.486;7;0.154368919 257.50647;160;-103.506;7;0.667799089 256.89682;160;-103.531;7;0.755897608 256.851959;160;-103.532;7;0.526518181 256.802887;160;-103.537;7;0.138868663 256;160;-103.649;7;0.712502362 255.691635;160;-103.692;7;0.899352984 255.066452;160;-103.779;7;0.905430559 254;160;-103.993;7;0.315198514 253.99408;160;-103.994;7;0.718099286 253.964645;160;-104;7;0.730082155 253.416855;160;-104.11;7;0.96213777 253.271179;160;-104.133;7;0.203478755 253.018158;160;-104.156;7;0.4748257 252.220947;160;-104.221;7;0.179642283 252;160;-104.239;7;0.644597244 251.417343;160;-104.287;7;0.0881629 250.753754;160;-104.278;7;0.075204025 250.250931;160;-104.251;7;0.638316593 250;160;-104.238;7;0.932888742 249.482635;160;-104.21;7;0.064839087 248.684555;160;-104.045;7;0.324410121 248.487396;160;-104;7;0.452468161 248;160;-103.889;7;0.944191967 247.855621;160;-103.856;7;0.215729452 247.430145;160;-103.758;7;0.603807181 246.943741;160;-103.614;7;0.13736839 246;160;-103.329;7;0.608209197 245.639236;160;-103.22;7;0.216679624 245.375885;160;-103.135;7;0.073813606 245.024368;160;-103.024;7;0.83287295 244.930786;160;-102.995;7;0.44203387 244;160;-102.687;7;0.392414822 243.027664;160;-102.366;7;0.061735592 242.45903;160;-102.222;7;0.587673331 242.170868;160;-102.171;7;0.722399961 242;160;-102.141;7;0.15797968 241.610077;160;-102.071;7;0.86084053 241.268234;160;-102;7;0.948525105 241.084396;160;-101.962;7;0.15898169 240.775269;160;-101.908;7;0.93794707 240;160;-101.846;7;0.649714391 239.832169;160;-101.832;7;0.561026335 239.647751;160;-101.817;7;0.27271678 238.539871;160;-101.762;7;0.785196005 238.201294;160;-101.758;7;0.864267669 238;160;-101.758;7;0.713625269 237.758759;160;-101.759;7;0.879510075 237.448456;160;-101.759;7;0.8898815 236.330017;160;-101.766;7;0.877761155 236;160;-101.793;7;0.929627031 235.808777;160;-101.809;7;0.15067852 235.473892;160;-101.836;7;0.220058184 234.265137;160;-101.953;7;0.688384385 234.000015;160;-101.978;7;0.272090986 233.980362;160;-101.98;7;0.897584329 233.776611;160;-102;7;0.72722927 232.264587;160;-102.146;7;0.143611767 232.158798;160;-102.159;7;0.771173156 232.050125;160;-102.172;7;0.045674243 232;160;-102.176;7;0.667268933 231.302063;160;-102.228;7;0.696978956 230.308029;160;-102.308;7;0.245643564 230.169418;160;-102.319;7;0.82818793 230;160;-102.325;7;0.712164917 229.999344;160;-102.325;7;0.143683908 229.816589;160;-102.324;7;0.464680164 228.393616;160;-102.394;7;0.556149894 228;160;-102.413;7;0.682914984 227.997025;160;-102.413;7;0.151699535 227.783768;160;-102.39;7;0.185671424 226.315063;160;-102.315;7;0.419214953 225.999985;160;-102.299;7;0.605763206 225.997467;160;-102.299;7;0.933653289 224.386581;160;-102;7;0.209601539 224.24437;160;-101.974;7;0.8140067 224.137527;160;-101.95;7;0.044794195 224;160;-101.911;7;0.808220651 223.875153;160;-101.875;7;0.813230538 222.018158;160;-101.345;7;0.34745613 222;160;-101.34;7;0.554547488 221.041885;160;-101.042;7;0.171419142 220;160;-100.718;7;0.204439813 218.621368;160;-100.517;7;0.085869523 218.491165;160;-100.491;7;0.945690063 218;160;-100.393;7;0.323863403 216.032013;160;-100;7;0.1555627 216;160;-99.9936;7;0.065497178 215.993011;160;-99.993;7;0.857616442 214;160;-99.8231;7;0.215060913 213.822891;160;-99.8229;7;0.54756696 212.488098;160;-99.8211;7;0.202460773 212;160;-99.8077;7;0.613107 211.805084;160;-99.8051;7;0.343591289 210.001938;160;-99.7804;7;0.034983014 210.000534;160;-99.7804;7;0.385340476 210;160;-99.7805;7;0.424461714 209.990677;160;-99.7812;7;0.742391138 209.797974;160;-99.798;7;0.359448711 208.135162;160;-99.9427;7;0.160241494 208;160;-99.9445;7;0.560378042 207.999588;160;-99.9445;7;0.803228737 207.949326;160;-99.9493;7;0.32570536 207.864166;160;-99.9575;7;0.51018315 207.637772;160;-100;7;0.573745903 206.258926;160;-100.259;7;0.581587755 206.053055;160;-100.298;7;0.143765447 206;160;-100.308;7;0.563162388 205.99913;160;-100.308;7;0.035366078 205.493744;160;-100.487;7;0.705723261 204.750443;160;-100.75;7;0.814008106 204;160;-101.016;7;0.52628687 203.981476;160;-101.023;7;0.133335361 203.329407;160;-101.329;7;0.055440685 202.332748;160;-101.798;7;0.318201398 202.198944;160;-101.853;7;0.343141271 202.015778;160;-101.931;7;0.744657865 202;160;-101.94;7;0.061535874 201.963089;160;-101.963;7;0.341631447 201.90329;160;-102;7;0.568707109 200.726471;160;-102.726;7;0.696388875 200.000015;160;-103.175;7;0.236739679 199.60556;160;-103.418;7;0.616536487 199.472336;160;-103.472;7;0.531881629 198.858948;160;-103.721;7;0.857083364 198.206528;160;-104;7;0.426673415 198.061935;160;-104.062;7;0.441093838 198;160;-104.088;7;0.827670823 197.342346;160;-104.37;7;0.262091679 196.592712;160;-104.593;7;0.770231338 196;160;-104.769;7;0.109554938 195.945251;160;-104.785;7;0.736260111 195.142395;160;-104.982;7;0.203853518 195.007629;160;-105.008;7;0.477328237 194;160;-105.197;7;0.111655336 193.324295;160;-105.324;7;0.134910651 193.062027;160;-105.374;7;0.871898136 193.021088;160;-105.381;7;0.617699283 192.95311;160;-105.408;7;0.419695889 192.81105;160;-105.569;7;0.588632665 192.367188;160;-106;7;0.661253271 192.180908;160;-106.181;7;0.010694381 191.999985;160;-106.357;7;0.770106205 191.166382;160;-107.166;7;0.694132369 191.116867;160;-107.214;7;0.250809253 190.941208;160;-108;7;0.700958287 190.843994;160;-108.435;7;0.176771889 190.687775;160;-108.688;7;0.469047845 190.469421;160;-109.041;7;0.447240145 190;160;-109.66;7;0.136419224 189.991058;160;-109.671;7;0.597935468 189.895462;160;-109.895;7;0.951776958 189.850861;160;-110;7;0.877398068 189.463074;160;-110.909;7;0.248685454 189.196091;160;-111.196;7;0.401492023 188.448624;160;-112;7;0.349361549 188.232468;160;-112.232;7;0.053633581 188;160;-112.482;7;0.367100375 187.669128;160;-112.838;7;0.893394947 187.630829;160;-112.88;7;0.453814858 187.617798;160;-112.892;7;0.824235357 187.244751;160;-113.245;7;0.971026646 186.445435;160;-114;7;0.591888051 186.350327;160;-114.09;7;0.858408042 186.24527;160;-114.228;7;0.336395643 186.237854;160;-114.238;7;0.85347443 186;160;-114.558;7;0.933724136 185.791275;160;-114.839;7;0.633256889 185.382111;160;-115.382;7;0.681581388 184.91658;160;-116;7;0.360351042 184.522751;160;-116.523;7;0.384544227 184.495102;160;-116.559;7;0.182860798 184.10379;160;-117.141;7;0.837207515 184;160;-117.393;7;0.555118531 183.851166;160;-117.754;7;0.478950694 183.82312;160;-117.823;7;0.376956283 183.75148;160;-118;7;0.687334408 183.246628;160;-119.247;7;0.354942016 183.225693;160;-119.298;7;0.469556152 183.04631;160;-120;7;0.834047444 182.959763;160;-120.339;7;0.834586825 182.799408;160;-120.799;7;0.82974047 182.567444;160;-121.466;7;0.16498408 182.472076;160;-122;7;0.177351254 182.400528;160;-122.401;7;0.288035531 182.353851;160;-122.662;7;0.841756111 182;160;-123.468;7;0.511947058 181.919617;160;-123.651;7;0.870666076 181.884842;160;-123.885;7;0.157075345 181.867706;160;-124;7;0.642660837 181.625641;160;-125.626;7;0.096511641 181.621323;160;-125.655;7;0.582244197 181.587799;160;-125.799;7;0.532847501 181.595444;160;-125.842;7;0.497648365 181.642303;160;-125.932;7;0.006352292 181.670074;160;-126;7;0.08849781 182;160;-126.809;7;0.870581266 182.20636;160;-127.315;7;0.93086081 182.608887;160;-127.842;7;0.485303766 182.799454;160;-128;7;0.074858246 184;160;-128.994;7;0.865668371 184.058502;160;-129.042;7;0.650876796 185.025787;160;-129.84;7;0.148309978 185.174576;160;-130;7;0.73208406 185.668121;160;-130.53;7;0.587390554 186;160;-131.005;7;0.463873704 186.61937;160;-131.891;7;0.650674333 186.648666;160;-132;7;0.492371098 186.703308;160;-132.204;7;0.466833773 186.783279;160;-132.783;7;0.492452334 186.926987;160;-133.825;7;0.89799157 186.944138;160;-133.943;7;0.842166884 186.946136;160;-133.971;7;0.837635342 186.940735;160;-134;7;0.40141991 186.792801;160;-134.793;7;0.456066052 186.597092;160;-135.842;7;0.97052162 186.569611;160;-136;7;0.959846885 186.568695;160;-136.005;7;0.806443772 186.398148;160;-136.351;7;0.137905847 186.38324;160;-136.383;7;0.99773661 186;160;-137.217;7;0.753086383 185.753189;160;-137.753;7;0.293166764 185.639679;160;-138;7;0.507578259 185.637039;160;-138.006;7;0.364101763 185.064331;160;-139.064;7;0.619590993 184.755142;160;-139.636;7;0.416119484 184.567856;160;-140;7;0.235762972 184.564758;160;-140.006;7;0.580297023 184.39212;160;-140.392;7;0.833776568 184;160;-141.269;7;0.792044703 183.774155;160;-141.774;7;0.233699434 183.707718;160;-141.923;7;0.260424442 183.670547;160;-142;7;0.150354562 183.667572;160;-142.006;7;0.155836104 183.628906;160;-142.09;7;0.582908004 183.317932;160;-143.318;7;0.423149665 183.145233;160;-144;7;0.52696855 183.143646;160;-144.006;7;0.25663762 182.71669;160;-144.717;7;0.336847071 182.707581;160;-144.732;7;0.567486735 182.079956;160;-146;7;0.576814188 182.053482;160;-146.053;7;0.760011989 182;160;-146.162;7;0.504416158 181.981735;160;-146.198;7;0.199524533 181.686005;160;-147.303;7;0.297736285 181.588959;160;-147.589;7;0.590087554 181.449448;160;-148;7;0.929348795 181.172729;160;-148.815;7;0.305860928 181.044449;160;-149.044;7;0.532500068 180.586365;160;-149.862;7;0.803166049 180.476959;160;-150;7;0.052731688 180.46698;160;-150.013;7;0.121738918 180.42276;160;-150.038;7;0.26224085 180.218887;160;-150.219;7;0.429727958 180;160;-150.413;7;0.969687638 179.157959;160;-151.158;7;0.549514254 178.213654;160;-151.994;7;0.517648256 178.191452;160;-152;7;0.57115416 178.041809;160;-152.042;7;0.636962158 178;160;-152.053;7;0.047333104 176.478546;160;-152.479;7;0.135593541 176.030258;160;-152.604;7;0.678471186 176;160;-152.613;7;0.621959135 175.977829;160;-152.619;7;0.977892303 175.872238;160;-152.623;7;0.337155598 174.5728;160;-152.573;7;0.54903057 174.000015;160;-152.551;7;0.798809865 173.975723;160;-152.55;7;0.656217023 173.859985;160;-152.538;7;0.797461853 172.313843;160;-152.314;7;0.582785083 172;160;-152.268;7;0.121039162 171.97345;160;-152.264;7;0.607181832 171.846878;160;-152.245;7;0.239740541 170.552277;160;-152.002;7;0.063799005 170.536011;160;-152;7;0.999879906 170.417526;160;-151.985;7;0.756521302 170;160;-151.928;7;0.66904892 169.917297;160;-151.917;7;0.705793466 168;160;-151.658;7;0.766923205 167.968765;160;-151.654;7;0.134558879 167.819916;160;-151.653;7;0.445213619 167.650742;160;-151.651;7;0.649535984 166.000015;160;-151.628;7;0.685299456 165.966553;160;-151.628;7;0.966158 165.807083;160;-151.652;7;0.281616739 165.673126;160;-151.673;7;0.833450504 164;160;-151.932;7;0.272228304 163.964462;160;-151.938;7;0.828654581 163.943436;160;-151.943;7;0.785792999 163.795242;160;-151.982;7;0.221512059 163.725067;160;-152;7;0.702957842 162.346252;160;-152.346;7;0.818976637 162;160;-152.433;7;0.316696154 161.96254;160;-152.443;7;0.236489441 161.784103;160;-152.487;7;0.511712062 160.706818;160;-152.707;7;0.297469761 160;160;-152.851;7;0.362829611 159.960571;160;-152.859;7;0.298168279 159.772827;160;-152.891;7;0.255820048 159.007202;160;-153.007;7;0.13531019 157.999985;160;-153.16;7;0.068999967 157.958572;160;-153.166;7;0.359979786 157.761353;160;-153.188;7;0.953116431 157.206436;160;-153.206;7;0.360598952 156;160;-153.246;7;0.491439625 155.956497;160;-153.247;7;0.191831286 155.619156;160;-153.298;7;0.67994231 155.318329;160;-153.318;7;0.202873454 154;160;-153.409;7;0.13806199 153.819473;160;-153.422;7;0.657249439 153.521378;160;-153.521;7;0.844864508 152.091476;160;-154;7;0.919365522 152.042114;160;-154.017;7;0.408951887 152.022232;160;-154.022;7;0.825776387 152;160;-154.029;7;0.182577408 151.714218;160;-154.111;7;0.899673913 150.655151;160;-154.655;7;0.92582592 150;160;-154.992;7;0.182580024 149.951614;160;-155.017;7;0.288328532 149.721664;160;-155.109;7;0.13940091 149.349686;160;-155.35;7;0.539899526 148.390076;160;-155.97;7;0.313655349 148.300446;160;-156;7;0.450483118 148.075684;160;-156.076;7;0.216942853 148;160;-156.101;7;0.668061768 146.579544;160;-156.58;7;0.073647668 146.188904;160;-156.711;7;0.218546936 146;160;-156.782;7;0.145871947 145.949295;160;-156.801;7;0.494017719 145.708237;160;-156.863;7;0.959966659 145.014359;160;-157.014;7;0.672429174 144;160;-157.236;7;0.487242437 143.947922;160;-157.247;7;0.558646112 143.700378;160;-157.3;7;0.260916077 143.338455;160;-157.338;7;0.681554366 142;160;-157.48;7;0.364382945 141.946472;160;-157.486;7;0.245664358 141.66777;160;-157.576;7;0.988730433 141.594025;160;-157.594;7;0.14160265 140;160;-157.976;7;0.410541377 139.980972;160;-157.981;7;0.84609588 139.901611;160;-158;7;0.029860861 139.821487;160;-158.019;7;0.046673578 139.586624;160;-158.091;7;0.136525433 138.369751;160;-158.37;7;0.079288406 138;160;-158.454;7;0.022975668 137.944321;160;-158.467;7;0.191567041 137.679932;160;-158.539;7;0.388459356 136.730652;160;-158.731;7;0.671791363 136;160;-158.878;7;0.51171046 135.943344;160;-158.889;7;0.573216315 135.67453;160;-158.978;7;0.642370195 135.101395;160;-159.101;7;0.94369292 134;160;-159.338;7;0.394810929 133.94252;160;-159.35;7;0.076051571 133.432373;160;-159.432;7;0.286399153 132.217484;160;-159.627;7;0.294669529 132;160;-159.677;7;0.490396517 131.941711;160;-159.691;7;0.772261777 131.721451;160;-159.721;7;0.359953913 130.680817;160;-159.866;7;0.097385833 130.073853;160;-159.939;7;0.457034449 130;160;-159.945;7;0.790333257 129.949677;160;-159.95;7;0.42613168 129.940933;160;-159.95;7;0.915742909 129.808456;160;-159.961;7;0.004227792 129.495331;160;-160;7;0.639477658 129.32753;160;-160.021;7;0.325094299 128.212082;160;-160.11;7;0.743776728 128.114929;160;-160.115;7;0.481429064 128;160;-160.121;7;0.498517698 127.928635;160;-160.124;7;0.968861135 126.207062;160;-160.207;7;0.057090064 126;160;-160.217;7;0.713997076 125.939476;160;-160.22;7;0.606253983 125.393608;160;-160.24;7;0.273833825 124.317474;160;-160.317;7;0.960406113 124;160;-160.34;7;0.862486251 123.938919;160;-160.345;7;0.271867927 123.131218;160;-160.285;7;0.011279887 122.301353;160;-160.301;7;0.623100212 122;160;-160.307;7;0.861983267 121.938324;160;-160.308;7;0.317278789 120.304115;160;-160.022;7;0.017749655 120.257111;160;-160;7;0.740524841 120;160;-159.88;7;0.342009616 119.809364;160;-159.791;7;0.573447803 119.732407;160;-159.732;7;0.822793065 119.367287;160;-159.453;7;0.158425458 118;160;-158.435;7;0.633366324 117.935593;160;-158.387;7;0.905059284 117.569771;160;-158.023;7;0.882105759 117.56134;160;-158;7;0.942508318 117.303444;160;-157.303;7;0.506589283 116.946159;160;-156.338;7;0.276856043 116.827942;160;-156.023;7;0.758340758 116.827202;160;-156;7;0.022935427 116.788948;160;-154.789;7;0.797610711 116.774323;160;-154.326;7;0.98335472 116.805252;160;-154.024;7;0.024729043 116.812698;160;-154;7;0.542311544 116.905937;160;-153.698;7;0.202184905 117.041435;160;-153.041;7;0.213511141 117.251373;160;-152.025;7;0.260058024 117.263329;160;-152;7;0.387095388 117.503319;160;-151.503;7;0.75532763 117.740845;160;-151.012;7;0.856689092 117.928528;160;-150.584;7;0.316271954 118;160;-150.431;7;0.424497041 118.044968;160;-150.335;7;0.636058154 118.142616;160;-150.143;7;0.739582594 118.215134;160;-150;7;0.021489553 118.81675;160;-148.817;7;0.231130877 119.218956;160;-148.026;7;0.993611306 119.227448;160;-148;7;0.06217612 119.333839;160;-147.678;7;0.793103348 119.438438;160;-147.438;7;0.923631612 120;160;-146.152;7;0.734370777 120.04628;160;-146.046;7;0.731112786 120.055069;160;-146.026;7;0.776968249 120.059319;160;-146;7;0.037390489 120.142029;160;-145.491;7;0.168696106 120.413933;160;-144.414;7;0.692998162 120.511703;160;-144.027;7;0.062741057 120.512215;160;-144;7;0.593038002 120.539551;160;-142.573;7;0.001245196 120.539764;160;-142.54;7;0.611905321 120.543045;160;-142.027;7;0.61990938 120.532295;160;-142;7;0.796716181 120;160;-140.668;7;0.35174084 119.890793;160;-140.394;7;0.241163487 119.767227;160;-140.027;7;0.138248445 119.752617;160;-140;7;0.591498426 119.467514;160;-139.468;7;0.883513103 118.89566;160;-138.399;7;0.061822395 118.712585;160;-138.028;7;0.791813191 118.695946;160;-138;7;0.406133719 118;160;-136.844;7;0.164022844 117.748535;160;-136.426;7;0.987829801 117.524208;160;-136.028;7;0.9318884 117.511169;160;-136;7;0.471446933 117.082954;160;-135.083;7;0.973318892 116.767235;160;-134.407;7;0.148864757 116.62056;160;-134.028;7;0.47070544 116.614525;160;-134;7;0.886235287 116.466057;160;-133.309;7;0.756496309 116.138062;160;-132.138;7;0.808782371 116.107292;160;-132.028;7;0.006506378 116.100487;160;-132;7;0.938929089 116.000938;160;-131.587;7;0.993800794 116;160;-131.572;7;0.264818268 115.919411;160;-130.279;7;0.696698811 115.891785;160;-130.028;7;0.056087327 115.885559;160;-130;7;0.673837168 115.866951;160;-129.915;7;0.837662025 115.851044;160;-129.851;7;0.504594459 115.399879;160;-128.028;7;0.512852308 115.39109;160;-128;7;0.707225924 115.117256;160;-127.117;7;0.425471983 114.897774;160;-126.41;7;0.00760781 114.745842;160;-126.028;7;0.693861681 114.732262;160;-126;7;0.044557405 114;160;-124.475;7;0.757557367 113.915321;160;-124.299;7;0.405488347 113.699486;160;-124.028;7;0.380624211 113.681458;160;-124;7;0.51839615 113.115173;160;-123.115;7;0.645861158 112.661133;160;-122.406;7;0.982319026 112.406303;160;-122.028;7;0.213398729 112.400963;160;-122;7;0.116961446 112.145271;160;-120.661;7;0.362527976 112;160;-120.202;7;0.247249593 111.944939;160;-120.028;7;0.702271339 111.953636;160;-120;7;0.496837415 111.964699;160;-119.965;7;0.006934905 112;160;-119.852;7;0.749917477 112.14492;160;-119.39;7;0.506702629 112.409782;160;-118.41;7;0.975571354 112.513092;160;-118.027;7;0.727414634 112.524963;160;-118;7;0.451945307 112.627296;160;-117.763;7;0.79703544 113.091469;160;-117.091;7;0.538820023 113.554947;160;-116.421;7;0.28020348 113.663254;160;-116.076;7;0.450133233 113.690132;160;-116;7;0.732142908 113.7714;160;-115.771;7;0.747877491 114;160;-115.128;7;0.156573678 114.295929;160;-114.296;7;0.567161363 114.391602;160;-114.027;7;0.239761017 114.38929;160;-114;7;0.939413173 114.296448;160;-112.924;7;0.464993426 114.079994;160;-112.08;7;0.581211003 114.066246;160;-112.026;7;0.345399258 114.036186;160;-112;7;0.778577814 114;160;-111.968;7;0.550644157 113.81282;160;-111.804;7;0.117231132 113.782539;160;-111.783;7;0.281202817 112.826492;160;-111.111;7;0.576788832 112;160;-110.589;7;0.064654859 111.663376;160;-110.376;7;0.029433097 111.245644;160;-110.123;7;0.913942896 110.977257;160;-110;7;0.4778508 110;160;-109.551;7;0.936823135 109.926987;160;-109.518;7;0.315833284 109.582237;160;-109.359;7;0.460446324 109.172928;160;-109.173;7;0.25218654 108;160;-108.639;7;0.542300287 106.594421;160;-108;7;0.317037692 106.264816;160;-107.85;7;0.257640467 106;160;-107.742;7;0.794188421 105.929321;160;-107.713;7;0.910841889 105.595848;160;-107.574;7;0.207850587 105.554382;160;-107.554;7;0.00162814 104;160;-106.808;7;0.667999904 103.930756;160;-106.775;7;0.306113909 103.604164;160;-106.642;7;0.464322835 102.195877;160;-106;7;0.554190699 102;160;-105.911;7;0.972343878 101.932304;160;-105.88;7;0.104230349 101.821777;160;-105.822;7;0.424056113 101.566223;160;-105.688;7;0.103914656 100.000008;160;-104.871;7;0.990683516 99.887894;160;-104.813;7;0.964192992 99.076698;160;-104.346;7;0.623255517 98.465721;160;-104;7;0.18595893 98.240311;160;-103.872;7;0.750393027 98;160;-103.747;7;0.724107208 97.942009;160;-103.717;7;0.21176291 97.53817;160;-103.538;7;0.961161235 95.999992;160;-102.857;7;0.814509484 95.959152;160;-102.839;7;0.154856977 94.787346;160;-102.311;7;0.385737089 94.499184;160;-102.225;7;0.303297164 94.146896;160;-102.147;7;0.270655057 94;160;-102.114;7;0.182047474 93.577377;160;-102.021;7;0.508626605 93.473564;160;-102;7;0.913155617 92.277992;160;-101.758;7;0.004908923 92;160;-101.71;7;0.102506346 91.941704;160;-101.7;7;0.620448509 91.711845;160;-101.712;7;0.981830503 90.168289;160;-101.795;7;0.292114339 90;160;-101.797;7;0.405053459 89.943085;160;-101.798;7;0.063000221 89.819031;160;-101.819;7;0.257325214 88.867699;160;-101.977;7;0.175633494 88.774139;160;-102;7;0.490372696 88.208679;160;-102.137;7;0.914254564 88.146805;160;-102.147;7;0.346978354 88;160;-102.171;7;0.999300953 87.944328;160;-102.18;7;0.577786889 87.636299;160;-102.261;7;0.195956141 86.577362;160;-102.577;7;0.882601711 86;160;-102.75;7;0.706575277 85.945518;160;-102.766;7;0.434583539 85.073029;160;-103.073;7;0.212086531 84.243668;160;-103.365;7;0.5134669 84;160;-103.431;7;0.296138156 83.946724;160;-103.446;7;0.592299499 83.561958;160;-103.562;7;0.359857728 82.445435;160;-103.9;7;0.397602052 82.217155;160;-104;7;0.864796768 82.066238;160;-104.066;7;0.94342728 82;160;-104.095;7;0.464902637 81.948051;160;-104.118;7;0.530982327 81.703018;160;-104.213;7;0.570679708 80.552841;160;-104.553;7;0.842422156 80;160;-104.716;7;0.92343319 79.949539;160;-104.731;7;0.481141868 78.954086;160;-104.954;7;0.171094971 78.18306;160;-105.127;7;0.501934179 78;160;-105.126;7;0.995304349 77.951241;160;-105.126;7;0.751465337 77.30201;160;-105.302;7;0.156139942 76.324036;160;-105.567;7;0.757078673 76.137238;160;-105.7;7;0.995656622 76;160;-105.719;7;0.143466343 75.952896;160;-105.725;7;0.114389318 75.830627;160;-105.831;7;0.13932335 75.76857;160;-105.884;7;0.794801739 75.34211;160;-106;7;0.261706865 74.286385;160;-106.286;7;0.603558921 74;160;-106.364;7;0.652429002 73.969215;160;-106.372;7;0.957412689 73.018623;160;-107.019;7;0.690415066 72.83371;160;-107.144;7;0.418525424 72;160;-107.73;7;0.733636981 71.955933;160;-107.761;7;0.359251031 71.862808;160;-107.863;7;0.044341114 71.737022;160;-108;7;0.080113207 71.722855;160;-108.015;7;0.743731852 71.008385;160;-109.008;7;0.982425596 70.983673;160;-109.043;7;0.54371229 70.366257;160;-109.664;7;0.978411462 70.059975;160;-110;7;0.854322459 70.031387;160;-110.031;7;0.868535526 70;160;-110.066;7;0.068530735 69.077957;160;-111.078;7;0.028282124 68.953323;160;-111.215;7;0.667365891 68.018661;160;-112;7;0.213936277 68.008522;160;-112.009;7;0.135457941 68;160;-112.016;7;0.636963468 66.921631;160;-112.922;7;0.796140184 66.438576;160;-113.327;7;0.534603706 66.069054;160;-113.709;7;0.210401701 66;160;-113.771;7;0.788279974 65.878708;160;-113.879;7;0.62071527 65.742325;160;-114;7;0.671333314 64.990723;160;-114.668;7;0.600495213 64.832664;160;-114.833;7;0.155409344 64;160;-115.698;7;0.039532173 63.961571;160;-115.738;7;0.574545927 63.843422;160;-115.843;7;0.516210681 63.668289;160;-116;7;0.611634183 62.787491;160;-116.787;7;0.321714765 62;160;-117.492;7;0.330390924 61.731564;160;-117.732;7;0.011270411 61.43132;160;-118;7;0.284779596 61.41713;160;-118.013;7;0.749725754 61.219795;160;-118.393;7;0.162895958 60.907082;160;-118.907;7;0.08351832 60.242062;160;-120;7;0.586050666 60.234539;160;-120.012;7;0.794125093 60.21545;160;-120.215;7;0.223304087 60.055042;160;-121.922;7;0.561909205 60.051083;160;-122;7;0.804523106 60.050453;160;-122.012;7;0.802179143 60.1133;160;-122.113;7;0.843430308 60.192749;160;-122.241;7;0.633101327 61.34771;160;-124;7;0.884577303 61.356308;160;-124.013;7;0.490006768 61.961872;160;-124.853;7;0.033787556 62;160;-124.9;7;0.070323486 62.575657;160;-125.608;7;0.456876366 62.679363;160;-126;7;0.488343785 62.823467;160;-126.544;7;0.983944502 63.010036;160;-127.01;7;0.853997689 63.406368;160;-128;7;0.30017701 63.412018;160;-128.014;7;0.320231343 62.826141;160;-128.718;7;0.625588911 62.777805;160;-128.778;7;0.616299755 62.292236;160;-129.38;7;0.956269652 62.104851;160;-129.453;7;0.177416285 62;160;-129.523;7;0.745913101 61.961594;160;-129.549;7;0.509117501 61.728062;160;-129.728;7;0.9968706 61.481274;160;-129.918;7;0.640348712 61.386551;160;-130;7;0.034666474 60.644188;160;-130.644;7;0.80248652 60;160;-131.203;7;0.5305825 59.964088;160;-131.234;7;0.914011246 59.521366;160;-131.521;7;0.492455891 59.492409;160;-131.54;7;0.352668697 58.79258;160;-132;7;0.427753498 58.774178;160;-132.012;7;0.951839268 58.387066;160;-132.238;7;0.639766754 58.302155;160;-132.302;7;0.311035771 58;160;-132.531;7;0.643262175 57.165073;160;-133.165;7;0.530608057 56.176033;160;-133.916;7;0.945154078 56.101768;160;-134;7;0.949542863 56.054119;160;-134.054;7;0.209401723 56;160;-134.116;7;0.879219421 55.969139;160;-134.151;7;0.112158853 55.219929;160;-135.22;7;0.588977002 54.673351;160;-136;7;0.596001427 54.666183;160;-136.01;7;0.397519435 54.555351;160;-136.555;7;0.83189836 54.333118;160;-137.648;7;0.854635328 54.285187;160;-138;7;0.78974403 54.283829;160;-138.01;7;0.337616897 54.33186;160;-138.332;7;0.462207925 54.554871;160;-139.826;7;0.650593221 54.600163;160;-140;7;0.999572232 54.602764;160;-140.01;7;0.275607449 55.124882;160;-141.125;7;0.644153851 55.422504;160;-141.76;7;0.038905598 55.505974;160;-141.873;7;0.028368131 55.603569;160;-142;7;0.763058298 55.611408;160;-142.01;7;0.89999026 55.767715;160;-142.333;7;0.414516312 56;160;-142.934;7;0.321421892 56.411858;160;-144;7;0.183080811 56.415855;160;-144.01;7;0.953196902 56.464325;160;-144.464;7;0.521470556 56.594963;160;-145.688;7;0.969227964 56.615833;160;-146;7;0.584605438 56.616516;160;-146.01;7;0.19312888 56.608059;160;-146.608;7;0.479272663 56.593052;160;-147.669;7;0.551516618 56.590122;160;-148;7;0.473150714 56.590034;160;-148.01;7;0.642923378 57.760647;160;-149.665;7;0.961919585 57.933586;160;-149.818;7;0.575832 58;160;-149.888;7;0.005018867 58.105984;160;-150;7;0.83007222 58.115704;160;-150.01;7;0.957760877 60;160;-151.626;7;0.924180964 60.016502;160;-151.64;7;0.710111561 60.577023;160;-152;7;0.880741199 60.594032;160;-152.011;7;0.752635396 61.72958;160;-153.417;7;0.743226393 62;160;-153.644;7;0.881377073 62.424229;160;-154;7;0.052458642 62.437664;160;-154.011;7;0.713852868 62.180317;160;-154.18;7;0.214210141 62;160;-154.299;7;0.290927537 61.710392;160;-154.489;7;0.684730904 61.095818;160;-155.096;7;0.892213125 60.417377;160;-155.766;7;0.548125132 60;160;-155.882;7;0.805654533 59.971519;160;-155.89;7;0.574515293 59.915924;160;-155.916;7;0.188501321 59.738934;160;-156;7;0.470905414 59.687302;160;-156.025;7;0.610011317 58.517342;160;-156.517;7;0.444707589 58;160;-156.735;7;0.336617597 57.97406;160;-156.746;7;0.245345708 57.0951;160;-157.095;7;0.344619497 56.21703;160;-157.444;7;0.777228513 56.088387;160;-157.456;7;0.526800445 56;160;-157.47;7;0.752714944 55.976463;160;-157.474;7;0.636853675 55.86565;160;-157.489;7;0.01079724 55.579918;160;-157.58;7;0.928290159 54.260933;160;-158;7;0.770470653 54.06303;160;-158.063;7;0.008920272 54;160;-158.083;7;0.766755116 53.978752;160;-158.09;7;0.829151808 53.896732;160;-158.093;7;0.894810601 52.398624;160;-158.399;7;0.442955386 52;160;-158.48;7;0.860463777 51.980865;160;-158.484;7;0.40146204 50.763554;160;-158.764;7;0.30265755 50.049332;160;-158.928;7;0.308272365 50.000004;160;-158.935;7;0.870269786 49.982929;160;-158.938;7;0.032178286 49.113018;160;-159.113;7;0.494513995 48.056732;160;-159.326;7;0.413856072 47.999996;160;-159.331;7;0.709994826 47.984879;160;-159.333;7;0.071262748 47.836338;160;-159.351;7;0.567158117 47.371525;160;-159.372;7;0.931407216 46.664219;160;-159.403;7;0.257233182 46;160;-159.584;7;0.554808292 45.986691;160;-159.588;7;0.115655446 45.605923;160;-159.606;7;0.403745512 44.488441;160;-159.659;7;0.835152159 44;160;-159.739;7;0.918225388 43.988377;160;-159.741;7;0.617064797 43.734783;160;-159.735;7;0.175702983 42.559109;160;-159.705;7;0.8887535 42;160;-159.765;7;0.455800645 41.989929;160;-159.766;7;0.09975542 41.762817;160;-159.763;7;0.314808313 40.086311;160;-159.739;7;0.484297629 40;160;-159.736;7;0.7439224 39.991379;160;-159.735;7;0.507311872 39.957737;160;-159.731;7;0.84919883 39.723473;160;-159.723;7;0.749581974 38;160;-159.67;7;0.531628004 37.992722;160;-159.67;7;0.743018613 37.95837;160;-159.668;7;0.770460625 37.672405;160;-159.672;7;0.62544726 36;160;-159.701;7;0.739848703 35.993992;160;-159.701;7;0.183741493 35.965618;160;-159.703;7;0.952789246 35.731564;160;-159.732;7;0.473891147 34;160;-159.941;7;0.627825007 33.947247;160;-159.947;7;0.309438143 33.510834;160;-160;7;0.876558632 33.499279;160;-160.001;7;0.472367045 33.477894;160;-160.007;7;0.128986225 32.310547;160;-160.311;7;0.787453547 32;160;-160.391;7;0.944424686 31.996311;160;-160.392;7;0.055728217 31.978901;160;-160.399;7;0.01040284 30.821341;160;-160.821;7;0.936820535 30;160;-161.121;7;0.696619269 29.997334;160;-161.122;7;0.037318991 29.38409;160;-161.384;7;0.773358794 28;160;-161.976;7;0.485373208 27.983492;160;-161.983;7;0.283861929 27.950233;160;-161.998;7;0.090080549 27.945742;160;-162;7;0.188294411 27.944508;160;-162.001;7;0.168484756 27.933489;160;-162.006;7;0.179921797 26.572371;160;-162.572;7;0.027114839 26;160;-162.81;7;0.814926902 25.998913;160;-162.811;7;0.675098883 25.030401;160;-163.03;7;0.234258075 24.002192;160;-163.263;7;0.621675496 23.999998;160;-163.264;7;0.778857877 23.999413;160;-163.264;7;0.002272779 23.996931;160;-163.264;7;0.284832213 23.318733;160;-163.319;7;0.331705338 22;160;-163.425;7;0.641319995 21.998913;160;-163.425;7;0.188145421 21.412558;160;-163.413;7;0.998253504 19.999941;160;-163.383;7;0.510800707 19.329987;160;-163.33;7;0.359057865 18;160;-163.224;7;0.159475919 17.131023;160;-163.131;7;0.248786818 16;160;-163.01;7;0.906150707 14.914351;160;-162.914;7;0.429021143 14;160;-162.834;7;0.210421459 12.740474;160;-162.74;7;0.425143443 11.999999;160;-162.686;7;0.022127361 10.606071;160;-162.606;7;0.984934265 10;160;-162.571;7;0.89563004 8.524801;160;-162.525;7;0.922250482 8;160;-162.508;7;0.516216919 6.498806;160;-162.499;7;0.947466845 6;160;-162.496;7;0.436825739 4.50474;160;-162.505;7;0.907783539 4;160;-162.508;7;0.689481859 2.588051;160;-162.588;7;0.915411087 2;160;-162.621;7;0.935486499 0.717111;160;-162.717;7;0.610217432 0;160;-162.771;7;0.692841693 140;160;-144.495;7;0.408008284 139.553558;160;-144;7;0.282157073 138.909225;160;-143.286;7;0.528605987 138.600876;160;-142.877;7;0.825483327 138.435669;160;-142.791;7;0.30543893 138;160;-142.353;7;0.896227854 137.932617;160;-142.285;7;0.716973414 137.826843;160;-142.129;7;0.089665053 137.727829;160;-142.024;7;0.000529687 137.718277;160;-142;7;0.064333304 137.590881;160;-141.683;7;0.146430028 137.547241;160;-141.547;7;0.222184453 137.056412;160;-140.024;7;0.920011516 137.063095;160;-140;7;0.780657298 137.265228;160;-139.265;7;0.780753318 137.483627;160;-138.471;7;0.771387496 137.584183;160;-138.198;7;0.923416642 137.642242;160;-138;7;0.299836899 137.702194;160;-137.796;7;0.167804069 137.74472;160;-137.745;7;0.311852494 138;160;-137.437;7;0.769697183 138.65181;160;-136.652;7;0.148219033 139.172791;160;-136.024;7;0.447322236 139.19072;160;-136;7;0.25188449 139.496231;160;-135.589;7;0.659200922 139.529968;160;-135.53;7;0.619436535 140;160;-134.71;7;0.918910468 140.258667;160;-134.259;7;0.220014616 140.406921;160;-134;7;0.721380173 140.98735;160;-132.987;7;0.868010144 141.381882;160;-132.299;7;0.430271988 141.615433;160;-132.024;7;0.902816409 141.627762;160;-132;7;0.364069195 141.724121;160;-131.815;7;0.132370873 141.740189;160;-131.74;7;0.577181122 141.932877;160;-130.843;7;0.579949727 142;160;-130.495;7;0.857500439 142.080154;160;-130.08;7;0.081765093 142.095642;160;-130;7;0.102081133 142.331528;160;-128.778;7;0.648288915 142.312637;160;-128.398;7;0.936153356 142.337265;160;-128.337;7;0.989880785 142.474228;160;-128;7;0.860673481 142.914917;160;-126.915;7;0.757616414 143.15007;160;-126.336;7;0.261034613 143.263748;160;-126.023;7;0.066598124 143.284576;160;-126;7;0.936563493 143.623459;160;-125.623;7;0.818607975 143.760529;160;-125.471;7;0.594939337 144;160;-125.182;7;0.914637208 144.535233;160;-124.535;7;0.314529088 144.959656;160;-124.022;7;0.663928377 144.97467;160;-124;7;0.65834886 145.35083;160;-123.437;7;0.096735448 145.400284;160;-123.4;7;0.621068369 146;160;-122.959;7;0.413376921 146.552399;160;-122.552;7;0.520330405 147.302994;160;-122;7;0.336951346 147.422943;160;-121.912;7;0.085266889 147.714325;160;-121.714;7;0.158927641 147.939499;160;-121.562;7;0.863829897 148;160;-121.557;7;0.239437213 148.699844;160;-121.498;7;0.713835066 149.312012;160;-121.312;7;0.616070042 149.941727;160;-121.121;7;0.724004724 150;160;-121.135;7;0.500315635 151.218399;160;-121.442;7;0.276755415 151.455933;160;-121.456;7;0.826381396 152;160;-121.489;7;0.665232791 152.1483;160;-121.498;7;0.236563959 152.970581;160;-122;7;0.815131108 153.82991;160;-122.525;7;0.894292732 154;160;-122.626;7;0.167605555 155.545807;160;-123.546;7;0.340108532 155.643311;160;-123.604;7;0.281043954 155.948044;160;-123.734;7;0.712595383 156;160;-123.763;7;0.068941671 156.151733;160;-123.848;7;0.885955405 156.350845;160;-124;7;0.899642441 156.691498;160;-124.26;7;0.024024591 157.910294;160;-124.986;7;0.399868912 157.950272;160;-125.019;7;0.27924731 157.999985;160;-125.052;7;0.94574608 159.43309;160;-126;7;0.940710351 159.506332;160;-126.048;7;0.80556932 159.680267;160;-126.243;7;0.687632516 160;160;-126.631;7;0.494271093 161.127213;160;-128;7;0.856219676 161.140518;160;-128.016;7;0.703773038 161.15535;160;-128.286;7;0.977614894 161.155411;160;-129.155;7;0.458505228 161.155487;160;-130;7;0.633656215 161.155487;160;-130.016;7;0.708063442 160.601898;160;-130.602;7;0.375727296 160;160;-131.239;7;0.906062967 159.952682;160;-131.289;7;0.723981426 159.727127;160;-131.463;7;0.17751541 159.579147;160;-131.579;7;0.92538255 159.043335;160;-132;7;0.035207912 158.458984;160;-132.459;7;0.798111703 157.999985;160;-132.82;7;0.324764433 157.950424;160;-132.858;7;0.253643125 157.714127;160;-132.96;7;0.877543212 157.222382;160;-133.222;7;0.185673937 156;160;-133.875;7;0.769073509 155.948212;160;-133.903;7;0.959496185 155.913467;160;-133.913;7;0.081200743 155.828232;160;-133.939;7;0.463967102 155.669128;160;-134;7;0.203249431 155.62114;160;-134.018;7;0.287966152 154.575134;160;-134.575;7;0.587555434 154;160;-134.881;7;0.17731014 153.94606;160;-134.91;7;0.976945042 153.251831;160;-135.252;7;0.857540679 152.974091;160;-135.389;7;0.210430522 152.40625;160;-135.607;7;0.759148218 152;160;-135.753;7;0.548177509 151.818771;160;-135.819;7;0.339083566 151.316025;160;-136;7;0.110711634 151.260742;160;-136.02;7;0.844252963 151.378494;160;-136.908;7;0.25511113 151.293396;160;-137.293;7;0.703274439 151.137253;160;-138;7;0.502627358 151.132874;160;-138.02;7;0.207014191 151.547638;160;-138.521;7;0.703642642 151.968063;160;-139.69;7;0.873393979 152;160;-139.785;7;0.891097777 152.045334;160;-139.919;7;0.661005544 152.066574;160;-140;7;0.764411814 152.071625;160;-140.019;7;0.529069119 152.085083;160;-140.085;7;0.52487605 152.141647;160;-140.362;7;0.844679177 152.555496;160;-142;7;0.851225902 152.560226;160;-142.019;7;0.846445173 152.349854;160;-142.35;7;0.609988173 152;160;-142.901;7;0.449306116 151.946426;160;-142.985;7;0.056545127 151.552246;160;-143.552;7;0.109246519 151.241196;160;-144;7;0.64905477 151.228027;160;-144.019;7;0.44744355 150.603119;160;-144.603;7;0.433144245 150;160;-145.167;7;0.373350905 149.945343;160;-145.218;7;0.918285243 149.52037;160;-145.52;7;0.095699158 148.846146;160;-146;7;0.726057283 148.818787;160;-146.019;7;0.488702205 148.409378;160;-146.409;7;0.503674523 148;160;-146.799;7;0.068385718 147.944183;160;-146.852;7;0.144856578 147.052917;160;-147.053;7;0.480247766 146.868881;160;-147.094;7;0.539309319 146;160;-147.368;7;0.927305931 145.94252;160;-147.386;7;0.672479714 145.401108;160;-147.401;7;0.956166652 145.324814;160;-147.403;7;0.438920227 144;160;-147.331;7;0.761691172 143.940598;160;-147.327;7;0.444953423 143.497787;160;-147.111;7;0.999906435 142.567535;160;-146.568;7;0.360461819 142;160;-146.236;7;0.686066047 141.59549;160;-146;7;0.988722651 141.094452;160;-145.707;7;0.979917015 266.303711;154;-136;8;0.163328581 266.75415;154;-134.754;8;0.662485839 267.026825;154;-134;8;0.702908116 267.205811;154;-133.206;8;0.516002464 267.545258;154;-132;8;0.671670201 267.523102;154;-131.523;8;0.94635406 267.516296;154;-130;8;0.749327225 267.343628;154;-129.344;8;0.138287202 266.990143;154;-128;8;0.637825191 266.565338;154;-126.565;8;0.219404637 266.376923;154;-126;8;0.384557714 266.266083;154;-124.266;8;0.510240002 266.249084;154;-124;8;0.349326781 266.616791;154;-122.617;8;0.11032546 266.617737;154;-122.613;8;0.591446537 266.750458;154;-122.005;8;0.39775495 266.754456;154;-122;8;0.690253279 267.305908;154;-121.306;8;0.152178034 268;154;-120.432;8;0.213437841 268.001282;154;-120.431;8;0.777451898 268.152374;154;-120.152;8;0.239359971 268.234711;154;-120.001;8;0.887845097 268.235413;154;-120;8;0.768121724 269.071899;154;-119.072;8;0.280335415 270;154;-118.042;8;0.016431039 270.019958;154;-118.02;8;0.007479848 270.037933;154;-118;8;0.144049806 270.721436;154;-116.721;8;0.063209953 271.107056;154;-116;8;0.785452377 271.419769;154;-115.42;8;0.260893699 272;154;-114.343;8;0.017629519 272.120148;154;-114.12;8;0.672171423 272.184906;154;-114;8;0.456875426 272.199097;154;-112.199;8;0.390925001 272.200653;154;-112;8;0.863739493 272;154;-111.631;8;0.410427422 271.113373;154;-110;8;0.774821397 270.000488;154;-108.931;8;0.559275543 270;154;-108.93;8;0.050873781 268.743652;154;-108.012;8;0.213435352 268.722961;154;-108;8;0.552859344 268.669403;154;-107.969;8;0.621135245 268.224823;154;-107.712;8;0.512847632 268.041473;154;-107.64;8;0.39269267 268;154;-107.627;8;0.520644702 267.81131;154;-107.566;8;0.451078103 267.357025;154;-107.357;8;0.903968678 266.139252;154;-106.797;8;0.468718739 266;154;-106.749;8;0.450718627 265.259796;154;-106.493;8;0.094472323 264.280273;154;-106.134;8;0.375754312 264.066925;154;-106;8;0.141622328 264;154;-105.958;8;0.019001541 263.886993;154;-105.887;8;0.5188718 263.812195;154;-105.84;8;0.87318981 262.574585;154;-105.458;8;0.984312487 262.478119;154;-105.425;8;0.270574229 262.440582;154;-105.415;8;0.188003763 262;154;-105.301;8;0.623040902 261.209351;154;-105.096;8;0.712125855 261.055206;154;-105.055;8;0.458124218 260.621643;154;-104.941;8;0.140522149 260;154;-104.778;8;0.728991093 259.917114;154;-104.756;8;0.525291573 258.797302;154;-104.461;8;0.787714419 258.610687;154;-104.42;8;0.249207842 258.366333;154;-104.366;8;0.249404503 258.118408;154;-104.312;8;0.490588493 258;154;-104.29;8;0.432512455 257.289093;154;-104.157;8;0.46698412 256.964569;154;-104.105;8;0.592277979 256.246613;154;-104.024;8;0.579376315 256.083344;154;-104;8;0.98566127 256;154;-103.988;8;0.563149604 255.985779;154;-103.986;8;0.765423707 255.112259;154;-103.858;8;0.727180905 254;154;-103.761;8;0.282540127 253.73819;154;-103.738;8;0.964330759 253.574966;154;-103.724;8;0.543706224 253.225769;154;-103.677;8;0.498982569 252;154;-103.516;8;0.343571189 251.44249;154;-103.442;8;0.406431504 251.327698;154;-103.427;8;0.597159 251.275574;154;-103.416;8;0.084853125 250;154;-103.186;8;0.089397396 249.422897;154;-103.082;8;0.774720606 249.243423;154;-103.037;8;0.723278431 248.973373;154;-102.973;8;0.426522374 248;154;-102.745;8;0.417975415 247.742264;154;-102.684;8;0.245255849 247.124023;154;-102.541;8;0.129640195 246.356705;154;-102.357;8;0.247087936 246.170303;154;-102.312;8;0.276837897 246;154;-102.268;8;0.195424559 244.963699;154;-102;8;0.440315425 244.933456;154;-101.992;8;0.224278958 244.671783;154;-101.943;8;0.97262969 244.155029;154;-101.846;8;0.076207442 244;154;-101.822;8;0.407223146 243.789398;154;-101.789;8;0.660010465 243.188492;154;-101.697;8;0.407776464 242.723816;154;-101.635;8;0.678549132 242;154;-101.582;8;0.386090138 241.549301;154;-101.549;8;0.774629584 241.388931;154;-101.538;8;0.306831495 240.515732;154;-101.469;8;0.803929111 240.207916;154;-101.479;8;0.079689933 240;154;-101.477;8;0.042953474 239.519485;154;-101.47;8;0.859840051 239.471085;154;-101.471;8;0.671614313 238.688507;154;-101.488;8;0.866703055 238.326813;154;-101.481;8;0.812181767 238;154;-101.495;8;0.34956705 237.514343;154;-101.514;8;0.539765785 237.133987;154;-101.53;8;0.156713429 236.165604;154;-101.518;8;0.169285514 236;154;-101.525;8;0.374871658 235.544754;154;-101.545;8;0.193350824 235.532135;154;-101.545;8;0.543655513 234.051727;154;-101.526;8;0.842321397 234.000015;154;-101.528;8;0.81435738 233.842789;154;-101.535;8;0.470986694 233.527817;154;-101.528;8;0.665924735 232.099228;154;-101.496;8;0.893408488 232.011978;154;-101.496;8;0.968552844 232.001373;154;-101.495;8;0.681537023 232;154;-101.495;8;0.620311978 231.461319;154;-101.461;8;0.245722518 230.026581;154;-101.371;8;0.503330326 230;154;-101.368;8;0.109456767 229.2854;154;-101.285;8;0.289081936 228.019485;154;-101.138;8;0.353344465 228;154;-101.135;8;0.100484537 226.936356;154;-100.936;8;0.513336836 226.003586;154;-100.762;8;0.395260747 225.999985;154;-100.761;8;0.073993177 224.421616;154;-100.422;8;0.241276073 224;154;-100.331;8;0.360793996 222.723923;154;-100;8;0.458135548 222;154;-99.8241;8;0.350393419 221.767578;154;-99.7676;8;0.440209828 220;154;-99.338;8;0.826955506 219.186951;154;-99.1869;8;0.715751181 218;154;-98.9664;8;0.415555126 216.826782;154;-98.8268;8;0.678609171 216;154;-98.7284;8;0.185726968 214.596329;154;-98.5963;8;0.114170164 214;154;-98.5402;8;0.93734072 212.434387;154;-98.4344;8;0.810634286 212;154;-98.405;8;0.916079326 210.247192;154;-98.2472;8;0.384041898 209.999985;154;-98.2249;8;0.148569694 208.09053;154;-98.0905;8;0.314898855 208;154;-98.0842;8;0.349588065 207.999146;154;-98.0842;8;0.601123858 206.02066;154;-98.0207;8;0.396859721 206;154;-98.02;8;0.920503976 205.999588;154;-98.02;8;0.610543436 205.997635;154;-98.0202;8;0.804950287 204.09137;154;-98.0914;8;0.24309358 204;154;-98.0948;8;0.001890623 203.999176;154;-98.0948;8;0.221027667 203.753571;154;-98.1485;8;0.436712511 202.383102;154;-98.3831;8;0.235057317 202;154;-98.4487;8;0.122376523 201.998596;154;-98.4489;8;0.143974164 201.354965;154;-98.6376;8;0.605058586 200.667557;154;-98.6675;8;0.132136479 200.000015;154;-98.6966;8;0.262874855 199.997879;154;-98.6967;8;0.928115801 198.896439;154;-98.8964;8;0.097725278 198.008087;154;-99.0575;8;0.466727329 198;154;-99.0593;8;0.19158914 197.996887;154;-99.06;8;0.323207392 197.143433;154;-99.1434;8;0.086404652 196.017548;154;-99.2535;8;0.02151139 196;154;-99.2568;8;0.124291604 195.995468;154;-99.2576;8;0.931232514 195.958923;154;-99.2591;8;0.201621772 195.342468;154;-99.3425;8;0.541060483 194.640564;154;-99.4374;8;0.695471545 194;154;-99.4671;8;0.383985181 193.980179;154;-99.468;8;0.423535138 193.440994;154;-99.441;8;0.492388892 192.050064;154;-99.3714;8;0.888081741 191.999985;154;-99.3733;8;0.251064993 191.993042;154;-99.3736;8;0.152861426 191.291656;154;-99.2917;8;0.367447617 190.068069;154;-99.1487;8;0.605075196 190;154;-99.1429;8;0.896395784 189.992004;154;-99.1422;8;0.39149525 189.042908;154;-99.0429;8;0.890012974 188.06221;154;-98.9403;8;0.666863287 188;154;-98.9385;8;0.656085332 187.990036;154;-98.9382;8;0.246784873 187.898392;154;-98.9524;8;0.268848568 187.184967;154;-99.185;8;0.993427725 186;154;-99.5712;8;0.593436764 185.988632;154;-99.5749;8;0.063899667 185.766632;154;-99.7666;8;0.21169556 185.496445;154;-100;8;0.472312229 185.403687;154;-100.08;8;0.959660994 184.655258;154;-100.655;8;0.353404492 184.117966;154;-101.068;8;0.952623572 184.017563;154;-101.165;8;0.415974589 184;154;-101.184;8;0.917130015 183.983093;154;-101.202;8;0.92962593 183.6474;154;-101.647;8;0.574801139 183.381424;154;-102;8;0.155037186 183.332123;154;-102.065;8;0.285019454 182.796707;154;-102.797;8;0.63079369 182;154;-103.885;8;0.237950931 181.964844;154;-103.933;8;0.743721126 181.952042;154;-103.952;8;0.689040628 181.924316;154;-103.993;8;0.014323657 181.919281;154;-104;8;0.089339089 181.805801;154;-104.153;8;0.506226609 181.217819;154;-105.218;8;0.525199257 181.063126;154;-105.498;8;0.378231647 180.800705;154;-105.982;8;0.549263701 180.787643;154;-106;8;0.644273628 180.726624;154;-106.086;8;0.338991981 180.444809;154;-106.445;8;0.53519062 180;154;-107.011;8;0.204390848 179.94101;154;-107.087;8;0.970685901 179.63353;154;-107.634;8;0.019767101 179.438858;154;-107.98;8;0.596425193 179.435776;154;-108;8;0.605151351 179.245239;154;-109.245;8;0.734298572 179.142181;154;-109.919;8;0.436815252 179.143661;154;-109.949;8;0.762483442 179.151382;154;-109.963;8;0.550793364 179.168167;154;-109.996;8;0.92929128 179.168243;154;-110;8;0.940061742 179.179977;154;-110.662;8;0.675694906 179.200836;154;-111.201;8;0.944877362 179.229416;154;-111.94;8;0.03568031 179.23111;154;-112;8;0.407076997 179.231491;154;-112.014;8;0.74961669 179.340363;154;-113.34;8;0.761374194 179.38768;154;-113.917;8;0.647902587 179.385773;154;-114;8;0.448272546 179.383423;154;-114.102;8;0.698087552 179.200317;154;-115.2;8;0.367492056 179.079208;154;-115.926;8;0.112356122 179.062012;154;-116;8;0.746453985 178.86058;154;-116.861;8;0.076986385 178.654175;154;-117.742;8;0.555274392 178.602524;154;-117.953;8;0.972337391 178.584625;154;-118;8;0.35256923 178.424072;154;-118.424;8;0.32905283 178;154;-119.544;8;0.713201823 177.88765;154;-119.841;8;0.187816645 177.874451;154;-119.874;8;0.520653559 177.831116;154;-119.985;8;0.293287256 177.82338;154;-120;8;0.713853699 177.801865;154;-120.042;8;0.557592783 177.759293;154;-120.119;8;0.552570211 177.098892;154;-121.099;8;0.041106579 176.491882;154;-122;8;0.266896556 176.487518;154;-122.006;8;0.281202904 176.302643;154;-122.212;8;0.007930446 176.258804;154;-122.259;8;0.949447332 176;154;-122.538;8;0.787010226 175.296143;154;-123.296;8;0.466632435 174.642929;154;-124;8;0.665297714 174.633896;154;-124.01;8;0.819927299 174.338547;154;-124.339;8;0.036404019 174.000015;154;-124.715;8;0.108565478 173.971466;154;-124.747;8;0.803561448 173.379333;154;-125.379;8;0.798483613 172.797882;154;-126;8;0.952146199 172.411972;154;-126.412;8;0.871364521 172.248001;154;-126.587;8;0.665944896 172;154;-127.049;8;0.002728726 171.968933;154;-127.106;8;0.00714798 171.562576;154;-127.563;8;0.455856495 171.172882;154;-128;8;0.636060249 171.162827;154;-128.011;8;0.734200258 171.968933;154;-129.417;8;0.949248738 172;154;-129.472;8;0.68673625 172.299545;154;-130;8;0.2482366 172.337418;154;-130.067;8;0.114291729 173.97139;154;-130.968;8;0.834191696 174.000015;154;-130.983;8;0.443434698 175.637329;154;-131.868;8;0.858531079 175.860077;154;-132;8;0.587662823 175.937164;154;-132.046;8;0.915009478 175.973785;154;-132.059;8;0.656009316 176;154;-132.077;8;0.826540996 176.141403;154;-132.177;8;0.122900576 176.271637;154;-132.272;8;0.196954381 177.976212;154;-133.516;8;0.985934986 178;154;-133.534;8;0.969020744 178.603775;154;-134;8;0.889332345 178.614273;154;-134.008;8;0.596593005 179.645447;154;-135.645;8;0.526517196 179.699722;154;-135.732;8;0.294223154 179.770309;154;-135.906;8;0.276030727 179.791748;154;-136;8;0.84133852 179.793457;154;-136.008;8;0.20552747 179.754166;154;-136.11;8;0.693007798 179.706894;154;-136.327;8;0.746573712 179.327332;154;-137.327;8;0.050542923 179.072006;154;-138;8;0.351188659 179.069077;154;-138.008;8;0.554382776 178.840302;154;-138.84;8;0.003984669 178.609985;154;-139.678;8;0.617878377 178.471725;154;-140;8;0.314988147 178.468353;154;-140.008;8;0.974922895 178.52063;154;-140.521;8;0.262383386 178.608017;154;-141.378;8;0.073425162 178.54364;154;-142;8;0.342273144 178.492661;154;-142.493;8;0.988020868 178.489914;154;-142.519;8;0.047249156 178.762848;154;-144;8;0.022095043 178.764206;154;-144.007;8;0.301011116 178.750763;154;-144.107;8;0.246085029 178.7043;154;-144.704;8;0.012223041 178.603531;154;-146;8;0.375813465 178.602966;154;-146.007;8;0.78557182 178.430237;154;-146.43;8;0.827374421 178;154;-147.484;8;0.464216707 177.850327;154;-147.85;8;0.000809163 177.826569;154;-147.908;8;0.268524747 177.80191;154;-148;8;0.295083797 177.799927;154;-148.007;8;0.714068639 177.764984;154;-148.106;8;0.636076679 177.072647;154;-149.073;8;0.546277915 176.40831;154;-150;8;0.191461645 176.237885;154;-150.238;8;0.225531226 176.115097;154;-150.409;8;0.105827568 176;154;-150.555;8;0.646895113 175.978149;154;-150.583;8;0.007529111 175.006195;154;-151.006;8;0.61620808 174.183243;154;-151.364;8;0.011133311 174.000015;154;-151.373;8;0.030784003 173.976379;154;-151.374;8;0.220303831 173.389282;154;-151.389;8;0.490415216 172.226593;154;-151.419;8;0.205900172 172;154;-151.397;8;0.188730723 171.974228;154;-151.394;8;0.225030835 171.851303;154;-151.362;8;0.515536594 171.329132;154;-151.329;8;0.952142521 170;154;-151.245;8;0.421691627 169.97197;154;-151.243;8;0.914492883 169.838348;154;-151.228;8;0.241885594 169.215622;154;-151.216;8;0.426680054 168;154;-151.192;8;0.819994185 167.969742;154;-151.191;8;0.080075273 167.82547;154;-151.192;8;0.378261182 167.201538;154;-151.202;8;0.204357463 166.000015;154;-151.219;8;0.402201863 165.967529;154;-151.22;8;0.189422347 165.812683;154;-151.233;8;0.508232724 165.251907;154;-151.252;8;0.371310548 164;154;-151.295;8;0.257896951 163.965302;154;-151.296;8;0.725329401 163.799896;154;-151.294;8;0.998315289 163.19342;154;-151.193;8;0.220451509 162;154;-150.995;8;0.989404096 161.962875;154;-150.988;8;0.640203859 160.906219;154;-150.441;8;0.48696713 160.165604;154;-150.014;8;0.943085734 160.143524;154;-150;8;0.412602513 160;154;-149.909;8;0.560188522 159.960037;154;-149.884;8;0.741318424 159.709366;154;-149.514;8;0.39006292 158.430359;154;-148;8;0.652406784 158.036072;154;-147.533;8;0.942604036 157.999985;154;-147.488;8;0.013101713 157.327682;154;-146.643;8;0.107944043 157.246368;154;-146.016;8;0.658195604 157.25058;154;-146;8;0.930682626 157.408112;154;-145.408;8;0.181441789 157.782928;154;-144;8;0.502779032 157.828552;154;-143.829;8;0.298823943 157.999985;154;-143.185;8;0.527593589 158.196609;154;-142.446;8;0.324728508 158.234329;154;-142.234;8;0.869665998 158.234894;154;-142.231;8;0.044609293 158.331406;154;-142.016;8;0.351551114 158.336456;154;-142;8;0.564253337 158.399567;154;-141.801;8;0.877754744 158.817841;154;-140.818;8;0.695164035 159.159103;154;-140.016;8;0.438610079 159.165405;154;-140;8;0.964185271 159.403198;154;-139.403;8;0.798505279 159.746735;154;-138.541;8;0.50632677 159.784119;154;-138.336;8;0.740179632 159.884201;154;-138.117;8;0.441776618 159.951202;154;-138;8;0.783626956 159.968994;154;-137.969;8;0.031543035 160;154;-137.915;8;0.361648821 160.697891;154;-136.698;8;0.824559569 161.089279;154;-136.015;8;0.706258469 161.103363;154;-136;8;0.727528574 161.36586;154;-135.713;8;0.337021799 161.531738;154;-135.532;8;0.414955516 162;154;-135.019;8;0.30399597 162.486526;154;-134.487;8;0.034730519 162.930939;154;-134;8;0.196920469 163.001816;154;-133.922;8;0.255751158 163.109756;154;-133.817;8;0.487643418 163.288101;154;-133.607;8;0.912661888 163.439178;154;-133.439;8;0.254346388 164;154;-132.815;8;0.97067581 164.385803;154;-132.386;8;0.679570731 164.732513;154;-132;8;0.270134714 165.332443;154;-131.332;8;0.562871118 165.57933;154;-131.058;8;0.14319116 165.778458;154;-130.829;8;0.71002153 165.961609;154;-130.19;8;0.79683126 166.000015;154;-130.122;8;0.783006366 166.043869;154;-130.044;8;0.217059957 166.068497;154;-130;8;0.759883015 166.763138;154;-128.763;8;0.449086318 167.184448;154;-128.013;8;0.761051655 167.170929;154;-128;8;0.519904136 166.000015;154;-126.876;8;0.168579412 165.961609;154;-126.839;8;0.182054893 165.431992;154;-126.014;8;0.556690322 165.415863;154;-126;8;0.631407777 164;154;-124.796;8;0.594823817 163.959259;154;-124.761;8;0.487960421 163.187729;154;-124.015;8;0.696258609 163.173859;154;-124;8;0.336740003 162;154;-122.762;8;0.365323434 161.957031;154;-122.717;8;0.251461256 161.653244;154;-122.415;8;0.14381768 161.421417;154;-122;8;0.561140752 161.108398;154;-121.439;8;0.715794894 160.594681;154;-120.595;8;0.158667126 160.242462;154;-120.016;8;0.713386576 160.242447;154;-120;8;0.778275153 160.240616;154;-118.873;8;0.92786949 160.198975;154;-118.224;8;0.846140699 160.199814;154;-118.2;8;0.763030048 160.206039;154;-118.015;8;0.663901618 160.21286;154;-118;8;0.961257655 160.364914;154;-117.655;8;0.790940598 160.783569;154;-116.784;8;0.743449974 161.160126;154;-116;8;0.856753533 161.432724;154;-115.433;8;0.814393318 161.61705;154;-115.049;8;0.77027761 161.763824;154;-114.794;8;0.497620874 161.959137;154;-114.581;8;0.624304696 162;154;-114.534;8;0.546683013 162.247696;154;-114.248;8;0.164319782 162.462097;154;-114;8;0.989585498 162.990601;154;-113.389;8;0.906857415 163.17041;154;-113.17;8;0.435078987 163.962387;154;-112.206;8;0.798930084 164;154;-112.142;8;0.161196979 164.053009;154;-112.053;8;0.022934398 164.084488;154;-112;8;0.306947815 164.118378;154;-111.943;8;0.842263594 164.648987;154;-110.967;8;0.337943838 164.758011;154;-110.758;8;0.572019513 165.147644;154;-110.012;8;0.158402958 165.14798;154;-110;8;0.305774364 165.17009;154;-109.17;8;0.308556352 165.196594;154;-108.175;8;0.178213896 165.207733;154;-108.012;8;0.643711347 165.198532;154;-108;8;0.565789798 164;154;-106.428;8;0.136423422 163.965042;154;-106.383;8;0.326736042 163.727448;154;-106.201;8;0.987782323 163.31955;154;-106;8;0.909179502 162;154;-105.35;8;0.374131371 161.963364;154;-105.332;8;0.89731726 161.79718;154;-105.304;8;0.471855303 161.170746;154;-105.171;8;0.313568995 160;154;-104.922;8;0.992263377 159.970078;154;-104.916;8;0.88796248 159.777573;154;-104.901;8;0.675340253 158.782242;154;-104.782;8;0.662763802 157.999985;154;-104.689;8;0.532829636 157.959366;154;-104.684;8;0.334488821 156.718369;154;-104.718;8;0.547176127 156.159073;154;-104.734;8;0.836644786 156;154;-104.749;8;0.670340613 155.968323;154;-104.752;8;0.949139131 154.870087;154;-104.87;8;0.083393941 154.179031;154;-104.944;8;0.408544649 154;154;-104.972;8;0.719209092 153.954941;154;-104.979;8;0.232938861 153.172714;154;-105.173;8;0.734796128 152.235123;154;-105.405;8;0.953903917 152;154;-105.503;8;0.235602904 151.952499;154;-105.523;8;0.18934152 151.731949;154;-105.611;8;0.423002654 151.643661;154;-105.644;8;0.971734579 150.671036;154;-106;8;0.369732388 150.179932;154;-106.18;8;0.661095068 150;154;-106.246;8;0.721528216 149.956268;154;-106.262;8;0.05416224 148.812515;154;-106.813;8;0.308951906 148.779999;154;-106.828;8;0.47626911 148;154;-107.091;8;0.030030903 147.320404;154;-107.32;8;0.100795784 146;154;-107.766;8;0.196257459 145.824799;154;-107.825;8;0.676297375 145.305267;154;-108;8;0.944193614 145.247208;154;-108.02;8;0.840849355 144.670715;154;-108.226;8;0.219280649 144.449921;154;-108.275;8;0.243178447 144.319443;154;-108.319;8;0.180518371 144;154;-108.429;8;0.078534798 142.83046;154;-108.83;8;0.874372419 142.206909;154;-109.044;8;0.776337416 142;154;-109.093;8;0.255048066 141.940506;154;-109.107;8;0.261707249 141.335709;154;-109.336;8;0.431228898 140.32695;154;-109.717;8;0.520460623 140;154;-109.876;8;0.945539918 139.938278;154;-109.907;8;0.274948323 139.917007;154;-109.917;8;0.131058926 139.74823;154;-110;8;0.561660983 139.561295;154;-110.092;8;0.628886857 138.55629;154;-110.556;8;0.762548829 138;154;-110.813;8;0.920184797 137.936066;154;-110.843;8;0.613828122 137.276169;154;-111.276;8;0.301479384 136.333069;154;-111.895;8;0.282583551 136.28833;154;-112;8;0.48180475 136.20192;154;-112.202;8;0.915180502 136;154;-112.674;8;0.574963428 135.93335;154;-112.83;8;0.276968252 135.624008;154;-113.624;8;0.765610087 135.4776;154;-114;8;0.095096912 135.468338;154;-114.024;8;0.230403439 135.932175;154;-115.027;8;0.856704138 136;154;-115.146;8;0.036005706 136.488571;154;-116;8;0.529116856 136.502213;154;-116.024;8;0.965247839 137.093842;154;-117.094;8;0.360910562 137.594879;154;-118;8;0.136039855 137.932281;154;-118.61;8;3.07699E-05 138;154;-118.711;8;0.416473227 138.40773;154;-119.314;8;0.655006146 138.666138;154;-120;8;0.94070654 138.675095;154;-120.024;8;0.133888573 138.696091;154;-120.696;8;0.509648181 138.721756;154;-121.518;8;0.620666873 138.636154;154;-122;8;0.136617313 138.631897;154;-122.024;8;0.494890868 138.472473;154;-122.472;8;0.413386573 138.402527;154;-122.669;8;0.343396307 138.256973;154;-123.021;8;0.491098136 138.031662;154;-123.384;8;0.029556054 138;154;-123.453;8;0.985023064 137.828461;154;-123.828;8;0.262072556 137.750015;154;-124;8;0.25664762 137.200867;154;-125.201;8;0.349428536 136.835434;154;-126;8;0.681520539 136.824112;154;-126.025;8;0.181235307 136.482132;154;-126.482;8;0.926558951 136.278229;154;-126.755;8;0.895596893 136;154;-127.147;8;0.399946148 135.646133;154;-127.646;8;0.539939874 135.395172;154;-128;8;0.875203115 135.377289;154;-128.025;8;0.638426963 134.735703;154;-128.736;8;0.994014807 134.671494;154;-128.807;8;0.505722343 134.227066;154;-129.383;8;0.720572778 134;154;-129.618;8;0.192397242 133.927155;154;-129.694;8;0.676071094 133.811539;154;-129.812;8;0.629505148 133.626297;154;-130;8;0.983602309 132.820129;154;-130.82;8;0.191158968 132.276215;154;-131.373;8;0.030810582 132;154;-131.664;8;0.432409261 131.925888;154;-131.742;8;0.125790119 131.836197;154;-131.836;8;0.95579779 131.68074;154;-132;8;0.685936766 130.86232;154;-132.862;8;0.23493416 130.280075;154;-133.476;8;0.876628955 130;154;-133.828;8;0.411004023 129.96904;154;-133.867;8;0.008762581 129.918945;154;-133.919;8;0.165169948 129.84082;154;-134;8;0.519614056 128.937332;154;-134.937;8;0.730615069 128.327179;154;-135.57;8;0.080774547 128.137695;154;-135.929;8;0.054622831 128.063492;154;-136;8;0.831025107 128.031097;154;-136.031;8;0.828151926 128;154;-136.061;8;0.727068148 127.01088;154;-137.011;8;0.804386683 126;154;-137.982;8;0.839702051 125.990646;154;-137.991;8;0.282562124 125.980911;154;-138;8;0.239812648 125.953049;154;-138.027;8;0.585293693 125.923843;154;-138.089;8;0.898797213 125.887199;154;-138.063;8;0.37283103 124.433243;154;-138.433;8;0.37981073 124;154;-138.543;8;0.26180518 123.923164;154;-138.563;8;0.682839393 123.430565;154;-138;8;0.04413837 123.378433;154;-137.94;8;0.165345415 122;154;-137.248;8;0.260669021 121.921974;154;-137.208;8;0.15775673 121.272087;154;-136.58;8;0.40264146 120.766151;154;-136.028;8;0.380907974 120.735054;154;-136;8;0.123600883 120;154;-135.346;8;0.683706063 119.868271;154;-135.229;8;0.911302779 119.609238;154;-134.854;8;0.601355221 118.947868;154;-134.028;8;0.452591488 118.926796;154;-134;8;0.3366958 118.060295;154;-132.85;8;0.670709869 118;154;-132.732;8;0.708380488 117.641029;154;-132.028;8;0.320309711 117.627876;154;-132;8;0.859515021 117.301567;154;-131.302;8;0.467339095 116.884575;154;-130.409;8;0.647836582 116.748901;154;-130.028;8;0.899067758 116.738182;154;-130;8;0.107031165 116.134834;154;-128.41;8;0.479773414 116.021072;154;-128.021;8;0.298129104 116.018578;154;-128.013;8;0.484315232 116.015274;154;-128;8;0.93944534 116;154;-127.942;8;0.577840291 115.922531;154;-127.647;8;0.094110344 115.464706;154;-126.028;8;0.171957643 115.456787;154;-126;8;0.285703537 115.245216;154;-125.245;8;0.186276466 115.010452;154;-124.408;8;0.096814334 114.896027;154;-124.028;8;0.119726107 114.890442;154;-124;8;0.526309317 114.615616;154;-122.616;8;0.736723707 114.573883;154;-122.405;8;0.44243798 114.473633;154;-122.028;8;0.645730561 114.470337;154;-122;8;0.484371449 114.282173;154;-120.402;8;0.90042709 114.262062;154;-120.262;8;0.196961428 114.228455;154;-120.028;8;0.959687392 114.231834;154;-120;8;0.03737632 114.42421;154;-118.424;8;0.086935211 114.43647;154;-118.324;8;0.553810659 114.506432;154;-118.027;8;0.292105316 114.51516;154;-118;8;0.143530377 114.873253;154;-116.873;8;0.823367591 115.025719;154;-116.394;8;0.439671413 115.172745;154;-116.027;8;0.680188341 115.17971;154;-116;8;0.015168187 115.347443;154;-115.347;8;0.504812805 115.594086;154;-114.388;8;0.475239615 115.700706;154;-114.027;8;0.620128664 115.698364;154;-114;8;0.236055752 115.669395;154;-113.669;8;0.01547776 115.556564;154;-112.382;8;0.913151063 115.512436;154;-112.026;8;0.789848974 115.491165;154;-112;8;0.244210595 115.093002;154;-111.508;8;0.137602856 114;154;-110.081;8;0.272581818 113.938309;154;-110;8;0.861620535 113.926521;154;-109.985;8;0.904950076 112;154;-108.704;8;0.844038841 111.736465;154;-108.528;8;0.307437686 111.158531;154;-108.185;8;0.980320725 110.818047;154;-108.006;8;0.613743839 110.808167;154;-108;8;0.310257182 110;154;-107.54;8;0.219103736 109.928658;154;-107.499;8;0.887186036 109.41626;154;-107.182;8;0.964805939 108.66745;154;-106.667;8;0.858564872 108;154;-106.209;8;0.072630844 107.730988;154;-106.025;8;0.208930674 107.700974;154;-106;8;0.916613594 106;154;-104.611;8;0.68063657 105.674263;154;-104.345;8;0.01298508 105.218964;154;-104.024;8;0.500831992 105.188896;154;-104;8;0.386222853 104;154;-103.064;8;0.264264434 103.042908;154;-102.31;8;0.970234112 102.746361;154;-102.117;8;0.990453961 102.524086;154;-102;8;0.846979427 102.441505;154;-101.957;8;0.457093372 102;154;-101.722;8;0.797720505 101.407326;154;-101.407;8;0.144384779 100.000008;154;-100.66;8;0.881044496 99.22905;154;-100.25;8;0.008944897 98.640121;154;-100;8;0.908344923 98.226784;154;-99.8243;8;0.223679613 98;154;-99.7247;8;0.643408643 97.93956;154;-99.6982;8;0.734968854 97.669441;154;-99.5945;8;0.402147278 97.552338;154;-99.5523;8;0.255517038 95.999992;154;-98.9931;8;0.023627913 95.941315;154;-98.972;8;0.909237665 95.664856;154;-98.8803;8;0.851953696 94.629562;154;-98.6296;8;0.422976162 94;154;-98.4771;8;0.414193985 92.813774;154;-98.1897;8;0.213747522 92.548836;154;-98.1453;8;0.898858914 92.144569;154;-98.1446;8;0.261373774 92;154;-98.1443;8;0.636531827 90.141014;154;-98.141;8;0.475270097 90;154;-98.1408;8;0.797890197 89.091484;154;-98.1392;8;0.588749045 88.837807;154;-98.1352;8;0.683487652 88.585754;154;-98.172;8;0.277868548 88.24263;154;-98.2426;8;0.107652682 88;154;-98.2926;8;0.598257192 86.584221;154;-98.5842;8;0.709039208 86.193542;154;-98.6647;8;0.220330196 86;154;-98.7244;8;0.074717992 85.567566;154;-98.8577;8;0.340453692 85.032028;154;-99.032;8;0.436085323 84;154;-99.3679;8;0.762472852 83.949379;154;-99.3844;8;0.898665347 83.534233;154;-99.5342;8;0.586594185 82.24398;154;-100;8;0.796553923 82.195633;154;-100.017;8;0.316234412 82.06366;154;-100.064;8;0.725293921 82;154;-100.086;8;0.997102765 81.818161;154;-100.15;8;0.930344459 81.632698;154;-100.199;8;0.668196901 80.561615;154;-100.562;8;0.210179546 80;154;-100.752;8;0.175725228 79.951714;154;-100.768;8;0.226233193 79.006516;154;-101.007;8;0.464079706 78.125969;154;-101.229;8;0.506560019 78;154;-101.261;8;0.98839832 77.953186;154;-101.273;8;0.267405997 77.398369;154;-101.398;8;0.450816877 76.169624;154;-101.675;8;0.47048126 76;154;-101.72;8;0.003521951 75.954765;154;-101.732;8;0.782639277 75.766853;154;-101.767;8;0.06294964 74.516769;154;-102;8;0.879333924 74.08123;154;-102.081;8;0.71052265 74.022362;154;-102.092;8;0.601990285 74;154;-102.097;8;0.791264587 73.816124;154;-102.14;8;0.389426249 73.668747;154;-102.158;8;0.440707101 72.360474;154;-102.36;8;0.977963477 72;154;-102.416;8;0.88106683 71.958321;154;-102.423;8;0.627772539 71.409454;154;-102.533;8;0.940157542 70.68367;154;-102.684;8;0.856159395 70;154;-102.825;8;0.304512874 69.960121;154;-102.834;8;0.55726378 69.095169;154;-103.095;8;0.258005278 68.143181;154;-103.383;8;0.07505509 68;154;-103.427;8;0.211081253 67.961838;154;-103.439;8;0.461255691 67.605469;154;-103.605;8;0.242035264 66.760582;154;-104;8;0.288289639 66.732597;154;-104.013;8;0.984105001 66.342957;154;-104.343;8;0.770358017 66;154;-104.633;8;0.313103799 65.963249;154;-104.664;8;0.376296042 65.194481;154;-105.194;8;0.466910818 64.026146;154;-106;8;0.130979912 64.010674;154;-106.011;8;0.677972354 64.00811;154;-106.012;8;0.812574395 64;154;-106.022;8;0.233760495 63.983177;154;-106.042;8;0.52337972 63.96463;154;-106.059;8;0.793969336 62.980797;154;-106.981;8;0.538146664 62.209167;154;-107.704;8;0.21818987 62.065704;154;-107.851;8;0.269599437 62;154;-107.906;8;0.802005903 61.948685;154;-107.949;8;0.392216429 61.886917;154;-108;8;0.094799854 61.17421;154;-108.592;8;0.76508958 60.862762;154;-108.863;8;0.028095911 60;154;-109.612;8;0.054460594 59.967335;154;-109.641;8;0.691013567 59.787003;154;-109.787;8;0.709895564 59.524181;154;-110;8;0.042301392 59.51017;154;-110.011;8;0.282406583 58.633751;154;-110.634;8;0.927109072 58;154;-111.084;8;0.999599558 57.968994;154;-111.106;8;0.498777929 57.448353;154;-111.448;8;0.947774043 56.609829;154;-112;8;0.795812421 56.306622;154;-112.199;8;0.321009481 56.241642;154;-112.242;8;0.34851405 56;154;-112.398;8;0.078113698 55.970764;154;-112.417;8;0.125695371 55.086079;154;-113.086;8;0.764537922 54.164295;154;-113.783;8;0.510630024 54.022156;154;-113.905;8;0.857975472 54;154;-113.931;8;0.454039264 53.968201;154;-113.968;8;0.788526354 53.940884;154;-114;8;0.113303419 53.044056;154;-115.044;8;0.860756308 52.222916;154;-116;8;0.941179536 52.215034;154;-116.009;8;0.263434936 52.156509;154;-116.157;8;0.605059056 52;154;-116.551;8;0.954607368 51.587914;154;-117.588;8;0.570955996 51.469051;154;-117.887;8;0.479765278 51.390869;154;-118;8;0.032939158 51.384617;154;-118.009;8;0.755381578 51.335114;154;-118.227;8;0.9835995 51.208023;154;-119.208;8;0.71736367 51.105453;154;-120;8;0.137665327 51.104282;154;-120.009;8;0.017237782 51.162701;154;-120.348;8;0.404752858 51.363266;154;-121.363;8;0.993424196 51.48901;154;-122;8;0.104103636 51.490852;154;-122.009;8;0.93107374 51.532383;154;-122.449;8;0.834420411 51.930626;154;-123.653;8;0.479697585 52;154;-123.847;8;0.745599044 52.022697;154;-123.911;8;0.836352785 52.05497;154;-123.978;8;0.265907836 52.064857;154;-124;8;0.206883676 52.119976;154;-124.12;8;0.41466691 52.129429;154;-124.141;8;0.406454142 52.565495;154;-126;8;0.171136775 52.567829;154;-126.01;8;0.990657603 52.463879;154;-126.464;8;0.681750753 52.133457;154;-127.907;8;0.558819833 52.138298;154;-128;8;0.866374831 52.138805;154;-128.01;8;0.491793622 52.091469;154;-128.091;8;0.823934611 52;154;-128.249;8;0.48073631 51.972233;154;-128.297;8;0.40061794 51.336033;154;-129.336;8;0.248810229 50.92944;154;-130;8;0.307995068 50.923721;154;-130.009;8;0.929648448 50.569424;154;-130.569;8;0.905872043 50.406979;154;-130.826;8;0.917388041 50.000004;154;-131.512;8;0.332312348 49.818024;154;-131.818;8;0.609964856 49.798355;154;-131.851;8;0.712827845 49.742531;154;-132;8;0.047186493 49.739212;154;-132.009;8;0.016403139 49.351337;154;-133.232;8;0.817337922 49.320457;154;-133.32;8;0.224635524 49.082836;154;-134;8;0.268480929 49.079845;154;-134.009;8;0.219835032 48.904072;154;-134.904;8;0.596599573 48.861023;154;-135.123;8;0.399558037 48.605728;154;-136;8;0.544367076 48.603313;154;-136.008;8;0.239770311 48.516212;154;-136.516;8;0.116825435 48.31905;154;-137.666;8;0.69905888 48.260265;154;-138;8;0.50291247 48.258842;154;-138.008;8;0.967971311 48.234718;154;-138.235;8;0.39046841 48.2299;154;-138.28;8;0.822621953 47.999996;154;-139.557;8;0.280424596 47.93243;154;-139.932;8;0.065486508 47.920265;154;-140;8;0.253733338 47.627316;154;-141.627;8;0.692404856 47.577278;154;-141.905;8;0.91290941 47.574322;154;-142;8;0.405244157 47.574085;154;-142.008;8;0.193599422 47.507961;154;-143.508;8;0.165776686 47.490002;154;-143.916;8;0.71486719 47.491322;154;-144;8;0.534161041 47.49144;154;-144.007;8;0.885623414 47.889523;154;-145.89;8;0.833090061 47.912888;154;-146;8;0.600211779 47.999996;154;-146.412;8;0.067401415 48.298409;154;-147.823;8;0.213364688 48.304256;154;-147.937;8;0.043244814 48.312355;154;-148;8;0.71957698 48.313297;154;-148.007;8;0.311322492 48.391815;154;-148.392;8;0.846223966 48.699623;154;-149.899;8;0.350762724 48.720192;154;-150;8;0.899707641 48.721672;154;-150.007;8;0.60293977 48.72863;154;-150.729;8;0.587864102 48.74004;154;-151.912;8;0.145008592 48.740303;154;-152;8;0.93239676 48.740322;154;-152.007;8;0.945335977 48.55719;154;-152.557;8;0.117688823 48.106876;154;-153.91;8;0.198934782 48.080452;154;-154;8;0.165165533 48.077629;154;-154.01;8;0.057300174 48.045891;154;-154.046;8;0.317953328 47.999996;154;-154.098;8;0.775838522 47.981506;154;-154.119;8;0.585258281 47.171654;154;-155.172;8;0.036572364 46.534081;154;-156;8;0.948303747 46.462658;154;-156.093;8;0.994579583 46.227314;154;-156.227;8;0.710662992 46;154;-156.357;8;0.849267199 45.984215;154;-156.366;8;0.413772024 44.948944;154;-156.949;8;0.950385521 44.051121;154;-157.454;8;0.413226227 44;154;-157.473;8;0.148379426 43.986382;154;-157.478;8;0.242504512 43.655777;154;-157.656;8;0.697344993 43.01738;154;-158;8;0.285988484 43.009163;154;-158.004;8;0.288131365 42.185127;154;-158.185;8;0.59863918 42;154;-158.226;8;0.084709706 40.731625;154;-158.504;8;0.462146039 40.566597;154;-158.567;8;0.728083551 40;154;-158.782;8;0.54678707 39.990032;154;-158.786;8;0.847398029 38.97279;154;-158.973;8;0.383656311 38.031502;154;-159.146;8;0.729451008 38;154;-159.15;8;0.246509991 37.9916;154;-159.152;8;0.433518875 37.951969;154;-159.158;8;0.100169646 37.290909;154;-159.291;8;0.797407059 36;154;-159.551;8;0.287101599 35.993053;154;-159.553;8;0.553943218 35.954224;154;-159.56;8;0.957967394 35.626621;154;-159.627;8;0.616081001 34;154;-159.959;8;0.014576479 33.965656;154;-159.966;8;0.729592021 33.797413;154;-160;8;0.674966512 33.788002;154;-160.002;8;0.312624089 33.766899;154;-160.008;8;0.808209641 32.372356;154;-160.372;8;0.041247576 32;154;-160.47;8;0.436415885 31.995604;154;-160.471;8;0.863807367 31.974852;154;-160.476;8;0.228128226 30.749174;154;-160.749;8;0.650013409 30;154;-160.916;8;0.732045361 29.996672;154;-160.917;8;0.493750651 29.980944;154;-160.921;8;0.977582762 29.101656;154;-161.102;8;0.257640625 28;154;-161.328;8;0.318032745 27.997593;154;-161.328;8;0.494385508 27.436577;154;-161.437;8;0.365853336 26.006123;154;-161.713;8;0.171846714 26;154;-161.715;8;0.573413965 25.998363;154;-161.715;8;0.459201339 25.743149;154;-161.743;8;0.031945236 24.004459;154;-161.935;8;0.076852849 23.999998;154;-161.935;8;0.289812158 23.998974;154;-161.935;8;0.891787801 23.942047;154;-161.942;8;0.386121132 23.445705;154;-162;8;0.84104895 22.151148;154;-162.151;8;0.528031889 22.002073;154;-162.169;8;0.200403997 22;154;-162.169;8;0.390588207 21.999447;154;-162.169;8;0.384271267 21.996826;154;-162.169;8;0.928746042 20.322412;154;-162.322;8;0.678037629 20;154;-162.352;8;0.939806582 19.99869;154;-162.352;8;0.592105815 18.3902;154;-162.39;8;0.693003298 17.999954;154;-162.399;8;0.420035168 16.312765;154;-162.313;8;0.661006008 16;154;-162.297;8;0.826952679 14.088775;154;-162.089;8;0.730054068 14;154;-162.079;8;0.113992047 13.272739;154;-162;8;0.391707739 11.999999;154;-161.862;8;0.940692048 11.826086;154;-161.826;8;0.38206704 10;154;-161.454;8;0.056677833 9.301307;154;-161.301;8;0.379143645 8;154;-161.017;8;0.208884785 6.742875;154;-160.743;8;0.578394126 6;154;-160.581;8;0.995124659 4.483419;154;-160.336;8;0.973243974 4.319499;154;-160.32;8;0.857882986 4;154;-160.288;8;0.783391428 3.516581;154;-160.253;8;0.213626059 2.01648;154;-160.016;8;0.500601365 2;154;-160.014;8;0.364939214 1.931514;154;-160;8;0.43557691 0;154;-159.534;8;0.953305394 120;154;-156.679;8;0.322236562 119.934029;154;-156.636;8;0.200982397 119.760384;154;-156.338;8;0.447911117 119.610687;154;-156;8;0.758305228 119.301064;154;-155.301;8;0.957167533 118.878654;154;-154.348;8;0.911291005 118.789917;154;-154.024;8;0.288568471 118.790382;154;-154;8;0.074958654 118.81324;154;-152.813;8;0.020292757 118.822044;154;-152.356;8;0.950562857 118.837341;154;-152.025;8;0.68747418 118.849167;154;-152;8;0.364755748 119.221771;154;-151.222;8;0.890193975 119.66581;154;-150.294;8;0.861537035 119.821083;154;-150;8;0.16788757 119.882866;154;-149.883;8;0.65559985 119.928177;154;-149.797;8;0.681205561 120;154;-149.687;8;0.898858236 120.046646;154;-149.615;8;0.254085671 120.690651;154;-148.691;8;0.066044624 121.153854;154;-148.026;8;0.949283814 121.172302;154;-148;8;0.649911689 121.37867;154;-147.714;8;0.135082593 121.540031;154;-147.54;8;0.412380888 122;154;-147.044;8;0.242457165 122.502304;154;-146.502;8;0.135081916 122.912506;154;-146.06;8;0.078013442 122.954659;154;-146;8;0.659227995 123.386337;154;-145.386;8;0.275849534 123.576462;154;-145.116;8;0.810472965 123.800011;154;-144.732;8;0.345412101 124;154;-144.593;8;0.766807412 124.35022;154;-144.35;8;0.906130879 124.81768;154;-144.026;8;0.017588545 124.835182;154;-144;8;0.423094979 125.304016;154;-143.304;8;0.797912138 125.610413;154;-142.849;8;0.74018146 126;154;-142.793;8;0.523563069 126.692322;154;-142.692;8;0.106205778 126.756607;154;-142.683;8;0.94577377 127.926949;154;-142.998;8;0.756287276 128;154;-143.048;8;0.069259853 129.169418;154;-143.845;8;0.397065785 129.373459;154;-144;8;0.177552405 129.983185;154;-144.463;8;0.156493148 130;154;-144.48;8;0.979013393 130.264481;154;-144.745;8;0.484489603 130.920731;154;-145.486;8;0.403146566 131.433395;154;-146;8;0.426076118 131.457672;154;-146.024;8;0.526082641 131.689072;154;-146.266;8;0.12190364 132;154;-146.811;8;0.301623214 132.677872;154;-148;8;0.239671548 132.74855;154;-148.124;8;0.477126627 133.599442;154;-149.523;8;0.837969621 133.677612;154;-149.678;8;0.235939891 133.840302;154;-150;8;0.468179203 133.851837;154;-150.023;8;0.601272066 134;154;-150.318;8;0.692540937 134.043732;154;-150.405;8;0.170881969 134.929794;154;-152;8;0.268243144 134.942062;154;-152.022;8;0.74856517 135.102371;154;-153.102;8;0.260933323 135.149872;154;-153.422;8;0.107932777 135.351654;154;-154;8;0.231900008 135.359131;154;-154.021;8;0.788086006 134.685349;154;-154.685;8;0.558534515 134.400452;154;-154.966;8;0.187099827 134;154;-155.281;8;0.041298232 133.597656;154;-155.598;8;0.058188362 133.086227;154;-156;8;0.724194925 133.059097;154;-156.021;8;0.503371305 132.2509;154;-156.251;8;0.987127065 132;154;-156.322;8;0.074157863 131.938843;154;-156.34;8;0.675782591 131.550339;154;-156.404;8;0.421283619 130.689819;154;-156.69;8;0.767149097 130;154;-156.919;8;0.518695588 129.938232;154;-156.94;8;0.908646301 129.14743;154;-157.147;8;0.813246791 128.232498;154;-157.388;8;0.943615682 128;154;-157.417;8;0.938840499 127.93766;154;-157.425;8;0.426997648 127.496872;154;-157.497;8;0.212199718 127.251724;154;-157.537;8;0.110367248 126;154;-157.795;8;0.230766837 125.937126;154;-157.808;8;0.821514983 125.82177;154;-157.822;8;0.390053573 124.323494;154;-158;8;0.063994825 124.136322;154;-158.022;8;0.941806754 124.033691;154;-158.034;8;0.222444837 124.007744;154;-158.037;8;0.762178884 124;154;-158.038;8;0.113711419 123.936569;154;-158.046;8;0.796399482 123.146935;154;-158.022;8;0.506194754 122.357117;154;-158;8;0.054196504 122.016258;154;-157.99;8;0.18937938 122;154;-157.984;8;0.882278357 121.973648;154;-157.974;8;0.212273748 121.894203;154;-157.943;8;0.642153649 121.464905;154;-157.64;8;0.889186099 298;154;-150.903;8;0.323422025 297.010071;154;-151.01;8;0.848907358 296;154;-151.119;8;0.218034169 295.160339;154;-151.16;8;0.487828294 294;154;-151.218;8;0.840194045 293.251587;154;-151.252;8;0.351541794 292;154;-151.308;8;0.922456337 291.335144;154;-151.335;8;0.920593591 290;154;-151.389;8;0.035522124 289.401123;154;-151.401;8;0.208023399 288;154;-151.43;8;0.178325826 287.476501;154;-151.477;8;0.808059362 286.612671;154;-151.553;8;0.003961867 286;154;-151.544;8;0.325720003 285.563721;154;-151.564;8;0.051659477 284.520721;154;-151.612;8;0.286631905 284;154;-151.627;8;0.522131215 283.621582;154;-151.622;8;0.015243808 282;154;-151.597;8;0.604628178 281.609222;154;-151.609;8;0.173849851 280.498932;154;-151.644;8;0.728216695 280;154;-151.633;8;0.414245871 279.556244;154;-151.556;8;0.847481827 278;154;-151.287;8;0.579656009 276.874268;154;-150.874;8;0.899237501 276;154;-150.554;8;0.075482764 275.263092;154;-150;8;0.104382682 274;154;-149.051;8;0.894443165 273.078552;154;-148;8;0.124636789 272;154;-146.77;8;0.928095225 271.264709;154;-146;8;0.695336569 270;154;-144.676;8;0.896683912 269.257294;154;-144;8;0.832449527 268;154;-142.856;8;0.720493957 267.454437;154;-142.334;8;0.077977039 267.171753;154;-142;8;0.839917374 266;154;-140.133;8;0.279054202 265.989868;154;-140;8;0.214264594 265.989044;154;-139.989;8;0.51633857 265.838196;154;-138;8;0.519425331 266;154;-138;8;0.574260091 266;154;-140;8;0.839664305 266.009125;154;-140.009;8;0.413740827 266.009796;154;-140;8;0.175308901 266.146027;154;-138.146;8;0.111616308 266.156769;154;-138;8;0.817704169 266;154;-138;8;0.918750991 266;154;-137.305;8;0.278732399 266.303711;154;-136;8;0.142067227 266.282928;154;-136.283;8;0.347245149 266.246368;154;-136.246;8;0.391866703 266.246368;154;-136.246;8;0.38834891 266;154;-137.305;8;0.795538924 265.868744;154;-137.869;8;0.79979603 265.838196;154;-138;8;0.588494972 266;154;-140;8;0.830457515 265.989044;154;-139.989;8;0.476771909 87.723389;154;-89.7234;8;0.507703654 86.15731;154;-88.9618;8;0.251629668 86;154;-88.8748;8;0.699860461 85.979919;154;-88.8637;8;0.400358184 84.882721;154;-88.0141;8;0.728257958 84.876373;154;-88;8;0.175949482 84.161842;154;-86.4097;8;0.896997532 84.046974;154;-86.2297;8;0.780877224 84.120506;154;-86.1205;8;0.627912161 84.140724;154;-86.0905;8;0.98695564 84.220261;154;-86;8;0.010478991 85.052795;154;-85.0528;8;0.566520211 85.963333;154;-84.0168;8;0.258227142 86;154;-84.0009;8;0.417016935 86.000641;154;-84.0006;8;0.520452275 86.002106;154;-84;8;0.195260133 86.1371;154;-83.9414;8;0.778068881 87.561325;154;-83.5613;8;0.154406248 87.962708;154;-83.4542;8;0.76484324 88;154;-83.4491;8;0.625120019 88.139633;154;-83.43;8;0.809591319 89.288383;154;-83.2884;8;0.384126439 89.961815;154;-83.2054;8;0.255013904 90;154;-83.2038;8;0.493672569 90.143005;154;-83.1979;8;0.560546471 91.15451;154;-83.1545;8;0.680717402 91.960823;154;-83.1199;8;0.735370312 92;154;-83.1259;8;0.086096435 93.329933;154;-83.3299;8;0.874394729 93.768173;154;-83.3972;8;0.513682297 94;154;-83.4583;8;0.63055937 94.05526;154;-83.4729;8;0.062203358 95.266777;154;-84;8;0.261710699 95.85675;154;-84.2567;8;0.776666205 95.957436;154;-84.3382;8;0.977130278 95.999992;154;-84.3891;8;0.925296312 97.255287;154;-85.889;8;0.891022688 97.343857;154;-86;8;0.129006207 97.356514;154;-86.0159;8;0.13939413 97.253143;154;-86.3061;8;0.57600841 97.174606;154;-87.1746;8;0.622111595 97.099976;154;-88;8;0.351577098 97.0914;154;-88.0949;8;0.479174366 96.584656;154;-88.5847;8;0.127356214 95.999992;154;-89.1498;8;0.629383858 95.951782;154;-89.1964;8;0.491018972 95.723618;154;-89.2746;8;0.655120807 95.408051;154;-89.4081;8;0.635502918 94.007957;154;-90;8;0.891152333 94.002365;154;-90.0024;8;0.325367332 94;154;-90.0034;8;0.012506277 93.951889;154;-90.0237;8;0.687786345 93.724548;154;-90.0572;8;0.797160324 92.207687;154;-90.2077;8;0.647388508 92;154;-90.2283;8;0.910378235 91.952789;154;-90.233;8;0.945166162 90.171913;154;-90.131;8;0.564704919 90.126541;154;-90.1265;8;0.405568263 90;154;-90.114;8;0.120706092 89.954147;154;-90.1095;8;0.029013634 89.738106;154;-90.0571;8;0.799130977 89.277046;154;-90;8;0.400578544 88;154;-89.8419;8;0.406946235 87.955742;154;-89.8364;8;0.300742527 266.009125;154;-140.009;8;0.083655139 266;154;-140.133;8;0.550149647 266;154;-140;8;0.675364994 265.989868;154;-140;8;0.62032315 266.146027;154;-138.146;8;0.454254775 266;154;-138;8;0.545054963 265.868744;154;-137.869;8;0.978668131 266.009796;154;-140;8;0.59147441 266;154;-140;8;0.224145109 266.282928;154;-136.283;8;0.964087869 266.156769;154;-138;8;0.5674309 298;126;-153.59;9;0.021338951 297.512207;126;-153.512;9;0.191130395 296;126;-153.272;9;0.572731479 295.103271;126;-153.103;9;0.168710213 294;126;-152.896;9;0.993535656 292.300476;126;-152.3;9;0.57601467 292;126;-152.195;9;0.428537409 291.443207;126;-152;9;0.283081875 290.206177;126;-150.206;9;0.512441245 290.063995;126;-150;9;0.478724551 290;126;-149.494;9;0.089350707 289.811066;126;-148;9;0.169516564 289.83844;126;-147.838;9;0.832567243 290;126;-146.885;9;0.553085341 290.128113;126;-146.128;9;0.005482144 290.149811;126;-146;9;0.332848995 290.417786;126;-144.418;9;0.666359877 290.488556;126;-144;9;0.548090304 290.647278;126;-143.353;9;0.457252232 290.776642;126;-142.777;9;0.026102919 290.95108;126;-142;9;0.260434667 291.113403;126;-141.113;9;0.48795994 291.317291;126;-140;9;0.987112651 291.462555;126;-139.463;9;0.707361909 291.805176;126;-138.195;9;0.134084079 291.850861;126;-138;9;0.124281157 291.884918;126;-137.885;9;0.40748979 292;126;-137.562;9;0.233879317 292.410492;126;-136.41;9;0.96921414 292.556824;126;-136;9;0.945941503 293.039764;126;-135.04;9;0.767855151 293.562714;126;-134;9;0.707299532 293.709045;126;-133.709;9;0.859533601 294;126;-133.131;9;0.52249158 294.491333;126;-132.491;9;0.408071508 294.868958;126;-132;9;0.536178353 295.360504;126;-131.36;9;0.237624871 296;126;-130.528;9;0.467741365 296.229645;126;-130.23;9;0.402799095 296.406158;126;-130;9;0.191633888 296;126;-129.381;9;0.745914269 295.094147;126;-128;9;0.782618169 294;126;-126.332;9;0.743958167 293.475983;126;-126;9;0.273020884 292;126;-124.754;9;0.215903335 290.778687;126;-124;9;0.506742007 290.297302;126;-123.703;9;0.14566208 290;126;-123.436;9;0.835429397 288.471619;126;-122.472;9;0.402119466 288;126;-122.196;9;0.823616198 287.713684;126;-122;9;0.342919089 286;126;-120.635;9;0.048363873 285.664398;126;-120;9;0.849568904 285.288544;126;-119.289;9;0.223300395 284.607819;126;-118;9;0.752727113 284.79541;126;-117.205;9;0.527193357 284.838287;126;-116.838;9;0.336647648 284.936401;126;-116;9;0.008408963 285.137543;126;-115.138;9;0.084717071 285.402863;126;-114;9;0.977203029 284;126;-112.297;9;0.891071679 283.223785;126;-112;9;0.591561252 282;126;-111.532;9;0.866613469 281.510986;126;-111.511;9;0.29637257 280;126;-111.445;9;0.656406588 279.615601;126;-111.616;9;0.165820913 278.747467;126;-112;9;0.880744049 278.429382;126;-112.429;9;0.818894719 278;126;-113.009;9;0.684499637 277.578247;126;-113.578;9;0.303956635 277.208252;126;-114;9;0.083760058 276.48645;126;-114.486;9;0.571923152 276;126;-114.814;9;0.81979703 275.142548;126;-115.143;9;0.856507216 274.680603;126;-115.319;9;0.763654941 274;126;-115.699;9;0.786185593 273.789948;126;-115.79;9;0.132053791 272.792786;126;-116;9;0.538645079 272.137939;126;-116.138;9;0.983059589 272;126;-116.167;9;0.017855418 270.485046;126;-116.485;9;0.912587147 270;126;-116.577;9;0.929733331 269.037476;126;-116.963;9;0.729490054 268.982086;126;-116.982;9;0.621022932 268;126;-117.329;9;0.930062573 267.642151;126;-117.561;9;0.700676444 267.597015;126;-117.597;9;0.820829285 267.092926;126;-118;9;0.753924881 266.485535;126;-118.486;9;0.621219428 266;126;-118.874;9;0.447245391 265.477997;126;-119.478;9;0.538238849 265.027069;126;-120;9;0.997127811 264.551056;126;-120.551;9;0.023336275 264;126;-121.189;9;0.558556454 263.624115;126;-121.624;9;0.49664478 263.299408;126;-122;9;0.861504544 262.67688;126;-122.677;9;0.824989626 262;126;-123.413;9;0.399358291 261.718689;126;-123.719;9;0.429644803 261.459961;126;-124;9;0.890921888 260.874176;126;-124.874;9;0.886290941 260.119781;126;-126;9;0.497092333 260.071716;126;-126.072;9;0.901837691 260;126;-126.179;9;0.858820758 259.608856;126;-127.609;9;0.979383327 259.501862;126;-128;9;0.327807364 259.692688;126;-129.693;9;0.814004138 259.727325;126;-130;9;0.878568587 259.841827;126;-130.295;9;0.671421589 260;126;-130.593;9;0.261832246 261.012512;126;-132;9;0.732411414 261.481537;126;-132.518;9;0.452973996 262;126;-133.048;9;0.668676477 263.597137;126;-134;9;0.321631909 264;126;-134.207;9;0.68127905 264.423798;126;-134.424;9;0.64760092 266;126;-135.232;9;0.977753057 267.2276;126;-136;9;0.323266857 267.702698;126;-136.297;9;0.503953944 268;126;-136.654;9;0.992169437 268.943665;126;-138;9;0.323485848 269.97113;126;-139.971;9;0.345790194 269.986176;126;-140;9;0.260232797 270;126;-140.027;9;0.18621102 271.158478;126;-142;9;0.715296413 271.344849;126;-142.655;9;0.255426862 271.75415;126;-143.754;9;0.775057388 271.845703;126;-144;9;0.500154319 272;126;-144.414;9;0.082991537 271.63916;126;-145.639;9;0.29985397 271.512299;126;-146;9;0.464272344 270.509277;126;-146.509;9;0.771399349 270;126;-146.768;9;0.130926615 269.198853;126;-147.199;9;0.230576977 268.337952;126;-147.662;9;0.920675378 268;126;-147.827;9;0.185420582 267.94986;126;-147.851;9;0.05205947 267.890839;126;-147.891;9;0.705521666 267.7276;126;-148;9;0.663733186 266.524048;126;-148.524;9;0.968035083 266;126;-148.752;9;0.935556778 265.16861;126;-149.169;9;0.616553554 264;126;-149.754;9;0.396131903 263.82843;126;-149.828;9;0.893602251 263.433655;126;-150;9;0.08268958 262.434265;126;-150.434;9;0.625494044 262;126;-150.623;9;0.611955497 260.935638;126;-150.936;9;0.741099629 260;126;-151.211;9;0.021327548 259.289764;126;-151.29;9;0.249684138 258;126;-151.434;9;0.460059798 257.415192;126;-151.415;9;0.844046537 256;126;-151.37;9;0.89111917 255.265182;126;-151.265;9;0.028596431 254;126;-151.084;9;0.257528366 252.880707;126;-150.881;9;0.375488206 252;126;-150.721;9;0.774826137 250.447372;126;-150.447;9;0.361218035 250;126;-150.369;9;0.650534029 248.169998;126;-150.078;9;0.906044222 248.06926;126;-150.069;9;0.589263222 248;126;-150.063;9;0.938008059 247.399521;126;-150;9;0.118606524 246;126;-149.852;9;0.000841014 245.84314;126;-149.843;9;0.923649994 244;126;-149.735;9;0.198748601 243.732346;126;-149.732;9;0.529317323 242;126;-149.714;9;0.853852896 241.715042;126;-149.715;9;0.911129359 241.394623;126;-149.716;9;0.178586211 240;126;-149.708;9;0.671632032 239.677063;126;-149.677;9;0.830364074 238;126;-149.517;9;0.860534517 237.434616;126;-149.435;9;0.246211632 236;126;-149.227;9;0.575399892 235.041245;126;-149.041;9;0.923340314 234.000015;126;-148.84;9;0.326048264 232.523102;126;-148.523;9;0.06334875 232;126;-148.411;9;0.503786139 230.343674;126;-148;9;0.78394077 230;126;-147.915;9;0.794809807 229.871292;126;-147.871;9;0.18354308 228;126;-147.239;9;0.237435382 226.626755;126;-146.627;9;0.912336177 225.999985;126;-146.347;9;0.91703407 225.221924;126;-146;9;0.09322647 224;126;-144.658;9;0.951053652 223.37117;126;-144;9;0.849480098 222.482513;126;-142.483;9;0.308323356 222.467255;126;-142.456;9;0.013211994 222.221161;126;-142;9;0.205508392 222.215057;126;-141.989;9;0.572916081 222.137085;126;-141.853;9;0.254619921 222;126;-141.624;9;0.891727583 221.030121;126;-140;9;0.397930934 220.982803;126;-139.921;9;0.099458997 220.6539;126;-139.286;9;0.801732385 220.103867;126;-138.134;9;0.054024156 220.080231;126;-138.08;9;0.15823146 220.045013;126;-138;9;0.71435132 220;126;-137.897;9;0.986152307 219.835388;126;-137.522;9;0.852688854 219.77182;126;-137.168;9;0.332132046 219.650131;126;-136;9;0.591237997 219.609436;126;-135.609;9;0.276958167 219.57579;126;-135.287;9;0.309254449 219.849854;126;-134;9;0.224503969 219.876221;126;-133.876;9;0.019149385 219.877518;126;-133.87;9;0.808829101 220;126;-133.148;9;0.897273735 220.007629;126;-133.104;9;0.835889343 220.325912;126;-132.326;9;0.709449373 220.359467;126;-132.244;9;0.162568731 220.45372;126;-132;9;0.37178552 220.771255;126;-131.178;9;0.997416789 220.871368;126;-130.871;9;0.25412754 220.960358;126;-130.599;9;0.512924837 221.105606;126;-130;9;0.139428111 221.280212;126;-129.28;9;0.24956572 221.366989;126;-128.922;9;0.940196676 221.21286;126;-128;9;0.125359065 221.089737;126;-127.263;9;0.143638973 221.051987;126;-127.052;9;0.957850815 220.998093;126;-126.751;9;0.509352736 220.66008;126;-126.278;9;0.365316391 220.451859;126;-126;9;0.689468892 220;126;-125.396;9;0.771664801 219.522827;126;-124.759;9;0.686737902 218.642899;126;-124.126;9;0.02003228 218.476974;126;-124;9;0.085865618 218;126;-123.638;9;0.52514818 217.122025;126;-122.973;9;0.636139387 216.739426;126;-122.739;9;0.959884155 216.537735;126;-122.616;9;0.981171605 216;126;-122.291;9;0.956620128 215.520233;126;-122;9;0.231466255 214.446426;126;-121.35;9;0.636062781 214.393295;126;-121.318;9;0.006151151 214;126;-121.086;9;0.550851969 212.158203;126;-120;9;0.896239926 212;126;-119.907;9;0.800876355 211.772568;126;-119.773;9;0.973664411 211.65213;126;-119.702;9;0.110284203 211.554306;126;-119.624;9;0.152718965 211.005127;126;-119.085;9;0.070951243 210.09671;126;-118.274;9;0.721330254 210;126;-118.169;9;0.830332878 209.84549;126;-118;9;0.164152974 209.740265;126;-117.885;9;0.337121192 209.619354;126;-117.619;9;0.075115527 209.478561;126;-117.31;9;0.687875868 208.69101;126;-116;9;0.142264598 208.664764;126;-115.956;9;0.269054985 208.333191;126;-114.333;9;0.078478989 208.324478;126;-114.29;9;0.266019386 208.213455;126;-114;9;0.483698601 208.209549;126;-113.99;9;0.457334642 208.381958;126;-112.382;9;0.976111746 208.384521;126;-112.358;9;0.577898409 208.346191;126;-112;9;0.945713876 208.345276;126;-111.991;9;0.4223276 208.783722;126;-110.784;9;0.123357901 209.068253;126;-110;9;0.269026832 209.216873;126;-109.217;9;0.354272126 209.4478;126;-108;9;0.510871991 209.246078;126;-107.246;9;0.831381681 208.912674;126;-106;9;0.987825711 208;126;-104.816;9;0.397534097 207.248489;126;-104;9;0.892712426 206;126;-102.644;9;0.463188558 205.283417;126;-102;9;0.327138883 203.999969;126;-100.847;9;0.460572488 202.965225;126;-100;9;0.155944215 202;126;-99.1765;9;0.412357369 201.999466;126;-99.1763;9;0.68385944 200.145111;126;-98;9;0.030456678 200.000015;126;-97.9246;9;0.125593483 199.84288;126;-97.8429;9;0.914428276 199.525085;126;-97.6775;9;0.810838617 198;126;-96.7254;9;0.334403769 197.999435;126;-96.725;9;0.728308747 197.996735;126;-96.7241;9;0.304174075 196.015839;126;-96.0158;9;0.851029998 196;126;-96.0102;9;0.143498195 195.999054;126;-96.0098;9;0.265936434 195.963394;126;-96;9;0.392557602 194.005356;126;-95.4599;9;0.426791587 194;126;-95.4579;9;0.672412308 193.998566;126;-95.4573;9;0.805046917 193.99176;126;-95.4557;9;0.409479626 193.415695;126;-95.4157;9;0.045285268 191.999985;126;-95.3175;9;0.700150122 191.99791;126;-95.3173;9;0.487723546 191.988037;126;-95.3185;9;0.778012077 191.468765;126;-95.4688;9;0.136247951 190;126;-95.8937;9;0.746833421 189.917587;126;-95.9176;9;0.099892076 189.656326;126;-95.9932;9;0.402975522 189.644272;126;-96;9;0.475116779 189.641464;126;-96.0016;9;0.837262575 188.6008;126;-96.6008;9;0.413825137 188;126;-96.9467;9;0.012775589 187.995895;126;-96.9491;9;0.73200534 187.976395;126;-96.9645;9;0.589316596 187.417923;126;-97.4179;9;0.72684175 186.703781;126;-97.9977;9;0.897079349 186.701187;126;-98;9;0.494500428 186.672806;126;-98.0257;9;0.344726525 186.323166;126;-98.3232;9;0.236932139 186;126;-98.5981;9;0.606454443 185.242599;126;-99.2426;9;0.042911753 184.352493;126;-100;9;0.528876519 184.349625;126;-100.002;9;0.323719403 184.153397;126;-100.153;9;0.221472242 184;126;-100.271;9;0.601468308 183.023026;126;-101.023;9;0.374704939 182.021103;126;-101.794;9;0.827930559 182;126;-101.81;9;0.311503459 181.990982;126;-101.817;9;0.748955031 181.947998;126;-101.843;9;0.653585353 181.876068;126;-101.876;9;0.695401575 181.60495;126;-102;9;0.530248258 180.503525;126;-102.504;9;0.773749384 180;126;-102.734;9;0.216518275 179.989197;126;-102.739;9;0.238447591 179.937683;126;-102.765;9;0.522818199 179.079193;126;-103.079;9;0.22383436 178;126;-103.474;9;0.084570161 177.98732;126;-103.479;9;0.785416267 177.926941;126;-103.506;9;0.006238161 177.6008;126;-103.601;9;0.355623811 176.234375;126;-104;9;0.502704495 176.191818;126;-104.012;9;0.068349232 176.123199;126;-104.033;9;0.949860491 176.049744;126;-104.05;9;0.341137683 176;126;-104.061;9;0.042456759 174.417465;126;-104.417;9;0.48005974 174.000015;126;-104.511;9;0.930608085 173.983444;126;-104.515;9;0.759351379 172.759949;126;-104.76;9;0.45003702 172.069229;126;-104.898;9;0.068557289 172;126;-104.917;9;0.116278395 171.981384;126;-104.922;9;0.580214402 171.075867;126;-105.076;9;0.858042491 170.077042;126;-105.245;9;0.530463835 170;126;-105.261;9;0.880301159 169.979279;126;-105.265;9;0.31366117 169.366974;126;-105.367;9;0.620504473 168.085083;126;-105.581;9;0.530883976 168;126;-105.597;9;0.467764414 167.977097;126;-105.601;9;0.39017204 167.651062;126;-105.651;9;0.570157171 167.504684;126;-105.674;9;0.040490198 166.000015;126;-105.934;9;0.416427343 165.974899;126;-105.938;9;0.012029103 165.9422;126;-105.942;9;0.819155805 165.691528;126;-105.971;9;0.109964752 165.394241;126;-106;9;0.741407244 165.301407;126;-106.009;9;0.416203801 164.112091;126;-106.112;9;0.004389343 164;126;-106.122;9;0.56126762 163.972672;126;-106.124;9;0.886903769 163.42952;126;-106.121;9;0.987189918 162.188736;126;-106.189;9;0.837004138 162;126;-106.199;9;0.757757943 161.97049;126;-106.201;9;0.434999319 161.77005;126;-106.172;9;0.178997324 160.080566;126;-106.081;9;0.777350565 160;126;-106.076;9;0.711770982 159.904892;126;-106.071;9;0.866423865 159.399597;126;-106;9;0.963303089 158.058151;126;-105.811;9;0.372468968 157.999985;126;-105.791;9;0.656458917 157.806305;126;-105.723;9;0.594186071 157.690506;126;-105.691;9;0.495662965 156;126;-105.216;9;0.811252578 155.964539;126;-105.206;9;0.299361356 155.80426;126;-105.13;9;0.889120228 154.689056;126;-104.689;9;0.735795054 154;126;-104.416;9;0.584728904 153.971634;126;-104.405;9;0.158909646 152.983185;126;-104;9;0.504145946 152.15303;126;-103.66;9;0.106436525 152;126;-103.586;9;0.36108781 151.961319;126;-103.567;9;0.059928714 151.432007;126;-103.432;9;0.319447351 150.150299;126;-103.104;9;0.623847009 150;126;-103.068;9;0.526391403 149.95961;126;-103.059;9;0.50306915 149.76709;126;-103.085;9;0.205977505 149.137299;126;-103.137;9;0.126584917 148;126;-103.231;9;0.578913426 147.957458;126;-103.235;9;0.429945292 147.484711;126;-103.485;9;0.594219055 146.509781;126;-104;9;0.975588239 146.176285;126;-104.176;9;0.486466175 146.168213;126;-104.181;9;0.756665233 146;126;-104.257;9;0.057167234 145.954697;126;-104.278;9;0.336207146 145.73819;126;-104.452;9;0.608239633 145.005051;126;-105.005;9;0.812092703 144;126;-105.763;9;0.832236581 143.864868;126;-105.865;9;0.590454212 143.766647;126;-105.939;9;0.487478709 143.703308;126;-106;9;0.774457457 143.443771;126;-106.25;9;0.10022738 142.851181;126;-106.851;9;0.622754093 142;126;-107.714;9;0.658712223 141.85817;126;-107.858;9;0.711388334 141.853638;126;-107.863;9;0.864294244 141.745575;126;-108;9;0.89684046 141.409531;126;-108.427;9;0.439572158 140.959442;126;-108.959;9;0.064206343 140.080276;126;-110;9;0.277007143 140.06395;126;-110.019;9;0.190277572 140.043365;126;-110.043;9;0.139467159 140;126;-110.094;9;0.343511813 139.121124;126;-111.121;9;0.316816431 138.530426;126;-111.811;9;0.380416419 138.362534;126;-112;9;0.684279097 138.191788;126;-112.192;9;0.756919522 138;126;-112.407;9;0.866048927 137.941452;126;-112.473;9;0.117982391 137.042908;126;-113.043;9;0.153717757 136;126;-113.704;9;0.401006739 135.972824;126;-113.722;9;0.418242735 135.824722;126;-113.825;9;0.042163875 135.572998;126;-114;9;0.444723606 135.541901;126;-114.022;9;0.861456182 135.390625;126;-114.107;9;0.785643792 134.502029;126;-114.502;9;0.00196827 134;126;-114.725;9;0.633747943 133.936569;126;-114.754;9;0.885787751 133.634262;126;-114.885;9;0.96428354 133.086639;126;-115.087;9;0.602195545 132;126;-115.487;9;0.629981984 131.934494;126;-115.511;9;0.025426134 131.644806;126;-115.645;9;0.52019634 131.622406;126;-115.655;9;0.827896281 130.754257;126;-116;9;0.838906782 130.214432;126;-116.214;9;0.072189434 130;126;-116.3;9;0.701928298 129.932495;126;-116.326;9;0.711588817 129.611008;126;-116.483;9;0.724097359 128.828857;126;-116.829;9;0.791011879 128;126;-117.195;9;0.736881799 127.93058;126;-117.226;9;0.818590186 127.600044;126;-117.413;9;0.894305933 127.472275;126;-117.472;9;0.374376635 126.331581;126;-118;9;0.600599217 126.104881;126;-118.105;9;0.449448452 126;126;-118.153;9;0.114490244 125.92878;126;-118.186;9;0.68474971 124.879906;126;-118.88;9;0.141872647 124.271782;126;-119.282;9;0.529061643 124;126;-119.487;9;0.076305216 123.926941;126;-119.542;9;0.256556388 123.74939;126;-119.749;9;0.837396247 123.534485;126;-120;9;0.396025836 122.826088;126;-120.826;9;0.591364394 122.102501;126;-121.67;9;0.979832114 122.071114;126;-121.82;9;0.531477724 122.145462;126;-122;9;0.381112875 122.163437;126;-122.044;9;0.827962418 122.163521;126;-122.164;9;0.298818549 122.164604;126;-123.717;9;0.427248693 122.304726;126;-124;9;0.078754621 122.603554;126;-124.604;9;0.704082729 123.189278;126;-125.787;9;0.67393824 123.436493;126;-126;9;0.186163386 123.467171;126;-126.026;9;0.52761811 124;126;-127.451;9;0.773218892 124.136017;126;-127.815;9;0.709597934 124.209656;126;-128;9;0.700503646 124.220192;126;-128.026;9;0.921587994 124.175438;126;-128.175;9;0.485035239 124.134224;126;-128.313;9;0.07043611 124;126;-129.31;9;0.186731964 123.918182;126;-129.918;9;0.541847372 123.907173;126;-130;9;0.346032205 123.903603;126;-130.027;9;0.172002044 123.641449;126;-130.389;9;0.976530323 123.269341;126;-131.269;9;0.018079951 122.96035;126;-132;9;0.038982882 122.947304;126;-132.031;9;0.302599774 122.760429;126;-132.388;9;0.602696579 122.681084;126;-132.681;9;0.273481737 122.324158;126;-134;9;0.152918286 122.316895;126;-134.027;9;0.645473569 122.3694;126;-134.369;9;0.021449746 122.56826;126;-135.667;9;0.103940813 122.526604;126;-136;9;0.151171135 122.52327;126;-136.027;9;0.58807758 123.061295;126;-137.061;9;0.517795833 123.378174;126;-137.671;9;0.53870593 123.498032;126;-138;9;0.812180174 123.507614;126;-138.026;9;0.408681783 123.606941;126;-138.214;9;0.441563816 124;126;-138.765;9;0.712270665 124.782753;126;-139.862;9;0.444663428 124.857681;126;-140;9;0.841977461 125.060326;126;-140.373;9;0.007082227 125.857704;126;-141.474;9;0.452351194 125.927742;126;-141.671;9;0.344793869 126;126;-141.816;9;0.259088188 126.092079;126;-142;9;0.229782684 126.184082;126;-142.184;9;0.877924845 127.033493;126;-143.884;9;0.688106504 127.050865;126;-144;9;0.708741625 127.235138;126;-145.235;9;0.070300392 127.282959;126;-145.556;9;0.769259595 127.361069;126;-146;9;0.282172421 127.365349;126;-146.024;9;0.174360109 127.222977;126;-147.223;9;0.262518828 127.166344;126;-147.7;9;0.632680557 127.124252;126;-148;9;0.251140267 127.120888;126;-148.024;9;0.68894556 127.024307;126;-148.439;9;0.734178516 126.918159;126;-148.918;9;0.314998536 126.678665;126;-150;9;0.101239473 126.673431;126;-150.024;9;0.676849919 126.586639;126;-150.587;9;0.75680933 126.427505;126;-151.619;9;0.769828689 126.360596;126;-152;9;0.476969223 126.356514;126;-152.023;9;0.270518853 126.400009;126;-152.4;9;0.703503486 126.515373;126;-153.399;9;0.667388449 126.604805;126;-154;9;0.809710406 126.608177;126;-154.023;9;0.816642558 126.767693;126;-154.326;9;0.159538864 126.978615;126;-154.979;9;0.799309448 127.308922;126;-156;9;0.30595918 127.316017;126;-156.022;9;0.916699443 126.961769;126;-156.962;9;0.798319159 126.671883;126;-157.731;9;0.445959419 126.672836;126;-158;9;0.66585602 126.672913;126;-158.021;9;0.636997265 126.27095;126;-158.191;9;0.278327285 126.203697;126;-158.204;9;0.353489336 126;126;-158.242;9;0.707068937 124.520035;126;-158.52;9;0.945093429 124;126;-158.618;9;0.172151935 123.937828;126;-158.629;9;0.481955892 123.642204;126;-158.569;9;0.192335029 122.239845;126;-158.24;9;0.057656551 122;126;-158.183;9;0.205367315 121.80262;126;-158.137;9;0.45411292 121.499481;126;-158.007;9;0.146432874 121.485336;126;-158;9;0.436327984 120;126;-157.305;9;0.414127233 119.934654;126;-157.274;9;0.0714031 119.623413;126;-157.07;9;0.246406861 118.761909;126;-156.762;9;0.169721197 118;126;-156.489;9;0.962582943 117.933144;126;-156.466;9;0.834020145 117.716835;126;-156.374;9;0.632292866 116.684593;126;-156.18;9;0.579895219 116.084473;126;-156.062;9;0.007982891 116.059677;126;-156.06;9;0.931394304 116;126;-156.055;9;0.12743892 115.932106;126;-156.05;9;0.578840415 115.296631;126;-156.024;9;0.295176963 114.449524;126;-156.024;9;0.89618146 114.33564;126;-156;9;0.184512151 114;126;-155.929;9;0.420420654 113.931442;126;-155.915;9;0.118925523 113.914932;126;-155.915;9;0.220808261 113.537376;126;-155.917;9;0.435301857 112.819046;126;-156;9;0.081817564 112.609573;126;-156.024;9;0.422279993 112.064507;126;-156.065;9;0.604286758 112;126;-156.069;9;0.75101225 111.931183;126;-156.074;9;0.777281316 111.146683;126;-156.147;9;0.748005092 110.257545;126;-156.198;9;0.049836145 110.200615;126;-156.201;9;0.276053129 110;126;-156.208;9;0.070015231 109.931038;126;-156.211;9;0.848466132 109.394768;126;-156.254;9;0.778566356 108.330864;126;-156.331;9;0.082619552 108;126;-156.355;9;0.372040702 107.931038;126;-156.36;9;0.571495052 106.466942;126;-156.425;9;0.404025344 106.424675;126;-156.425;9;0.199623665 106;126;-156.423;9;0.933212744 105.931107;126;-156.422;9;0.350339505 104.463326;126;-156.463;9;0.795029842 104.256821;126;-156.469;9;0.292464539 104;126;-156.464;9;0.386395588 102.700066;126;-156.441;9;0.543706776 102.450302;126;-156.45;9;0.250474072 102;126;-156.467;9;0.60187882 101.318123;126;-156.491;9;0.998226992 100.50573;126;-156.506;9;0.700297474 100.000008;126;-156.515;9;0.01168637 99.932037;126;-156.516;9;0.789522158 98.540176;126;-156.469;9;0.670420684 98.439522;126;-156.44;9;0.891946367 98;126;-156.309;9;0.817534687 97.770744;126;-156.241;9;0.607784673 97.533432;126;-156.137;9;0.546897196 96.518791;126;-156;9;0.687307412 95.999992;126;-155.93;9;0.819935344 95.932747;126;-155.921;9;0.030636315 95.912682;126;-155.913;9;0.841573704 94.329155;126;-155.276;9;0.920550552 94;126;-154.989;9;0.437619163 93.932747;126;-154.93;9;0.212374993 93.06588;126;-154;9;0.139027194 92.777336;126;-153.69;9;0.855971255 92.41021;126;-153.106;9;0.501156402 92;126;-152.113;9;0.382210711 91.963333;126;-152.024;9;0.970313205 91.963303;126;-152;9;0.10197925 91.963242;126;-151.963;9;0.459393592 91.961029;126;-150.514;9;0.549589283 91.914421;126;-150.025;9;0.724776143 91.920418;126;-150;9;0.524903929 91.936035;126;-149.936;9;0.010699099 92;126;-149.674;9;0.907644894 92.328445;126;-148.328;9;0.213951304 92.392189;126;-148.067;9;0.423935867 92.407211;126;-148;9;0.883030662 92.489601;126;-147.631;9;0.98042846 92.831718;126;-146.832;9;0.906521562 92.933884;126;-146.593;9;0.690727771 93.234695;126;-146.026;9;0.442893 93.246445;126;-146;9;0.65854783 93.483261;126;-145.483;9;0.56034916 93.687447;126;-145.038;9;0.797953921 94;126;-144.461;9;0.166626011 94.162224;126;-144.162;9;0.082485414 94.236015;126;-144.026;9;0.714691686 94.24498;126;-144;9;0.396373897 94.666992;126;-142.769;9;0.703994763 94.704948;126;-142.705;9;0.363439229 95.109413;126;-142.027;9;0.228368768 95.106689;126;-142;9;0.226314395 95.009506;126;-141.051;9;0.166557326 95.010986;126;-141.011;9;0.630607528 95.048256;126;-140;9;0.775384127 95.049423;126;-139.968;9;0.836470929 94.752151;126;-139.12;9;0.902890397 94.326355;126;-138.326;9;0.369319529 94.165665;126;-138.027;9;0.168425453 94.137985;126;-138;9;0.475523459 94;126;-137.866;9;0.186267119 93.329124;126;-137.214;9;0.779875706 92.248581;126;-136.027;9;0.481988172 92.219368;126;-136;9;0.865911222 92;126;-135.8;9;0.710365065 91.419182;126;-135.269;9;0.135061048 90.472;126;-134.026;9;0.52573454 90.453621;126;-134;9;0.615972847 90;126;-133.348;9;0.628185907 89.762794;126;-133.007;9;0.340517145 89.129814;126;-132.026;9;0.211235163 89.116165;126;-132;9;0.043836523 88.612206;126;-131.035;9;0.227436662 88.502312;126;-130.502;9;0.50109084 88.398643;126;-130;9;0.606360606 88.251945;126;-129.289;9;0.561485137 88.139931;126;-128.14;9;0.791452144 88.128807;126;-128.026;9;0.461411643 88.130989;126;-128;9;0.788600896 88.268723;126;-126.368;9;0.559046599 88.2995;126;-126.299;9;0.032631697 88.422791;126;-126.026;9;0.567768961 88.434464;126;-126;9;0.090322469 88.893211;126;-124.987;9;0.302668345 88.933632;126;-124.934;9;0.308248858 89.621643;126;-124.026;9;0.226021454 89.652382;126;-124;9;0.758934204 89.841095;126;-123.841;9;0.374047524 89.926208;126;-123.769;9;0.77043779 90;126;-123.698;9;0.997365783 90.717735;126;-123.005;9;0.467982861 90.913383;126;-122.913;9;0.783084103 91.925438;126;-122.44;9;0.103747069 92;126;-122.387;9;0.240517886 92.16803;126;-122.269;9;0.844344515 92.250526;126;-122.251;9;0.017873089 93.376541;126;-122;9;0.270533343 93.886536;126;-121.887;9;0.368342281 93.924599;126;-121.878;9;0.782945019 94;126;-121.852;9;0.83522008 94.347809;126;-121.73;9;0.787996939 94.953392;126;-121.583;9;0.742781776 95.505226;126;-121.505;9;0.913613067 95.923805;126;-121.446;9;0.716277743 95.999992;126;-121.438;9;0.249613511 96.884438;126;-121.349;9;0.171523648 97.290131;126;-121.29;9;0.083990548 97.923126;126;-121.198;9;0.317233079 98;126;-121.182;9;0.446422441 98.987984;126;-120.988;9;0.225516393 99.665459;126;-120.855;9;0.310999445 100.000008;126;-120.812;9;0.884644407 100.54705;126;-120.743;9;0.188415889 100.710762;126;-120.711;9;0.281743926 101.197021;126;-120.615;9;0.738120476 101.922455;126;-120.123;9;0.573214213 102;126;-120.091;9;0.246503736 102.064308;126;-120.064;9;0.964595692 102.220528;126;-120;9;0.760156013 102.372574;126;-119.937;9;0.95296652 102.660278;126;-119.587;9;0.73983576 102.965477;126;-118.965;9;0.566827034 103.06546;126;-118.762;9;0.832092109 103.225975;126;-118.027;9;0.855523459 103.22625;126;-118;9;0.403710935 103.234131;126;-117.234;9;0.522321492 103.236641;126;-116.991;9;0.356983269 103.138344;126;-116.352;9;0.969374212 103.075768;126;-116;9;0.195935745 102.978485;126;-115.453;9;0.273966243 102.846016;126;-114.846;9;0.848910354 102.661476;126;-114;9;0.457082279 102.315659;126;-112.415;9;0.856410637 102.262009;126;-112.262;9;0.870214278 102.178879;126;-112.026;9;0.63836595 102.162704;126;-112;9;0.659090924 102.034019;126;-111.796;9;0.480033869 102;126;-111.755;9;0.250070802 100.541603;126;-110;9;0.297029227 100.420868;126;-109.855;9;0.7195151 100.02491;126;-109.521;9;0.814920555 100.000008;126;-109.505;9;0.906358494 98.622292;126;-108.622;9;0.632317194 98.533394;126;-108.565;9;0.97982787 98;126;-108.255;9;0.822938919 97.931213;126;-108.215;9;0.166754352 97.418312;126;-108;9;0.2227951 97.310646;126;-107.955;9;0.443743998 95.999992;126;-107.524;9;0.311939384 95.977188;126;-107.517;9;0.426946088 95.410515;126;-107.411;9;0.42962105 94.292442;126;-107.201;9;0.765049859 94;126;-107.116;9;0.161251962 93.933762;126;-107.097;9;0.175656114 93.041847;126;-107.042;9;0.817787229 92.244041;126;-106.993;9;0.41170399 92;126;-106.975;9;0.065137966 91.934853;126;-106.971;9;0.102406675 91.044518;126;-107.045;9;0.929809253 90.436829;126;-107.095;9;0.969627873 90;126;-107.118;9;0.301274275 89.935837;126;-107.121;9;0.722220159 89.63269;126;-107.192;9;0.57488594 89.301338;126;-107.301;9;0.31263413 88.16391;126;-107.677;9;0.257253707 88;126;-107.736;9;0.460559503 87.804932;126;-107.805;9;0.229818333 87.256752;126;-108;9;0.299938808 86.329842;126;-108.33;9;0.2354413 86.23455;126;-108.364;9;0.809340497 86;126;-108.45;9;0.742146367 85.937332;126;-108.473;9;0.53883644 85.641319;126;-108.57;9;0.418174903 84.874619;126;-108.875;9;0.901821112 84;126;-109.223;9;0.794023047 83.938217;126;-109.247;9;0.919361569 83.385353;126;-109.385;9;0.364941324 82.523857;126;-109.601;9;0.514146551 82;126;-109.672;9;0.364755019 81.893295;126;-109.687;9;0.927177289 81.718506;126;-109.719;9;0.498006189 80.166183;126;-110;9;0.480988707 80.051476;126;-110.021;9;0.444587238 80.026192;126;-110.026;9;0.897529739 80;126;-110.032;9;0.628722645 79.94088;126;-110.044;9;0.688775408 79.911865;126;-110.05;9;0.637010284 79.841667;126;-110.06;9;0.742321117 78.325386;126;-110.325;9;0.706293525 78;126;-110.382;9;0.016785343 77.942421;126;-110.392;9;0.748415013 77.670975;126;-110.432;9;0.229215743 77.164063;126;-110.503;9;0.511042852 76.621735;126;-110.622;9;0.121469737 76;126;-110.758;9;0.267500022 75.944031;126;-110.77;9;0.839289781 74.925789;126;-110.926;9;0.136600509 74.695961;126;-110.961;9;0.532711986 74;126;-111.065;9;0.824779515 73.945778;126;-111.074;9;0.369762441 73.094086;126;-111.094;9;0.706497066 72.532524;126;-111.108;9;0.590635528 72;126;-111.115;9;0.594807152 71.947762;126;-111.116;9;0.647819597 70.955124;126;-110.955;9;0.330513212 70.505531;126;-110.882;9;0.356720258 70;126;-110.809;9;0.716255594 69.950035;126;-110.802;9;0.735321959 68.618385;126;-110.323;9;0.812496272 68.234421;126;-110.234;9;0.280899703 68;126;-110.18;9;0.390834533 67.952545;126;-110.169;9;0.302279245 67.344849;126;-110;9;0.662037363 66.192886;126;-109.679;9;0.498280196 66;126;-109.644;9;0.811498854 65.955025;126;-109.636;9;0.262165115 65.575912;126;-109.576;9;0.717195045 64.228516;126;-109.364;9;0.152962864 64;126;-109.353;9;0.31748558 63.957382;126;-109.351;9;0.279271734 63.401058;126;-109.401;9;0.846739138 62.349129;126;-109.495;9;0.81124418 62;126;-109.53;9;0.998268214 61.959492;126;-109.534;9;0.099924119 61.618031;126;-109.618;9;0.285552939 61.573086;126;-109.629;9;0.995440512 60.050224;126;-110;9;0.713151456 60.009838;126;-110.01;9;0.9172966 60;126;-110.012;9;0.364985416 59.96146;126;-110.022;9;0.710966845 58.495953;126;-110.496;9;0.686481438 58.137424;126;-110.612;9;0.185148591 58;126;-110.652;9;0.156676425 57.963383;126;-110.663;9;0.874659865 57.581856;126;-110.697;9;0.341256632 56.863071;126;-110.863;9;0.613650876 56;126;-111.062;9;0.344987487 55.965462;126;-111.07;9;0.456735333 55.153652;126;-111.154;9;0.030831392 54.312664;126;-111.24;9;0.272951895 54;126;-111.294;9;0.466809966 53.967621;126;-111.299;9;0.86783168 53.355461;126;-111.355;9;0.988199555 52.550838;126;-111.429;9;0.225071374 52;126;-111.58;9;0.78047737 51.969757;126;-111.588;9;0.413445868 51.629757;126;-111.63;9;0.527345686 50.141441;126;-111.812;9;0.509650156 50.000004;126;-111.847;9;0.771188145 49.971889;126;-111.854;9;0.144235084 49.884563;126;-111.885;9;0.391913387 49.803852;126;-111.913;9;0.894614508 49.410591;126;-112;9;0.451151909 49.367153;126;-112.01;9;0.775439157 48.35881;126;-112.359;9;0.269535422 47.999996;126;-112.483;9;0.324512027 47.973854;126;-112.492;9;0.483543276 46.909851;126;-112.91;9;0.963128387 46.424206;126;-113.101;9;0.045587294 46;126;-113.3;9;0.372022984 45.97575;126;-113.312;9;0.407073352 45.861439;126;-113.383;9;0.203187736 45.545277;126;-113.545;9;0.47839622 44.660488;126;-114;9;0.667806114 44.224216;126;-114.224;9;0.596111781 44;126;-114.339;9;0.834812701 43.977566;126;-114.351;9;0.939421906 43.88176;126;-114.414;9;0.521567133 43.002403;126;-115.002;9;0.056072463 42;126;-115.674;9;0.695043212 41.804466;126;-115.804;9;0.862592798 41.646168;126;-115.91;9;0.729241567 41.543053;126;-116;9;0.196547501 41.534828;126;-116.007;9;0.405494947 40.882999;126;-116.883;9;0.694582694 40.697281;126;-117.133;9;0.617008875 40.094521;126;-118;9;0.156068801 40.089802;126;-118.007;9;0.973587481 40.091961;126;-118.092;9;0.727596193 40.092644;126;-118.119;9;0.785197019 40;126;-119.146;9;0.436181689 39.980499;126;-119.362;9;0.677631448 39.962315;126;-119.962;9;0.128241203 39.962074;126;-119.97;9;0.369581456 39.960426;126;-120;9;0.107310188 39.960045;126;-120.007;9;0.265745824 39.980354;126;-120.049;9;0.894323467 40;126;-120.072;9;0.865154118 41.631409;126;-122;9;0.541852533 41.873222;126;-122.286;9;0.549185596 41.977776;126;-122.366;9;0.458811144 42;126;-122.375;9;0.206265578 42.604576;126;-122.605;9;0.281336155 43.871971;126;-123.087;9;0.011227615 43.975414;126;-123.14;9;0.625373377 44;126;-123.148;9;0.454507405 45.684643;126;-123.685;9;0.950377252 46;126;-123.785;9;0.98032938 46.674225;126;-124;9;0.191159111 47.695217;126;-124.325;9;0.982310185 47.970562;126;-124.424;9;0.306315452 47.999996;126;-124.43;9;0.717595404 48.547714;126;-124.548;9;0.01163616 49.79982;126;-124.817;9;0.440635585 49.968113;126;-124.857;9;0.397290012 50.000004;126;-124.861;9;0.059358665 50.991585;126;-124.992;9;0.328291106 51.72081;126;-125.088;9;0.457249544 51.965645;126;-125.12;9;0.980460317 52;126;-125.124;9;0.298248002 53.278545;126;-125.279;9;0.803137657 53.638443;126;-125.322;9;0.360433774 53.963161;126;-125.375;9;0.179245183 54;126;-125.38;9;0.706747996 54.685024;126;-125.486;9;0.932875922 55.584633;126;-125.585;9;0.317795496 55.960667;126;-125.626;9;0.350820803 56;126;-125.626;9;0.307130327 56.34927;126;-125.625;9;0.049813802 57.741173;126;-126;9;0.247347351 57.795486;126;-126.015;9;0.972998287 57.958111;126;-126.217;9;0.815495759 58;126;-126.25;9;0.167279344 58.960442;126;-127.012;9;0.80632557 59.022701;126;-128;9;0.14318752 59.02597;126;-128.052;9;0.538765668 58.411366;126;-128.411;9;0.186849384 58;126;-128.652;9;0.542292552 57.957809;126;-128.677;9;0.479419109 57.563717;126;-128.984;9;0.959036593 57.351654;126;-129.352;9;0.535434996 57.268898;126;-129.495;9;0.107423626 56.838955;126;-130;9;0.437998577 56.453064;126;-130.453;9;0.141755026 56;126;-130.985;9;0.067646695 55.684296;126;-131.356;9;0.383508984 55.532349;126;-131.532;9;0.526969291 55.342361;126;-131.753;9;0.227361632 55.251579;126;-132;9;0.134945704 55.246536;126;-132.014;9;0.150733105 54.737434;126;-132.737;9;0.037533053 54.098225;126;-133.646;9;0.132235481 54;126;-133.788;9;0.052107088 53.913517;126;-133.914;9;0.736722278 53.853779;126;-134;9;0.879997608 53.844746;126;-134.013;9;0.912170074 52.842129;126;-134.842;9;0.040465229 52;126;-135.538;9;0.697971589 51.747375;126;-135.747;9;0.303624511 51.721413;126;-135.769;9;0.994252566 51.421783;126;-136;9;0.840796568 51.406254;126;-136.012;9;0.830905437 50.48711;126;-136.487;9;0.259280852 50.000004;126;-136.739;9;0.96797136 49.967728;126;-136.756;9;0.260214768 49.813385;126;-136.824;9;0.378042081 49.198269;126;-137.198;9;0.708160944 48.100479;126;-137.866;9;0.822100707 47.999996;126;-137.935;9;0.590568236 47.961155;126;-137.961;9;0.834187516 47.904022;126;-138;9;0.268913539 47.888687;126;-138.01;9;0.107143048 46.798752;126;-138.799;9;0.666330972 46;126;-139.376;9;0.717302925 45.638176;126;-139.638;9;0.343911445 45.617184;126;-139.653;9;0.034137062 45.358204;126;-140;9;0.163048268 45.351269;126;-140.009;9;0.737867765 44.837536;126;-140.838;9;0.353009061 44.333279;126;-141.651;9;0.10024772 44.093864;126;-142;9;0.155495315 44.087933;126;-142.009;9;0.805159418 44.075321;126;-142.075;9;0.849452477 44.070034;126;-142.103;9;0.504602967 44.184448;126;-143.016;9;0.750919949 44.289101;126;-143.925;9;0.476535452 44.310467;126;-144;9;0.17553837 44.312904;126;-144.009;9;0.943175671 44.366451;126;-144.104;9;0.933644676 44.559807;126;-144.56;9;0.215229989 45.165485;126;-145.988;9;0.545041447 45.173134;126;-146;9;0.129166386 45.251469;126;-146.127;9;0.518121918 45.941437;126;-147.228;9;0.069560809 45.974461;126;-147.296;9;0.895813827 46;126;-147.354;9;0.092551758 46.286537;126;-148;9;0.837840792 46.514919;126;-148.515;9;0.789938024 47.15403;126;-149.956;9;0.247441318 47.164883;126;-150;9;0.640294769 47.197449;126;-150.132;9;0.161157754 47.459629;126;-151.46;9;0.584177447 47.566368;126;-152;9;0.702180338 47.568153;126;-152.009;9;0.907327454 47.361546;126;-153.362;9;0.738978454 47.280567;126;-153.892;9;0.867495689 47.272789;126;-154;9;0.668163694 47.272167;126;-154.009;9;0.379131569 46.911331;126;-154.911;9;0.003247209 46.516605;126;-155.899;9;0.184338199 46.490643;126;-156;9;0.428493723 46.48629;126;-156.017;9;0.890043541 46.378479;126;-156.148;9;0.921281367 46.263664;126;-156.264;9;0.749020305 46;126;-156.529;9;0.543077092 45.265945;126;-157.266;9;0.462981626 44.535233;126;-158;9;0.398904438 44.268227;126;-158.268;9;0.383769976 44;126;-158.538;9;0.339866225 43.980583;126;-158.557;9;0.612573989 43.850372;126;-158.621;9;0.332440158 43.022568;126;-159.023;9;0.779876566 42;126;-159.518;9;0.389571285 41.948269;126;-159.543;9;0.387487618 41.664719;126;-159.665;9;0.032552418 40.881565;126;-160;9;0.612808007 40.868488;126;-160.006;9;0.57950488 40.825523;126;-160.019;9;0.637788044 40.750908;126;-160.036;9;0.010649865 40.203472;126;-160.203;9;0.040209743 40;126;-160.266;9;0.33336816 38.670956;126;-160.671;9;0.618945725 38;126;-160.876;9;0.406010237 37.986927;126;-160.88;9;0.877520213 37.925312;126;-160.891;9;0.376493265 37.089542;126;-161.09;9;0.267594762 36;126;-161.348;9;0.699175659 35.988716;126;-161.351;9;0.957031317 35.935528;126;-161.363;9;0.283424072 35.475216;126;-161.475;9;0.500070723 34;126;-161.836;9;0.538014055 33.990402;126;-161.839;9;0.43019103 33.939228;126;-161.847;9;0.10715758 33.860359;126;-161.86;9;0.767982821 33.052746;126;-162;9;0.352354575 32.155193;126;-162.155;9;0.250635433 32;126;-162.182;9;0.282032912 30.450026;126;-162.45;9;0.300723944 30.020819;126;-162.524;9;0.142938041 30;126;-162.528;9;0.70265716 29.99334;126;-162.529;9;0.213957632 29.961899;126;-162.532;9;0.981012639 28.696615;126;-162.697;9;0.098329174 28;126;-162.787;9;0.995087299 27.994606;126;-162.788;9;0.04488858 27.969141;126;-162.789;9;0.912986437 26.876759;126;-162.877;9;0.495275955 26;126;-162.947;9;0.492810122 25.995731;126;-162.948;9;0.88278698 25.975563;126;-162.949;9;0.368725325 25.029289;126;-163.029;9;0.394979466 23.999998;126;-163.117;9;0.010978869 23.996733;126;-163.117;9;0.509175257 23.981297;126;-163.119;9;0.806828573 23.220015;126;-163.22;9;0.584746876 22;126;-163.382;9;0.288259509 21.997622;126;-163.383;9;0.144607645 21.986389;126;-163.384;9;0.623547722 21.447824;126;-163.448;9;0.245112949 20;126;-163.618;9;0.877440554 19.998373;126;-163.619;9;0.705487828 19.990675;126;-163.619;9;0.470783728 19.643637;126;-163.644;9;0.289226299 18;126;-163.758;9;0.339199208 17.998974;126;-163.758;9;0.070113022 17.994122;126;-163.758;9;0.427174426 17.759716;126;-163.76;9;0.743271557 16;126;-163.769;9;0.010884547 15.999431;126;-163.769;9;0.603271201 15.741179;126;-163.741;9;0.143677389 14.000952;126;-163.555;9;0.011056451 14;126;-163.554;9;0.055281426 13.998541;126;-163.554;9;0.130721497 13.416192;126;-163.416;9;0.527025408 11.999999;126;-163.081;9;0.572747474 11.999358;126;-163.081;9;0.782781537 10.63134;126;-162.631;9;0.574510834 9.999999;126;-162.424;9;0.563175681 8.777365;126;-162;9;0.832625874 8;126;-161.73;9;0.891392577 7.616899;126;-161.617;9;0.426855401 6;126;-161.138;9;0.749754277 4.824068;126;-160.824;9;0.272376426 4;126;-160.604;9;0.927532886 2.075657;126;-160.076;9;0.576073526 2;126;-160.055;9;0.847764215 1.799274;126;-160;9;0.434711287 0;126;-159.508;9;0.717028426 298;100;-119.069;10;0.013133807 296.618439;100;-118;10;0.973772733 296;100;-117.394;10;0.632343783 294.576355;100;-116;10;0.165769231 294;100;-115.436;10;0.399960619 292.818542;100;-114;10;0.374788161 292;100;-112.887;10;0.326061352 291.4086;100;-112;10;0.248106925 290.223511;100;-110.224;10;0.600803051 290.074402;100;-110;10;0.574362457 290;100;-109.888;10;0.093019292 288.478668;100;-108;10;0.43389638 288;100;-107.406;10;0.521985557 286.687134;100;-106;10;0.816216491 286;100;-105.264;10;0.00854211 285;100;-104.479;10;0.41147634 284.536621;100;-104;10;0.483850193 284;100;-103.445;10;0.04870382 283.903778;100;-103.346;10;0.574222877 282.086243;100;-102;10;0.094823582 282;100;-101.939;10;0.62027037 281.912445;100;-101.905;10;0.095848966 281.897736;100;-101.898;10;0.362325475 280;100;-101.016;10;0.745416019 278.690033;100;-100.69;10;0.303931323 278;100;-100.518;10;0.349102856 276.056732;100;-100.057;10;0.717209265 276;100;-100.043;10;0.124085479 275.817841;100;-100;10;0.015163444 274.391235;100;-99.7514;10;0.99011263 274;100;-99.6386;10;0.075153134 273.507813;100;-99.5078;10;0.033679266 272;100;-99.2886;10;0.30825994 271.314148;100;-99.3141;10;0.087818885 270.66153;100;-99.3385;10;0.535012476 270;100;-99.2817;10;0.867834621 269.420258;100;-99.4202;10;0.465934453 268.219391;100;-99.7072;10;0.976210356 268;100;-99.7778;10;0.366054645 267.861237;100;-99.8612;10;0.640858997 267.780609;100;-99.9097;10;0.48389455 267.539093;100;-100;10;0.095106311 266.418823;100;-100.419;10;0.749646903 266;100;-100.575;10;0.851649822 264.950867;100;-100.951;10;0.205000668 264;100;-101.291;10;0.60696114 263.401733;100;-101.402;10;0.711979782 262;100;-101.661;10;0.295767174 261.696106;100;-101.696;10;0.476189285 260;100;-101.893;10;0.586812468 259.894348;100;-101.894;10;0.754278008 258;100;-101.924;10;0.6260637 257.926971;100;-101.927;10;0.702640352 256.29483;100;-102;10;0.736937432 256.010864;100;-102.011;10;0.395450733 256;100;-102.011;10;0.83793982 254.138428;100;-102.138;10;0.900412285 254;100;-102.148;10;0.888017162 252.358582;100;-102.359;10;0.893392045 252;100;-102.405;10;0.047859059 250.605988;100;-102.606;10;0.926867192 250;100;-102.694;10;0.198750328 248.887238;100;-102.887;10;0.316449665 248;100;-103.042;10;0.704047673 247.234695;100;-103.235;10;0.644202754 246;100;-103.546;10;0.80934362 245.733475;100;-103.733;10;0.715179471 245.35437;100;-104;10;0.426431741 244.559082;100;-104.559;10;0.40632802 244.299301;100;-104.742;10;0.329664754 244;100;-104.941;10;0.200557849 243.363785;100;-105.364;10;0.139790522 242.406967;100;-106;10;0.214421537 242.282913;100;-106.283;10;0.402163823 242;100;-106.928;10;0.446915328 241.673233;100;-107.673;10;0.07998042 241.529938;100;-108;10;0.205752112 241.363297;100;-108.637;10;0.870290128 241.223007;100;-109.223;10;0.99713495 241.037094;100;-110;10;0.880167043 240.922318;100;-110.922;10;0.33775074 240.788193;100;-112;10;0.645502071 240.720596;100;-112.721;10;0.798286471 240.600601;100;-114;10;0.777952222 240.453476;100;-114.453;10;0.064895683 240;100;-115.851;10;0.996103182 239.918839;100;-115.919;10;0.350964072 239.821548;100;-116;10;0.906472146 238.828476;100;-116.828;10;0.832201514 238;100;-117.52;10;0.347423184 237.680847;100;-117.681;10;0.911311607 237.048889;100;-118;10;0.49503848 236.351974;100;-118.352;10;0.904017614 236;100;-118.53;10;0.918670463 235.023102;100;-119.023;10;0.994681588 234.000015;100;-119.54;10;0.817874595 233.541397;100;-119.541;10;0.942375269 232;100;-119.857;10;0.175386984 231.895081;100;-119.895;10;0.934127073 230;100;-119.911;10;0.94933824 229.904678;100;-119.905;10;0.074816215 228.209854;100;-119.79;10;0.916196426 228;100;-119.825;10;0.433246655 227.912979;100;-119.875;10;0.681779681 227.875061;100;-119.875;10;0.518661398 225.999985;100;-119.865;10;0.757874364 225.883133;100;-119.883;10;0.332295545 225.121475;100;-120;10;0.355347056 224.14917;100;-120.149;10;0.720927507 224;100;-120.172;10;0.798486231 222.668839;100;-120.669;10;0.388061558 222;100;-120.793;10;0.611801344 221.175446;100;-121.175;10;0.280104211 220.521683;100;-121.478;10;0.480418533 220;100;-121.737;10;0.563069769 219.841492;100;-121.841;10;0.714348757 219.6017;100;-122;10;0.636043402 218.582275;100;-122.582;10;0.218473176 218;100;-122.915;10;0.194199965 217.353607;100;-123.354;10;0.456599591 216.401352;100;-124;10;0.831329025 216.161285;100;-124.161;10;0.552914648 216.022537;100;-124.255;10;0.676809784 216;100;-124.274;10;0.635077718 215.065842;100;-125.066;10;0.802511751 214.199188;100;-125.801;10;0.736375849 214;100;-125.968;10;0.949894635 213.984573;100;-125.985;10;0.549514764 213.970215;100;-126;10;0.496315544 213.850983;100;-126.149;10;0.310714282 213.095154;100;-127.095;10;0.55263897 212.37233;100;-128;10;0.816982356 212.24791;100;-128.248;10;0.386214293 212;100;-128.742;10;0.275542997 211.706985;100;-129.493;10;0.183833867 211.647232;100;-129.647;10;0.068285012 211.510681;100;-130;10;0.089364578 211.492859;100;-130.571;10;0.17588279 211.409592;100;-131.41;10;0.640129799 211.350937;100;-132;10;0.27555668 211.935638;100;-133.936;10;0.39195574 211.93898;100;-133.947;10;0.270323424 211.953293;100;-134;10;0.345954812 212;100;-134.093;10;0.311699492 213.205368;100;-136;10;0.235316817 214;100;-136.864;10;0.008417651 215.140045;100;-138;10;0.675729946 216;100;-138.857;10;0.453652199 217.715652;100;-140;10;0.253537452 218;100;-140.164;10;0.723222463 218.317871;100;-140.318;10;0.686133401 220;100;-141.155;10;0.083692793 221.851913;100;-142;10;0.0219016 222;100;-142.068;10;0.48222482 222.136749;100;-142.137;10;0.326805484 224;100;-143.079;10;0.025901023 225.482941;100;-144;10;0.170086769 225.860397;100;-144.35;10;0.76978384 225.999985;100;-144.526;10;0.550017273 227.17424;100;-146;10;0.166381321 227.670685;100;-147.671;10;0.000257063 227.706085;100;-147.79;10;0.756128864 227.813416;100;-148;10;0.110926665 227.858353;100;-148.142;10;0.774314501 228;100;-149.33;10;0.085119146 228.079788;100;-150;10;0.067844689 228.077789;100;-150.078;10;0.629332193 228.028534;100;-152;10;0.691393848 228.027817;100;-152.028;10;0.03584913 228;100;-153.113;10;0.564091971 227.895279;100;-153.895;10;0.060735604 227.881256;100;-154;10;0.817500736 227.080872;100;-155.081;10;0.672598263 226.400269;100;-156;10;0.962337872 226.229965;100;-156.23;10;0.344964272 225.999985;100;-156.541;10;0.117111201 225.091385;100;-157.091;10;0.148227846 224;100;-157.753;10;0.430947022 223.830978;100;-157.831;10;0.29482289 223.464447;100;-158;10;0.138022812 222.381058;100;-158.381;10;0.955678572 222;100;-158.515;10;0.384557798 220.865005;100;-158.865;10;0.638309229 220;100;-159.132;10;0.749777755 219.312332;100;-159.312;10;0.548006102 218;100;-159.657;10;0.416478841 217.714157;100;-159.714;10;0.710296281 216.28183;100;-160;10;0.687964294 216.04689;100;-160.047;10;0.017425241 216;100;-160.056;10;0.373472718 214.224594;100;-160.225;10;0.071264824 214;100;-160.246;10;0.480526376 212.304047;100;-160.304;10;0.487431791 212;100;-160.314;10;0.951990269 210.318405;100;-160.318;10;0.390830808 210;100;-160.319;10;0.379158726 208.135178;100;-160.135;10;0.38106589 208;100;-160.122;10;0.434446053 207.514679;100;-160;10;0.628767883 206;100;-159.62;10;0.437263335 205.35524;100;-159.355;10;0.629073678 204;100;-158.799;10;0.413016524 202.97435;100;-158;10;0.444202183 202;100;-157.241;10;0.224951336 201.080765;100;-156;10;0.110160764 200.68425;100;-154.684;10;0.155715351 200.49498;100;-154;10;0.329786771 199.999954;100;-153.633;10;0.132067486 198.645538;100;-152.646;10;0.000413635 198.001114;100;-152.176;10;0.689461435 198;100;-152.175;10;0.786935713 197.381958;100;-152;10;0.748483398 196.002579;100;-151.609;10;0.429046019 196;100;-151.608;10;0.358693458 195.999313;100;-151.608;10;0.712265504 195.996033;100;-151.608;10;0.95384183 195.570023;100;-151.57;10;0.069791805 194;100;-151.43;10;0.757536746 193.998779;100;-151.43;10;0.999539018 193.992966;100;-151.431;10;0.772282375 193.464966;100;-151.465;10;0.813493331 191.999985;100;-151.56;10;0.514073216 191.998108;100;-151.56;10;0.174112785 191.989182;100;-151.561;10;0.166625406 191.576447;100;-151.576;10;0.014652046 190;100;-151.637;10;0.063466431 189.99733;100;-151.637;10;0.589142616 189.984634;100;-151.637;10;0.627934015 189.600403;100;-151.6;10;0.416963854 188;100;-151.45;10;0.769783826 187.996368;100;-151.45;10;0.340883517 187.979111;100;-151.445;10;0.800495858 187.145462;100;-151.145;10;0.067914883 186;100;-150.734;10;0.239742401 185.995209;100;-150.732;10;0.719214732 185.97731;100;-150.725;10;0.436212369 184.903809;100;-150;10;0.813450668 184;100;-149.39;10;0.343838469 183.99379;100;-149.385;10;0.66255964 183.949982;100;-149.348;10;0.824067478 182.778824;100;-148.473;10;0.419359378 182.58075;100;-148;10;0.236323658 182;100;-146.612;10;0.895927225 181.992035;100;-146.593;10;0.847191666 181.269348;100;-146.063;10;0.205461868 181.227875;100;-146.003;10;0.497167658 181.226929;100;-146;10;0.914613436 180.87117;100;-144.871;10;0.385454805 180.611618;100;-144.048;10;0.101854205 180.593445;100;-144.003;10;0.098981605 180.593369;100;-144;10;0.000835603 180.562195;100;-142.562;10;0.57561305 180.551834;100;-142.085;10;0.969979975 180.546448;100;-142.003;10;0.462655538 180.546799;100;-142;10;0.939496501 180.553986;100;-141.929;10;0.925090909 180.811035;100;-140.811;10;0.212402868 180.996674;100;-140.003;10;0.048107879 180.998032;100;-140;10;0.109487376 181.288834;100;-139.289;10;0.996237836 181.692474;100;-138.302;10;0.815353243 181.776886;100;-138.003;10;0.436482462 181.777573;100;-138;10;0.086047895 181.817017;100;-137.817;10;0.1850971 181.818436;100;-137.81;10;0.469775641 182;100;-137.523;10;0.824513636 182.590378;100;-136.59;10;0.867407054 182.962082;100;-136.003;10;0.925358648 182.963501;100;-136;10;0.012089609 182.981277;100;-135.964;10;0.50300037 183.239944;100;-135.545;10;0.006141407 183.355972;100;-135.356;10;0.303025959 184;100;-134.305;10;0.620362805 184.113037;100;-134.121;10;0.208181458 184.115295;100;-134.115;10;0.953057025 184.160583;100;-134.003;10;0.138702969 184.162186;100;-134;10;0.009789532 184.863449;100;-132.863;10;0.192534021 185.158737;100;-132.385;10;0.821910776 185.391205;100;-132.002;10;0.252995959 185.392792;100;-132;10;0.81095087 185.412537;100;-131.971;10;0.056970263 185.552353;100;-131.581;10;0.87771818 185.559631;100;-131.56;10;0.696111662 186;100;-130.269;10;0.344708708 186.054367;100;-130.11;10;0.313480727 186.058655;100;-130.059;10;0.075436173 186.0634;100;-130.002;10;0.603959374 186.063568;100;-130;10;0.252605601 186.072327;100;-129.894;10;0.983343054 186.430695;100;-128.431;10;0.563983619 186.442749;100;-128.381;10;0.128440712 186.513428;100;-128.029;10;0.203873181 186.526932;100;-128.002;10;0.088637859 186.52742;100;-128;10;0.494671215 186.536682;100;-127.962;10;0.264596983 186.717941;100;-126.718;10;0.315053476 186.822296;100;-126.002;10;0.730245769 186.822418;100;-126;10;0.394742381 186.896652;100;-124.897;10;0.48950357 186.954346;100;-124.039;10;0.448664089 186.958939;100;-124.002;10;0.21317346 186.959076;100;-124;10;0.679380262 186.960739;100;-123.978;10;0.402620348 186.949905;100;-122.95;10;0.063261758 186.939911;100;-122.002;10;0.626344521 186.939713;100;-122;10;0.284721044 186.799515;100;-120.8;10;0.098799466 186.709106;100;-120.025;10;0.426074333 186.708832;100;-120.006;10;0.958210956 186.707962;100;-120;10;0.083011792 186.701263;100;-119.957;10;0.241331197 186.250076;100;-118.25;10;0.351616342 186.184448;100;-118.002;10;0.047123442 186.184036;100;-118;10;0.237590975 186;100;-117.17;10;0.295998713 185.994751;100;-117.146;10;0.551896784 185.986893;100;-117.112;10;0.584681138 185.568069;100;-116.002;10;0.838925087 185.567276;100;-116;10;0.071148716 185.25293;100;-115.253;10;0.971152857 184.737762;100;-114.029;10;0.000997972 184.731277;100;-114.002;10;0.19643964 184.730789;100;-114;10;0.546131788 184.317276;100;-112.317;10;0.858331038 184.246338;100;-112.029;10;0.690724569 184.242889;100;-112.002;10;0.496598457 184.243118;100;-112;10;0.192701894 184.422272;100;-110.422;10;0.244656131 184.467239;100;-110.026;10;0.28836873 184.468536;100;-110.002;10;0.707380978 184.468964;100;-110;10;0.446352586 184.752792;100;-108.753;10;0.21712595 184.918777;100;-108.023;10;0.319224915 184.9189;100;-108.002;10;0.251336743 184.919861;100;-108;10;0.568676203 185.320602;100;-107.321;10;0.97452111 186;100;-106.169;10;0.795404164 186.062637;100;-106.063;10;0.945494033 186.088608;100;-106.019;10;0.739733529 186.09343;100;-106.001;10;0.928432694 186.09407;100;-106;10;0.982943266 186.099777;100;-105.989;10;0.557747471 186.137558;100;-105.962;10;0.879242672 187.165329;100;-105.165;10;0.883724052 187.997421;100;-104.52;10;0.663805691 188;100;-104.518;10;0.002566352 188.309891;100;-104.31;10;0.115976625 188.600418;100;-104.114;10;0.830558088 188.781921;100;-104.001;10;0.336772719 188.782806;100;-104;10;0.455461722 188.787201;100;-103.996;10;0.995228544 188.792801;100;-103.99;10;0.52517448 188.803558;100;-103.98;10;0.613788014 189.439987;100;-103.44;10;0.208073032 189.998367;100;-102.966;10;0.827253168 189.998367;100;-102.963;10;0.439608551 190;100;-102.96;10;0.822614668 190.328842;100;-102.329;10;0.705993664 190.500198;100;-102;10;0.396909306 191.013962;100;-101.014;10;0.97644297 191.541718;100;-100.001;10;0.654957408 191.541794;100;-100;10;0.055892884 191.572937;100;-99.5729;10;0.128022974 191.657974;100;-98.4065;10;0.841988215 191.739914;100;-98;10;0.595493477 191.645569;100;-97.6456;10;0.785669206 191.208633;100;-96.0031;10;0.710413514 191.207825;100;-96.0002;10;0.171167208 190;100;-94.5945;10;0.972032202 189.492584;100;-94.004;10;0.711036893 189.489548;100;-94;10;0.541607995 188;100;-92.9315;10;0.34024091 187.998978;100;-92.9308;10;0.224428513 187.989426;100;-92.9243;10;0.663466898 186.669968;100;-92.1715;10;0.449309665 186.328217;100;-92;10;0.080497243 186;100;-91.8353;10;0.769261238 185.998566;100;-91.8345;10;0.650382098 185.755219;100;-91.7552;10;0.439802875 184.016098;100;-91.1883;10;0.539427742 184;100;-91.1838;10;0.544500304 183.998047;100;-91.1833;10;0.563640582 183.9888;100;-91.1831;10;0.616517399 183.132828;100;-91.1328;10;0.834074673 182;100;-91.0663;10;0.515105287 181.997345;100;-91.0661;10;0.641575131 181.175659;100;-91.1757;10;0.301287735 180.013214;100;-91.3306;10;0.81565696 179.999847;100;-91.3335;10;0.784493358 179.496918;100;-91.4969;10;0.097563953 178;100;-91.9834;10;0.642244204 177.987457;100;-91.9875;10;0.768097861 177.948868;100;-92;10;0.358468785 177.943787;100;-92.0017;10;0.958401385 177.905563;100;-92.024;10;0.485692282 176.762573;100;-92.7626;10;0.023887063 176.008011;100;-93.2501;10;0.777469446 176;100;-93.2571;10;0.847376048 175.993866;100;-93.2625;10;0.329935122 175.941483;100;-93.3114;10;0.186553412 175.645676;100;-93.6457;10;0.898325031 175.332138;100;-94;10;0.110500886 174.706741;100;-94.7067;10;0.835172782 174.000015;100;-95.5054;10;0.209854544 173.991882;100;-95.5146;10;0.844621943 173.74321;100;-95.7432;10;0.686606037 173.463898;100;-96;10;0.511679143 173.30069;100;-96.15;10;0.192188888 172.763641;100;-96.7636;10;0.767849116 172;100;-97.6361;10;0.679503333 171.989716;100;-97.6479;10;0.493655306 171.842697;100;-97.8427;10;0.290749131 171.723984;100;-98;10;0.74978521 171.539261;100;-98.2448;10;0.545373352 170.944946;100;-98.9449;10;0.917272031 170.17128;100;-99.8564;10;0.783599487 170.063156;100;-100;10;0.651707566 170.036026;100;-100.036;10;0.155868254 170.03096;100;-100.043;10;0.084133535 170;100;-100.072;10;0.928326998 169.967224;100;-100.103;10;0.73421426 168.891846;100;-100.892;10;0.251979119 168.0327;100;-101.522;10;0.932191495 168;100;-101.536;10;0.760464448 167.98494;100;-101.543;10;0.383223226 167.600937;100;-101.6;10;0.585187171 167.600357;100;-101.6;10;0.235197888 166.236664;100;-101.841;10;0.447406572 166.000015;100;-101.9;10;0.942614698 165.983017;100;-101.904;10;0.285677427 165.888138;100;-101.888;10;0.54708422 164.436356;100;-101.645;10;0.652384995 164;100;-101.573;10;0.313684559 163.981339;100;-101.57;10;0.379549469 163.892502;100;-101.544;10;0.28333381 163.468185;100;-101.468;10;0.966191671 162;100;-101.206;10;0.571515962 161.979645;100;-101.203;10;0.269771497 161.882736;100;-101.189;10;0.64517581 161.145325;100;-101.145;10;0.279551201 160;100;-101.077;10;0.341299899 159.977798;100;-101.076;10;0.836301088 159.192886;100;-101.193;10;0.54340774 158.090363;100;-101.357;10;0.58576567 157.999985;100;-101.366;10;0.546935375 157.975677;100;-101.368;10;0.406317561 157.85968;100;-101.426;10;0.219793848 157.560272;100;-101.56;10;0.077122196 156.582199;100;-102;10;0.80984093 156.180557;100;-102.181;10;0.135392852 156;100;-102.262;10;0.681890345 155.973175;100;-102.274;10;0.75505978 155.328201;100;-102.82;10;0.869663788 155.056946;100;-103.057;10;0.55192484 154.220062;100;-103.787;10;0.307664146 154;100;-103.94;10;0.80353028 153.970139;100;-103.961;10;0.874097885 153.966721;100;-103.967;10;0.628436176 153.946304;100;-104;10;0.888123518 153.804306;100;-104.231;10;0.958068656 153.278122;100;-105.278;10;0.533042839 153.275009;100;-105.284;10;0.831330277 152.919754;100;-106;10;0.259517303 152.914139;100;-106.011;10;0.058086482 152.89238;100;-106.164;10;0.601563961 152.800003;100;-106.8;10;0.187005992 152.62561;100;-108;10;0.39592009 152.623901;100;-108.012;10;0.530786508 152.626724;100;-108.627;10;0.490514647 152.632355;100;-109.848;10;0.404399721 152.636337;100;-109.93;10;0.638020541 152.620758;100;-110;10;0.995777091 152.581253;100;-110.177;10;0.248367387 152.500244;100;-110.5;10;0.734777851 152.124161;100;-112;10;0.782566526 152.099274;100;-112.099;10;0.286757996 152;100;-112.495;10;0.023380507 151.698288;100;-113.698;10;0.352222827 151.664032;100;-113.835;10;0.383305431 151.572464;100;-114;10;0.316828695 151.565094;100;-114.013;10;0.391739639 151.067963;100;-115.068;10;0.816049662 150.710526;100;-115.826;10;0.932035769 150.594315;100;-116;10;0.607940542 150.584946;100;-116.014;10;0.250719311 150.402557;100;-116.403;10;0.652181117 150;100;-117.26;10;0.729881921 149.958893;100;-117.348;10;0.303971523 149.762283;100;-117.608;10;0.702943921 149.711243;100;-117.711;10;0.879408391 149.568451;100;-118;10;0.07210395 149.049484;100;-119.049;10;0.916436901 148.636093;100;-119.885;10;0.861563872 148.595398;100;-120;10;0.217304207 148.439346;100;-120.439;10;0.22452488 148;100;-121.676;10;0.562984124 147.954987;100;-121.803;10;0.010692146 147.881805;100;-121.882;10;0.363674686 147.823074;100;-121.945;10;0.213001865 147.804489;100;-122;10;0.756467471 147.406372;100;-123.174;10;0.900091902 147.312088;100;-123.312;10;0.160658274 146.840973;100;-124;10;0.642453995 146.829681;100;-124.016;10;0.985791204 146.567154;100;-124.567;10;0.207486344 146;100;-125.757;10;0.921320796 145.951614;100;-125.858;10;0.598618068 145.902267;100;-125.902;10;0.654202414 145.792664;100;-126;10;0.56635242 145.585999;100;-126.184;10;0.453506546 145.220169;100;-126.431;10;0.990454099 144.688736;100;-126.689;10;0.00131165 144;100;-127.023;10;0.741624932 143.94902;100;-127.048;10;0.973206784 142.976837;100;-126.977;10;0.532900444 142.722992;100;-126.958;10;0.276870542 142;100;-126.98;10;0.371409174 141.946686;100;-126.982;10;0.762046046 140.709381;100;-126.709;10;0.626876274 140.708542;100;-126.709;10;0.808758472 140;100;-126.594;10;0.683023229 139.944443;100;-126.585;10;0.380480204 138.949112;100;-126.394;10;0.645007175 138.243256;100;-126.243;10;0.174225478 138;100;-126.191;10;0.147328385 137.942322;100;-126.179;10;0.559289326 137.475296;100;-126.131;10;0.910961421 136.178284;100;-126;10;0.24390346 136;100;-125.982;10;0.860208845 135.979996;100;-125.98;10;0.658528754 135.940201;100;-125.976;10;0.371355264 135.745041;100;-126;10;0.115358098 135.501953;100;-126.03;10;0.579228051 134.491882;100;-126;10;0.139039556 134;100;-125.985;10;0.054335041 133.984985;100;-125.985;10;0.401706527 132.397278;100;-125.938;10;0.0448069 132;100;-125.981;10;0.014609512 131.982422;100;-125.982;10;0.691318184 131.936127;100;-125.987;10;0.913319301 130;100;-125.935;10;0.516327589 129.99382;100;-125.934;10;0.83557972 129.94133;100;-125.941;10;0.045120411 129.862595;100;-125.952;10;0.225848811 129.159683;100;-126;10;0.375229433 128.074722;100;-126.075;10;0.857246061 128;100;-126.08;10;0.704607858 127.932381;100;-126.085;10;0.613583569 126.796837;100;-126.254;10;0.443731782 126.44416;100;-126.444;10;0.63784133 126;100;-126.684;10;0.574818413 125.651772;100;-126.872;10;0.721328035 125.255737;100;-127.256;10;0.296220758 124.952988;100;-127.549;10;0.960818665 124.631233;100;-128;10;0.202833991 124.61348;100;-128.025;10;0.627618126 124.497162;100;-128.497;10;0.190867111 124.363609;100;-129.039;10;0.26470137 124.39933;100;-130;10;0.017595374 124.400261;100;-130.025;10;0.993860863 124.405792;100;-130.406;10;0.267809103 124.412895;100;-130.895;10;0.305234379 124.243767;100;-131.919;10;0.98746089 124.213554;100;-132;10;0.781588772 124.155457;100;-132.155;10;0.134855637 124.086494;100;-132.34;10;0.406558812 124.298134;100;-133.153;10;0.424704862 124.386505;100;-134;10;0.404097609 124.389122;100;-134.025;10;0.986304204 124.410469;100;-134.41;10;0.941838593 124.481216;100;-135.688;10;0.646202864 124.565338;100;-135.967;10;0.465651349 124.569717;100;-136;10;0.527991926 124.657791;100;-136.658;10;0.770657581 124.7883;100;-137.633;10;0.512349951 124.925621;100;-138;10;0.327744858 124.934883;100;-138.025;10;0.706251942 125.122787;100;-138.286;10;0.668653817 125.840378;100;-139.84;10;0.496091858 125.914078;100;-140;10;0.986355833 125.930695;100;-140.036;10;0.45610374 126;100;-140.094;10;0.934194874 126.257629;100;-140.308;10;0.894936075 127.521698;100;-141.633;10;0.933433801 127.814285;100;-142;10;0.125458721 127.833099;100;-142.024;10;0.277029018 127.856293;100;-142.1;10;0.55372982 127.933022;100;-142.153;10;0.188841317 128;100;-142.193;10;0.288337003 128.261429;100;-142.351;10;0.64463538 128.733932;100;-142.734;10;0.380880066 129.822479;100;-143.615;10;0.706392417 130;100;-143.675;10;0.144062096 130.968719;100;-144;10;0.000770157 131.035141;100;-144.022;10;0.573910339 131.57515;100;-144.384;10;0.34318124 131.937561;100;-144.476;10;0.979930877 132;100;-144.489;10;0.163027894 132.619125;100;-144.619;10;0.79239828 133.048019;100;-144.709;10;0.535153948 133.939774;100;-145.022;10;0.596120464 134;100;-145.043;10;0.336481879 134.127975;100;-145.085;10;0.969605383 135.436707;100;-145.437;10;0.181743856 135.848785;100;-145.547;10;0.331585405 136;100;-145.596;10;0.210267148 136.979141;100;-145.909;10;0.278916429 137.237061;100;-146;10;0.145208605 137.742188;100;-146.178;10;0.601758294 137.944427;100;-146.189;10;0.731725392 138;100;-146.2;10;0.004729651 138.254333;100;-146.254;10;0.71103615 138.952408;100;-146.402;10;0.777339823 139.946823;100;-146.695;10;0.709804558 140;100;-146.722;10;0.243872465 140.197433;100;-146.822;10;0.216227487 140.978836;100;-146.979;10;0.694831991 141.94928;100;-147.174;10;0.295570923 142;100;-147.197;10;0.747100527 142.18837;100;-147.282;10;0.147012094 143.48671;100;-147.487;10;0.841662394 143.951721;100;-147.56;10;0.595521518 144;100;-147.573;10;0.069111166 145.635956;100;-148;10;0.219323217 145.699631;100;-148.017;10;0.75058569 145.954285;100;-148.129;10;0.848488649 146;100;-148.151;10;0.250460276 146.290771;100;-148.291;10;0.396589947 147.751846;100;-148.994;10;0.175231049 147.957047;100;-149.127;10;0.746873205 148;100;-149.165;10;0.83110155 148.935562;100;-150;10;0.290878483 148.951859;100;-150.015;10;0.859827798 149.73317;100;-151.07;10;0.354790446 149.865982;100;-151.242;10;0.827405451 149.977509;100;-151.468;10;0.681590995 150;100;-151.54;10;0.214964502 150.142334;100;-152;10;0.43178098 150.206207;100;-152.206;10;0.76204255 150.76178;100;-154;10;0.695659557 150.765854;100;-154.013;10;0.610510462 150.738708;100;-154.739;10;0.610004287 150.697495;100;-155.84;10;0.711334654 150.684769;100;-156;10;0.809325614 150.682007;100;-156.035;10;0.346993611 150.635468;100;-156.304;10;0.504970304 150.589035;100;-156.589;10;0.961865633 150.359222;100;-158;10;0.275408307 150.357178;100;-158.013;10;0.743986413 150.290405;100;-158.29;10;0.160334291 150;100;-159.499;10;0.228692593 149.96492;100;-159.645;10;0.3593648 149.894562;100;-159.895;10;0.956582596 149.887268;100;-159.92;10;0.505870266 149.86293;100;-160;10;0.48136622 149.426529;100;-161.427;10;0.02922843 149.297195;100;-161.849;10;0.066371356 149.241592;100;-162;10;0.474756435 149.237152;100;-162.012;10;0.363528832 149.19751;100;-162.174;10;0.538618534 148.965958;100;-162.966;10;0.831680134 148.663544;100;-164;10;0.095938759 148.660095;100;-164.012;10;0.832662613 148.500458;100;-164.5;10;0.390819107 148.010574;100;-166;10;0.963498101 148.007965;100;-166.008;10;0.456928538 148;100;-166.032;10;0.627012154 147.954147;100;-166.173;10;0.441511383 147.891144;100;-166.328;10;0.627060891 147.243088;100;-167.243;10;0.339100419 146.808258;100;-167.857;10;0.868988464 146.64563;100;-168;10;0.370548996 146.575592;100;-168.061;10;0.222571593 146.236267;100;-168.236;10;0.69847469 146;100;-168.358;10;0.832310636 144.916321;100;-168.916;10;0.713935137 144;100;-169.388;10;0.916499663 143.59639;100;-169.596;10;0.923194267 143.003662;100;-169.902;10;0.607802383 142.840134;100;-169.937;10;0.714963631 142.004028;100;-170;10;0.539905641 142;100;-170;10;0.241557277 140.139618;100;-170.14;10;0.644083149 140.137573;100;-170.14;10;0.988618846 140;100;-170.146;10;0.421221528 139.963028;100;-170.148;10;0.604479212 138.854584;100;-170.114;10;0.368514711 138.083023;100;-170.057;10;0.608544396 138.056549;100;-170.057;10;0.578969955 138;100;-170.056;10;0.143784676 137.961197;100;-170.056;10;0.981827811 137.299713;100;-170;10;0.086371043 137.11525;100;-169.985;10;0.003441032 136.151443;100;-169.862;10;0.034783183 136;100;-169.837;10;0.652189966 135.959274;100;-169.831;10;0.096100277 135.783981;100;-169.784;10;0.81860364 135.683762;100;-169.757;10;0.353491108 134;100;-169.276;10;0.2935953 133.6017;100;-169.162;10;0.041940837 133.062531;100;-169.063;10;0.990719359 132.079117;100;-168.88;10;0.914597059 132;100;-168.848;10;0.259188064 130.05304;100;-168.053;10;0.197012065 130;100;-168.031;10;0.550004756 129.963852;100;-168.017;10;0.142011178 129.923401;100;-168;10;0.04832313 129.594513;100;-167.865;10;0.062012541 129.335449;100;-167.733;10;0.727893915 128;100;-167.043;10;0.831212465 127.95018;100;-167.017;10;0.705430859 126.392159;100;-166.018;10;0.164519111 126.360756;100;-166;10;0.639470693 126.089432;100;-165.842;10;0.537775465 126;100;-165.785;10;0.748409411 125.407829;100;-165.408;10;0.235789541 124.204704;100;-164.641;10;0.230561189 124;100;-164.506;10;0.577676799 123.94487;100;-164.469;10;0.553422665 123.307808;100;-164;10;0.149442451 122.214767;100;-163.195;10;0.176095987 122;100;-163.028;10;0.877117609 121.942146;100;-162.984;10;0.137825367 120.81562;100;-162;10;0.787022472 120.715874;100;-161.913;10;0.094103647 120;100;-161.294;10;0.770062084 119.939308;100;-161.242;10;0.533061474 118.640083;100;-160;10;0.114803955 118.23613;100;-159.614;10;0.633766681 118;100;-159.412;10;0.002680324 117.936478;100;-159.358;10;0.670875684 116.269592;100;-158.069;10;0.095052169 116.140839;100;-158;10;0.072695442 116;100;-157.924;10;0.127539128 115.959038;100;-157.903;10;0.437214799 115.87442;100;-157.874;10;0.842221279 114.250534;100;-157.335;10;0.135543594 114;100;-157.281;10;0.399956006 113.932747;100;-157.266;10;0.604253567 113.613632;100;-157.286;10;0.812852092 113.274269;100;-157.274;10;0.656605786 112;100;-157.23;10;0.46729877 111.931938;100;-157.228;10;0.879840054 111.609184;100;-157.259;10;0.013825499 111.281815;100;-157.282;10;0.102289429 110;100;-157.371;10;0.744632721 109.931435;100;-157.376;10;0.586762049 109.606514;100;-157.435;10;0.904511543 109.458229;100;-157.458;10;0.666669355 108;100;-157.688;10;0.799313097 107.931206;100;-157.699;10;0.620811174 107.718391;100;-157.718;10;0.181662236 107.605202;100;-157.729;10;0.324096502 106;100;-157.85;10;0.843839795 105.930977;100;-157.855;10;0.977963336 105.863838;100;-157.864;10;0.161328632 105.604065;100;-157.898;10;0.530150616 105.29274;100;-157.911;10;0.97456754 104.558807;100;-158;10;0.822597097 104.060158;100;-158.06;10;0.048112094 104;100;-158.067;10;0.842695462 102.275452;100;-158.275;10;0.59876192 102;100;-158.309;10;0.974361798 101.986526;100;-158.31;10;0.921239824 100.448387;100;-158.448;10;0.931766404 100.27253;100;-158.464;10;0.270109407 100.000008;100;-158.495;10;0.709806428 99.931274;100;-158.502;10;0.927651319 99.605965;100;-158.513;10;0.831035391 98.576027;100;-158.576;10;0.730850536 98;100;-158.611;10;0.619677245 97.931549;100;-158.615;10;0.524985783 96.625183;100;-158.625;10;0.775327882 95.999992;100;-158.63;10;0.749654159 94.640305;100;-158.64;10;0.20412145 94.574432;100;-158.641;10;0.580294803 94;100;-158.63;10;0.690291229 93.932327;100;-158.628;10;0.566585926 93.443924;100;-158.536;10;0.283154205 92.393143;100;-158.393;10;0.760021135 92;100;-158.34;10;0.210337156 91.93264;100;-158.331;10;0.685079401 90.623627;100;-158.024;10;0.793103082 90.511963;100;-158;10;0.908958761 90.161255;100;-157.926;10;0.930800495 90;100;-157.886;10;0.406520594 89.847916;100;-157.848;10;0.039310042 88.249138;100;-157.45;10;0.17277215 88;100;-157.384;10;0.602749793 87.933395;100;-157.367;10;0.96356126 87.152237;100;-157.152;10;0.037931349 86.247223;100;-156.904;10;0.526510465 86;100;-156.841;10;0.583120107 85.933929;100;-156.824;10;0.674902822 84.40947;100;-156.409;10;0.444994802 84.244751;100;-156.365;10;0.91054826 84;100;-156.302;10;0.811765428 83.934601;100;-156.285;10;0.268787962 82.70266;100;-156;10;0.005381167 82.241585;100;-155.893;10;0.336612338 82;100;-155.839;10;0.605121252 81.935486;100;-155.825;10;0.199078151 81.796425;100;-155.796;10;0.080120497 80.237747;100;-155.479;10;0.640654383 80;100;-155.432;10;0.261415213 79.936531;100;-155.419;10;0.738886919 79.332436;100;-155.332;10;0.126838637 78.233147;100;-155.175;10;0.893279461 78;100;-155.138;10;0.336661816 77.937782;100;-155.129;10;0.226418495 77.005646;100;-155.006;10;0.387320575 76.228035;100;-154.903;10;0.289839738 76;100;-154.871;10;0.657063499 75.939171;100;-154.862;10;0.847812943 75.652359;100;-154.839;10;0.86408809 74.786346;100;-154.786;10;0.67728997 74;100;-154.738;10;0.853883215 73.940758;100;-154.735;10;0.344908139 72.737671;100;-154.738;10;0.770424056 72;100;-154.739;10;0.687678393 70.742409;100;-154.742;10;0.842753515 70.475433;100;-154.743;10;0.740000051 70;100;-154.747;10;0.132168395 69.944382;100;-154.747;10;0.685153139 69.682465;100;-154.772;10;0.638107698 68.850952;100;-154.851;10;0.689799845 68;100;-154.932;10;0.562529429 67.946426;100;-154.937;10;0.274345249 67.694252;100;-154.978;10;0.644356902 67.070435;100;-155.07;10;0.164030351 66;100;-155.229;10;0.204507063 65.948601;100;-155.236;10;0.995452425 65.706734;100;-155.28;10;0.721917342 65.348434;100;-155.348;10;0.118563096 64;100;-155.606;10;0.337541465 63.950882;100;-155.616;10;0.986361855 63.68758;100;-155.688;10;0.206485634 63.575733;100;-155.718;10;0.985717017 62.335293;100;-156;10;0.459302441 62.262463;100;-156.017;10;0.932811918 62.070667;100;-156.071;10;0.689208585 62;100;-156.091;10;0.756479995 60.510803;100;-156.511;10;0.123672055 60.033409;100;-156.646;10;0.937797221 60;100;-156.657;10;0.521813506 59.747692;100;-156.743;10;0.481718349 59.00362;100;-157.004;10;0.996910158 58;100;-157.355;10;0.476387519 57.958321;100;-157.37;10;0.538597026 57.680351;100;-157.5;10;0.906457173 57.557171;100;-157.557;10;0.790980963 56.609985;100;-158;10;0.26261453 56.194328;100;-158.194;10;0.935863084 56;100;-158.285;10;0.806287077 55.96104;100;-158.303;10;0.537962929 54.920387;100;-158.92;10;0.582385964 54.209179;100;-159.342;10;0.831760054 54;100;-159.465;10;0.36678725 53.963905;100;-159.486;10;0.234104388 53.794338;100;-159.588;10;0.811440405 53.666782;100;-159.667;10;0.731695233 53.124577;100;-160;10;0.334348988 52.428055;100;-160.428;10;0.488192643 52;100;-160.691;10;0.649359515 51.966774;100;-160.712;10;0.228976304 51.810658;100;-160.804;10;0.17576089 51.16209;100;-161.162;10;0.801991179 50.000004;100;-161.803;10;0.012931411 49.873062;100;-161.873;10;0.815528139 49.699684;100;-161.969;10;0.162477394 49.63179;100;-162;10;0.155119184 49.558075;100;-162.034;10;0.417245277 48.506451;100;-162.506;10;0.043870364 47.999996;100;-162.734;10;0.594676673 47.972141;100;-162.747;10;0.456564541 47.841118;100;-162.79;10;0.069426611 47.017445;100;-163.017;10;0.262314674 46;100;-163.299;10;0.597831366 45.974495;100;-163.306;10;0.342497638 45.854481;100;-163.334;10;0.897942548 45.400589;100;-163.401;10;0.288433988 44;100;-163.607;10;0.468305963 43.976662;100;-163.611;10;0.990349621 43.866783;100;-163.627;10;0.289453038 43.651611;100;-163.652;10;0.113134236 42;100;-163.837;10;0.126938482 41.978737;100;-163.84;10;0.616501288 41.902191;100;-163.853;10;0.210159956 41.856506;100;-163.857;10;0.432469358 40.186874;100;-164;10;0.301932674 40.107525;100;-164.007;10;0.913498716 40.018631;100;-164.019;10;0.963107475 40;100;-164.021;10;0.705256733 39.446545;100;-164.095;10;0.01707951 38.223202;100;-164.223;10;0.487997742 38;100;-164.247;10;0.006845097 37.982693;100;-164.248;10;0.829921194 37.901161;100;-164.26;10;0.631018528 36.427765;100;-164.428;10;0.800513562 36;100;-164.477;10;0.922360053 35.984581;100;-164.478;10;0.260834121 34.595158;100;-164.595;10;0.755146016 34.051151;100;-164.641;10;0.089485594 34;100;-164.646;10;0.940858982 33.986366;100;-164.647;10;0.538481797 33.922092;100;-164.647;10;0.765436591 32.654388;100;-164.654;10;0.4132896 32;100;-164.658;10;0.98799133 31.988012;100;-164.658;10;0.020239191 31.931465;100;-164.651;10;0.320256023 30.483757;100;-164.484;10;0.160194762 30;100;-164.428;10;0.704093952 29.989494;100;-164.427;10;0.909787246 29.948782;100;-164.414;10;0.805912832 28.453243;100;-164.003;10;0.719213007 28.446449;100;-164;10;0.504884807 28.400436;100;-163.977;10;0.219101558 28;100;-163.777;10;0.292825614 27.551882;100;-163.552;10;0.014459342 26;100;-162.774;10;0.900873811 25.991911;100;-162.77;10;0.052985246 25.970259;100;-162.754;10;0.973254094 25.03566;100;-162.003;10;0.924958107 25.032639;100;-162;10;0.529787937 24.007563;100;-161.09;10;0.261406622 23.999998;100;-161.083;10;0.527137046 23.959;100;-161.048;10;0.30992676 23.072208;100;-160;10;0.733114712 22;100;-158.733;10;0.759145651 21.400106;100;-158.024;10;0.589698019 21.378685;100;-158.002;10;0.831509564 21.376993;100;-158;10;0.322565161 20.089949;100;-156.367;10;0.226723826 20;100;-156.28;10;0.70955007 19.709978;100;-156.002;10;0.866526522 19.708021;100;-156;10;0.451335609 18;100;-154.319;10;0.182997912 17.990494;100;-154.31;10;0.436479775 17.97744;100;-154.297;10;0.2509266 17.806114;100;-154.083;10;0.685635854 17.740934;100;-154;10;0.167879348 16.771381;100;-152.771;10;0.061661476 16.163771;100;-152.001;10;0.790566446 16.163256;100;-152;10;0.168052747 16;100;-151.551;10;0.961813109 15.996036;100;-151.54;10;0.332259131 15.571877;100;-150.426;10;0.194370968 15.275295;100;-150.001;10;0.051674544 15.274747;100;-150;10;0.086402032 14.766655;100;-148.772;10;0.215521441 14.764803;100;-148.765;10;0.152977204 14.554589;100;-148.001;10;0.538908068 14.554029;100;-148;10;0.129674862 14.358239;100;-147.561;10;0.790450195 14;100;-147.172;10;0.225078558 12.919228;100;-146;10;0.773751642 12.83629;100;-145.91;10;0.40719405 12.417596;100;-145.332;10;0.180594021 11.999999;100;-144.94;10;0.955425868 11.997438;100;-144.937;10;0.670594009 11.930594;100;-144.883;10;0.700317151 11.318048;100;-144;10;0.7130844 10;100;-142.1;10;0.513629023 9.998127;100;-142.098;10;0.960849265 9.966784;100;-142.049;10;0.945563453 9.963069;100;-142;10;0.807824265 9.960027;100;-141.96;10;0.702340274 9.824128;100;-140.175;10;0.569943996 9.894446;100;-140.001;10;0.50550388 9.894248;100;-140;10;0.483434577 9.849872;100;-139.85;10;0.795912632 9.308146;100;-138.017;10;0.418294567 9.307384;100;-138.001;10;0.963726368 9.307075;100;-138;10;0.019518471 8.552861;100;-136.553;10;0.145618713 8.27241;100;-136.015;10;0.669007819 8.266883;100;-136.007;10;0.101538248 8.265182;100;-136;10;0.893629686 8.264523;100;-136;10;0.855879601 8;100;-135.805;10;0.359472173 7.256173;100;-135.256;10;0.022811383 6;100;-134.33;10;0.737374085 5.558708;100;-134.004;10;0.766419447 5.553182;100;-134;10;0.616597739 5.552547;100;-134;10;0.172406898 4;100;-133.441;10;0.560571827 3.126915;100;-133.127;10;0.504972765 2.000798;100;-132.722;10;0.200403284 1.999905;100;-132.721;10;0.728582525 1.999455;100;-132.721;10;0.078957767 0.30103;100;-132.301;10;0.58634616 -0.000001;100;-132.227;10;0.929123812 0;100;-141.369;10;0.038040124 1.853773;100;-142;10;0.073417602 1.854779;100;-142;10;0.380910684 1.855697;100;-142.002;10;0.201068913 2;100;-142.231;10;0.315205858 3.114558;100;-144;10;0.215424554 2.462416;100;-144.462;10;0.531520733 1.999941;100;-144.79;10;0.516200861 1.430153;100;-145.43;10;0.437268012 0.922655;100;-146;10;0.007631487 0.259087;100;-146.259;10;0.649224964 0;100;-146.36;10;0.010939217 298;84;-150.932;11;0.054645609 296.346954;84;-150.347;11;0.084321908 296;84;-150.224;11;0.551470869 294.203033;84;-150.203;11;0.60495102 294;84;-150.201;11;0.731470007 292.449524;84;-150.45;11;0.439239419 292;84;-150.522;11;0.290193121 290.872803;84;-150.873;11;0.21540766 290;84;-151.145;11;0.160455465 289.391418;84;-151.391;11;0.17051016 288.074615;84;-151.925;11;0.70048544 288;84;-151.946;11;0.973757658 287.958496;84;-151.958;11;0.936739876 287.943481;84;-151.963;11;0.353960185 287.890961;84;-152;11;0.4677334 286.542328;84;-152.542;11;0.062621061 286;84;-152.76;11;0.117254844 285.171875;84;-153.172;11;0.472411991 284;84;-153.754;11;0.671966402 283.700043;84;-153.7;11;0.961042684 283.62854;84;-153.687;11;0.580738489 283.387054;84;-154;11;0.94834851 282.512421;84;-154.512;11;0.502290361 282;84;-154.813;11;0.761694051 281.208527;84;-155.209;11;0.759972125 280;84;-155.813;11;0.94196813 279.858704;84;-155.859;11;0.820268137 279.421204;84;-156;11;0.977624512 278.230713;84;-156.231;11;0.697423589 278;84;-156.275;11;0.150054254 276.562775;84;-156.156;11;0.608886132 276.176147;84;-156.176;11;0.336837181 276;84;-156.185;11;0.598793981 274.227325;84;-156.227;11;0.083929445 274;84;-156.233;11;0.542741214 272.788757;84;-156;11;0.522762314 272;84;-155.848;11;0.528056096 271.765839;84;-155.766;11;0.064310917 270;84;-155.143;11;0.317276709 268.010834;84;-154;11;0.063717163 268;84;-153.977;11;0.073153208 267.059998;84;-152;11;0.252168512 267.213196;84;-151.213;11;0.805874567 267.449432;84;-150;11;0.009585742 267.612274;84;-149.612;11;0.071776401 268;84;-148.689;11;0.367946823 268.253784;84;-148.254;11;0.109908483 268.401733;84;-148;11;0.465859666 268.990326;84;-146.99;11;0.606828957 269.567657;84;-146;11;0.111550231 269.74176;84;-145.742;11;0.639578788 269.7854;84;-145.677;11;0.591123186 270;84;-145.302;11;0.249629604 270.608337;84;-144.608;11;0.442263297 271.141449;84;-144;11;0.081055513 271.54245;84;-143.542;11;0.260467698 272;84;-143.02;11;0.741803724 272.583862;84;-142.584;11;0.508655777 273.364899;84;-142;11;0.504209945 273.728333;84;-141.728;11;0.541372453 274;84;-141.525;11;0.380177638 274.956696;84;-140.957;11;0.660953913 276;84;-140.337;11;0.890384322 276.190826;84;-140.191;11;0.73278912 276.440552;84;-140;11;0.81831314 277.141998;84;-139.142;11;0.576780082 278;84;-138.093;11;0.351866099 278.042053;84;-138.042;11;0.842931705 278.077087;84;-138;11;0.604092364 278.835205;84;-136.835;11;0.36656504 279.378784;84;-136;11;0.740241212 279.623688;84;-135.624;11;0.159144026 280;84;-135.046;11;0.078011412 280.659851;84;-134.66;11;0.749454331 281.788666;84;-134;11;0.489610457 281.941681;84;-133.942;11;0.183187576 282;84;-133.919;11;0.171012051 282.103455;84;-133.897;11;0.942243564 283.507507;84;-133.508;11;0.155646729 284;84;-133.371;11;0.31452005 285.109528;84;-133.11;11;0.943005471 286;84;-132.9;11;0.921473786 286.647064;84;-132.647;11;0.106507554 287.804871;84;-132.195;11;0.203080875 288;84;-132.139;11;0.721146465 288.082703;84;-132.119;11;0.919969254 288.102753;84;-132.103;11;0.764301845 288.22879;84;-132;11;0.855974163 288.612549;84;-130.613;11;0.490276084 288.781982;84;-130;11;0.704112995 289.045898;84;-129.046;11;0.249480167 289.335175;84;-128;11;0.896239483 288;84;-126.794;11;0.272434884 286.763153;84;-126;11;0.334341782 286;84;-125.656;11;0.439868555 285.539429;84;-125.539;11;0.626962464 284;84;-125.15;11;0.133873165 282.898407;84;-124.898;11;0.667110016 282;84;-124.693;11;0.613067651 280.013794;84;-124.014;11;0.903471776 280;84;-124.009;11;0.063925405 279.988892;84;-124;11;0.201794479 278;84;-122.376;11;0.004887026 277.618256;84;-122;11;0.973062469 277.234344;84;-121.234;11;0.071576042 276.615448;84;-120;11;0.890467163 276.141541;84;-118.142;11;0.652269563 276.113892;84;-118;11;0.196420209 276.099396;84;-117.901;11;0.791112231 276;84;-117.463;11;0.8489314 275.667694;84;-116;11;0.08354892 275.169464;84;-115.169;11;0.694879915 274.467926;84;-114;11;0.109408417 274;84;-113.656;11;0.528641658 272.696075;84;-112.696;11;0.205323296 272;84;-112.184;11;0.842034876 271.744507;84;-112;11;0.194657974 270;84;-110.612;11;0.818824663 269.230225;84;-110;11;0.911066623 268;84;-109.161;11;0.396800313 266.506134;84;-108;11;0.266494821 266;84;-107.772;11;0.909004348 265.586151;84;-107.586;11;0.475583322 264;84;-106.873;11;0.775431393 263.279846;84;-106.549;11;0.838778285 262.416565;84;-106;11;0.149388789 262;84;-105.735;11;0.208848995 261.636047;84;-105.636;11;0.329562925 260;84;-105.19;11;0.394825392 259.121887;84;-105.122;11;0.565466948 258;84;-105.035;11;0.961573192 257.262665;84;-105.263;11;0.389880456 256.513519;84;-105.494;11;0.542885968 256;84;-105.445;11;0.922291466 255.481842;84;-105.482;11;0.980088385 254;84;-105.587;11;0.28135484 253.651611;84;-105.652;11;0.261736992 252;84;-105.958;11;0.257714183 251.964935;84;-105.965;11;0.820583802 251.776169;84;-106;11;0.376864063 250.178055;84;-106.178;11;0.741742782 250;84;-106.198;11;0.834556005 248.320801;84;-106.321;11;0.880947394 248;84;-106.344;11;0.586699666 247.737259;84;-106.32;11;0.166088828 246.368576;84;-106.369;11;0.166541428 246;84;-106.382;11;0.601409514 245.686249;84;-106.354;11;0.419556432 244.341278;84;-106.341;11;0.02541832 244;84;-106.338;11;0.737006584 242.390427;84;-106.39;11;0.194906425 242;84;-106.403;11;0.123267259 241.621841;84;-106.393;11;0.951428393 240.430695;84;-106.431;11;0.413148745 240;84;-106.444;11;0.556065733 239.573074;84;-106.434;11;0.991521361 238.435638;84;-106.436;11;0.186181284 238;84;-106.436;11;0.034381723 236.548721;84;-106.549;11;0.025684291 236;84;-106.591;11;0.397251176 235.432007;84;-106.642;11;0.357406504 234.647934;84;-106.648;11;0.980882415 234.000015;84;-106.653;11;0.822755086 232.728882;84;-106.729;11;0.70536395 232;84;-106.773;11;0.847145387 230.95372;84;-106.954;11;0.841503885 230;84;-107.119;11;0.849803718 229.30806;84;-107.308;11;0.85193059 228;84;-107.666;11;0.621987779 227.790771;84;-107.791;11;0.754241376 227.44046;84;-108;11;0.574885881 226.207886;84;-108;11;0.03740903 226.085693;84;-108.086;11;0.232482584 225.999985;84;-108.146;11;0.486479313 224.910187;84;-108.91;11;0.672098321 224;84;-109.549;11;0.627256644 223.73468;84;-109.735;11;0.084926267 223.356415;84;-110;11;0.090497945 222.582108;84;-110.582;11;0.820474676 222;84;-111.02;11;0.659687804 221.440506;84;-111.441;11;0.815100481 220.696625;84;-112;11;0.451167756 220.236465;84;-112.236;11;0.367550807 220;84;-112.358;11;0.876131925 218.753235;84;-112.753;11;0.541778061 218;84;-112.992;11;0.698142437 217.140961;84;-113.141;11;0.529890799 216;84;-113.339;11;0.954193696 215.387283;84;-113.387;11;0.791537699 214;84;-113.497;11;0.972495196 213.523499;84;-113.523;11;0.727745192 212;84;-113.608;11;0.014296155 211.636002;84;-113.636;11;0.937628654 210.525803;84;-113.722;11;0.429134411 210;84;-113.761;11;0.550109208 209.789307;84;-113.789;11;0.288091369 209.474197;84;-113.832;11;0.134367092 208.612686;84;-114;11;0.9068848 208.118881;84;-114.119;11;0.188488902 208;84;-114.148;11;0.298260183 206.702591;84;-114.703;11;0.182730237 206;84;-115.003;11;0.810535849 205.511154;84;-115.511;11;0.490848078 205.04071;84;-116;11;0.923591728 204.656479;84;-116.656;11;0.511476233 204;84;-117.778;11;0.200927276 203.921616;84;-117.922;11;0.22286194 203.878799;84;-118;11;0.265413277 203.328964;84;-119.329;11;0.239682527 203.051346;84;-120;11;0.228445342 202.764267;84;-120.764;11;0.25809293 202.300095;84;-122;11;0.589227914 202.204147;84;-122.204;11;0.672452286 202;84;-122.638;11;0.10425773 201.564651;84;-123.565;11;0.262338494 201.360031;84;-124;11;0.474130129 200.90538;84;-124.905;11;0.495916082 200.355682;84;-126;11;0.152265203 200.232986;84;-126.233;11;0.163881914 200.000015;84;-126.675;11;0.564459834 199.542984;84;-127.543;11;0.207629727 199.302094;84;-128;11;0.910652296 198.989609;84;-128.99;11;0.614707821 198.671051;84;-130;11;0.20585351 198.63092;84;-130.631;11;0.51091476 198.5439;84;-132;11;0.753132195 198.5439;84;-132;11;0.110147862 198.521454;84;-132.521;11;0.748622164 198.478394;84;-133.522;11;0.305284852 198.569672;84;-134;11;0.858338694 198.551239;84;-134.551;11;0.333636132 198.520187;84;-135.48;11;0.610010161 198.681381;84;-136;11;0.852814344 198.619568;84;-136.62;11;0.006588117 198.535248;84;-137.465;11;0.760826003 198.677567;84;-138;11;0.506809113 198.616913;84;-138.617;11;0.592873842 198.533386;84;-139.467;11;0.673766875 198.647018;84;-140;11;0.922364706 198.641693;84;-140.642;11;0.249936932 198.630432;84;-141.999;11;0.777565884 198.630539;84;-142;11;0.050751616 198.958618;84;-142.959;11;0.430386018 199.314789;84;-144;11;0.915762479 199.315277;84;-144;11;0.153578345 199.566666;84;-145.567;11;0.782394739 199.636307;84;-146;11;0.035747401 199.999985;84;-146.655;11;0.92556918 200.746368;84;-148;11;0.710035465 201.841278;84;-149.841;11;0.43524138 201.935654;84;-150;11;0.408156229 202;84;-150.108;11;0.449120471 203.766602;84;-151.767;11;0.44337691 204;84;-151.986;11;0.576658181 204.015228;84;-152;11;0.122101049 206;84;-153.645;11;0.185132886 206.42836;84;-154;11;0.547792389 207.482513;84;-155.483;11;0.080579348 207.850479;84;-156;11;0.748238759 206.755829;84;-156.756;11;0.653818169 206;84;-157.278;11;0.363285742 205.495544;84;-157.496;11;0.301916956 204.327347;84;-158;11;0.787373992 204.098724;84;-158.099;11;0.011703755 204;84;-158.141;11;0.533000506 202.360275;84;-158.36;11;0.257284682 202;84;-158.408;11;0.254568044 200.609894;84;-158.61;11;0.776936741 200.000015;84;-158.698;11;0.802358532 198.783249;84;-158.783;11;0.410995423 198;84;-158.838;11;0.524478356 196.90593;84;-158.906;11;0.021623044 195.999969;84;-158.962;11;0.172136555 194.982681;84;-158.983;11;0.236695538 193.999802;84;-159.002;11;0.371308633 193.998886;84;-159.002;11;0.66146763 192.97464;84;-158.975;11;0.440454343 191.999985;84;-158.948;11;0.701232509 191.999481;84;-158.948;11;0.897389875 191.997101;84;-158.948;11;0.882509098 190.924835;84;-158.925;11;0.43351855 190;84;-158.905;11;0.083043671 189.999054;84;-158.905;11;0.176084034 189.994537;84;-158.905;11;0.319486801 188.897659;84;-158.898;11;0.169364166 188;84;-158.892;11;0.801144478 187.998459;84;-158.892;11;0.43368831 187.99115;84;-158.891;11;0.826967647 186.822708;84;-158.823;11;0.539955692 186;84;-158.774;11;0.177771546 185.997726;84;-158.774;11;0.408481722 185.989883;84;-158.772;11;0.8242428 184.601669;84;-158.602;11;0.943629034 184;84;-158.528;11;0.119298679 183.996841;84;-158.528;11;0.681911418 182.082504;84;-158.083;11;0.187049995 182;84;-158.063;11;0.871267024 181.734238;84;-158.002;11;0.240225739 181.731262;84;-158;11;0.3313893 181.719955;84;-157.994;11;0.764280944 180.020508;84;-157.278;11;0.002384466 180;84;-157.263;11;0.351431079 179.994507;84;-157.259;11;0.295666425 178.346008;84;-156.346;11;0.083061626 178;84;-156.154;11;0.457253929 177.7258;84;-156.003;11;0.369971999 177.723175;84;-156;11;0.670686587 177.690247;84;-155.968;11;0.861686034 176;84;-154.403;11;0.200097989 175.568909;84;-154.003;11;0.416475991 175.568619;84;-154;11;0.840020871 175.52832;84;-153.528;11;0.976187314 175.401932;84;-152.049;11;0.827097594 175.396652;84;-152.003;11;0.476100703 175.400421;84;-152;11;0.785904862 175.714493;84;-151.714;11;0.683862359 176;84;-151.455;11;0.93730702 176.7621;84;-150.762;11;0.324448461 177.600403;84;-150;11;0.267492683 177.809708;84;-149.81;11;0.976220458 177.991837;84;-149.644;11;0.090295558 178;84;-149.633;11;0.904902475 178.01889;84;-149.606;11;0.186575904 178.906433;84;-148.906;11;0.15130827 179.974579;84;-148.064;11;0.68996067 180;84;-148.04;11;0.887160224 180.020111;84;-148.02;11;0.505036774 180.038391;84;-148.002;11;0.700615043 180.041748;84;-148;11;0.197473917 181.17717;84;-147.177;11;0.49190611 181.39859;84;-147.017;11;0.306957259 182;84;-146.443;11;0.658710183 182.226364;84;-146.226;11;0.17351137 182.461411;84;-146.002;11;0.350482854 182.464111;84;-146;11;0.53132798 183.353958;84;-145.354;11;0.022379164 183.990417;84;-144.892;11;0.394517744 184;84;-144.882;11;0.424480342 184.017731;84;-144.863;11;0.047111452 184.472519;84;-144.473;11;0.284776296 185.022385;84;-144;11;0.124746022 185.026886;84;-143.996;11;0.416048479 185.495514;84;-143.496;11;0.71324446 185.996216;84;-142.961;11;0.620435457 186;84;-142.957;11;0.348533897 186.008453;84;-142.947;11;0.583203775 186.49971;84;-142.5;11;0.914661882 187.046677;84;-142.001;11;0.320629498 187.047379;84;-142;11;0.658611984 187.051651;84;-141.993;11;0.914208611 187.470322;84;-141.47;11;0.850320519 188;84;-140.809;11;0.153970768 188.359924;84;-140.36;11;0.555564407 188.642807;84;-140.007;11;0.066547747 188.647095;84;-140.001;11;0.22086125 188.647415;84;-140;11;0.315578684 188.989441;84;-138.989;11;0.258945571 189.320175;84;-138.012;11;0.132371377 189.32338;84;-138.001;11;0.751610281 189.323227;84;-138;11;0.706949672 189.166031;84;-137.166;11;0.709773876 188.948761;84;-136.013;11;0.950341898 188.947845;84;-136.001;11;0.190930189 188.947357;84;-136;11;0.450631728 188.939255;84;-135.985;11;0.544906934 188;84;-134.627;11;0.418743621 187.996933;84;-134.623;11;0.700400089 187.987488;84;-134.61;11;0.094753778 187.42865;84;-134;11;0.7848841 186;84;-132.442;11;0.416884428 185.59639;84;-132.002;11;0.955689587 185.59552;84;-132;11;0.981878349 185.589264;84;-131.989;11;0.70812532 185.362701;84;-131.722;11;0.181958841 184;84;-130.136;11;0.705321804 183.994797;84;-130.13;11;0.323404864 183.911484;84;-130.085;11;0.552728705 183.800568;84;-130.002;11;0.278289603 183.800171;84;-130;11;0.268489793 183.748398;84;-129.756;11;0.537460141 183.746002;84;-129.746;11;0.478756202 183.311447;84;-128.002;11;0.047603255 183.312531;84;-128;11;0.496591478 183.556503;84;-127.557;11;0.34665119 183.994904;84;-126.76;11;0.098169733 184;84;-126.741;11;0.902480386 184.161392;84;-126.168;11;0.00069903 184.162735;84;-126.163;11;0.756538504 184.203308;84;-126;11;0.650051229 184.265152;84;-125.752;11;0.17912794 184.553391;84;-124.553;11;0.509806508 184.686096;84;-124.002;11;0.915157512 184.686417;84;-124;11;0.286878208 184.90593;84;-122.906;11;0.886597252 185.083435;84;-122.021;11;0.307011062 185.08548;84;-122.001;11;0.32578202 185.085236;84;-122;11;0.804382949 184.908508;84;-120.909;11;0.706175054 184.766144;84;-120.029;11;0.001908889 184.762695;84;-120.001;11;0.068885372 184.762268;84;-120;11;0.15767993 184.246536;84;-118.247;11;0.844097816 184.180496;84;-118.022;11;0.967383965 184.176483;84;-118.002;11;0.798210918 184.176086;84;-118;11;0.403682886 184.171127;84;-117.981;11;0.996308705 184.153885;84;-117.925;11;0.036624638 184;84;-117.529;11;0.313447867 183.406158;84;-116.002;11;0.448336561 183.405899;84;-116;11;0.397302841 183.295364;84;-115.301;11;0.202377661 183.294006;84;-115.294;11;0.460713985 183.072693;84;-114.08;11;0.441149128 183.052094;84;-114.002;11;0.37998735 183.052078;84;-114;11;0.583291252 183.040146;84;-113.04;11;0.433713202 183.027481;84;-112.021;11;0.721839969 183.02388;84;-112.001;11;0.105799923 183.023727;84;-112;11;0.753219194 182.91066;84;-110.911;11;0.855466334 182.818268;84;-110.021;11;0.205474895 182.815323;84;-110.006;11;0.624083796 182.813416;84;-110;11;0.890542442 182.807312;84;-109.982;11;0.069164454 182.27681;84;-108.277;11;0.743256539 182.191147;84;-108.001;11;0.55703691 182.190903;84;-108;11;0.446784553 182.18782;84;-107.982;11;0.935577794 182.175858;84;-107.937;11;0.545045943 182;84;-107.206;11;0.253573604 181.817474;84;-106.447;11;0.171102006 181.697128;84;-106.001;11;0.150408746 181.697372;84;-106;11;0.172788823 181.743164;84;-105.743;11;0.886424631 182;84;-104.302;11;0.388861063 182.043915;84;-104.056;11;0.968559215 182.046844;84;-104.047;11;0.948326428 182.061157;84;-104.002;11;0.321472015 182.063477;84;-104;11;0.037004491 183.020493;84;-103.02;11;0.396402134 184;84;-102.018;11;0.127074237 184.005402;84;-102.012;11;0.002865869 184.009918;84;-102.01;11;0.955769619 184.016251;84;-102.006;11;0.0654262 184.024475;84;-102.001;11;0.632478205 184.025482;84;-102;11;0.951908642 185.123642;84;-101.124;11;0.167582365 186;84;-100.424;11;0.87415341 186.235962;84;-100.236;11;0.661444082 186.518539;84;-100.01;11;0.948514984 186.52536;84;-100.006;11;0.122081689 186.533875;84;-100;11;0.822886563 186.534088;84;-100;11;0.891515062 187.032883;84;-99.0329;11;0.868727794 187.559967;84;-98.0109;11;0.526518894 187.566269;84;-98;11;0.903285051 187.216339;84;-97.2163;11;0.051327309 186.867233;84;-96.4343;11;0.128610031 186.46875;84;-96;11;0.609073299 186.247574;84;-95.759;11;0.957120219 186;84;-95.5519;11;0.718171642 185.999146;84;-95.5512;11;0.462019706 185.369751;84;-95.3697;11;0.212061336 185.367874;84;-95.3692;11;0.374096729 184;84;-94.9651;11;0.134180009 183.998703;84;-94.9647;11;0.567852634 183.158768;84;-94.8402;11;0.000185967 182.82489;84;-94.8249;11;0.242573018 182.027847;84;-94.7883;11;0.50355439 182.007065;84;-94.7906;11;0.574101221 182;84;-94.7908;11;0.075997565 181.998108;84;-94.7909;11;0.799209265 181.978561;84;-94.7924;11;0.030936327 180.910141;84;-94.9101;11;0.855680492 180;84;-95.0105;11;0.571330088 179.99733;84;-95.0108;11;0.807292676 179.132431;84;-95.1324;11;0.888017017 178.821808;84;-95.1761;11;0.021619831 178;84;-95.417;11;0.930861871 177.996399;84;-95.418;11;0.510555302 177.529663;84;-95.5297;11;0.034203196 176;84;-95.8955;11;0.09182364 175.915695;84;-95.9157;11;0.277612543 175.67952;84;-95.9722;11;0.11402037 175.648865;84;-95.9839;11;0.735299849 175.625549;84;-95.9946;11;0.243018373 175.612656;84;-96;11;0.940141165 174.475723;84;-96.4757;11;0.523175432 174.000015;84;-96.6748;11;0.536517492 173.994003;84;-96.6773;11;0.492466486 173.974548;84;-96.686;11;0.009453375 173.034409;84;-97.0344;11;0.647431667 172.203644;84;-97.3423;11;0.874674614 172;84;-97.4296;11;0.415183185 171.600876;84;-97.6009;11;0.180171268 171.329453;84;-97.7173;11;0.482251629 170;84;-97.9335;11;0.28855798 169.991028;84;-97.9349;11;0.033724268 169.946274;84;-97.9463;11;0.644137056 169.734619;84;-98;11;0.58556103 169.721909;84;-98.0032;11;0.035553855 168.314026;84;-98.314;11;0.712196344 168;84;-98.3833;11;0.36957883 167.989426;84;-98.3857;11;0.037464405 166.577881;84;-98.5779;11;0.382060352 166.089142;84;-98.6444;11;0.46215663 166.000015;84;-98.6595;11;0.803218246 165.987823;84;-98.6615;11;0.734606809 165.929749;84;-98.6702;11;0.019459886 164.797043;84;-98.797;11;0.644681852 164;84;-98.8863;11;0.692781665 163.986099;84;-98.8878;11;0.669089148 163.919922;84;-98.8984;11;0.120946388 163.024048;84;-99.024;11;0.797025174 162;84;-99.1677;11;0.156219517 161.984299;84;-99.1699;11;0.156252218 161.909485;84;-99.1896;11;0.23606819 161.383987;84;-99.384;11;0.396040809 160;84;-99.8959;11;0.286151046 159.982193;84;-99.9025;11;0.402039597 159.92099;84;-99.921;11;0.896611791 159.659912;84;-100;11;0.732550124 158.385651;84;-100.386;11;0.806464956 158.074142;84;-100.48;11;0.649666623 157.999985;84;-100.519;11;0.018171476 157.932571;84;-100.554;11;0.878076046 157.111908;84;-101.112;11;0.228709279 156;84;-101.868;11;0.506414721 155.977417;84;-101.884;11;0.358590303 155.929901;84;-101.912;11;0.638261603 155.921173;84;-101.921;11;0.637858409 155.848923;84;-102;11;0.187945805 155.830795;84;-102.02;11;0.348545051 155.005325;84;-103.005;11;0.072816905 154.172211;84;-104;11;0.303313897 154.093719;84;-104.094;11;0.628653863 154;84;-104.206;11;0.572534647 153.930389;84;-104.289;11;0.848335469 153.446014;84;-105.446;11;0.178428984 153.264648;84;-105.879;11;0.227433794 153.219238;84;-106;11;0.357320504 153.215591;84;-106.01;11;0.176250358 153.095703;84;-107.096;11;0.153785904 153.009857;84;-107.873;11;0.615528616 152.996918;84;-108;11;0.983191189 152.99588;84;-108.01;11;0.192781055 153.079651;84;-109.08;11;0.840150379 153.141525;84;-109.87;11;0.604821262 153.174927;84;-110;11;0.228675741 153.177597;84;-110.01;11;0.044011711 153.623489;84;-111.406;11;0.201451985 153.700439;84;-111.7;11;0.757097629 153.778595;84;-112;11;0.042249927 153.781357;84;-112.011;11;0.981788789 152.791718;84;-112.792;11;0.498400817 152.073654;84;-113.358;11;0.28315191 152.040802;84;-113.513;11;0.931344882 152;84;-113.558;11;0.889459152 151.967194;84;-113.594;11;0.474337592 151.670456;84;-113.551;11;0.260106516 151.366867;84;-113.367;11;0.243323855 150;84;-112.536;11;0.102321468 149.965454;84;-112.515;11;0.272540038 149.753555;84;-112.294;11;0.018302238 149.520981;84;-112.012;11;0.84164303 149.511322;84;-112;11;0.943950365 148;84;-110.088;11;0.853899184 147.964508;84;-110.043;11;0.299164447 147.917572;84;-110;11;0.305114204 146.147095;84;-108.38;11;0.266867604 146;84;-108.214;11;0.10963468 145.888138;84;-108.088;11;0.258777896 145.747269;84;-108;11;0.571918746 144;84;-106.907;11;0.492680285 142.550003;84;-106;11;0.159687348 142.088425;84;-105.711;11;0.07772712 142;84;-105.628;11;0.395169685 141.960907;84;-105.591;11;0.266095766 141.786331;84;-105.47;11;0.117846186 141.202316;84;-105.202;11;0.365328999 140;84;-104.65;11;0.754203881 138.583176;84;-104;11;0.899809769 138.143509;84;-103.798;11;0.108606014 138;84;-103.728;11;0.755815076 137.958328;84;-103.708;11;0.579521895 137.730896;84;-103.623;11;0.34416623 137.5755;84;-103.576;11;0.48356161 136;84;-103.099;11;0.682389273 135.956909;84;-103.086;11;0.503313368 135.751953;84;-103.041;11;0.973290221 134.80249;84;-102.802;11;0.669485322 134;84;-102.601;11;0.46401972 133.95549;84;-102.59;11;0.185362236 133.794983;84;-102.58;11;0.528995999 132.467392;84;-102.467;11;0.881290292 132;84;-102.428;11;0.557697903 131.953857;84;-102.424;11;0.98382024 131.436111;84;-102.363;11;0.860917588 130.266052;84;-102.266;11;0.718134075 130;84;-102.244;11;0.086158956 129.952301;84;-102.24;11;0.747888013 129.784103;84;-102.259;11;0.057532792 128.289337;84;-102.289;11;0.419417167 128;84;-102.295;11;0.912801969 127.95063;84;-102.296;11;0.400181829 127.762245;84;-102.31;11;0.240723443 126.516121;84;-102.516;11;0.370787753 126;84;-102.601;11;0.142084484 125.948784;84;-102.61;11;0.566384796 125.246605;84;-102.624;11;0.706978902 124.671242;84;-102.671;11;0.184825722 124;84;-102.726;11;0.373398014 123.947189;84;-102.73;11;0.429849987 123.133209;84;-102.832;11;0.838597982 122.825073;84;-102.825;11;0.736205389 122;84;-102.806;11;0.467550898 121.945724;84;-102.805;11;0.488059828 120.942795;84;-102.943;11;0.529322884 120.202156;84;-103.045;11;0.377721132 120;84;-103.073;11;0.649274284 119.944153;84;-103.081;11;0.067655489 119.234062;84;-103.234;11;0.860308107 118.27327;84;-103.441;11;0.309353594 118;84;-103.514;11;0.428308721 117.94252;84;-103.529;11;0.411371359 117.635155;84;-103.635;11;0.044418881 116.581169;84;-104;11;0.714900394 116.521538;84;-104.021;11;0.542351295 116.212051;84;-104.158;11;0.795441177 116.175621;84;-104.176;11;0.235415901 116;84;-104.262;11;0.616207871 115.940681;84;-104.291;11;0.466408065 115.403763;84;-104.557;11;0.35255728 114.829269;84;-104.829;11;0.230410711 114;84;-105.222;11;0.213289098 113.938751;84;-105.251;11;0.982626035 113.430229;84;-105.43;11;0.972687695 112.51136;84;-105.755;11;0.262612458 112.234184;84;-105.952;11;0.49681707 112.165627;84;-106;11;0.521054435 112.067841;84;-106.068;11;0.860217507 112;84;-106.115;11;0.282946301 111.937004;84;-106.159;11;0.584844062 111.496513;84;-106.17;11;0.460125596 110.402229;84;-106.402;11;0.659920025 110.088943;84;-106.469;11;0.427120902 110;84;-106.487;11;0.334129137 108.740021;84;-106.74;11;0.189727928 108.387436;84;-106.811;11;0.777945863 108;84;-106.841;11;0.568764018 107.934914;84;-106.846;11;0.661924813 107.026314;84;-107.026;11;0.773184333 106.436584;84;-107.143;11;0.733209646 106;84;-107.193;11;0.239391301 105.934044;84;-107.2;11;0.905622797 105.298798;84;-107.299;11;0.706158531 105.11969;84;-107.327;11;0.79128514 104;84;-107.601;11;0.2448835 103.933258;84;-107.618;11;0.903245729 103.676071;84;-107.676;11;0.934180058 102.252327;84;-108;11;0.508737014 102.148354;84;-108.024;11;0.88529737 102.049675;84;-108.05;11;0.410593636 102;84;-108.063;11;0.406159489 101.249039;84;-108.261;11;0.038808481 101.018837;84;-108.274;11;0.627602246 100.673378;84;-108.345;11;0.356652004 100.429123;84;-108.429;11;0.556968094 100.000008;84;-108.577;11;0.344228121 99.813858;84;-108.641;11;0.845801525 98.945671;84;-108.946;11;0.746293637 98.194229;84;-109.209;11;0.295538419 98;84;-109.28;11;0.350275842 97.931305;84;-109.305;11;0.761637941 97.499039;84;-109.499;11;0.718622937 96.384651;84;-110;11;0.561845696 96.119286;84;-110.119;11;0.884076169 96.116089;84;-110.121;11;0.595638232 95.999992;84;-110.18;11;0.810931931 95.782616;84;-110.292;11;0.047624695 95.265259;84;-110.565;11;0.63474728 94.841042;84;-110.841;11;0.839491666 94;84;-111.388;11;0.943984582 93.929878;84;-111.434;11;0.318923479 93.571487;84;-111.571;11;0.520513594 92.453957;84;-112;11;0.372042948 92.389542;84;-112.025;11;0.588709397 92.230858;84;-112.231;11;0.326164528 92.204247;84;-112.265;11;0.744336629 92;84;-112.35;11;0.543234958 91.92952;84;-112.379;11;0.517090229 91.567841;84;-112.387;11;0.435589645 90.698715;84;-112.699;11;0.951031787 90;84;-112.95;11;0.207440788 89.929619;84;-112.975;11;0.443748291 88.348091;84;-112.348;11;0.892692465 88.193039;84;-112.287;11;0.406876656 88;84;-112.251;11;0.851982694 87.930878;84;-112.238;11;0.330317689 87.711868;84;-112.243;11;0.840497948 86.198555;84;-112.199;11;0.065519194 86;84;-112.193;11;0.83725308 85.93174;84;-112.191;11;0.599496047 85.512589;84;-112.257;11;0.25148173 84.404816;84;-112;11;0.1232121 84.31353;84;-111.979;11;0.560350506 84;84;-111.997;11;0.616282592 83.997284;84;-111.997;11;0.925355296 83.996017;84;-111.997;11;0.036955277 83.932838;84;-111.99;11;0.591644586 83.789383;84;-112;11;0.556803352 83.465172;84;-112.024;11;0.272292655 82.354202;84;-112.354;11;0.326613966 82;84;-112.46;11;0.22774601 81.644272;84;-112.566;11;0.656328333 80.872101;84;-112.872;11;0.808098143 80.849243;84;-112.881;11;0.361937595 80;84;-113.199;11;0.202428392 79.934166;84;-113.223;11;0.559615374 79.543236;84;-113.543;11;0.331281375 78.985237;84;-114;11;0.93727695 78.957001;84;-114.023;11;0.276889027 78.850197;84;-114.85;11;0.858114338 78.796707;84;-115.264;11;0.526896192 78.667725;84;-116;11;0.620791813 78.642853;84;-116.142;11;0.984232404 78.502968;84;-116.503;11;0.645246124 78;84;-117.801;11;0.006660427 77.944527;84;-117.945;11;0.191635171 77.932312;84;-117.976;11;0.943222429 77.927361;84;-118;11;0.826458994 77.92244;84;-118.024;11;0.812939876 77.880219;84;-118.068;11;0.738092072 77.048119;84;-119.048;11;0.64101662 76.405746;84;-119.804;11;0.15024843 76.076057;84;-120;11;0.205192223 76.028313;84;-120.028;11;0.108066021 76;84;-120.045;11;0.170442724 75.932632;84;-120.085;11;0.360861158 74.951141;84;-120.951;11;0.419565544 74.249458;84;-121.57;11;0.424608427 74;84;-121.748;11;0.381067377 73.853264;84;-121.853;11;0.081071132 73.786316;84;-121.901;11;0.975671353 73.684608;84;-122;11;0.650462386 73.050507;84;-122.617;11;0.678520376 72.833122;84;-122.833;11;0.367658021 72;84;-123.662;11;0.753894985 71.933319;84;-123.729;11;0.531024008 71.850861;84;-123.851;11;0.718168764 71.750053;84;-124;11;0.661244898 71.734467;84;-124.023;11;0.950294248 71.024223;84;-125.024;11;0.978498349 70.933868;84;-125.152;11;0.811727031 70.309204;84;-126;11;0.920843422 70.292389;84;-126.023;11;0.809642582 70.184807;84;-126.185;11;0.420149763 70.12674;84;-126.272;11;0.235371723 70;84;-126.535;11;0.728507811 69.522766;84;-127.523;11;0.264922971 69.309189;84;-127.965;11;0.06275288 69.287956;84;-128;11;0.271039599 68.801727;84;-128.802;11;0.78951358 68.385147;84;-129.489;11;0.165953012 68.052742;84;-130;11;0.513418778 68.038177;84;-130.022;11;0.460441987 68.032013;84;-130.032;11;0.268132705 68;84;-130.082;11;0.812136424 67.75135;84;-130.469;11;0.030276147 67.20195;84;-131.202;11;0.842822553 66.603371;84;-132;11;0.148100474 66.344772;84;-132.345;11;0.945206651 66.110283;84;-132.657;11;0.63746617 66;84;-132.847;11;0.579155407 65.939651;84;-132.951;11;0.540865875 65.496643;84;-133.497;11;0.885452978 65.087898;84;-134;11;0.745398878 65.070465;84;-134.021;11;0.154740545 64.615997;84;-134.616;11;0.83403653 64.226524;84;-135.126;11;0.043008151 64.0644;84;-135.41;11;0.071123009 64;84;-135.528;11;0.303444755 63.940113;84;-135.638;11;0.60100193 63.807842;84;-135.808;11;0.493464995 63.657982;84;-136;11;0.497504418 62.931522;84;-136.932;11;0.700363593 62.21627;84;-137.849;11;0.007985482 62.128582;84;-138;11;0.240794004 62.081409;84;-138.081;11;0.509197766 62.027142;84;-138.175;11;0.11305083 62;84;-138.227;11;0.70026661 61.388351;84;-139.388;11;0.11807107 61.066319;84;-140;11;0.576932342 61.055904;84;-140.02;11;0.733692079 60.890831;84;-140.891;11;0.465947107 60.72686;84;-141.756;11;0.699391839 60.652252;84;-142;11;0.926165689 60.646294;84;-142.02;11;0.376239457 60.75441;84;-142.754;11;0.771721327 60.901947;84;-143.757;11;0.378429949 60.914501;84;-144;11;0.986215507 60.915504;84;-144.019;11;0.734494317 61.128307;84;-144.661;11;0.923628183 61.415878;84;-145.416;11;0.888353437 61.461979;84;-145.537;11;0.468150201 61.610729;84;-146;11;0.768888223 61.616989;84;-146.019;11;0.915034957 61.944408;84;-146.653;11;0.203133184 62;84;-146.737;11;0.890212637 62.759956;84;-147.883;11;0.533228108 62.876068;84;-148;11;0.247057096 64;84;-149.129;11;0.010977753 64.572243;84;-149.704;11;0.853203811 64.843109;84;-149.97;11;0.176870261 64.886711;84;-150;11;0.835107354 65.115578;84;-150.16;11;0.640236171 66;84;-150.876;11;0.11679175 67.246513;84;-151.885;11;0.700094775 67.428032;84;-152;11;0.376665109 67.460747;84;-152.021;11;0.372329051 68;84;-152.475;11;0.338155294 69.809372;84;-154;11;0.435617626 69.874565;84;-154.055;11;0.839817554 70;84;-154.13;11;0.706269973 70.224304;84;-154.264;11;0.496075999 70.404518;84;-154.405;11;0.55725311 71.939384;84;-155.604;11;0.442534683 72;84;-155.638;11;0.141359346 72.226982;84;-155.764;11;0.321125968 72.454231;84;-155.974;11;0.639216072 72.472542;84;-156;11;0.061185977 73.540474;84;-157.508;11;0.395782786 73.54055;84;-157.541;11;0.198522694 73.541634;84;-158;11;0.29802808 73.542351;84;-158.305;11;0.874451096 73.357948;84;-159.358;11;0.642835806 73.245506;84;-160;11;0.33096741 73.241913;84;-160.021;11;0.280756651 72.905434;84;-160.095;11;0.759843663 72.403656;84;-160.404;11;0.590584833 72;84;-160.652;11;0.90324609 71.943161;84;-160.687;11;0.940268951 71.675407;84;-160.729;11;0.85751314 71.001602;84;-161.002;11;0.370798736 70;84;-161.407;11;0.141735046 69.945381;84;-161.429;11;0.52736496 69.688133;84;-161.461;11;0.733438877 69.507233;84;-161.507;11;0.415214934 68;84;-161.891;11;0.239643632 67.933548;84;-161.907;11;0.893067224 67.909904;84;-161.91;11;0.902782368 67.686195;84;-161.933;11;0.159777661 67.089798;84;-162;11;0.053204671 66.109848;84;-162.11;11;0.364338102 66;84;-162.122;11;0.517930519 65.949417;84;-162.128;11;0.852831793 64.290283;84;-162.29;11;0.190585638 64.182426;84;-162.301;11;0.410524661 64;84;-162.315;11;0.487401047 63.951405;84;-162.319;11;0.06255782 63.722588;84;-162.339;11;0.521491474 62.431049;84;-162.431;11;0.208135877 62;84;-162.462;11;0.626861706 61.953411;84;-162.465;11;0.867026524 60.504135;84;-162.504;11;0.790275034 60.167431;84;-162.513;11;0.2080205 60;84;-162.52;11;0.530736716 59.955402;84;-162.522;11;0.038494217 58.604904;84;-162.605;11;0.405467621 58.159637;84;-162.632;11;0.672526822 58;84;-162.65;11;0.602015032 57.957493;84;-162.655;11;0.726761589 56.662502;84;-162.663;11;0.385297751 56.170036;84;-162.666;11;0.677593288 56;84;-162.671;11;0.694129944 55.959538;84;-162.673;11;0.850087086 55.769066;84;-162.681;11;0.725425466 54.667282;84;-162.667;11;0.902126659 54;84;-162.659;11;0.053067123 53.96159;84;-162.658;11;0.118735585 53.796879;84;-162.656;11;0.431798074 52.539097;84;-162.539;11;0.321371234 52;84;-162.489;11;0.248997591 51.963566;84;-162.486;11;0.608725169 51.791992;84;-162.47;11;0.857442777 50.216496;84;-162.216;11;0.043190586 50.000004;84;-162.182;11;0.860079269 49.965481;84;-162.176;11;0.494383917 49.023777;84;-162;11;0.875685466 48.12244;84;-161.831;11;0.043244737 47.999996;84;-161.82;11;0.513190229 47.967381;84;-161.817;11;0.090907934 47.813812;84;-161.807;11;0.230446677 47.805538;84;-161.806;11;0.495677724 46;84;-161.56;11;0.549460039 45.969364;84;-161.556;11;0.562690883 45.82515;84;-161.559;11;0.448498903 45.556492;84;-161.556;11;0.655934124 44;84;-161.544;11;0.773218791 43.971478;84;-161.544;11;0.263785521 43.837219;84;-161.555;11;0.588182573 43.579422;84;-161.579;11;0.74603116 42;84;-161.732;11;0.551495039 41.973675;84;-161.734;11;0.924759518 41.850998;84;-161.751;11;0.289126265 41.767792;84;-161.768;11;0.927170436 40.628193;84;-162;11;0.35702543 40.585548;84;-162.009;11;0.351402354 40.468056;84;-162.021;11;0.187387783 40.08802;84;-162.088;11;0.133072156 40;84;-162.103;11;0.970918782 38.386078;84;-162.386;11;0.758848582 38;84;-162.454;11;0.078834247 37.978107;84;-162.458;11;0.748850253 37.875011;84;-162.462;11;0.501145959 36.595032;84;-162.595;11;0.891662232 36;84;-162.657;11;0.788640585 35.980164;84;-162.659;11;0.056156521 35.886723;84;-162.656;11;0.317029172 34.668236;84;-162.668;11;0.877385005 34;84;-162.675;11;0.391474044 33.982079;84;-162.675;11;0.242711383 33.877941;84;-162.657;11;0.737600855 32.465363;84;-162.465;11;0.733278638 32;84;-162.402;11;0.618948111 31.983824;84;-162.4;11;0.19106684 31.9153;84;-162.327;11;0.839853403 31.601933;84;-162;11;0.34089625 30;84;-160.327;11;0.824570591 29.992266;84;-160.319;11;0.372261469 30;84;-160.223;11;0.650055055 30.016666;84;-160.017;11;0.776855432 30.018009;84;-160;11;0.994476164 30.165836;84;-158.166;11;0.376157225 30.17263;84;-158.082;11;0.566385538 30.173998;84;-158.006;11;0.520178713 30.175047;84;-158;11;0.460434217 30.460928;84;-156.461;11;0.038476538 30.530489;84;-156.086;11;0.67314057 30.543873;84;-156.006;11;0.069241628 30.544224;84;-156;11;0.603014458 30.625063;84;-154.625;11;0.865981235 30.656519;84;-154.09;11;0.760171363 30.663124;84;-154.006;11;0.205111677 30.661047;84;-154;11;0.786243881 30.139139;84;-152.433;11;0.687989966 30.02632;84;-152.026;11;0.116363632 30.020737;84;-152.006;11;0.667720681 30.017574;84;-152;11;0.521113069 30;84;-151.966;11;0.694279789 29.803122;84;-151.58;11;0.081909216 29.008842;84;-150.006;11;0.116631515 29.005545;84;-150;11;0.205874141 28.930704;84;-149.864;11;0.223958012 28;84;-148.157;11;0.486410182 27.917665;84;-148.006;11;0.235963902 27.915424;84;-148;11;0.206879823 27.861595;84;-147.862;11;0.788795492 27.19175;84;-146.139;11;0.47797821 27.132221;84;-146.006;11;0.124511629 27.130354;84;-146;11;0.370840271 26.696861;84;-144.697;11;0.469303555 26.491432;84;-144.079;11;0.726913627 26.455334;84;-144;11;0.763273728 26.451763;84;-143.992;11;0.762401601 26;84;-142.803;11;0.556819069 25.719326;84;-142.064;11;0.199650989 25.69105;84;-142.005;11;0.916964693 25.688417;84;-142;11;0.495158356 25.378963;84;-141.379;11;0.764530575 24.727982;84;-140.073;11;0.141364884 24.685143;84;-140.005;11;0.620466748 24.681849;84;-140;11;0.339499865 23.999998;84;-138.967;11;0.221387635 23.409821;84;-138.072;11;0.645476727 23.356575;84;-138.005;11;0.503477408 23.353039;84;-138;11;0.945683904 22;84;-136.242;11;0.155923349 21.84977;84;-136.046;11;0.011996714 21.81702;84;-136.004;11;0.897946717 21.813551;84;-136;11;0.650794153 20.821817;84;-134.822;11;0.526846942 20.130054;84;-134;11;0.48258034 20.008781;84;-133.856;11;0.543570296 20;84;-133.846;11;0.942791147 19.96611;84;-133.808;11;0.543368591 18.199116;84;-132;11;0.630136569 18.0119;84;-131.808;11;0.295568568 18;84;-131.796;11;0.013336919 17.991486;84;-131.787;11;0.727167267 17.971373;84;-131.768;11;0.082658514 16.971132;84;-130.864;11;0.30973685 16.018642;84;-130.002;11;0.895902378 16.016218;84;-130;11;0.348572385 16;84;-129.984;11;0.454551395 15.981873;84;-129.965;11;0.247407981 14.411609;84;-128;11;0.176896018 13.999913;84;-127.485;11;0.223699621 13.984751;84;-127.466;11;0.52411124 12.834318;84;-126.032;11;0.199317224 12.812642;84;-126.011;11;0.212713456 12.80954;84;-126.002;11;0.66576337 12.80906;84;-126;11;0.754324537 12.771928;84;-125.872;11;0.229248443 12.238319;84;-124.238;11;0.177998877 12.160974;84;-124.001;11;0.523393518 12.160654;84;-124;11;0.724239622 12.101169;84;-123.726;11;0.447856691 11.999999;84;-123.124;11;0.643226733 11.995971;84;-123.1;11;0.996777583 11.721687;84;-122.001;11;0.997833614 11.72144;84;-122;11;0.280322359 11.658204;84;-121.658;11;0.473302724 11.354055;84;-120.014;11;0.495920854 11.351885;84;-120.007;11;0.977616261 11.349483;84;-120;11;0.761470304 11.344021;84;-119.985;11;0.729396425 11.066339;84;-119.066;11;0.189891844 10.744013;84;-118;11;0.008955314 10.501017;84;-117.196;11;0.198198745 10.221942;84;-116.222;11;0.333536117 10.15836;84;-116;11;0.725286836 10;84;-115.447;11;0.404961186 9.80856;84;-114.779;11;0.305250404 9.610453;84;-114.388;11;0.462050205 9.453916;84;-114.001;11;0.113361209 9.453626;84;-114;11;0.99994279 9.085454;84;-113.085;11;0.724283463 8.653282;84;-112.012;11;0.527909416 8.648399;84;-112.001;11;0.253299523 8.648293;84;-112;11;0.43365838 8.323028;84;-110.323;11;0.741426113 8.261475;84;-110.006;11;0.447603923 8.261959;84;-110;11;0.785791537 8.261911;84;-110;11;0.386511357 8.239557;84;-109.793;11;0.286611573 8.023247;84;-108.023;11;0.951471674 8.020449;84;-108;11;0.73829678 8;84;-107.924;11;0.169134696 7.999001;84;-107.92;11;0.526176236 7.524539;84;-106.126;11;0.444117854 7.490811;84;-106;11;0.527514953 7.096328;84;-105.096;11;0.347118221 6.618619;84;-104.002;11;0.29811255 6.617901;84;-104;11;0.553216083 6.617172;84;-103.999;11;0.418052833 6;84;-103.074;11;0.823087311 5.283253;84;-102;11;0.874565364 4.000046;84;-100.409;11;0.581031417 3.67004;84;-100;11;0.951024534 2;84;-98.0832;11;0.375084453 1.930914;84;-98;11;0.329514737 1.59253;84;-97.5925;11;0.654217404 0.270011;84;-96;11;0.370605085 0;84;-95.6713;11;0.94638277 94;84;-161.906;11;0.989146603 93.894829;84;-161.895;11;0.2484478 92.736069;84;-161.767;11;0.825496036 92.044182;84;-161.651;11;0.259546881 92;84;-161.641;11;0.981144196 91.544525;84;-161.545;11;0.650328686 91.315392;84;-161.496;11;0.522514942 90.986626;84;-160.987;11;0.943831729 90.744606;84;-160.612;11;0.49861924 90.55381;84;-160.055;11;0.550595566 90.537277;84;-160;11;0.358963023 90.403511;84;-159.552;11;0.782847194 90.29438;84;-158.888;11;0.291913652 90.216164;84;-158.35;11;0.76817488 90.119339;84;-158.119;11;0.121859505 90.079468;84;-158.024;11;0.180394005 90.082253;84;-158;11;0.164871201 90.20871;84;-156.898;11;0.676793913 90.248985;84;-156.249;11;0.382654438 90.262909;84;-156.025;11;0.185099147 90.269463;84;-156;11;0.31301798 90.382637;84;-155.571;11;0.707301902 90.656273;84;-154.656;11;0.287053853 90.84494;84;-154.025;11;0.918682171 90.863762;84;-154;11;0.683097614 91.34713;84;-153.347;11;0.949576947 91.926331;84;-152.565;11;0.158804063 92;84;-152.5;11;0.688108665 92.266785;84;-152.267;11;0.037829101 92.541779;84;-152.026;11;0.61963097 92.58329;84;-152;11;0.10102418 93.024208;84;-151.723;11;0.541641986 93.384773;84;-151.385;11;0.598250673 93.476517;84;-151.299;11;0.875786465 94;84;-151.052;11;0.184378249 94.715111;84;-150.715;11;0.954458627 95.189651;84;-150.492;11;0.028508542 95.707672;84;-150;11;0.272744655 95.857666;84;-149.858;11;0.294010514 95.923973;84;-149.795;11;0.079446076 95.999992;84;-149.788;11;0.961712691 96.681648;84;-149.726;11;0.044641114 97.032005;84;-150;11;0.255695025 97.34008;84;-150.241;11;0.511610194 97.92424;84;-150.44;11;0.527647215 98;84;-150.512;11;0.581844917 99.453979;84;-151.888;11;0.306443559 99.567642;84;-152;11;0.911278565 99.925514;84;-152.354;11;0.721896061 100.000008;84;-152.45;11;0.385753305 100.993706;84;-153.732;11;0.601413113 101.147293;84;-154;11;0.392232043 101.704987;84;-154.973;11;0.284180723 102;84;-155.526;11;0.262268558 102.022606;84;-155.568;11;0.04095172 102.138496;84;-156;11;0.468075381 102.145248;84;-156.025;11;0.999141384 102.140678;84;-156.141;11;0.564752537 102.087822;84;-157.478;11;0.616830696 102;84;-157.84;11;0.00996859 101.968719;84;-157.969;11;0.245963337 101.961128;84;-158;11;0.758442888 101.955162;84;-158.025;11;0.735622489 101.483643;84;-158.3;11;0.118160617 100.959854;84;-158.96;11;0.138258335 100.201759;84;-159.915;11;0.458088976 100.056;84;-160;11;0.494614904 100.020576;84;-160.021;11;0.832221234 100.000008;84;-160.033;11;0.410952055 99.684647;84;-160.216;11;0.172128827 98.772316;84;-160.575;11;0.323800768 98.60392;84;-160.604;11;0.420486374 98;84;-160.707;11;0.974967285 96.968697;84;-160.882;11;0.465795407 96.907532;84;-160.908;11;0.086730351 95.999992;84;-161.284;11;0.728361131 95.756416;84;-161.385;11;0.836323914 95.482613;84;-161.483;11;0.884339022 94.226959;84;-161.932;11;0.453263955 156.173233;84;-126.88;11;0.975295892 156.172577;84;-126.173;11;0.489715468 156.172424;84;-126;11;0.62070715 156.171585;84;-125.078;11;0.650405891 156.920456;84;-124.92;11;0.46182642 157.970657;84;-124.7;11;0.904195555 157.999985;84;-124.714;11;0.63550719 158.510956;84;-124.953;11;0.339562083 159.29924;84;-125.299;11;0.706285386 159.97287;84;-125.595;11;0.329529462 160;84;-125.606;11;0.754614739 160.972763;84;-126;11;0.787668788 160.995331;84;-126.009;11;0.210543369 160.940109;84;-126.94;11;0.606154187 160.938126;84;-126.974;11;0.881639001 161.043365;84;-127.544;11;0.962574782 160;84;-127.785;11;0.60114252 159.825592;84;-127.826;11;0.864396052 159.071472;84;-128;11;0.604348529 158.201233;84;-128.201;11;0.072275764 157.999985;84;-128.248;11;0.771513139 157.970139;84;-128.255;11;0.378987168 157.637177;84;-128;11;0.424601546 298;50;-151.805;12;0.576563952 297.818085;50;-151.818;12;0.169099623 296;50;-151.95;12;0.559457084 295.952942;50;-151.953;12;0.595314692 295.302399;50;-152;12;0.926302804 294.160187;50;-152.16;12;0.335273872 294;50;-152.183;12;0.726905267 292.464935;50;-152.465;12;0.211973388 292;50;-152.55;12;0.32976464 290.789246;50;-152.789;12;0.726995928 290;50;-152.945;12;0.653471568 289.115051;50;-153.115;12;0.951724359 288;50;-153.329;12;0.997673163 287.39563;50;-153.396;12;0.07744336 286;50;-153.548;12;0.539812603 285.572876;50;-153.573;12;0.430541244 284;50;-153.663;12;0.822573365 283.702667;50;-153.703;12;0.961224515 282;50;-153.932;12;0.45052497 281.939697;50;-153.94;12;0.620343219 281.491333;50;-154;12;0.858572147 280.222839;50;-154.223;12;0.474633702 280;50;-154.262;12;0.218206785 278.696808;50;-154.697;12;0.606904951 278;50;-154.929;12;0.734933864 277.261108;50;-155.261;12;0.298820073 276;50;-155.827;12;0.354773077 275.88089;50;-155.881;12;0.781224965 275.615662;50;-156;12;0.492670945 274.311218;50;-156.311;12;0.504128255 274;50;-156.385;12;0.036976717 272.696472;50;-156.696;12;0.55151237 272;50;-156.863;12;0.015423602 270.998108;50;-156.998;12;0.684185892 270;50;-157.133;12;0.557131805 269.164307;50;-157.164;12;0.233215901 268;50;-157.208;12;0.546254515 267.144104;50;-157.144;12;0.153011931 266;50;-157.059;12;0.210072214 264.694977;50;-156.695;12;0.851309708 264;50;-156.501;12;0.306252527 263.595245;50;-156;12;0.319730671 262;50;-154.025;12;0.497035234 262.011505;50;-154.012;12;0.988915113 262.021545;50;-154;12;0.646627089 262.942657;50;-152.943;12;0.874449288 263.763855;50;-152;12;0.658187014 263.87381;50;-151.874;12;0.888446336 264;50;-151.729;12;0.372054485 264.954132;50;-150.954;12;0.013613491 265.231201;50;-150.729;12;0.327287342 266;50;-150.309;12;0.474775407 266.218842;50;-150.219;12;0.207782579 266.747223;50;-150;12;0.330096035 267.494629;50;-149.495;12;0.197750464 268;50;-149.153;12;0.252737789 268.591827;50;-148.592;12;0.818172168 269.216156;50;-148;12;0.500964629 269.618561;50;-147.619;12;0.64118852 270;50;-147.257;12;0.413837843 270.524261;50;-146.524;12;0.272465712 270.899384;50;-146;12;0.719090975 271.176727;50;-145.177;12;0.789989263 271.573181;50;-144;12;0.670796429 271.61145;50;-143.611;12;0.715378307 271.770142;50;-142;12;0.066523302 271.754517;50;-141.755;12;0.745118717 271.642883;50;-140;12;0.590163062 271.479553;50;-139.48;12;0.056680583 271.015259;50;-138;12;0.915960927 270;50;-136.533;12;0.856259442 269.630676;50;-136;12;0.501794897 268;50;-134.715;12;0.491445206 266.800781;50;-134;12;0.634218456 266;50;-133.522;12;0.148187826 265.137878;50;-133.138;12;0.175215251 264;50;-132.63;12;0.602309899 262.722839;50;-132;12;0.890235623 262;50;-131.643;12;0.17756524 261.136536;50;-131.137;12;0.242847827 260;50;-130.47;12;0.8629618 259.675842;50;-130;12;0.470383177 258.953186;50;-128.953;12;0.434443547 258.295166;50;-128;12;0.196108103 258.155487;50;-126.155;12;0.780868777 258.143707;50;-126;12;0.589159873 258.042328;50;-124.058;12;0.419100752 258.043274;50;-124.043;12;0.967751696 258.046082;50;-124;12;0.582768556 258.03952;50;-123.942;12;0.167195333 258;50;-123.702;12;0.867196781 257.71994;50;-122;12;0.126823134 256.681458;50;-120.681;12;0.405788221 256.144745;50;-120;12;0.094283799 256;50;-119.794;12;0.302503324 254.739655;50;-118;12;0.166785343 255.159821;50;-117.16;12;0.398652724 255.739853;50;-116;12;0.590722556 255.826569;50;-115.827;12;0.884585042 256;50;-115.48;12;0.271283263 256.34198;50;-114.796;12;0.281912574 256.410187;50;-114.41;12;0.132863454 256.482697;50;-114;12;0.357407665 256.986084;50;-112.986;12;0.505636446 257.475647;50;-112;12;0.238398047 257.333862;50;-111.334;12;0.581381635 257.049957;50;-110;12;0.025225419 256;50;-108.944;12;0.556384933 255.060562;50;-108;12;0.197550273 254;50;-107.565;12;0.298108948 253.304459;50;-107.304;12;0.066249494 252;50;-106.815;12;0.299591546 250.224869;50;-106.225;12;0.125273799 250;50;-106.15;12;0.077422677 249.724762;50;-106;12;0.776481578 248;50;-105.059;12;0.125834502 246.502228;50;-104;12;0.294011037 246;50;-103.332;12;0.341995317 244.999222;50;-102;12;0.182628887 244.259476;50;-100.259;12;0.829443413 244.1492;50;-100;12;0.53834054 244;50;-99.6448;12;0.652221255 243.333527;50;-98;12;0.81918897 242.399841;50;-96.3998;12;0.232072577 242.167236;50;-96;12;0.444039474 242;50;-95.8169;12;0.749248651 241.890442;50;-95.697;12;0.907832829 240.25972;50;-94;12;0.88400183 240;50;-93.757;12;0.048660166 238.12204;50;-92;12;0.978684132 238;50;-91.8502;12;0.924917678 236.375656;50;-90;12;0.708540656 236.220459;50;-89.5405;12;0.419546573 236;50;-89.0099;12;0.180921916 235.438354;50;-88;12;0.677932856 235.410172;50;-87.4102;12;0.982134892 235.372787;50;-86.6272;12;0.667018598 235.206909;50;-86;12;0.625759237 235.395508;50;-85.3955;12;0.689405789 235.754196;50;-84.2458;12;0.819341439 235.729126;50;-84;12;0.87598138 235.749359;50;-83.7494;12;0.173841404 235.880875;50;-82.1191;12;0.944094444 235.616013;50;-82;12;0.571315182 234.000015;50;-81.2732;12;0.289753506 233.022919;50;-81.0229;12;0.576231676 232;50;-80.7609;12;0.260705259 230.63623;50;-80.6362;12;0.541530687 230;50;-80.4766;12;0.163443755 228.021103;50;-80.0211;12;0.701672296 228;50;-80.0162;12;0.800908236 227.818436;50;-80;12;0.698047165 226.259796;50;-79.8606;12;0.23203249 225.999985;50;-79.845;12;0.179967967 225.834381;50;-79.8344;12;0.498683128 224.428238;50;-79.7445;12;0.584161357 224;50;-79.7361;12;0.385406874 223.7388;50;-79.7388;12;0.777859783 222;50;-79.7566;12;0.748366904 221.782394;50;-79.7824;12;0.939592371 220;50;-79.9939;12;0.025207247 219.995178;50;-79.9952;12;0.436003956 219.977585;50;-80;12;0.056749848 218.424866;50;-80.4249;12;0.885497208 218;50;-80.5411;12;0.028937305 217.013733;50;-81.0137;12;0.734779187 216;50;-81.4995;12;0.797885009 215.661652;50;-81.6617;12;0.634042252 214.993683;50;-82;12;0.873190963 214.480286;50;-82.4803;12;0.495076259 214;50;-82.9296;12;0.815752869 213.472214;50;-83.4722;12;0.782800831 212.958847;50;-84;12;0.051720589 212.673416;50;-84.6734;12;0.60861275 212.11113;50;-86;12;0.753497189 212.083221;50;-86.0832;12;0.889657962 212;50;-86.3314;12;0.751550537 211.580933;50;-87.5809;12;0.373199356 211.440384;50;-88;12;0.621779892 211.061569;50;-89.0616;12;0.661576928 210.7267;50;-90;12;0.179729497 210.507614;50;-90.5076;12;0.72397765 210;50;-91.6838;12;0.366446371 209.904663;50;-91.9047;12;0.786941048 209.86351;50;-92;12;0.777474941 209.379349;50;-93.3794;12;0.834736587 209.161499;50;-94;12;0.156618022 208.770264;50;-94.7703;12;0.46419512 208.29599;50;-95.704;12;0.349052321 208.153397;50;-96;12;0.912412229 208.082382;50;-96.0824;12;0.496215165 208;50;-96.178;12;0.543233923 207.167038;50;-97.167;12;0.903462056 206.465576;50;-98;12;0.076447901 206.252731;50;-98.2527;12;0.712985199 206;50;-98.5528;12;0.380819247 205.161285;50;-99.1613;12;0.58497247 204.005157;50;-100;12;0.670484612 204.002167;50;-100.002;12;0.37965961 204;50;-100.004;12;0.425707602 202.888855;50;-100.889;12;0.25920626 202;50;-101.597;12;0.443713426 201.77562;50;-101.776;12;0.367266269 201.493942;50;-102;12;0.172753603 200.583359;50;-102.583;12;0.654643626 200.000015;50;-102.957;12;0.053401587 199.213486;50;-103.213;12;0.76589799 198;50;-103.609;12;0.190023885 197.711075;50;-103.711;12;0.64092342 196.892517;50;-104;12;0.093368681 196.232849;50;-104.233;12;0.370139122 196;50;-104.315;12;0.713972475 194.754623;50;-104.755;12;0.717654545 194;50;-105.021;12;0.459018648 193.458084;50;-105.458;12;0.542215006 192.786224;50;-106;12;0.937330477 192.351028;50;-106.351;12;0.369591965 191.999985;50;-106.575;12;0.366887038 191.312439;50;-107.312;12;0.157340616 190.671005;50;-108;12;0.273444877 190.472046;50;-108.472;12;0.715983692 190;50;-109.592;12;0.89919284 189.879028;50;-109.879;12;0.326502452 189.828049;50;-110;12;0.02855614 189.76918;50;-111.769;12;0.474113807 189.76149;50;-112;12;0.347465138 189.704773;50;-113.705;12;0.724045432 189.694946;50;-114;12;0.719334927 189.674805;50;-114.606;12;0.101724524 189.58371;50;-115.584;12;0.73309677 189.544952;50;-116;12;0.658371083 189.534866;50;-116.108;12;0.030451815 189.669998;50;-117.106;12;0.708636182 189.549484;50;-117.549;12;0.598153118 189.426941;50;-118;12;0.769095117 189.121811;50;-119.122;12;0.431579431 189.10997;50;-119.165;12;0.195440205 188.738724;50;-120;12;0.479018348 188.511307;50;-120.511;12;0.073099833 188.346069;50;-120.883;12;0.162088457 188;50;-121.343;12;0.669626737 187.807434;50;-121.6;12;0.774837434 187.754395;50;-121.754;12;0.352339726 187.670074;50;-122;12;0.707640525 187.557785;50;-122.442;12;0.685167411 187.240646;50;-123.241;12;0.747693605 186.939087;50;-124;12;0.082893508 186.818344;50;-124.818;12;0.145912385 186.644547;50;-125.996;12;0.455756928 186.644409;50;-126;12;0.596081885 186.708786;50;-126.709;12;0.242928773 186.825806;50;-127.997;12;0.055192015 186.826111;50;-128;12;0.192882503 186.826218;50;-128;12;0.807354124 186.827133;50;-128.004;12;0.123447915 187.206726;50;-129.207;12;0.418437182 187.457153;50;-130;12;0.256117044 187.45784;50;-130.003;12;0.337235133 188;50;-131.79;12;0.629778784 188.063782;50;-132;12;0.614262856 188.091568;50;-132.092;12;0.119445798 188.670166;50;-133.998;12;0.025369208 188.669968;50;-134;12;0.198107722 188.694946;50;-134.695;12;0.660141329 188.741837;50;-135.998;12;0.125628005 188.741394;50;-136;12;0.145138178 188.740448;50;-136.009;12;0.645546078 188.696182;50;-136.696;12;0.520673772 188.612122;50;-138;12;0.642982524 188.678299;50;-138.678;12;0.488651579 188.67836;50;-138.679;12;0.221737045 188.65152;50;-139.991;12;0.541950968 188.651749;50;-139.998;12;0.553039685 188.651871;50;-140;12;0.036029132 188.650009;50;-140.014;12;0.339480865 188.620285;50;-140.62;12;0.937467398 188.552643;50;-142;12;0.210750236 188.321869;50;-142.322;12;0.797931651 188;50;-142.771;12;0.84541499 187.48645;50;-143.486;12;0.78360077 187.133606;50;-143.978;12;0.23295652 187.122543;50;-143.997;12;0.169722366 187.121078;50;-144;12;0.346331785 186.59671;50;-144.597;12;0.329007052 186;50;-145.275;12;0.863273877 185.997635;50;-145.278;12;0.016806709 185.995499;50;-145.283;12;0.394386316 185.99382;50;-145.287;12;0.893656907 185.772324;50;-145.772;12;0.486666383 185.668365;50;-146;12;0.446202294 185.145416;50;-147.145;12;0.127976887 184.835449;50;-147.824;12;0.170449046 184.743332;50;-148;12;0.097901434 184.487625;50;-148.488;12;0.216318073 184;50;-149.418;12;0.516271711 183.799637;50;-149.8;12;0.737227435 183.697922;50;-149.994;12;0.691030872 183.69664;50;-150;12;0.812447822 183.696548;50;-150.001;12;0.381081851 183.283752;50;-151.284;12;0.650363497 183.055527;50;-151.993;12;0.486881412 183.054306;50;-152;12;0.675292553 183.054214;50;-152.001;12;0.092105827 182.698975;50;-152.699;12;0.767846 182.037216;50;-154;12;0.848854116 182.024673;50;-154.025;12;0.084633832 182.00209;50;-154.069;12;0.279466444 182;50;-154.074;12;0.761711544 181.99823;50;-154.079;12;0.541509788 180.914215;50;-154.914;12;0.244909201 180.008987;50;-155.612;12;0.254480023 180;50;-155.62;12;0.072163051 179.997589;50;-155.622;12;0.437781883 179.744461;50;-155.744;12;0.585857051 179.215607;50;-156;12;0.282315945 179.213654;50;-156.001;12;0.112054134 179.1978;50;-156.008;12;0.678312511 178.342545;50;-156.343;12;0.915793405 178;50;-156.477;12;0.881694348 177.996796;50;-156.478;12;0.480111851 176.740433;50;-156.74;12;0.901181597 176.015503;50;-156.892;12;0.831831633 176;50;-156.896;12;0.394902183 175.99585;50;-156.897;12;0.566938461 175.047195;50;-157.047;12;0.305709096 174.019547;50;-157.21;12;0.847540587 174.000015;50;-157.213;12;0.215125624 173.994781;50;-157.214;12;0.788555895 173.264511;50;-157.265;12;0.050868797 172.017685;50;-157.35;12;0.060260255 172;50;-157.353;12;0.257580679 171.993546;50;-157.354;12;0.554637318 171.409897;50;-157.41;12;0.649134142 170.029007;50;-157.543;12;0.057254091 170;50;-157.546;12;0.117777084 169.992218;50;-157.546;12;0.599372687 169.588303;50;-157.588;12;0.910995945 168.034302;50;-157.749;12;0.762843854 168;50;-157.753;12;0.780819327 167.990784;50;-157.753;12;0.877336033 167.94696;50;-157.757;12;0.865087665 167.781387;50;-157.781;12;0.499141183 166.280914;50;-158;12;0.393233248 166.148743;50;-158.019;12;0.266501438 166.098312;50;-158.024;12;0.329654352 166.031342;50;-158.031;12;0.6799956 166.000015;50;-158.035;12;0.551393989 164.233322;50;-158.233;12;0.132194341 164;50;-158.26;12;0.221473705 163.987671;50;-158.261;12;0.710526537 163.340973;50;-158.308;12;0.296934447 162.448822;50;-158.449;12;0.86770615 162;50;-158.519;12;0.140639723 161.985992;50;-158.522;12;0.496416577 161.919296;50;-158.522;12;0.029327975 160.539581;50;-158.54;12;0.610436403 160;50;-158.547;12;0.909953402 159.984161;50;-158.547;12;0.918132854 159.908722;50;-158.54;12;0.413931346 158.464096;50;-158.464;12;0.055635844 157.999985;50;-158.44;12;0.818572238 157.982193;50;-158.439;12;0.868643241 157.8974;50;-158.424;12;0.574408277 156.166748;50;-158.167;12;0.322991386 156;50;-158.142;12;0.582189251 155.223618;50;-158.026;12;0.005832298 155.091522;50;-158.007;12;0.955761517 155.041855;50;-158;12;0.779323677 154;50;-157.846;12;0.379290232 153.977936;50;-157.843;12;0.211760682 153.864944;50;-157.838;12;0.052765691 153.836594;50;-157.837;12;0.016895841 152;50;-157.744;12;0.562698933 151.96727;50;-157.742;12;0.12391641 151.75946;50;-157.759;12;0.198970276 151.702774;50;-157.764;12;0.912420508 150.48587;50;-157.901;12;0.746626048 150;50;-157.956;12;0.128477584 149.973679;50;-157.959;12;0.425705131 149.961304;50;-157.961;12;0.799851622 149.73085;50;-158;12;0.867433567 148.283951;50;-158.243;12;0.855367568 148.249237;50;-158.249;12;0.593990126 148;50;-158.294;12;0.801275696 147.971634;50;-158.3;12;0.757566567 147.836472;50;-158.326;12;0.264301828 146.595917;50;-158.596;12;0.10393286 146;50;-158.726;12;0.097877416 145.969604;50;-158.732;12;0.736716962 145.824814;50;-158.761;12;0.246271937 144.968689;50;-158.969;12;0.910636198 144;50;-159.203;12;0.942619023 143.967606;50;-159.211;12;0.380602862 143.813248;50;-159.237;12;0.674739728 143.338638;50;-159.339;12;0.776431989 142;50;-159.626;12;0.2048741 141.965591;50;-159.633;12;0.246540878 141.801605;50;-159.658;12;0.0978416 141.680069;50;-159.68;12;0.757699043 140;50;-159.987;12;0.191680709 139.989029;50;-159.989;12;0.319832405 139.928955;50;-160;12;0.521084891 139.903;50;-160.005;12;0.63858853 139.77597;50;-160.013;12;0.002244047 138.183289;50;-160.183;12;0.407741988 138.010544;50;-160.202;12;0.229194508 138;50;-160.202;12;0.773480859 137.777634;50;-160.199;12;0.189993626 136.194733;50;-160.195;12;0.644320459 136;50;-160.194;12;0.667406666 135.959229;50;-160.194;12;0.584284946 134.392853;50;-160.059;12;0.50707952 134.023697;50;-160.024;12;0.125665542 134.004822;50;-160.022;12;0.150723201 134;50;-160.022;12;0.497080161 133.95694;50;-160.018;12;0.033382161 133.911987;50;-160.015;12;0.70737406 133.748474;50;-160;12;0.380137744 133.556213;50;-159.982;12;0.121725199 132.168564;50;-159.833;12;0.815993848 132;50;-159.799;12;0.324461756 131.954636;50;-159.79;12;0.220261615 131.738953;50;-159.739;12;0.570404684 131.73851;50;-159.739;12;0.396354792 130;50;-159.524;12;0.597416165 129.952332;50;-159.518;12;0.590791814 129.726959;50;-159.429;12;0.004898054 129.360901;50;-159.361;12;0.795297595 128;50;-159.109;12;0.793618344 127.949982;50;-159.099;12;0.94694082 127.319473;50;-158.858;12;0.046974219 126.373993;50;-158.374;12;0.18201886 126.322174;50;-158.347;12;0.21440943 126;50;-158.308;12;0.91554179 125.947418;50;-158.302;12;0.008522016 125.341118;50;-158;12;0.458391588 124.61879;50;-157.641;12;0.855059606 124.156563;50;-157.298;12;0.207373209 124;50;-157.12;12;0.497175248 123.944633;50;-157.058;12;0.073468028 123.028564;50;-156.02;12;0.068479428 123.01796;50;-156;12;0.683448957 122.865631;50;-155.713;12;0.670402356 122.297623;50;-154.298;12;0.825455512 122.186478;50;-154.021;12;0.654376221 122.180519;50;-154;12;0.237392481 122;50;-153.373;12;0.53244107 121.898384;50;-153.021;12;0.339285753 121.556152;50;-152.021;12;0.879584434 121.550049;50;-152;12;0.054241696 121.40226;50;-151.485;12;0.3940829 121.385567;50;-151.386;12;0.893995721 121.155685;50;-150.022;12;0.661673018 121.15361;50;-150;12;0.771945022 121.064079;50;-149.064;12;0.459441202 121.03698;50;-148.781;12;0.923930488 121.108437;50;-148.022;12;0.449725857 121.109482;50;-148;12;0.310351088 121.15004;50;-147.15;12;0.245381499 121.162704;50;-146.885;12;0.826720831 121.712479;50;-146.022;12;0.884011533 121.734787;50;-146;12;0.258346318 121.868034;50;-145.868;12;0.337710634 121.937279;50;-145.799;12;0.109952405 122;50;-145.786;12;0.458926635 122.280533;50;-145.723;12;0.201064832 123.217186;50;-145.217;12;0.364636377 123.939034;50;-144.827;12;0.632138802 124;50;-144.822;12;0.411333655 124.754036;50;-144.754;12;0.688073309 126;50;-144.642;12;0.654606512 126.192986;50;-144.625;12;0.034656514 126.511261;50;-144.511;12;0.194951573 127.120735;50;-144.294;12;0.099809893 127.819893;50;-144.239;12;0.4440373 128;50;-144.16;12;0.099085435 128.111298;50;-144.111;12;0.603976368 128.160629;50;-144.09;12;0.569562596 128.442215;50;-144;12;0.85128547 129.623657;50;-143.624;12;0.219817913 129.945267;50;-143.521;12;0.862235262 130;50;-143.491;12;0.835842338 130.096786;50;-143.438;12;0.36596816 130.994827;50;-142.995;12;0.748027124 131.84375;50;-142.576;12;0.757188624 132;50;-142.43;12;0.291519161 132.111313;50;-142.327;12;0.091208397 132.199661;50;-142.2;12;0.692553747 132.338577;50;-142;12;0.471637121 132.679184;50;-141.51;12;0.257268552 132.986572;50;-140.987;12;0.620708169 133.554947;50;-140.018;12;0.682229389 133.560974;50;-140;12;0.137331434 133.67128;50;-139.671;12;0.166263962 133.986649;50;-138.731;12;0.960487289 134;50;-138.676;12;0.306098546 134.100967;50;-138.257;12;0.991091493 134.155807;50;-138.156;12;0.231074466 134.230438;50;-138.018;12;0.694400617 134.230316;50;-138;12;0.638375981 134.228851;50;-137.79;12;0.952902248 134;50;-137.176;12;0.247886483 133.567902;50;-136.018;12;0.206600743 133.552811;50;-136;12;0.714736457 133.347092;50;-135.755;12;0.771465405 132.217392;50;-134.936;12;0.541602205 132;50;-134.742;12;0.659566711 131.946869;50;-134.695;12;0.536402272 130.689041;50;-134.019;12;0.332717013 130.647263;50;-134;12;0.285786886 130;50;-133.703;12;0.909517797 129.944473;50;-133.678;12;0.119278799 129.57074;50;-133.571;12;0.474591005 128.295746;50;-133.206;12;0.772928385 128;50;-133.052;12;0.958170778 127.942421;50;-133.022;12;0.00614923 126.71582;50;-132.578;12;0.819481694 126.529671;50;-132.53;12;0.518531699 126;50;-132.391;12;0.22517262 125.940308;50;-132.376;12;0.787774114 125.570343;50;-132.391;12;0.704025791 124.714668;50;-132.021;12;0.153005015 124.670807;50;-132;12;0.821651559 124;50;-131.672;12;0.823673868 123.938301;50;-131.642;12;0.373367023 122.770531;50;-130.022;12;0.048622153 122.781349;50;-130;12;0.575016358 123.155731;50;-129.24;12;0.379450313 123.1455;50;-129.145;12;0.574695907 123.023186;50;-128.022;12;0.644763867 123.028481;50;-128;12;0.692826691 123.218826;50;-127.219;12;0.539356798 123.372574;50;-126.588;12;0.932656157 123.621658;50;-126.021;12;0.351296544 123.62986;50;-126;12;0.128014966 123.732826;50;-125.733;12;0.062071656 123.940041;50;-125.195;12;0.504413093 124;50;-125.042;12;0.65598121 124.270241;50;-124.35;12;0.61471216 124.275558;50;-124.276;12;0.821877498 124.293678;50;-124.021;12;0.623035566 124.298203;50;-124;12;0.285112566 124.602684;50;-122.603;12;0.690963522 124.669678;50;-122.295;12;0.496178594 124.679718;50;-122.02;12;0.026994661 124.678818;50;-122;12;0.410051598 124.617371;50;-120.617;12;0.869491021 124.602852;50;-120.291;12;0.87479969 124.576797;50;-120.02;12;0.1984619 124.573372;50;-120;12;0.2572694 124.279411;50;-118.279;12;0.00609933 124.272614;50;-118.24;12;0.738130652 124.244408;50;-118.02;12;0.989390211 124.24054;50;-118;12;0.358212579 124.192345;50;-117.754;12;0.236094301 124;50;-117.052;12;0.286761862 123.717239;50;-116.02;12;0.70557346 123.713524;50;-116;12;0.595551434 123.667213;50;-115.757;12;0.578885209 123.619247;50;-115.619;12;0.096571342 123.062088;50;-114.019;12;0.067181865 123.054054;50;-114;12;0.270468334 122.376091;50;-112.376;12;0.058331435 122.219078;50;-112;12;0.956521967 122;50;-111.475;12;0.81789061 121.603561;50;-110.526;12;0.439850706 121.548996;50;-110.272;12;0.005954417 121.467186;50;-110.019;12;0.888630297 121.451012;50;-110;12;0.33144856 121.25827;50;-109.777;12;0.382805706 120;50;-108.561;12;0.843808137 119.439156;50;-108.019;12;0.766978836 119.407104;50;-108;12;0.025610953 119.201981;50;-107.88;12;0.885959011 118.948997;50;-107.746;12;0.758611819 118;50;-107.136;12;0.308083218 117.946358;50;-107.102;12;0.285534393 116.20713;50;-106;12;0.712017938 116.201454;50;-105.996;12;0.540628839 116;50;-105.901;12;0.672995131 115.946014;50;-105.876;12;0.012406471 115.797096;50;-105.797;12;0.12384463 114.202866;50;-104.958;12;0.908886648 114;50;-104.869;12;0.17889351 113.945641;50;-104.846;12;0.945160945 112.197105;50;-104.097;12;0.167447823 112.037994;50;-104.038;12;0.790913085 112;50;-104.024;12;0.844557597 111.945236;50;-104.004;12;0.912766907 111.924919;50;-104;12;0.847512647 110.667587;50;-103.762;12;0.660591667 110;50;-103.63;12;0.088521658 109.944504;50;-103.619;12;0.634618524 109.586411;50;-103.586;12;0.689319015 109.219482;50;-103.553;12;0.143221438 108;50;-103.462;12;0.581022076 107.943642;50;-103.457;12;0.438159214 107.43808;50;-103.438;12;0.341620488 107.068428;50;-103.424;12;0.562534276 106;50;-103.377;12;0.063734263 105.942825;50;-103.375;12;0.825960975 105.671501;50;-103.357;12;0.769513192 105.345505;50;-103.346;12;0.10195132 104;50;-103.296;12;0.295730676 103.942108;50;-103.294;12;0.575500761 103.765961;50;-103.292;12;0.03496513 103.257042;50;-103.257;12;0.450630882 102;50;-103.17;12;0.968515353 101.941574;50;-103.166;12;0.008853827 101.755081;50;-103.16;12;0.733883818 101.126869;50;-103.127;12;0.887465849 100.000008;50;-103.067;12;0.272940147 99.941132;50;-103.064;12;0.945442409 99.661911;50;-103.068;12;0.756015807 99.064346;50;-103.064;12;0.176820279 98;50;-103.059;12;0.436392631 97.940697;50;-103.058;12;0.869963436 97.659317;50;-103.095;12;0.753202952 97.129433;50;-103.129;12;0.383287684 95.999992;50;-103.202;12;0.013753509 95.940208;50;-103.206;12;0.596480221 95.656494;50;-103.273;12;0.504108293 95.319641;50;-103.32;12;0.364890427 94;50;-103.501;12;0.963185282 93.939697;50;-103.509;12;0.318167144 93.614578;50;-103.615;12;0.806173686 93.563019;50;-103.631;12;0.62341138 92;50;-103.89;12;0.946370031 91.90567;50;-103.906;12;0.189148199 91.335884;50;-104;12;0.776645207 91.206573;50;-104.021;12;0.293911581 91.008766;50;-104.083;12;0.648143788 90.152779;50;-104.153;12;0.116842092 90;50;-104.165;12;0.180922567 89.938972;50;-104.17;12;0.13026074 89.240166;50;-104.301;12;0.625335889 88.311211;50;-104.311;12;0.978869455 88;50;-104.314;12;0.671027641 87.939003;50;-104.315;12;0.7728122 87.206963;50;-104.259;12;0.132081013 86.168877;50;-104.169;12;0.707652728 86;50;-104.154;12;0.275917067 85.939491;50;-104.149;12;0.831519502 85.601471;50;-104.055;12;0.772447305 85.428413;50;-104;12;0.969532586 84;50;-103.545;12;0.271800232 83.940605;50;-103.526;12;0.023223601 83.660446;50;-103.415;12;0.219727645 83.28019;50;-103.28;12;0.315021413 82;50;-102.826;12;0.069948731 81.94194;50;-102.806;12;0.051014255 81.667999;50;-102.731;12;0.597092024 80.486717;50;-102.487;12;0.777037203 80;50;-102.386;12;0.127612076 79.943092;50;-102.374;12;0.130419123 79.674156;50;-102.375;12;0.916584881 78.463928;50;-102.464;12;0.647697164 78;50;-102.498;12;0.914634782 77.943733;50;-102.502;12;0.192670711 77.677467;50;-102.578;12;0.671354604 76.868912;50;-102.869;12;0.116382952 76;50;-103.181;12;0.991599866 75.943878;50;-103.201;12;0.33859035 75.678116;50;-103.328;12;0.788701 75.452393;50;-103.452;12;0.814265607 74.45623;50;-104;12;0.525327142 74.345055;50;-104.061;12;0.536434137 74.160187;50;-104.16;12;0.639487283 74.078865;50;-104.204;12;0.899465045 74;50;-104.248;12;0.716252242 72.882332;50;-104.882;12;0.567706272 72;50;-105.383;12;0.466736316 71.943756;50;-105.415;12;0.36788742 71.795563;50;-105.497;12;0.113023 71.611237;50;-105.611;12;0.820053471 70.984879;50;-106;12;0.928041679 70.953049;50;-106.02;12;0.864694653 70.39122;50;-106.391;12;0.105960323 70.061897;50;-106.609;12;0.256925046 70;50;-106.649;12;0.966858494 69.789261;50;-106.787;12;0.888332688 69.216469;50;-107.216;12;0.502786919 68.170639;50;-108;12;0.241714538 68.073082;50;-108.073;12;0.869646879 68;50;-108.128;12;0.862216396 67.92234;50;-108.186;12;0.388782148 67.153358;50;-109.153;12;0.3835732 66.571297;50;-109.886;12;0.188836673 66.483879;50;-110;12;0.785088254 66.42128;50;-110.082;12;0.551601106 66.350624;50;-110.29;12;0.69528144 66.333969;50;-110.334;12;0.403908389 66;50;-111.224;12;0.26809753 65.788383;50;-111.788;12;0.202666367 65.709;50;-112;12;0.80682589 65.242798;50;-113.243;12;0.41797121 65.055267;50;-113.743;12;0.458160354 65.003738;50;-114;12;0.34396748 64.999596;50;-114.021;12;0.033382417 64.756149;50;-114.756;12;0.128625787 64.430954;50;-115.739;12;0.488231703 64.374748;50;-116;12;0.179678855 64.370232;50;-116.021;12;0.895984588 64.34021;50;-116.305;12;0.241514032 64.334755;50;-116.335;12;0.001405923 64.03022;50;-118;12;0.971126976 64.026314;50;-118.021;12;0.289184769 64.026787;50;-118.027;12;0.195648292 64.125969;50;-119.164;12;0.912975187 64.199707;50;-120;12;0.90110776 64.201637;50;-120.022;12;0.197853854 64.312996;50;-120.313;12;0.983893873 64.85141;50;-121.721;12;0.144394329 64.936852;50;-122;12;0.612328499 64.943718;50;-122.022;12;0.821751994 65.089996;50;-122.327;12;0.65677124 65.963753;50;-123.753;12;0.667375954 66;50;-123.812;12;0.179170627 66.114471;50;-124;12;0.885116842 66.293633;50;-124.294;12;0.601472466 67.154083;50;-125.704;12;0.963188825 67.311447;50;-126;12;0.642222352 67.324112;50;-126.024;12;0.118646199 67.443871;50;-126.304;12;0.187484207 67.931206;50;-127.284;12;0.332915286 68;50;-127.504;12;0.470241509 68.155334;50;-128;12;0.250242966 68.226166;50;-128.226;12;0.916595191 68.671814;50;-129.649;12;0.380206402 68.752518;50;-130;12;0.517180343 68.758202;50;-130.025;12;0.92386373 68.786842;50;-130.787;12;0.727824285 68.82077;50;-131.69;12;0.384049789 68.839195;50;-132;12;0.119531995 68.840675;50;-132.025;12;0.776770902 68.799965;50;-132.8;12;0.723256313 68.753296;50;-133.688;12;0.053428912 68.749908;50;-134;12;0.148583258 68.749634;50;-134.025;12;0.343038607 68.687172;50;-134.687;12;0.188377775 68.592751;50;-135.688;12;0.848404317 68.571228;50;-136;12;0.083983006 68.569504;50;-136.025;12;0.293251687 68.502136;50;-136.502;12;0.735531772 68.334572;50;-137.689;12;0.304292345 68.279839;50;-138;12;0.225288325 68.275459;50;-138.025;12;0.114353012 68.229584;50;-138.23;12;0.763744512 68;50;-139.254;12;0.898645245 67.971397;50;-139.381;12;0.83088752 67.827652;50;-139.828;12;0.498523112 67.772125;50;-140;12;0.692968502 67.76416;50;-140.025;12;0.33705912 67.379349;50;-141.379;12;0.402273144 67.289948;50;-141.694;12;0.679085909 67.165367;50;-142;12;0.856788851 67.155411;50;-142.024;12;0.932758748 67.045891;50;-142.306;12;0.94342628 66.856369;50;-142.856;12;0.889553517 66.470337;50;-143.977;12;0.425607621 66.462837;50;-144;12;0.980670247 66.347794;50;-144.348;12;0.45341579 66;50;-145.399;12;0.592582642 65.932251;50;-145.604;12;0.824765107 65.847252;50;-145.847;12;0.30743668 65.804039;50;-145.971;12;0.92186819 65.791878;50;-146;12;0.944451654 65.263283;50;-147.263;12;0.474360342 65.076721;50;-147.709;12;0.818549493 64.957069;50;-148;12;0.950951036 64.94751;50;-148.023;12;0.348894561 64.581207;50;-148.581;12;0.40904992 64;50;-149.467;12;0.421185776 63.992073;50;-149.479;12;0.600987856 63.787506;50;-149.785;12;0.624754805 63.786373;50;-149.786;12;0.733803964 63.643421;50;-150;12;0.074732117 63.584705;50;-150.088;12;0.265745168 62.969383;50;-150.969;12;0.066500798 62.250088;50;-152;12;0.40253623 62.234901;50;-152.022;12;0.687795233 62.183788;50;-152.184;12;0.534187324 62;50;-152.766;12;0.815999654 61.704182;50;-153.704;12;0.989438446 61.694664;50;-153.734;12;0.365863118 61.632702;50;-154;12;0.967528432 61.627758;50;-154.021;12;0.901213672 61.700119;50;-154.307;12;0.954600852 61.900574;50;-155.474;12;0.277444642 62;50;-155.931;12;0.590654107 62.014881;50;-156;12;0.561581424 62.019009;50;-156.019;12;0.40723809 62.393085;50;-157.742;12;0.822600164 62.410324;50;-158;12;0.518254637 62.432907;50;-158.338;12;0.022918775 62.41671;50;-158.417;12;0.712591262 62.090881;50;-160;12;0.079503106 62.075371;50;-160.075;12;0.343783874 62;50;-160.442;12;0.070989714 61.943604;50;-160.716;12;0.76329694 61.20937;50;-161.209;12;0.3731572 60.086174;50;-161.965;12;0.298658677 60.016193;50;-162;12;0.059728289 60.00544;50;-162.005;12;0.717464116 60;50;-162.008;12;0.036364418 59.946346;50;-162.035;12;0.914224851 59.123856;50;-162.232;12;0.767531285 58.399628;50;-162.4;12;0.92023254 58.083965;50;-162.473;12;0.009633207 58;50;-162.495;12;0.762014595 57.94854;50;-162.508;12;0.253191433 57.706387;50;-162.569;12;0.152973012 56.723709;50;-162.724;12;0.310723295 56;50;-162.838;12;0.776599813 55.950691;50;-162.846;12;0.964860036 55.718613;50;-162.887;12;0.385728016 54.976639;50;-162.977;12;0.273247171 54;50;-163.095;12;0.875041324 53.952831;50;-163.101;12;0.672263451 53.730835;50;-163.134;12;0.739669085 53.187256;50;-163.187;12;0.303150043 52;50;-163.303;12;0.107902577 51.954983;50;-163.308;12;0.317159759 51.38451;50;-163.385;12;0.025021249 50.160709;50;-163.549;12;0.765806157 50.000004;50;-163.572;12;0.908902717 49.957222;50;-163.578;12;0.778418237 49.63147;50;-163.631;12;0.449012109 47.999996;50;-163.898;12;0.368784383 47.912449;50;-163.912;12;0.003142869 47.449406;50;-163.988;12;0.309342818 47.374512;50;-164;12;0.930535138 47.286404;50;-164.014;12;0.945323297 47.073181;50;-164.049;12;0.4151253 46.187717;50;-164.188;12;0.123616501 46;50;-164.217;12;0.454191269 45.961823;50;-164.223;12;0.132753226 44.454456;50;-164.454;12;0.008035598 44.134766;50;-164.504;12;0.429317454 44;50;-164.526;12;0.491471006 43.96413;50;-164.532;12;0.421409357 42.680443;50;-164.68;12;0.789157887 42.126263;50;-164.744;12;0.867055989 42;50;-164.759;12;0.399718713 41.966389;50;-164.763;12;0.636617672 41.808159;50;-164.767;12;0.63469253 40.793873;50;-164.794;12;0.600134156 40;50;-164.815;12;0.187234604 39.968536;50;-164.816;12;0.335838798 39.820354;50;-164.803;12;0.417919558 38.739754;50;-164.74;12;0.463777418 38;50;-164.697;12;0.06112815 37.970573;50;-164.695;12;0.899243008 37.831978;50;-164.674;12;0.048456879 36.524429;50;-164.524;12;0.495591001 36;50;-164.465;12;0.002182559 35.972549;50;-164.461;12;0.006370767 34.200527;50;-164.201;12;0.540737964 34;50;-164.171;12;0.907287355 32.838478;50;-164;12;0.980729736 32.201763;50;-163.906;12;0.022058959 32;50;-163.877;12;0.810568023 31.976402;50;-163.874;12;0.656617575 31.866106;50;-163.866;12;0.043722369 31.865259;50;-163.866;12;0.556781889 30;50;-163.751;12;0.475821107 29.978373;50;-163.749;12;0.023914938 29.755362;50;-163.755;12;0.174873594 28.073677;50;-163.802;12;0.981231625 28;50;-163.806;12;0.58187681 27.980375;50;-163.807;12;0.03084618 27.928373;50;-163.81;12;0.558229891 27.821638;50;-163.822;12;0.713459845 26.11923;50;-164;12;0.109555624 26.019018;50;-164.01;12;0.035472369 26.01153;50;-164.012;12;0.299175419 26;50;-164.013;12;0.198915306 25.899376;50;-164.027;12;0.841411327 24.286156;50;-164.286;12;0.572721867 23.999998;50;-164.332;12;0.643744067 23.984346;50;-164.335;12;0.054459182 23.910612;50;-164.349;12;0.559770106 22.626738;50;-164.627;12;0.213143113 22;50;-164.762;12;0.446114615 21.986269;50;-164.765;12;0.544744803 21.92157;50;-164.779;12;0.098394754 20.986404;50;-164.986;12;0.020566027 20;50;-165.206;12;0.523087724 19.988094;50;-165.208;12;0.606575573 19.931976;50;-165.219;12;0.260712711 19.336388;50;-165.336;12;0.648529667 18;50;-165.601;12;0.461997449 17.989799;50;-165.603;12;0.595411908 17.941692;50;-165.612;12;0.657742953 17.668821;50;-165.669;12;0.090635157 16.08728;50;-166;12;0.524272034 16.077465;50;-166.002;12;0.199668968 16.02083;50;-166.021;12;0.819919911 16;50;-166.028;12;0.130935932 14.51876;50;-166.519;12;0.777687441 14.026485;50;-166.682;12;0.927960798 14;50;-166.689;12;0.012874433 13.992936;50;-166.691;12;0.17749227 13.959614;50;-166.705;12;0.267690745 13.127373;50;-167.127;12;0.922515302 11.999999;50;-167.699;12;0.233600523 11.800381;50;-167.8;12;0.950420036 11.419013;50;-167.994;12;0.637869707 11.407634;50;-168;12;0.416690326 11.404305;50;-168.002;12;0.100318934 10.617688;50;-168.618;12;0.735410548 10.003761;50;-169.098;12;0.08733704 10;50;-169.101;12;0.848592118 9.977064;50;-169.118;12;0.882203341 9.516372;50;-169.516;12;0.105153152 8.956831;50;-170;12;0.565460835 8.955403;50;-170.001;12;0.062121418 8.502936;50;-170.503;12;0.892707338 8;50;-171.061;12;0.405605741 7.554535;50;-171.555;12;0.165716235 7.162239;50;-171.99;12;0.503390717 7.152157;50;-172;12;0.933086966 7.150355;50;-172.002;12;0.72000401 6.563252;50;-172.563;12;0.781164107 6;50;-173.102;12;0.145294737 5.9982;50;-173.104;12;0.316449758 5.989698;50;-173.11;12;0.670330594 5.480707;50;-173.481;12;0.428258569 4.768698;50;-173.999;12;0.115077886 4.767548;50;-174;12;0.815581852 4.249897;50;-174.25;12;0.357150519 4;50;-174.371;12;0.466455582 2.901052;50;-174.901;12;0.36289769 2.001931;50;-175.335;12;0.568377265 2;50;-175.336;12;0.578295274 1.999484;50;-175.336;12;0.108641854 1.997041;50;-175.338;12;0.424463782 1.996151;50;-175.338;12;0.528688983 1.586601;50;-175.587;12;0.177410387 0.904703;50;-176;12;0.386641882 0.26001;50;-176.26;12;0.293046135 -0.000168;50;-176.365;12;0.395796686 -0.000156;50;-100.22;12;0.214230981 0.000745;50;-100.22;12;0.514676268 0.041218;50;-100.257;12;0.469039829 1.933152;50;-102;12;0.074557002 1.999431;50;-102.119;12;0.860732289 2;50;-102.12;12;0.235151423 3.754417;50;-104;12;0.173403014 3.754797;50;-104;12;0.790101514 3.518862;50;-104.48;12;0.612986398 3.107073;50;-105.107;12;0.617042581 2.520298;50;-106;12;0.7725048 2.520099;50;-106;12;0.764694143 2.216734;50;-106.164;12;0.058054686 2.192895;50;-106.193;12;0.19447874 2.003541;50;-106.423;12;0.226429784 2;50;-106.425;12;0.684572696 1.999054;50;-106.426;12;0.802858771 1.771422;50;-106.6;12;0.961920604 1.109676;50;-107.11;12;0.491445447 0;50;-107.964;12;0.979515752 214;50;-130.108;12;0.645144463 213.679367;50;-130;12;0.772260633 212;50;-129.435;12;0.346010867 210.578201;50;-128.578;12;0.60157231 210;50;-128.23;12;0.838095588 209.61821;50;-128;12;0.880831668 209.036514;50;-127.037;12;0.809613924 208.410736;50;-126;12;0.867468256 208.298965;50;-124.299;12;0.589161522 208.293976;50;-124.223;12;0.795484316 208.334671;50;-124;12;0.648092741 208.479843;50;-122.48;12;0.042920478 208.525665;50;-122;12;0.087402897 208.66687;50;-120.667;12;0.471922813 208.735825;50;-120;12;0.848727241 208.766083;50;-118.766;12;0.749585198 208.784866;50;-118;12;0.399912854 208.750259;50;-116.75;12;0.859255837 208.768616;50;-116;12;0.618818424 208.507248;50;-114.507;12;0.459696387 208.517258;50;-114;12;0.572430184 208.34375;50;-112.344;12;0.707191945 208.307739;50;-112;12;0.804059773 209.341995;50;-111.342;12;0.551339732 210;50;-110.923;12;0.908074419 210.970428;50;-110.97;12;0.854845271 212;50;-111.02;12;0.784240568 213.642471;50;-111.642;12;0.153600569 214;50;-111.778;12;0.242241611 214.405716;50;-112;12;0.628109403 216;50;-112.873;12;0.796248678 217.632263;50;-114;12;0.980343109 218;50;-114.254;12;0.006932366 218.144043;50;-114.353;12;0.742359829 218.503876;50;-114.504;12;0.210279921 220;50;-115.129;12;0.270756469 221.647156;50;-116;12;0.895456707 222;50;-116.187;12;0.003400742 222.548874;50;-116.549;12;0.40590809 224;50;-117.507;12;0.770939593 224.746826;50;-118;12;0.807992042 225.999985;50;-119.247;12;0.611503637 226.756439;50;-120;12;0.802521942 227.302338;50;-121.302;12;0.156508278 227.594772;50;-122;12;0.837689923 227.594208;50;-123.594;12;0.791901128 227.594055;50;-124;12;0.382250076 227.121552;50;-125.122;12;0.152006003 226.751465;50;-126;12;0.984940331 226.342072;50;-126.342;12;0.588484799 225.999985;50;-126.628;12;0.856691739 225.252533;50;-127.253;12;0.064438869 224.358032;50;-128;12;0.612898402 224.162979;50;-128.163;12;0.629618601 224;50;-128.299;12;0.208183911 222.821167;50;-128.821;12;0.636150778 222;50;-129.185;12;0.577617194 221.396484;50;-129.396;12;0.130030589 220;50;-129.886;12;0.857363667 219.915878;50;-129.916;12;0.491330724 219.676071;50;-130;12;0.45758084 218.193665;50;-130.194;12;0.924618716 218;50;-130.219;12;0.590923507 217.585571;50;-130.153;12;0.845679597 216.341248;50;-130.341;12;0.256092817 216;50;-130.393;12;0.933731779 214.125885;50;-130.126;12;0.480061137 298;36;-153.998;13;0.115038118 297.997162;36;-153.997;13;0.189117603 296;36;-153.581;13;0.184045525 295.572296;36;-153.572;13;0.434305012 294;36;-153.539;13;0.413228659 293.549103;36;-153.549;13;0.796442769 292;36;-153.582;13;0.84621618 291.627289;36;-153.627;13;0.055610453 290;36;-153.824;13;0.296107267 289.835846;36;-153.836;13;0.443797568 288;36;-153.97;13;0.730252929 287.970795;36;-153.971;13;0.745687956 286;36;-153.997;13;0.163009653 285.996796;36;-153.997;13;0.650621853 285.953217;36;-153.992;13;0.266023503 284;36;-153.628;13;0.744696733 283.606934;36;-153.607;13;0.635776215 282;36;-153.519;13;0.587720758 281.599976;36;-153.6;13;0.31427383 280;36;-153.924;13;0.802969396 279.936401;36;-153.936;13;0.668066751 279.621857;36;-154;13;0.620360824 278.419983;36;-154.42;13;0.312859849 278;36;-154.567;13;0.513467013 276.937897;36;-154.938;13;0.925920794 276;36;-155.266;13;0.338298057 275.539368;36;-155.539;13;0.994682416 274.764191;36;-156;13;0.878705101 274.298279;36;-156.298;13;0.960729509 274;36;-156.489;13;0.982440509 273.078888;36;-157.079;13;0.615167067 272;36;-157.77;13;0.837149475 271.844971;36;-157.845;13;0.190565362 271.526154;36;-158;13;0.921191435 270.499329;36;-158.499;13;0.632358559 270;36;-158.742;13;0.635041098 268.995056;36;-158.995;13;0.622051448 268;36;-159.245;13;0.569698104 267.309906;36;-159.31;13;0.778112232 266;36;-159.432;13;0.214908046 265.441162;36;-159.441;13;0.508974093 264;36;-159.464;13;0.812420945 263.423492;36;-159.423;13;0.59457481 262;36;-159.324;13;0.468219663 261.080536;36;-159.081;13;0.049741158 260;36;-158.795;13;0.572517634 258.941071;36;-158;13;0.44121643 258;36;-157.294;13;0.854802339 257.162628;36;-156;13;0.591898261 257.108337;36;-155.108;13;0.596336471 257.040863;36;-154;13;0.198660434 257.515015;36;-153.515;13;0.906485807 258;36;-153.019;13;0.76130687 258.52655;36;-152.527;13;0.920419476 259.089569;36;-152;13;0.425889708 259.560028;36;-151.56;13;0.125068027 260;36;-151.149;13;0.981743113 260.65506;36;-150.655;13;0.547280898 261.524597;36;-150;13;0.873332958 261.795746;36;-149.796;13;0.392968068 262;36;-149.642;13;0.962064701 262.93457;36;-148.935;13;0.225007074 264;36;-148.128;13;0.937235644 264.072876;36;-148.073;13;0.009476758 264.145355;36;-148.018;13;0.855891801 264.164764;36;-148;13;0.771117335 265.120392;36;-147.12;13;0.183102179 266;36;-146.311;13;0.996990377 266.074677;36;-146.075;13;0.635548541 266.098297;36;-146;13;0.293110013 266.555298;36;-144.555;13;0.4329088 266.730927;36;-144;13;0.687917402 266;36;-142.503;13;0.155835569 265.319153;36;-142;13;0.850559772 264;36;-141.026;13;0.726965905 262.212219;36;-140.212;13;0.347863488 262;36;-140.116;13;0.374653898 261.698792;36;-140;13;0.427488789 260.324005;36;-139.472;13;0.238551826 260;36;-139.327;13;0.919209524 258.779388;36;-138.779;13;0.934140388 258;36;-138.457;13;0.276968992 257.676025;36;-138.324;13;0.011688926 257.039063;36;-138;13;0.395738524 256.396973;36;-137.675;13;0.456481718 256;36;-137.435;13;0.165144478 254.315048;36;-136.315;13;0.025611748 254;36;-136.106;13;0.419385702 253.841049;36;-136;13;0.901490699 252;36;-134.744;13;0.478880001 251.51506;36;-134.371;13;0.744221722 251.121414;36;-134;13;0.733478836 250;36;-133.306;13;0.726866674 248.370621;36;-132;13;0.607413722 248;36;-131.703;13;0.885825937 247.063828;36;-131.064;13;0.736595628 246;36;-130.338;13;0.098454257 245.463623;36;-130;13;0.626427487 244;36;-129.079;13;0.305294739 242.453949;36;-128;13;0.827784879 242;36;-127.682;13;0.961135602 240.932602;36;-126.933;13;0.38068572 240;36;-126.278;13;0.052567562 239.60466;36;-126;13;0.875056664 238;36;-124.922;13;0.909021411 236.777206;36;-124;13;0.05525759 236;36;-123.183;13;0.779686638 234.873703;36;-122;13;0.427676227 234.691559;36;-120.692;13;0.834430963 234.669281;36;-120.532;13;0.243748973 234.555191;36;-120;13;0.273107889 235.049622;36;-119.05;13;0.870857974 235.595642;36;-118;13;0.329178389 235.734024;36;-117.734;13;0.308119815 236;36;-117.223;13;0.042082627 236.563507;36;-116.563;13;0.561171139 237.045166;36;-116;13;0.125981943 237.554703;36;-115.555;13;0.109551359 238;36;-115.166;13;0.59988428 238.621964;36;-114.622;13;0.347933116 239.333649;36;-114;13;0.409557772 239.71463;36;-113.715;13;0.211546491 240;36;-113.501;13;0.679790659 240.858109;36;-112.858;13;0.164379626 242;36;-112.003;13;0.210488521 242.001587;36;-112.002;13;0.63222645 242.003708;36;-112;13;0.390625165 243.035309;36;-111.035;13;0.211919538 244;36;-110.133;13;0.982861827 244.068832;36;-110.069;13;0.287116816 244.142441;36;-110;13;0.382032723 244.946762;36;-108.947;13;0.60393187 245.669769;36;-108;13;0.728489504 245.812759;36;-107.813;13;0.496498031 246;36;-107.568;13;0.363304023 246.549194;36;-106.549;13;0.774950686 246.845367;36;-106;13;0.860975329 247.11467;36;-105.115;13;0.677466328 247.453751;36;-104;13;0.629350925 247.477554;36;-103.478;13;0.092254172 247.544846;36;-102;13;0.979279016 247.469742;36;-101.47;13;0.643754199 247.261566;36;-100;13;0.047413426 246.690628;36;-98.6906;13;0.889423625 246.389496;36;-98;13;0.002307954 246;36;-97.1068;13;0.279595657 245.413162;36;-96;13;0.901431399 244;36;-94.1999;13;0.108245017 243.843048;36;-94;13;0.138302964 242;36;-92.1992;13;0.910105424 241.75264;36;-92;13;0.738555234 240;36;-90.5888;13;0.315746597 239.561188;36;-90;13;0.097730804 238.488174;36;-88.5603;13;0.048516553 238.37146;36;-88.3715;13;0.415430602 238.141861;36;-88;13;0.481298099 238.261353;36;-86.2614;13;0.163951158 238.279312;36;-86;13;0.552110526 238.787018;36;-84.787;13;0.411732386 239.116425;36;-84;13;0.384490948 239.377121;36;-83.3771;13;0.756521666 239.953522;36;-82;13;0.280463434 239.934982;36;-81.935;13;0.985063131 239.383102;36;-80;13;0.06760833 238;36;-78.8994;13;0.754484979 236.55249;36;-78;13;0.753411221 236;36;-77.6567;13;0.681099611 235.449173;36;-77.4492;13;0.486870567 234.000015;36;-76.9032;13;0.03495224 232.502426;36;-76.5024;13;0.014620341 232;36;-76.368;13;0.58429994 230.624695;36;-76.2754;13;0.300840609 230.233429;36;-76.2334;13;0.061397021 230;36;-76.2084;13;0.066939995 228.196213;36;-76.1962;13;0.126807698 228;36;-76.1949;13;0.838857141 226.400696;36;-76.4007;13;0.571462084 225.999985;36;-76.4523;13;0.2438538 224.705353;36;-76.7054;13;0.104374014 224;36;-76.8432;13;0.800888779 223.062119;36;-77.0621;13;0.946806776 222;36;-77.31;13;0.593371264 221.45607;36;-77.4561;13;0.413982366 220;36;-77.8471;13;0.279313055 219.875717;36;-77.8757;13;0.254857877 219.335251;36;-78;13;0.687799947 218.294128;36;-78.2941;13;0.750044249 218;36;-78.3772;13;0.014885879 216.724762;36;-78.7248;13;0.181349774 216;36;-78.9223;13;0.179633053 215.176254;36;-79.1763;13;0.697810351 214;36;-79.5389;13;0.723882901 213.699265;36;-79.6993;13;0.114344174 213.135178;36;-80;13;0.167438799 212.394745;36;-80.3947;13;0.519914495 212;36;-80.6052;13;0.765069079 211.09021;36;-81.0902;13;0.756549503 210.954285;36;-81.1627;13;0.741453179 210.164673;36;-82;13;0.848773001 210.084747;36;-82.0848;13;0.769839837 210;36;-82.1746;13;0.056904235 209.813873;36;-82.372;13;0.501690544 209.145523;36;-83.1455;13;0.948561878 208.407196;36;-84;13;0.317323335 208.251678;36;-84.2517;13;0.230592704 208;36;-84.659;13;0.012121785 207.487839;36;-85.4878;13;0.013909861 207.171371;36;-86;13;0.1960963 206.657669;36;-86.6577;13;0.565519792 206;36;-87.4997;13;0.782894366 205.776703;36;-87.7767;13;0.739428962 205.596725;36;-88;13;0.851129028 204.884109;36;-88.8841;13;0.451668821 204;36;-89.981;13;0.657734446 203.991501;36;-89.9915;13;0.059983399 203.98465;36;-90;13;0.348243457 203.18544;36;-91.1854;13;0.102805111 202.636292;36;-92;13;0.302362226 202.380066;36;-92.3801;13;0.12326029 202;36;-92.9438;13;0.517778594 201.63623;36;-93.6362;13;0.857579042 201.445114;36;-94;13;0.397344526 201.102554;36;-95.1025;13;0.103818547 200.823715;36;-96;13;0.013621941 200.672989;36;-96.673;13;0.614977764 200.375763;36;-98;13;0.363252991 200.307632;36;-98.3076;13;0.222486945 200.000015;36;-99.6963;13;0.227535122 199.944946;36;-99.9449;13;0.638071199 199.932755;36;-100;13;0.646455787 199.797516;36;-101.797;13;0.546404231 199.782272;36;-102;13;0.89685742 200.000015;36;-102.649;13;0.518781137 200.453568;36;-104;13;0.927806337 202;36;-105.933;13;0.136284667 202.068558;36;-106;13;0.74496918 204;36;-107.874;13;0.490930767 204.106201;36;-108;13;0.423694744 204.662598;36;-108.663;13;0.973700382 205.185898;36;-109.286;13;0.079353601 205.751251;36;-110;13;0.641026144 206;36;-110.314;13;0.290641981 206.994232;36;-112;13;0.104368488 208;36;-113.871;13;0.185599328 208.069229;36;-114;13;0.958277027 208.102585;36;-114.103;13;0.577514253 208.719406;36;-116;13;0.663816763 208.79451;36;-116.795;13;0.65080905 208.908478;36;-118;13;0.098117572 208.73613;36;-118.736;13;0.455289369 208.440216;36;-120;13;0.599224619 208.276108;36;-120.276;13;0.311467691 208;36;-120.741;13;0.283981395 207.530533;36;-121.531;13;0.073816059 207.251511;36;-122;13;0.938920196 206.632095;36;-122.632;13;0.07446772 206;36;-123.277;13;0.352532169 205.641541;36;-123.642;13;0.196101476 205.28894;36;-124;13;0.591883383 204.64978;36;-124.65;13;0.841086795 204;36;-125.31;13;0.267306675 203.65802;36;-125.658;13;0.878449221 203.321625;36;-126;13;0.870177029 202.709183;36;-126.709;13;0.834048595 202;36;-127.53;13;0.366884999 201.802872;36;-127.803;13;0.800735971 201.660263;36;-128;13;0.08055331 200.963364;36;-128.963;13;0.973496457 200.213455;36;-130;13;0.978810092 200.145248;36;-130.145;13;0.569821749 200.000015;36;-130.455;13;0.548896216 199.50618;36;-131.506;13;0.776108757 199.274277;36;-132;13;0.419213829 199.036163;36;-133.036;13;0.671664517 198.814667;36;-134;13;0.107445126 198.629654;36;-134.63;13;0.253876069 198.22699;36;-136;13;0.028138008 198.175446;36;-136.175;13;0.901931271 198;36;-136.772;13;0.945971756 197.721222;36;-137.721;13;0.551395803 197.639313;36;-138;13;0.633316199 197.032974;36;-139.033;13;0.449973515 196.465363;36;-140;13;0.12294435 196.293243;36;-140.293;13;0.010289563 196;36;-140.793;13;0.554371794 195.553497;36;-141.553;13;0.37824706 195.291412;36;-142;13;0.371407009 194.668442;36;-142.668;13;0.520206343 194;36;-143.386;13;0.110907577 193.69339;36;-143.693;13;0.26836583 193.387909;36;-144;13;0.957918523 192.695236;36;-144.695;13;0.266026076 191.999985;36;-145.393;13;0.490299441 191.714279;36;-145.714;13;0.328063801 191.460175;36;-146;13;0.008618945 190.772827;36;-146.773;13;0.794754914 190;36;-147.642;13;0.686055054 189.889099;36;-147.889;13;0.005016637 189.839386;36;-148;13;0.738345897 189.269974;36;-149.27;13;0.068445263 188.942657;36;-150;13;0.40109048 188.941437;36;-150.941;13;0.926817971 188.940048;36;-152;13;0.5663141 189.253586;36;-153.254;13;0.756513003 189.440277;36;-154;13;0.612605369 189.860855;36;-155.861;13;0.774267029 189.892303;36;-156;13;0.702211559 189.583115;36;-157.583;13;0.449230085 189.501694;36;-158;13;0.968797862 188.375443;36;-158.375;13;0.979106992 188;36;-158.501;13;0.031486709 186.524139;36;-158.524;13;0.811231209 186;36;-158.533;13;0.769736826 185.999512;36;-158.532;13;0.811442458 184.274658;36;-158.275;13;0.672153248 184;36;-158.234;13;0.560070543 182.902893;36;-158;13;0.400568948 182.902313;36;-158;13;0.042640738 182.90036;36;-157.999;13;0.013426666 182;36;-157.767;13;0.54955865 181.686264;36;-157.686;13;0.205433726 180.004837;36;-157.253;13;0.461628859 180;36;-157.251;13;0.077276051 179.998703;36;-157.251;13;0.102757014 178.732712;36;-156.733;13;0.12954292 178.00766;36;-156.436;13;0.452220141 178;36;-156.433;13;0.987561303 177.997772;36;-156.432;13;0.205999054 177.011398;36;-156;13;0.628993374 176.010834;36;-155.562;13;0.822837565 176;36;-155.557;13;0.454338451 175.997025;36;-155.556;13;0.738502692 175.982895;36;-155.552;13;0.182224607 175.350586;36;-155.351;13;0.173158658 174.000015;36;-154.92;13;0.167607583 173.995987;36;-154.918;13;0.302620941 172.675919;36;-154.676;13;0.41204576 172.019394;36;-154.555;13;0.904319854 172;36;-154.552;13;0.770281853 171.994797;36;-154.551;13;0.740883211 171.970047;36;-154.551;13;0.309348308 170.532928;36;-154.533;13;0.247760639 170;36;-154.526;13;0.892728746 169.99353;36;-154.526;13;0.72000075 169.962769;36;-154.529;13;0.858954485 168.622803;36;-154.623;13;0.236589848 168;36;-154.666;13;0.791562074 167.992172;36;-154.667;13;0.738695359 167.954941;36;-154.675;13;0.865413815 166.880432;36;-154.88;13;0.784506413 166.000015;36;-155.049;13;0.261229868 165.990768;36;-155.051;13;0.898394013 165.946762;36;-155.063;13;0.711046982 165.248077;36;-155.248;13;0.172907931 164;36;-155.579;13;0.15992461 163.989258;36;-155.582;13;0.457662708 163.953644;36;-155.593;13;0.785582112 163.682175;36;-155.682;13;0.550043115 162.709915;36;-156;13;0.598056163 162.697311;36;-156.004;13;0.51923753 162.624573;36;-156.031;13;0.364689029 162.193237;36;-156.193;13;0.2833267 162;36;-156.266;13;0.151578746 160.741074;36;-156.741;13;0.893935533 160;36;-157.021;13;0.035873881 159.986145;36;-157.026;13;0.690567302 159.920212;36;-157.047;13;0.101616237 159.273941;36;-157.274;13;0.206140906 157.999985;36;-157.72;13;0.094832582 157.984482;36;-157.726;13;0.609183682 157.92926;36;-157.741;13;0.42874071 157.790649;36;-157.791;13;0.05139515 157.210999;36;-158;13;0.307274415 156.321304;36;-158.321;13;0.561241516 156.00325;36;-158.436;13;0.988504746 156;36;-158.437;13;0.296274494 155.900894;36;-158.463;13;0.91877196 154.825912;36;-158.826;13;0.317561771 154;36;-159.105;13;0.383366713 153.981033;36;-159.111;13;0.948029055 153.890793;36;-159.132;13;0.578872207 153.307068;36;-159.307;13;0.283928348 152;36;-159.698;13;0.362452006 151.767578;36;-159.768;13;0.151735413 151.029587;36;-159.988;13;0.727450241 150.974274;36;-160;13;0.24761145 150.169601;36;-160.17;13;0.473969094 150;36;-160.205;13;0.579856939 148.517761;36;-160.518;13;0.35275086 148;36;-160.627;13;0.352318651 146.865921;36;-160.866;13;0.702782469 146.345779;36;-160.976;13;0.824130061 146.036209;36;-161.055;13;0.890209677 146;36;-161.062;13;0.89809438 145.9104;36;-161.081;13;0.51733367 145.120102;36;-161.12;13;0.175069296 144;36;-161.176;13;0.420671324 143.971344;36;-161.177;13;0.848815906 143.834747;36;-161.187;13;0.503522242 143.200714;36;-161.201;13;0.897888812 142;36;-161.227;13;0.638446273 141.969162;36;-161.228;13;0.266852763 141.822174;36;-161.23;13;0.973818672 141.236145;36;-161.236;13;0.350561596 140;36;-161.25;13;0.643990867 139.966949;36;-161.25;13;0.015314213 139.809448;36;-161.25;13;0.885749214 139.261917;36;-161.262;13;0.440098596 138;36;-161.289;13;0.688010357 137.964752;36;-161.29;13;0.119723983 137.796722;36;-161.285;13;0.534290118 137.297043;36;-161.297;13;0.554260101 136;36;-161.327;13;0.751189665 135.962555;36;-161.328;13;0.629520362 135.784042;36;-161.325;13;0.848205201 135.34642;36;-161.346;13;0.985637663 134;36;-161.411;13;0.462417766 133.960388;36;-161.413;13;0.636869228 133.771606;36;-161.417;13;0.139909962 133.44194;36;-161.442;13;0.631880068 132;36;-161.552;13;0.124717244 131.958282;36;-161.555;13;0.932021537 131.759521;36;-161.571;13;0.246818051 131.592133;36;-161.592;13;0.079377467 130;36;-161.791;13;0.231130177 129.956268;36;-161.797;13;0.544076061 129.815323;36;-161.815;13;0.5700519 129.431152;36;-161.865;13;0.218265365 128.62175;36;-162;13;0.138676654 128.526459;36;-162.016;13;0.077467832 128.081955;36;-162.082;13;0.610345732 128;36;-162.094;13;0.265012035 127.954353;36;-162.101;13;0.723661021 126.893326;36;-162.262;13;0.560013405 126.345329;36;-162.345;13;0.127508294 126;36;-162.398;13;0.137173641 125.952484;36;-162.405;13;0.540112167 124.583054;36;-162.583;13;0.408387623 124.288521;36;-162.621;13;0.795060431 124.01107;36;-162.659;13;0.799773816 124;36;-162.661;13;0.535153269 123.71582;36;-162.705;13;0.834112025 122.802315;36;-162.802;13;0.302549152 122;36;-162.887;13;0.308799931 121.948875;36;-162.893;13;0.08446928 121.705597;36;-162.935;13;0.085752646 121.029305;36;-163.029;13;0.595921496 120;36;-163.172;13;0.235548765 119.947205;36;-163.18;13;0.848925576 119.696136;36;-163.237;13;0.558493374 119.302803;36;-163.303;13;0.946379069 118;36;-163.522;13;0.908489959 117.945679;36;-163.531;13;0.868485597 117.631714;36;-163.632;13;0.606441741 117.624146;36;-163.634;13;0.579863417 116.136124;36;-164;13;0.977607747 116.026863;36;-164.027;13;0.148854903 116;36;-164.033;13;0.109098762 115.879822;36;-164.063;13;0.145873456 114.507256;36;-164.507;13;0.438081827 114.145859;36;-164.624;13;0.350323669 114;36;-164.694;13;0.315936133 113.943329;36;-164.721;13;0.337679623 112.993713;36;-164.994;13;0.055526188 112.215065;36;-165.218;13;0.697538723 112;36;-165.336;13;0.829073142 111.942375;36;-165.367;13;0.746358122 111.511559;36;-165.512;13;0.257937558 110.052017;36;-166;13;0.239224135 110.013039;36;-166.013;13;0.531390067 110;36;-166.017;13;0.441216878 109.990677;36;-166.021;13;0.506891642 109.941589;36;-166.074;13;0.180419002 109.69622;36;-166.266;13;0.747849012 109.867134;36;-166.021;13;0.605301802 109.880257;36;-166;13;0.506799798 109.910759;36;-165.952;13;0.298357495 109.913315;36;-165.913;13;0.423798937 109.941071;36;-165.491;13;0.62400612 110;36;-165.415;13;0.154031475 110.616806;36;-164.617;13;0.736651523 110.702637;36;-164.506;13;0.328681738 110.052795;36;-164.053;13;0.064071002 110.007385;36;-164.021;13;0.879028263 110.004875;36;-164.005;13;0.911807412 110.00412;36;-164;13;0.268120451 110;36;-163.973;13;0.861686023 109.986267;36;-163.884;13;0.309071473 110;36;-163.082;13;0.237952611 110.01815;36;-162.022;13;0.488374238 110.018135;36;-162.018;13;0.634705029 110.018044;36;-162;13;0.139123763 110.013947;36;-161.17;13;0.998416113 110.343826;36;-160.344;13;0.528355203 110.353317;36;-160.32;13;0.830341592 110.407608;36;-160.021;13;0.810217414 110.412338;36;-160;13;0.41220317 110.474968;36;-159.723;13;0.477427506 110.587837;36;-158.588;13;0.652801309 110.644058;36;-158.023;13;0.178058275 110.648735;36;-158;13;0.213027495 110.880295;36;-156.88;13;0.994931942 110.993713;36;-156.332;13;0.815881698 111.071884;36;-156.023;13;0.48227784 111.07634;36;-156;13;0.890266606 111.132141;36;-155.713;13;0.797339677 111.226402;36;-155.226;13;0.314252912 111.459618;36;-154.023;13;0.418830691 111.457199;36;-154;13;0.728248099 111.394394;36;-153.394;13;0.818837849 111.285294;36;-152.342;13;0.558193861 111.229782;36;-152.024;13;0.178355594 111.216774;36;-152;13;0.545288617 110.266182;36;-150.266;13;0.99487173 110.120247;36;-150;13;0.435801415 110.095459;36;-149.955;13;0.552353964 110;36;-149.802;13;0.412981593 109.891083;36;-149.627;13;0.646130979 109.59816;36;-149.148;13;0.806056973 108.852875;36;-148;13;0.059217981 108.772003;36;-147.875;13;0.942221508 108;36;-146.015;13;0.459146463 107.99369;36;-146;13;0.781183472 107.98922;36;-145.989;13;0.045563009 107.927567;36;-145.841;13;0.140587984 107.854691;36;-145.65;13;0.900343813 107.777489;36;-145.306;13;0.45695939 107.458481;36;-144.026;13;0.299232347 107.454697;36;-144;13;0.595716663 107.360703;36;-143.361;13;0.774617122 107.215797;36;-142.375;13;0.247289581 107.17437;36;-142.026;13;0.392020472 107.171638;36;-142;13;0.659624392 107.074089;36;-141.074;13;0.013637869 107.000671;36;-140.377;13;0.666271619 106.965027;36;-140.026;13;0.06528931 106.962425;36;-140;13;0.302178224 106.847328;36;-138.847;13;0.223141448 106.800514;36;-138.378;13;0.038541523 106.767159;36;-138.026;13;0.895597254 106.766624;36;-138;13;0.777021958 106.740784;36;-136.741;13;0.58169217 106.733345;36;-136.379;13;0.426131416 106.74086;36;-136.026;13;0.047954486 106.74575;36;-136;13;0.979728853 106.94326;36;-134.943;13;0.181935463 107.049187;36;-134.377;13;0.874151123 107.14267;36;-134.026;13;0.565399667 107.152122;36;-134;13;0.038503581 107.378479;36;-133.378;13;0.467440268 107.744873;36;-132.372;13;0.263324387 107.904495;36;-132.026;13;0.713042561 107.916496;36;-132;13;0.350199029 107.9431;36;-131.943;13;0.284065317 108;36;-131.821;13;0.274045271 108.065849;36;-131.681;13;0.609661363 108.558525;36;-130.559;13;0.715562767 108.792664;36;-130.025;13;0.987147777 108.804909;36;-130;13;0.779202526 109.194901;36;-129.195;13;0.226369403 109.750893;36;-128.047;13;0.14527109 109.773216;36;-128;13;0.610083388 109.846153;36;-127.846;13;0.78232542 109.92968;36;-127.67;13;0.072223939 110;36;-127.549;13;0.794923173 110.097931;36;-127.38;13;0.184325065 110.577797;36;-126.578;13;0.423418551 110.908829;36;-126.024;13;0.212848 110.930046;36;-126;13;0.374232067 111.193504;36;-125.699;13;0.44616694 111.426292;36;-125.426;13;0.725603696 112;36;-124.753;13;0.088595288 112.054489;36;-124.69;13;0.244653059 112.251083;36;-124.492;13;0.317798506 112.367287;36;-124.367;13;0.43519964 112.710464;36;-124;13;0.653358716 113.333351;36;-123.333;13;0.788002485 114;36;-122.62;13;0.547616045 114.299416;36;-122.299;13;0.487834457 114.45092;36;-122.137;13;0.503461101 114.552429;36;-122;13;0.366248266 114.759125;36;-121.721;13;0.75382457 115.150726;36;-121.151;13;0.434737602 115.926712;36;-120.022;13;0.465750948 115.931114;36;-120;13;0.602938716 115.942726;36;-119.943;13;0.762461551 116;36;-119.66;13;0.543036901 116.274338;36;-118.307;13;0.813580325 116.279495;36;-118.279;13;0.623366693 116.327118;36;-118.021;13;0.315694569 116.325027;36;-118;13;0.040616923 116.156837;36;-116.301;13;0.646229835 116.125961;36;-116.126;13;0.628033244 116.107422;36;-116.021;13;0.301541474 116.096992;36;-116;13;0.449038987 116;36;-115.807;13;0.870633225 115.96701;36;-115.741;13;0.194236269 115.185005;36;-114.021;13;0.495409117 115.169762;36;-114;13;0.016769477 114.979736;36;-113.744;13;0.360142459 114;36;-112.382;13;0.985094857 113.740105;36;-112.02;13;0.341812138 113.724861;36;-112;13;0.678049579 112.903313;36;-110.903;13;0.733154741 112.445465;36;-110.292;13;0.799514063 112.234352;36;-110.006;13;0.684877907 112.226509;36;-110;13;0.845677749 112;36;-109.821;13;0.99674939 111.962914;36;-109.792;13;0.921025075 111.045135;36;-109.045;13;0.650009286 110;36;-108.194;13;0.902302704 109.839272;36;-108.064;13;0.525755932 109.715248;36;-108;13;0.873374893 109.568275;36;-107.925;13;0.741608484 108;36;-107.077;13;0.721318489 107.942642;36;-107.046;13;0.910650352 107.670692;36;-106.943;13;0.944004365 106.410652;36;-106.411;13;0.264123396 106;36;-106.237;13;0.515840493 105.94236;36;-106.213;13;0.580478932 105.403397;36;-106.02;13;0.196845013 105.345551;36;-106;13;0.381428513 104;36;-105.528;13;0.245200132 103.942101;36;-105.508;13;0.840043434 103.667694;36;-105.425;13;0.287158079 103.307671;36;-105.308;13;0.346848631 102;36;-104.882;13;0.176099505 101.941917;36;-104.863;13;0.176338147 101.666809;36;-104.767;13;0.774217986 100.291397;36;-104.291;13;0.081011054 100.000008;36;-104.191;13;0.91518594 99.941925;36;-104.171;13;0.922836903 99.476929;36;-104;13;0.365523751 99.368149;36;-103.96;13;0.756930915 98;36;-103.419;13;0.884930369 97.942146;36;-103.396;13;0.26272788 97.668358;36;-103.3;13;0.933102347 97.117622;36;-103.118;13;0.719910443 95.999992;36;-102.747;13;0.592667516 95.94239;36;-102.728;13;0.943921057 95.669838;36;-102.645;13;0.169243183 94.23716;36;-102.237;13;0.024649786 94;36;-102.17;13;0.245709792 93.703209;36;-102.085;13;0.196782795 93.451378;36;-102.02;13;0.352057308 93.38456;36;-102;13;0.692706678 92;36;-101.583;13;0.898340247 91.962204;36;-101.572;13;0.20321448 91.674179;36;-101.478;13;0.351349304 91.400276;36;-101.4;13;0.973102329 90;36;-101.002;13;0.563020344 89.943665;36;-100.985;13;0.439144418 89.677284;36;-100.922;13;0.299624386 88.708069;36;-100.708;13;0.138759384 88;36;-100.552;13;0.541837212 87.944191;36;-100.539;13;0.128554274 87.680229;36;-100.499;13;0.528023177 86.381012;36;-100.381;13;0.92512398 86;36;-100.347;13;0.011663449 85.944542;36;-100.342;13;0.900101338 85.682053;36;-100.345;13;0.101240612 84.462486;36;-100.462;13;0.412096434 84;36;-100.507;13;0.27393162 83.944588;36;-100.512;13;0.05793525 83.682083;36;-100.563;13;0.828162593 82.820366;36;-100.82;13;0.281643882 82;36;-101.066;13;0.425840212 81.944283;36;-101.082;13;0.127894771 81.621208;36;-101.223;13;0.028204305 81.357803;36;-101.358;13;0.8530454 80.107124;36;-102;13;0.923948871 80.068581;36;-102.02;13;0.335216565 80.040993;36;-102.041;13;0.98454622 80;36;-102.073;13;0.397094612 78.910133;36;-102.91;13;0.512721691 78.153984;36;-103.491;13;0.071354164 78;36;-103.588;13;0.906730361 77.94252;36;-103.624;13;0.638592902 77.768257;36;-103.763;13;0.992144743 77.765755;36;-103.766;13;0.517573802 77.526192;36;-104;13;0.292758829 76.754539;36;-104.755;13;0.113205685 76;36;-105.492;13;0.287655856 75.745071;36;-105.742;13;0.38572437 75.743217;36;-105.743;13;0.204359568 75.446892;36;-106;13;0.47130272 75.364273;36;-106.072;13;0.523248192 74.739395;36;-106.739;13;0.877468631 74;36;-107.53;13;0.890386274 73.939964;36;-107.594;13;0.194515888 73.776741;36;-107.777;13;0.793331196 73.732292;36;-107.827;13;0.792432123 73.584076;36;-108;13;0.420113072 72.854095;36;-108.854;13;0.739771726 72.104042;36;-109.732;13;0.250980364 72;36;-109.86;13;0.719179817 71.937347;36;-109.937;13;0.568225248 71.886574;36;-110;13;0.888985883 71.86911;36;-110.022;13;0.763284126 71.648277;36;-110.313;13;0.294354706 71.050545;36;-111.051;13;0.818740817 70.281364;36;-112;13;0.278910931 70.155441;36;-112.155;13;0.154383441 70;36;-112.347;13;0.574585889 69.850632;36;-112.532;13;0.244305807 69.594933;36;-112.828;13;0.002108455 69.228447;36;-113.228;13;0.039113094 68.522835;36;-114;13;0.029300508 68.502647;36;-114.022;13;0.905087442 68.262589;36;-114.263;13;0.176451714 68;36;-114.526;13;0.801345031 67.263535;36;-115.264;13;0.348631126 66.804276;36;-115.724;13;0.89074505 66.542282;36;-116;13;0.513843302 66.521286;36;-116.022;13;0.592038845 66.301102;36;-116.301;13;0.621553807 66;36;-116.683;13;0.803609016 65.418839;36;-117.419;13;0.997324654 65.179146;36;-117.723;13;0.504899185 64.987213;36;-118;13;0.039029186 64.971825;36;-118.022;13;0.609645359 64.800537;36;-118.801;13;0.802221693 64.59848;36;-119.719;13;0.997352791 64.557678;36;-120;13;0.688216193 64.554405;36;-120.023;13;0.816468688 64.755211;36;-120.329;13;0.534872916 65.470192;36;-121.47;13;0.41858654 65.802132;36;-122;13;0.681672764 65.816765;36;-122.023;13;0.644118954 66;36;-122.181;13;0.530947346 66.302284;36;-122.441;13;0.878349618 67.220848;36;-123.221;13;0.021458451 67.893311;36;-123.792;13;0.367560624 68;36;-123.92;13;0.105214755 68.066376;36;-124;13;0.545319126 68.392532;36;-124.393;13;0.323046768 69.469414;36;-125.689;13;0.545044306 69.734451;36;-126;13;0.259547837 69.755798;36;-126.025;13;0.110293277 69.925156;36;-126.364;13;0.21703585 70;36;-126.52;13;0.353949762 70.711868;36;-128;13;0.357608614 70.724182;36;-128.026;13;0.826112216 70.776955;36;-128.371;13;0.277414668 70.860825;36;-128.861;13;0.017026416 71.056046;36;-130;13;0.940168551 71.060486;36;-130.026;13;0.288375546 70.962799;36;-130.963;13;0.208382951 70.888527;36;-131.675;13;0.21161108 70.835281;36;-132;13;0.096385197 70.831009;36;-132.026;13;0.78059276 70.750595;36;-132.342;13;0.567889156 70.676552;36;-132.677;13;0.850275212 70.385529;36;-133.991;13;0.327154497 70.383324;36;-134;13;0.523409942 70.308708;36;-134.309;13;0.940728365 70;36;-135.586;13;0.475969252 69.925797;36;-135.893;13;0.572785993 69.918861;36;-135.919;13;0.688373668 69.897186;36;-136;13;0.490919843 69.890228;36;-136.026;13;0.826277993 69.493134;36;-137.493;13;0.961445285 69.443741;36;-137.676;13;0.904156478 69.378754;36;-138;13;0.168326648 69.37355;36;-138.026;13;0.777080003 69.041275;36;-139.041;13;0.092731709 68.833038;36;-139.678;13;0.171745031 68.761673;36;-140;13;0.889780515 68.755959;36;-140.026;13;0.579752587 68.657539;36;-140.369;13;0.146792011 68.576912;36;-140.577;13;0.891457928 68.026283;36;-142;13;0.928012483 68.018951;36;-142.019;13;0.260551363 68;36;-142.068;13;0.673532491 67.927353;36;-142.256;13;0.395044078 67.524422;36;-143.524;13;0.777290878 67.475212;36;-143.679;13;0.416801584 67.396034;36;-144;13;0.258865061 67.389786;36;-144.025;13;0.719359282 67.088913;36;-145.089;13;0.532713054 66.919502;36;-145.688;13;0.499419137 66.828209;36;-146;13;0.220393 66.820908;36;-146.025;13;0.530861064 66.638733;36;-146.639;13;0.165046582 66.325981;36;-147.692;13;0.019995735 66.214684;36;-148;13;0.655670642 66.174721;36;-148.11;13;0.665497931 66.151772;36;-148.152;13;0.488793266 66.039116;36;-148.355;13;0.23033916 66;36;-148.451;13;0.940909238 65.551178;36;-149.551;13;0.447405303 65.368156;36;-150;13;0.972422077 65.358337;36;-150.024;13;0.988035393 65.142166;36;-150.347;13;0.012658859 64.876984;36;-150.877;13;0.830509959 64.315041;36;-152;13;0.913104774 64.303291;36;-152.023;13;0.455438134 64.240356;36;-152.24;13;0.397162987 64.058662;36;-152.867;13;0.645167576 64;36;-152.981;13;0.377659958 63.655849;36;-153.656;13;0.340539442 63.480221;36;-154;13;0.446465438 63.468548;36;-154.023;13;0.239540012 63.840717;36;-155.841;13;0.587472465 63.847755;36;-155.875;13;0.840481977 63.88755;36;-156;13;0.832130367 63.935715;36;-156.151;13;0.680225514 64;36;-156.233;13;0.511756043 65.369057;36;-157.984;13;0.788378086 65.383286;36;-158;13;0.298336412 65.673241;36;-158.319;13;0.842739899 66;36;-158.638;13;0.521301365 67.395813;36;-160;13;0.980924398 67.631493;36;-160.23;13;0.607137411 67.935791;36;-160.549;13;0.808261473 68;36;-160.585;13;0.947776966 68.821289;36;-161.049;13;0.324801786 69.393211;36;-161.393;13;0.063296672 69.966576;36;-161.738;13;0.411776888 70;36;-161.756;13;0.663829329 70.220039;36;-161.876;13;0.175740801 70.568848;36;-162;13;0.939100118 71.04335;36;-162.168;13;0.191194983 71.627678;36;-162.47;13;0.034166295 71.934944;36;-162.498;13;0.741769717 72;36;-162.507;13;0.633025673 72.224907;36;-162.537;13;0.964410184 72.784325;36;-162.784;13;0.108418121 73.934616;36;-163.292;13;0.165029369 74;36;-163.33;13;0.075002607 75.155312;36;-164;13;0.314640043 75.194893;36;-164.023;13;0.06073184 75.490479;36;-164.162;13;0.283591803 75.72258;36;-164.332;13;0.992104965 76;36;-164.599;13;0.950613277 77.453796;36;-166;13;0.876879227 77.477264;36;-166.023;13;0.699839426 77.249695;36;-166.245;13;0.664884885 76.804916;36;-166.805;13;0.573392832 76;36;-167.818;13;0.378142198 75.938011;36;-167.896;13;0.354648866 75.901466;36;-167.901;13;0.831153264 75.296631;36;-168;13;0.660825563 74.227936;36;-168.174;13;0.443735263 74.165535;36;-168.166;13;0.396548284 74;36;-168.143;13;0.262546133 73.651131;36;-168.095;13;0.6120333 72.66423;36;-168;13;0.07968626 72;36;-167.936;13;0.367693421 71.929291;36;-167.929;13;0.145655655 71.287003;36;-167.867;13;0.823733197 71.02037;36;-167.737;13;0.321058513 70;36;-167.208;13;0.045834921 69.95713;36;-167.186;13;0.307013627 68.302193;36;-166.302;13;0.773531256 68;36;-166.141;13;0.420674045 67.736305;36;-166;13;0.048849238 66.519547;36;-165.35;13;0.27812857 66.151634;36;-165.112;13;0.20450613 66;36;-165.125;13;0.962522611 65.940834;36;-165.13;13;0.362130355 65.661781;36;-165.128;13;0.927135252 64.941223;36;-164.941;13;0.298137768 64;36;-164.698;13;0.025102532 63.941883;36;-164.683;13;0.271102418 63.721832;36;-164.645;13;0.364887374 62.301933;36;-164.302;13;0.251523957 62;36;-164.229;13;0.241520212 61.134735;36;-164.02;13;0.174198789 61.041359;36;-164;13;0.352567857 60.8918;36;-163.968;13;0.039208215 60.626591;36;-163.91;13;0.425926562 60;36;-163.768;13;0.692045614 59.699554;36;-163.7;13;0.028704028 58;36;-163.313;13;0.966920293 57.945663;36;-163.301;13;0.133513597 57.202496;36;-163.202;13;0.956702743 56.197758;36;-163.07;13;0.780865201 56;36;-163.042;13;0.735907635 55.947273;36;-163.035;13;0.266720964 55.69886;36;-163.025;13;0.386841488 55.012028;36;-163.012;13;0.073730858 54;36;-162.992;13;0.26196616 53.949127;36;-162.991;13;0.561433351 53.709568;36;-163.001;13;0.811548123 53.057457;36;-163.057;13;0.582897079 52;36;-163.148;13;0.274700311 51.951191;36;-163.152;13;0.033635722 51.721428;36;-163.176;13;0.540549193 51.242062;36;-163.242;13;0.460413283 50.000004;36;-163.412;13;0.30124745 49.953381;36;-163.419;13;0.449135924 49.733959;36;-163.447;13;0.074591044 49.486477;36;-163.486;13;0.568876809 47.999996;36;-163.723;13;0.640943747 47.955631;36;-163.73;13;0.68347576 47.756012;36;-163.756;13;0.065878438 47.746849;36;-163.757;13;0.695513601 46.241375;36;-163.977;13;0.321330344 46.058739;36;-164;13;0.013030548 46.041935;36;-164.002;13;0.400716744 46.006512;36;-164.007;13;0.186093179 46;36;-164.007;13;0.603630656 44.229198;36;-164.229;13;0.909189302 44;36;-164.258;13;0.634711625 43.960171;36;-164.263;13;0.290353603 42.411842;36;-164.412;13;0.767104982 42.141171;36;-164.438;13;0.512044813 42;36;-164.457;13;0.056360565 41.785622;36;-164.486;13;0.969131959 40.6493;36;-164.649;13;0.675499358 40;36;-164.743;13;0.952635716 39.964733;36;-164.748;13;0.942968902 39.798817;36;-164.772;13;0.534230522 38.897537;36;-164.898;13;0.170358971 38;36;-165.022;13;0.33196423 37.967037;36;-165.027;13;0.792571043 37.811954;36;-165.052;13;0.381397146 37.181034;36;-165.181;13;0.862507906 36;36;-165.422;13;0.683209557 35.969398;36;-165.428;13;0.17314974 35.825382;36;-165.447;13;0.534753 35.506935;36;-165.507;13;0.241644591 34;36;-165.789;13;0.809776399 33.971706;36;-165.794;13;0.593505858 33.806274;36;-165.806;13;0.635224188 33.355778;36;-165.839;13;0.392998922 32;36;-165.962;13;0.802650023 31.973879;36;-165.964;13;0.197975205 31.964502;36;-165.965;13;0.37903023 31.81341;36;-165.965;13;0.615407271 30.8237;36;-166;13;0.751222477 30.575766;36;-166.009;13;0.838992757 30.038555;36;-166.039;13;0.581012664 30;36;-166.041;13;0.2346871 29.975971;36;-166.042;13;0.239874563 29.167377;36;-166.095;13;0.182312276 28.175388;36;-166.175;13;0.826051017 28.082403;36;-166.183;13;0.875180041 28;36;-166.185;13;0.072545875 27.978052;36;-166.186;13;0.835263636 26.381207;36;-166.381;13;0.056856251 26.074619;36;-166.419;13;0.746179905 26;36;-166.424;13;0.538583536 25.980125;36;-166.425;13;0.66320574 25.88652;36;-166.433;13;0.088378166 24.55658;36;-166.557;13;0.826177891 23.999998;36;-166.608;13;0.075503994 23.982107;36;-166.61;13;0.576202214 22.768215;36;-166.768;13;0.877537144 22.059845;36;-166.86;13;0.18553044 22;36;-166.868;13;0.554926806 21.984055;36;-166.87;13;0.231459206 21.908945;36;-166.882;13;0.69129057 20.991682;36;-166.992;13;0.288185996 20;36;-167.111;13;0.532461197 19.985912;36;-167.112;13;0.104848518 19.919535;36;-167.123;13;0.210545432 19.199715;36;-167.2;13;0.617155265 18;36;-167.327;13;0.054571113 17.987675;36;-167.329;13;0.311727103 17.929581;36;-167.341;13;0.305686455 17.409927;36;-167.41;13;0.876046845 16;36;-167.598;13;0.522997165 15.989357;36;-167.6;13;0.009567491 15.939188;36;-167.612;13;0.939919772 15.657353;36;-167.657;13;0.580399605 14;36;-167.922;13;0.897405621 13.933063;36;-167.933;13;0.669328559 13.548425;36;-167.995;13;0.422146717 13.530759;36;-168;13;0.187089408 13.50733;36;-168.007;13;0.460322313 12.21608;36;-168.216;13;0.030613469 11.999999;36;-168.251;13;0.38414433 11.992438;36;-168.252;13;0.51463401 11.956768;36;-168.263;13;0.317381199 10.498478;36;-168.498;13;0.131129808 10;36;-168.579;13;0.718050937 9.993805;36;-168.58;13;0.472019903 9.964569;36;-168.589;13;0.579757866 8.818437;36;-168.818;13;0.44257621 8;36;-168.982;13;0.091143567 7.995063;36;-168.983;13;0.246745848 7.11784;36;-169.118;13;0.627410891 6.014353;36;-169.287;13;0.493220972 6;36;-169.291;13;0.762022348 5.995095;36;-169.293;13;0.959367612 5.95976;36;-169.299;13;0.22338756 5.444;36;-169.444;13;0.17424007 4.649823;36;-169.667;13;0.939263866 4;36;-169.662;13;0.1876607 3.997149;36;-169.662;13;0.560939846 3.69764;36;-169.698;13;0.243206026 2;36;-169.902;13;0.438925445 1.912597;36;-169.913;13;0.165684655 1.186792;36;-170;13;0.59595177 1.181701;36;-170.001;13;0.359475186 1.161727;36;-170.004;13;0.205030299 1.153604;36;-170.007;13;0.81192941 0.167414;36;-170.167;13;0.374485021 0;36;-170.195;13;0.72579269 298;12;-155.256;14;0.531700541 297.125854;12;-155.126;14;0.245729728 296;12;-154.958;14;0.841359822 294.629608;12;-154.63;14;0.323655145 294;12;-154.479;14;0.107468881 292.046936;12;-154.047;14;0.804785862 292;12;-154.037;14;0.880254205 291.372772;12;-154;14;0.566180291 290;12;-153.92;14;0.163466125 289.92392;12;-153.924;14;0.426894293 288.447479;12;-154;14;0.876073596 288.045929;12;-154.046;14;0.997136895 288;12;-154.051;14;0.364073494 286.25116;12;-154.251;14;0.195477148 286;12;-154.28;14;0.222567794 284.240265;12;-154.24;14;0.41468149 284;12;-154.235;14;0.620277894 282.16037;12;-154.16;14;0.952898573 282;12;-154.154;14;0.112010325 281.314972;12;-154.155;14;0.957368705 280.005402;12;-154.005;14;0.172006459 280;12;-154.005;14;0.78096757 279.95813;12;-154;14;0.164473832 278;12;-153.711;14;0.846217964 277.712097;12;-153.712;14;0.567578373 277;12;-153.716;14;0.732697922 276;12;-153.753;14;0.904117181 275.773224;12;-153.773;14;0.097335586 274.240387;12;-153.913;14;0.386587038 274;12;-153.945;14;0.410151934 273.954193;12;-153.954;14;0.201786114 273.759613;12;-153.991;14;0.988454468 273.691803;12;-154;14;0.179864382 272.192596;12;-154.193;14;0.586000761 272;12;-154.217;14;0.421043486 270.513519;12;-154.514;14;0.663737931 270;12;-154.616;14;0.241014018 268.845673;12;-154.846;14;0.065978758 268;12;-155.014;14;0.942012123 267.141418;12;-155.141;14;0.216650589 266;12;-155.311;14;0.293067216 265.365143;12;-155.365;14;0.784793667 264;12;-155.482;14;0.36689236 263.521179;12;-155.521;14;0.927203991 262;12;-155.645;14;0.030997628 261.662354;12;-155.662;14;0.351285151 260;12;-155.747;14;0.137357022 259.778015;12;-155.778;14;0.916433516 258.209595;12;-156;14;0.72118659 258.02597;12;-156.026;14;0.315648216 258;12;-156.03;14;0.616816155 256.345612;12;-156.346;14;0.555817729 256;12;-156.412;14;0.451115892 254.802368;12;-156.802;14;0.22641242 254;12;-157.064;14;0.806309486 253.363678;12;-157.364;14;0.721509634 252.011917;12;-158;14;0.734598258 252.003815;12;-158.004;14;0.61803009 252;12;-158.006;14;0.945698962 250.569595;12;-158.57;14;0.325119863 250;12;-158.794;14;0.320906074 249.06398;12;-159.064;14;0.291284281 248;12;-159.371;14;0.123384398 247.494141;12;-159.494;14;0.857288745 246;12;-159.859;14;0.472312358 245.880493;12;-159.88;14;0.701108456 245.221008;12;-160;14;0.732907385 244.187317;12;-160.187;14;0.909867562 244;12;-160.221;14;0.524725384 242.306274;12;-160.306;14;0.060573745 242;12;-160.322;14;0.612931952 241.371246;12;-160.288;14;0.172479992 240.145432;12;-160.145;14;0.676425764 240;12;-160.128;14;0.493750386 239.686096;12;-160;14;0.260977084 238;12;-158.536;14;0.677750814 237.815353;12;-158;14;0.471957303 237.718262;12;-157.718;14;0.77387064 237.126114;12;-156;14;0.605208574 237.02774;12;-155.028;14;0.879435441 236.923767;12;-154;14;0.11921685 236;12;-152.256;14;0.498308012 235.864334;12;-152;14;0.725204802 235.089111;12;-151.089;14;0.890778879 234.23114;12;-150.081;14;0.274657936 234.176712;12;-150;14;0.498782079 234.000015;12;-149.737;14;0.868009926 232.283249;12;-148;14;0.733301201 232;12;-147.722;14;0.172071345 230.246887;12;-146;14;0.720811584 230;12;-145.758;14;0.194241139 228.897827;12;-144;14;0.777028139 228;12;-142.568;14;0.83483565 227.643585;12;-142;14;0.871578232 227.604614;12;-141.605;14;0.534288599 227.446472;12;-140;14;0.996285448 227.426895;12;-139.427;14;0.458183015 227.34671;12;-138;14;0.17039419 227.244324;12;-137.244;14;0.641493491 227.075729;12;-136;14;0.290215149 226.599121;12;-134.599;14;0.845134572 226.395279;12;-134;14;0.3264475 225.999985;12;-133.188;14;0.679053806 225.421127;12;-132;14;0.12401686 224.835709;12;-130.836;14;0.019988622 224.415497;12;-130;14;0.91063599 225.02597;12;-129.026;14;0.82547086 225.669006;12;-128;14;0.008196382 225.796524;12;-127.797;14;0.636914484 225.999985;12;-127.472;14;0.948450154 226.738647;12;-126.739;14;0.782078566 227.482773;12;-126;14;0.833571905 227.736298;12;-125.847;14;0.383394337 227.812317;12;-125.812;14;0.228399791 227.980316;12;-125.736;14;0.974265998 228;12;-125.715;14;0.825819699 228.822388;12;-124.822;14;0.636594338 229.580124;12;-124;14;0.101343177 229.674011;12;-123.674;14;0.554071498 230;12;-122.542;14;0.437268436 230.02681;12;-122.449;14;0.817742765 230.112564;12;-122.113;14;0.981502209 230.141266;12;-122;14;0.51531165 230.125977;12;-121.551;14;0.640665983 230;12;-120.473;14;0.595018331 229.692062;12;-120;14;0.530509313 229.117798;12;-119.118;14;0.185527614 228.431503;12;-118.063;14;0.664352794 228.389969;12;-118;14;0.004770164 228.107697;12;-117.569;14;0.610702989 228;12;-117.501;14;0.31751903 226.678085;12;-116.678;14;0.842213903 225.999985;12;-116.301;14;0.687178103 224.315689;12;-116;14;0.007361743 224.051407;12;-115.948;14;0.974694048 224;12;-115.927;14;0.254729751 223.948471;12;-115.93;14;0.361663037 223.93129;12;-115.931;14;0.496671867 223.033066;12;-116;14;0.931539508 222.064911;12;-116.065;14;0.683851521 222;12;-116.069;14;0.927902554 221.910599;12;-116.089;14;0.220153138 220.464783;12;-116.465;14;0.38864113 220;12;-116.585;14;0.25562625 218.903091;12;-116.903;14;0.043821216 218;12;-117.165;14;0.146385818 217.431671;12;-117.432;14;0.670376861 216.222198;12;-118;14;0.104664069 216.090637;12;-118.091;14;0.104617501 216;12;-118.153;14;0.50680213 214.906418;12;-118.906;14;0.008111384 214;12;-119.531;14;0.688847598 213.722183;12;-119.722;14;0.499828206 213.318909;12;-120;14;0.015819493 212.635742;12;-120.636;14;0.698925207 212;12;-121.227;14;0.85183528 211.600235;12;-121.6;14;0.752024757 211.171661;12;-122;14;0.731357112 210.60202;12;-122.602;14;0.165501158 210;12;-123.238;14;0.954867541 209.608734;12;-123.609;14;0.348253869 209.195541;12;-124;14;0.468475803 208.582947;12;-124.583;14;0.66786261 208;12;-125.138;14;0.072974617 207.63269;12;-125.614;14;0.37767352 207.622421;12;-125.622;14;0.638729124 207.166458;12;-126;14;0.419858862 206.528381;12;-126.528;14;0.129252883 206;12;-126.966;14;0.311474516 205.460297;12;-127.46;14;0.034183743 204.871094;12;-128;14;0.016919122 204.416443;12;-128.416;14;0.085370964 204;12;-128.798;14;0.588014536 203.374008;12;-129.374;14;0.863556333 202.693832;12;-130;14;0.27509072 202.33252;12;-130.333;14;0.945942395 202;12;-130.639;14;0.051826127 201.287674;12;-131.288;14;0.928757501 200.505981;12;-132;14;0.562070625 200.279251;12;-132.279;14;0.553459644 200.000015;12;-132.623;14;0.759394198 199.383011;12;-133.383;14;0.115131985 198.882019;12;-134;14;0.901379407 198.518311;12;-134.518;14;0.909582695 198;12;-135.257;14;0.093436251 197.740402;12;-135.74;14;0.255842619 197.601013;12;-136;14;0.305914231 197.041702;12;-137.042;14;0.719564501 196.527176;12;-138;14;0.717129716 196.357178;12;-138.357;14;0.939696623 196;12;-139.108;14;0.745958342 195.769333;12;-139.769;14;0.1692739 195.688919;12;-140;14;0.745357235 195.25238;12;-141.252;14;0.086792258 194.991776;12;-142;14;0.95252728 194.836792;12;-142.837;14;0.430839224 194.621353;12;-144;14;0.225962824 194.5811;12;-144.581;14;0.962024988 194.482834;12;-146;14;0.382831781 194.477722;12;-146.478;14;0.275919399 194.461456;12;-148;14;0.950096546 194.429916;12;-148.43;14;0.396627826 194.314728;12;-150;14;0.825829009 194.241669;12;-150.242;14;0.805717031 194;12;-151.041;14;0.88334249 193.777359;12;-151.777;14;0.5627334 193.710037;12;-152;14;0.081033463 192.99472;12;-152.995;14;0.100675322 192.27182;12;-154;14;0.826986324 192.158112;12;-154.158;14;0.526348799 191.999985;12;-154.378;14;0.345157962 191.257996;12;-155.258;14;0.583706433 190.63237;12;-156;14;0.41024508 190.343094;12;-156.343;14;0.328147281 190;12;-156.75;14;0.022388216 189.454422;12;-157.454;14;0.82245847 189.031876;12;-158;14;0.717736933 188.522034;12;-158.522;14;0.821527071 188;12;-159.057;14;0.005065397 187.514481;12;-159.514;14;0.697692438 186.999725;12;-160;14;0.464793365 186.38681;12;-160.387;14;0.412249631 186;12;-160.631;14;0.979524286 185.049713;12;-161.05;14;0.026405509 184;12;-161.512;14;0.205552327 183.630951;12;-161.631;14;0.462257032 182.482712;12;-162;14;0.204453258 182.082275;12;-162.082;14;0.99687948 182;12;-162.099;14;0.797203851 180.423203;12;-162.423;14;0.290294708 179.999878;12;-162.51;14;0.702514661 179.999313;12;-162.51;14;0.562393701 178.673523;12;-162.674;14;0.889319794 177.999634;12;-162.757;14;0.557587736 177.99791;12;-162.757;14;0.793189843 176.952438;12;-162.952;14;0.360767586 176;12;-163.131;14;0.402520162 175.999268;12;-163.131;14;0.332510902 175.994705;12;-163.133;14;0.593350273 175.368332;12;-163.368;14;0.175620424 174.000015;12;-163.883;14;0.141713578 173.99707;12;-163.884;14;0.289556333 173.993118;12;-163.886;14;0.94324456 173.918839;12;-163.919;14;0.669398989 173.734756;12;-164;14;0.1804494 172.53093;12;-164.531;14;0.449809698 172;12;-164.765;14;0.147999378 171.998245;12;-164.766;14;0.937914261 171.989929;12;-164.772;14;0.646410837 171.251129;12;-165.251;14;0.807426138 170.096298;12;-166;14;0.071717723 170.093094;12;-166.002;14;0.931734367 170.082108;12;-166.007;14;0.237225997 170.026855;12;-166.027;14;0.791138008 170;12;-166.036;14;0.085153738 168.550842;12;-166.551;14;0.96548195 168;12;-166.746;14;0.686726792 167.996902;12;-166.747;14;0.363169707 167.056839;12;-167.057;14;0.811022338 166.014755;12;-167.4;14;0.630714824 166.000015;12;-167.406;14;0.680211567 165.996063;12;-167.408;14;0.356108287 165.476257;12;-167.476;14;0.577753444 164.018738;12;-167.669;14;0.569459124 164;12;-167.672;14;0.948363824 163.995026;12;-167.673;14;0.730326969 163.90062;12;-167.681;14;0.628361208 163.700394;12;-167.7;14;0.895228669 162.37468;12;-167.831;14;0.875690464 162;12;-167.856;14;0.321590146 161.993881;12;-167.857;14;0.294452998 161.840897;12;-167.841;14;0.373541788 160.13089;12;-167.664;14;0.041441813 160;12;-167.65;14;0.042053747 159.992538;12;-167.649;14;0.835943271 159.967422;12;-167.646;14;0.674555888 159.583893;12;-167.584;14;0.498276462 158.003372;12;-167.33;14;0.201512125 157.999985;12;-167.329;14;0.64376443 157.948425;12;-167.308;14;0.867218443 156.988434;12;-166.988;14;0.462381595 156;12;-166.659;14;0.378543837 155.989334;12;-166.656;14;0.617439835 155.921173;12;-166.631;14;0.819515288 154.078018;12;-166.078;14;0.131187521 154;12;-166.055;14;0.982129491 153.967392;12;-166.045;14;0.674691879 153.927963;12;-166.017;14;0.316007742 153.900528;12;-166;14;0.490630877 152;12;-164.856;14;0.165612197 151.985352;12;-164.847;14;0.913174766 151.915543;12;-164.818;14;0.304446224 150.098785;12;-164.099;14;0.750133691 150;12;-164.06;14;0.5629577 149.983231;12;-164.053;14;0.621605241 149.85228;12;-164;14;0.839027348 149.517014;12;-163.864;14;0.109715806 148;12;-163.18;14;0.046947257 147.980942;12;-163.172;14;0.993150866 147.890137;12;-163.144;14;0.973080036 146.769211;12;-162.769;14;0.042130506 146;12;-162.512;14;0.093465562 145.978668;12;-162.505;14;0.564101743 144.087769;12;-162.039;14;0.779920309 144.023544;12;-162.024;14;0.163887888 144;12;-162.018;14;0.024323301 143.925171;12;-162;14;0.506286719 143.86377;12;-161.985;14;0.502950397 142;12;-161.574;14;0.936395177 141.974045;12;-161.568;14;0.311942715 141.850281;12;-161.541;14;0.211548441 141.462494;12;-161.462;14;0.487201019 140;12;-161.165;14;0.441037035 139.97168;12;-161.159;14;0.732930903 139.836594;12;-161.136;14;0.052843527 138.985214;12;-160.985;14;0.259123262 138;12;-160.811;14;0.761429768 137.969284;12;-160.806;14;0.910888964 137.8228;12;-160.789;14;0.142781659 136.656967;12;-160.657;14;0.382279856 136;12;-160.583;14;0.776207066 135.966919;12;-160.579;14;0.074001351 135.809174;12;-160.574;14;0.492422081 134.522903;12;-160.523;14;0.91904676 134;12;-160.502;14;0.052025664 133.9646;12;-160.501;14;0.429699838 133.795868;12;-160.504;14;0.324696064 132.531097;12;-160.531;14;0.419223016 132;12;-160.542;14;0.135908078 131.962341;12;-160.543;14;0.299628207 130.64035;12;-160.64;14;0.018084539 130.148102;12;-160.677;14;0.901963656 130;12;-160.689;14;0.290046697 129.960144;12;-160.692;14;0.574382064 128.849335;12;-160.849;14;0.846527184 128.155914;12;-160.948;14;0.705593063 128;12;-160.968;14;0.386548774 127.958061;12;-160.974;14;0.80608824 127.141121;12;-161.141;14;0.436532325 126.163345;12;-161.341;14;0.228534229 126;12;-161.376;14;0.827467844 125.956078;12;-161.386;14;0.68500849 125.598595;12;-161.475;14;0.934176283 125.49881;12;-161.499;14;0.333013418 124;12;-161.86;14;0.32505636 123.954193;12;-161.871;14;0.589103709 123.876465;12;-161.876;14;0.645339727 123.35247;12;-161.914;14;0.564316745 122.639366;12;-162;14;0.274609174 122.501007;12;-162.017;14;0.590677521 122.135231;12;-162.06;14;0.485587483 122.066315;12;-162.066;14;0.758970618 122;12;-162.072;14;0.664018227 121.908272;12;-162.081;14;0.342450879 120.177254;12;-162.177;14;0.703439892 120;12;-162.187;14;0.959114527 119.95018;12;-162.19;14;0.787500539 119.338821;12;-162.235;14;0.386213516 118.270859;12;-162.271;14;0.396299745 118;12;-162.28;14;0.560599839 117.948219;12;-162.282;14;0.578660941 117.202728;12;-162.305;14;0.636724539 116.298088;12;-162.298;14;0.718395361 116;12;-162.296;14;0.200183517 115.946274;12;-162.295;14;0.423771858 115.224701;12;-162.266;14;0.834347522 114.146835;12;-162.147;14;0.56888067 114;12;-162.131;14;0.81015729 113.94426;12;-162.124;14;0.403287848 113.678642;12;-162.063;14;0.770141677 113.53215;12;-162;14;0.513336665 112;12;-161.34;14;0.916764593 111.941879;12;-161.315;14;0.146383821 111.701027;12;-161.008;14;0.407138831 110.493111;12;-160.021;14;0.272549676 110.48587;12;-160;14;0.236568798 110.020462;12;-158.639;14;0.085979168 110.05938;12;-158.059;14;0.705384381 110.061913;12;-158.022;14;0.870415544 110.062592;12;-158;14;0.837422659 110.115456;12;-156.32;14;0.327080394 110.147774;12;-156.148;14;0.2140371 110.171356;12;-156.022;14;0.712898561 110.170341;12;-156;14;0.175835475 110.09848;12;-154.441;14;0.331711315 110.131348;12;-154.131;14;0.697890469 110.142891;12;-154.023;14;0.342677265 110.140694;12;-154;14;0.843380053 110.101883;12;-153.602;14;0.568473117 110;12;-153.181;14;0.066756937 109.935204;12;-152.913;14;0.384506648 109.741013;12;-152.294;14;0.478459496 109.65213;12;-152.023;14;0.325385458 109.643593;12;-152;14;0.108432586 109.551994;12;-151.753;14;0.858851099 109.476158;12;-151.476;14;0.442351893 109.334068;12;-150.957;14;0.410906347 109.042648;12;-150.023;14;0.147289655 109.034492;12;-150;14;0.208607666 108.520927;12;-148.523;14;0.261809032 108.519081;12;-148.519;14;0.596677389 108.293808;12;-148;14;0.703390308 108.189217;12;-147.759;14;0.034486874 108;12;-147.098;14;0.082557422 107.931274;12;-146.858;14;0.899444916 107.685532;12;-146.27;14;0.880527843 107.595016;12;-146.024;14;0.781393121 107.58812;12;-146;14;0.16436913 107.462151;12;-145.556;14;0.049493564 107.435089;12;-145.435;14;0.493351857 107.322029;12;-144.93;14;0.542159889 107.052185;12;-144.025;14;0.027445463 107.046585;12;-144;14;0.801613688 106.765846;12;-142.766;14;0.88805488 106.69368;12;-142.449;14;0.749934995 106.551964;12;-142;14;0.551723413 106.506866;12;-141.857;14;0.161073545 106.162361;12;-140.162;14;0.198980922 106.134445;12;-140.025;14;0.21041502 106.13327;12;-140;14;0.903667302 106.116814;12;-139.65;14;0.175005498 106;12;-139.137;14;0.347909225 105.746925;12;-138.025;14;0.49364287 105.742828;12;-138;14;0.87105143 105.692604;12;-137.693;14;0.27512107 105.641731;12;-137.381;14;0.888832222 105.263451;12;-136.025;14;0.664456437 105.252548;12;-136;14;0.121900817 105.116348;12;-135.686;14;0.524827287 104.297997;12;-134.298;14;0.276761877 104.137199;12;-134.025;14;0.639021641 104.120964;12;-134;14;0.67530287 104;12;-133.811;14;0.088328309 103.918037;12;-133.683;14;0.18214597 102.793976;12;-132.794;14;0.872430636 102.399826;12;-132.482;14;0.31624671 102;12;-132.276;14;0.062381145 101.723915;12;-132.134;14;0.523059202 101.348061;12;-132;14;0.445489278 100.072212;12;-131.544;14;0.991299764 100.000008;12;-131.522;14;0.964827715 99.925705;12;-131.499;14;0.154113585 99.229446;12;-131.229;14;0.566440562 98.863533;12;-131.088;14;0.182585016 98;12;-130.811;14;0.658924092 97.924812;12;-130.787;14;0.730419114 96.381615;12;-130.027;14;0.186394759 96.343506;12;-130;14;0.149758112 95.999992;12;-129.76;14;0.599217714 95.924202;12;-129.707;14;0.306163409 94.883743;12;-128;14;0.750647744 94.386139;12;-127.183;14;0.793101353 94.281128;12;-126.842;14;0.276861627 94.247513;12;-126.248;14;0.985415369 94.233521;12;-126;14;0.554202935 94.14576;12;-124.448;14;0.25140342 94.119125;12;-124.119;14;0.786118477 94.11158;12;-124.026;14;0.639384913 94.108398;12;-124;14;0.418102475 94;12;-123.116;14;0.570917727 93.904808;12;-122.34;14;0.29814007 93.874641;12;-122.026;14;0.706857674 93.866539;12;-122;14;0.599592272 93.80442;12;-121.804;14;0.874747529 93.765633;12;-121.682;14;0.116461187 92.693466;12;-120.025;14;0.450990864 92.686378;12;-120;14;0.454206649 92.579979;12;-119.622;14;0.082021823 92.137489;12;-119.367;14;0.493689862 92;12;-119.263;14;0.753645189 90.360123;12;-118.025;14;0.330724787 90.319771;12;-118;14;0.529060215 90;12;-117.803;14;0.109179899 89.670326;12;-117.6;14;0.939675737 89.555649;12;-117.556;14;0.695896396 88.353668;12;-117.094;14;0.867767297 88;12;-117.057;14;0.114278564 87.929527;12;-117.049;14;0.4406302 87.253822;12;-116.923;14;0.23610815 86.636017;12;-116.636;14;0.426289577 86;12;-116.34;14;0.201994872 85.929924;12;-116.308;14;0.273247386 84.969635;12;-116.025;14;0.702759034 84.920563;12;-116;14;0.263776875 84.724205;12;-115.902;14;0.269958966 84.393692;12;-115.846;14;0.721948845 84;12;-115.714;14;0.184851011 83.567665;12;-115.568;14;0.874818407 82.258179;12;-115.126;14;0.483920911 82;12;-115.07;14;0.890579448 81.930977;12;-115.055;14;0.758548118 81.695885;12;-115.027;14;0.023620216 80.813545;12;-114.814;14;0.921989061 80;12;-114.617;14;0.154384732 79.931572;12;-114.6;14;0.082781086 79.710876;12;-114.571;14;0.622317165 79.517792;12;-114.541;14;0.713681855 78.305077;12;-114.305;14;0.166045473 78;12;-114.246;14;0.781757009 77.932236;12;-114.232;14;0.420304221 76.580063;12;-114.024;14;0.297847129 76.504318;12;-114.012;14;0.571943978 76.435944;12;-114;14;0.675430576 76.250847;12;-113.968;14;0.803376653 76;12;-113.945;14;0.474536401 75.939484;12;-113.939;14;0.275509211 75.932961;12;-113.939;14;0.844234923 75.616188;12;-113.908;14;0.556502434 74;12;-113.655;14;0.610567298 73.93383;12;-113.644;14;0.379389888 73.621246;12;-113.613;14;0.282802178 73.611763;12;-113.612;14;0.566481301 72;12;-113.341;14;0.676257213 71.934837;12;-113.33;14;0.386901951 71.627068;12;-113.312;14;0.58676562 71.247742;12;-113.248;14;0.479853478 70;12;-113.036;14;0.352474906 69.935959;12;-113.025;14;0.167525687 69.633492;12;-113.031;14;0.380507583 68.899406;12;-112.899;14;0.533100411 68;12;-112.739;14;0.176415479 67.937202;12;-112.728;14;0.07634485 67.640495;12;-112.77;14;0.279293822 66.724297;12;-112.724;14;0.369342046 66;12;-112.688;14;0.594340919 65.938324;12;-112.685;14;0.845066873 65.598564;12;-112.748;14;0.236330205 64.808861;12;-112.809;14;0.709336852 64;12;-112.871;14;0.461384327 63.891552;12;-112.879;14;0.754997076 63.021175;12;-113.021;14;0.650113857 62.176121;12;-113.159;14;0.874688981 62;12;-113.198;14;0.63563369 61.940361;12;-113.211;14;0.250416708 61.328411;12;-113.328;14;0.961517616 61.314209;12;-113.331;14;0.666726084 60;12;-113.57;14;0.968373521 59.635948;12;-113.636;14;0.652664219 59.569252;12;-113.648;14;0.73514063 58;12;-113.976;14;0.535163815 57.979771;12;-113.98;14;0.383609202 57.942635;12;-113.988;14;0.267447177 57.903809;12;-113.998;14;0.484008292 57.895782;12;-114;14;0.895955399 57.818535;12;-114.02;14;0.105915133 56.398186;12;-114.398;14;0.226260704 56;12;-114.504;14;0.634344126 55.943829;12;-114.519;14;0.896536898 54.821701;12;-114.822;14;0.691000199 54.205727;12;-114.988;14;0.569416873 54;12;-115.049;14;0.215224258 53.945107;12;-115.066;14;0.547722942 53.313114;12;-115.231;14;0.008517962 53.248413;12;-115.248;14;0.38781976 52;12;-115.586;14;0.603687227 51.946514;12;-115.6;14;0.312579263 51.672295;12;-115.672;14;0.060467768 50.556892;12;-115.966;14;0.472746258 50.45182;12;-116;14;0.945353678 50.19503;12;-116.084;14;0.73523048 50.111534;12;-116.112;14;0.723149941 50.000004;12;-116.148;14;0.211963379 49.947987;12;-116.166;14;0.072674255 48.616974;12;-116.617;14;0.919792763 48.565517;12;-116.634;14;0.58057214 47.999996;12;-116.853;14;0.58116089 47.171989;12;-117.172;14;0.974190271 46.559731;12;-117.408;14;0.722233787 46;12;-117.634;14;0.906570305 45.950977;12;-117.654;14;0.137744974 45.746922;12;-117.747;14;0.034950645 45.701557;12;-117.768;14;0.098084978 45.318611;12;-118;14;0.798584467 44.498055;12;-118.498;14;0.191738087 44;12;-118.8;14;0.251659374 43.369541;12;-119.183;14;0.630982565 43.258202;12;-119.258;14;0.070615309 42.363544;12;-119.862;14;0.454173254 42.254509;12;-120;14;0.31348539 42.142063;12;-120.142;14;0.762604715 42;12;-120.322;14;0.052145234 41.953629;12;-120.38;14;0.659976956 41.22699;12;-121.227;14;0.505343719 40.563732;12;-122;14;0.922531586 40.549961;12;-122.016;14;0.55094146 40.391846;12;-122.392;14;0.426259708 40;12;-123.323;14;0.27324281 39.919117;12;-123.515;14;0.427035329 39.839111;12;-123.839;14;0.608182049 39.799347;12;-124;14;0.022555037 39.795376;12;-124.016;14;0.8661412 39.472359;12;-124.668;14;0.97980576 39.220085;12;-125.22;14;0.971144314 38.86401;12;-126;14;0.755836575 38.856709;12;-126.016;14;0.751446901 38.58699;12;-126.587;14;0.800588508 38.216969;12;-127.37;14;0.022511729 38;12;-127.876;14;0.77559786 37.962601;12;-127.963;14;0.110363807 37.946537;12;-128;14;0.394217688 37.939724;12;-128.016;14;0.683626756 37.667015;12;-128.999;14;0.61948873 37.613815;12;-129.614;14;0.627471476 37.580399;12;-130;14;0.30399932 37.579021;12;-130.016;14;0.855154122 37.705376;12;-130.265;14;0.791693941 37.953934;12;-130.934;14;0.134314859 38;12;-131.015;14;0.739716282 38.503059;12;-131.902;14;0.218846917 38.582996;12;-132;14;0.738755537 39.950897;12;-133.685;14;0.474867071 40;12;-133.751;14;0.122757836 40.184887;12;-134;14;0.781354146 40.197788;12;-134.017;14;0.125453001 40.355778;12;-134.356;14;0.622849888 40.414715;12;-134.482;14;0.333790814 41.257256;12;-136;14;0.581223443 41.267212;12;-136.018;14;0.145855673 41.317413;12;-137.244;14;0.123379438 41.317291;12;-137.317;14;0.301297873 41.316151;12;-138;14;0.328704629 41.31612;12;-138.018;14;0.285171234 41.167393;12;-139.167;14;0.745541714 41.156971;12;-139.248;14;0.931319474 41.004314;12;-140;14;0.832901204 41.000675;12;-140.018;14;0.749820244 40.886471;12;-140.886;14;0.911256559 40.806664;12;-141.493;14;0.084013092 40.70829;12;-142;14;0.620785689 40.704838;12;-142.018;14;0.667383302 40.85479;12;-142.855;14;0.028488979 40.943821;12;-143.352;14;0.688543778 40.853584;12;-144;14;0.226033781 40.851105;12;-144.018;14;0.945210875 41.033184;12;-145.033;14;0.33684305 41.166584;12;-145.777;14;0.305016547 41.176208;12;-146;14;0.164387353 41.176983;12;-146.018;14;0.677180968 41.478172;12;-147.064;14;0.157075888 41.651276;12;-147.651;14;0.425458596 41.753998;12;-148;14;0.904434567 41.770515;12;-148.056;14;0.141943991 41.948761;12;-148.436;14;0.750386226 42;12;-148.557;14;0.856887733 42.114418;12;-148.827;14;0.033419783 42.208012;12;-149.036;14;0.463634422 42.732395;12;-150;14;0.399705541 43.171658;12;-150.808;14;0.069561775 43.554108;12;-151.554;14;0.32130896 43.782589;12;-152;14;0.045900664 43.844742;12;-152.121;14;0.866197637 43.947575;12;-152.223;14;0.007252 44;12;-152.285;14;0.304573896 45.448318;12;-154;14;0.514314539 45.464176;12;-154.019;14;0.694956519 45.946232;12;-154.449;14;0.777004604 46;12;-154.49;14;0.594224234 47.006233;12;-155.264;14;0.788868714 47.688297;12;-155.847;14;0.483612177 47.897732;12;-156;14;0.981527409 47.924206;12;-156.019;14;0.096235744 47.999996;12;-156.083;14;0.042786688 48.525269;12;-156.525;14;0.767804525 49.943645;12;-157.719;14;0.433040705 50.000004;12;-157.769;14;0.813264182 50.259594;12;-158;14;0.514441617 50.281933;12;-158.02;14;0.951569411 50.520794;12;-158.521;14;0.234941398 51.104267;12;-159.744;14;0.518411472 51.21405;12;-160;14;0.126876203 51.222546;12;-160.02;14;0.416683619 51.099197;12;-160.284;14;0.851274971 50.848564;12;-160.849;14;0.363413706 50.337463;12;-162;14;0.853863479 50.233719;12;-162.234;14;0.608445025 50.20023;12;-162.309;14;0.337050432 50.000004;12;-162.528;14;0.356751983 49.968418;12;-162.562;14;0.778825434 49.34074;12;-163.341;14;0.647590428 48.809158;12;-164;14;0.498988874 48.794624;12;-164.018;14;0.55525313 48.403946;12;-164.404;14;0.371003073 47.999996;12;-164.803;14;0.354731744 47.950092;12;-164.852;14;0.875221345 47.500477;12;-165.5;14;0.178231374 47.153984;12;-166;14;0.150095721 47.129784;12;-166.035;14;0.170398404 46.90266;12;-166.304;14;0.543017171 46.656693;12;-166.657;14;0.509444359 46;12;-167.599;14;0.270720259 45.954079;12;-167.665;14;0.813123301 45.820633;12;-167.821;14;0.873910372 45.666912;12;-168;14;0.495260208 44.897636;12;-168.898;14;0.837514916 44.066498;12;-169.867;14;0.622613362 44;12;-169.932;14;0.139182032 43.965237;12;-169.965;14;0.022582076 43.92923;12;-170;14;0.243624817 43.913883;12;-170.015;14;0.986694265 43.668022;12;-170.152;14;0.109676974 42.772713;12;-170.773;14;0.127010932 42;12;-171.309;14;0.848497422 41.960758;12;-171.336;14;0.407667326 41.821011;12;-171.377;14;0.465134694 41.514023;12;-171.514;14;0.562030078 40.422756;12;-172;14;0.940921009 40.13026;12;-172.13;14;0.15923212 40;12;-172.188;14;0.31208236 39.963371;12;-172.205;14;0.122499985 39.791027;12;-172.245;14;0.16575502 38.592537;12;-172.593;14;0.773652956 38;12;-172.764;14;0.065452659 37.965752;12;-172.774;14;0.290564812 37.804554;12;-172.797;14;0.755670318 36.953579;12;-172.954;14;0.595512214 36;12;-173.129;14;0.80054596 35.967976;12;-173.135;14;0.918800436 35.817188;12;-173.143;14;0.528131483 35.183983;12;-173.184;14;0.977992669 34;12;-173.261;14;0.471616789 33.970032;12;-173.263;14;0.133446521 33.828876;12;-173.26;14;0.100720917 33.243225;12;-173.243;14;0.300826297 32;12;-173.208;14;0.932216223 31.971958;12;-173.207;14;0.044408097 31.839869;12;-173.201;14;0.055275042 31.152246;12;-173.152;14;0.372625961 30;12;-173.07;14;0.039764265 29.973829;12;-173.069;14;0.823406329 28.938887;12;-172.939;14;0.410643367 28.091461;12;-172.833;14;0.010284148 28;12;-172.825;14;0.452075847 27.97563;12;-172.823;14;0.846472177 26.655836;12;-172.656;14;0.534711148 26.084745;12;-172.584;14;0.669118973 26;12;-172.576;14;0.05253921 25.977417;12;-172.574;14;0.764207468 24.389252;12;-172.389;14;0.290491421 24.078058;12;-172.353;14;0.412857522 23.999998;12;-172.347;14;0.353502052 23.979197;12;-172.345;14;0.280662135 23.88117;12;-172.337;14;0.928019139 22.149817;12;-172.15;14;0.754862107 22;12;-172.134;14;0.205261177 21.980959;12;-172.132;14;0.474917183 20.334476;12;-172.02;14;0.155157929 20.099459;12;-172;14;0.444458674 20;12;-171.991;14;0.706136671 19.990511;12;-171.991;14;0.834541343 19.982719;12;-171.99;14;0.704085362 19.633402;12;-171.963;14;0.663701595 18;12;-171.858;14;0.293829619 17.984438;12;-171.857;14;0.707282186 17.849949;12;-171.85;14;0.077743553 16.052105;12;-171.758;14;0.171163432 16;12;-171.755;14;0.481438781 15.98611;12;-171.754;14;0.510536175 15.743858;12;-171.744;14;0.069288984 14.04604;12;-171.674;14;0.133335793 14;12;-171.671;14;0.737384691 13.987724;12;-171.67;14;0.200783131 13.929831;12;-171.666;14;0.663345112 13.659422;12;-171.659;14;0.88486244 11.999999;12;-171.621;14;0.593096616 11.989276;12;-171.621;14;0.085128715 11.938703;12;-171.619;14;0.758618725 11.631634;12;-171.632;14;0.625795153 10;12;-171.696;14;0.997413572 9.990788;12;-171.697;14;0.347961716 9.696663;12;-171.697;14;0.662952522 9.141153;12;-171.697;14;0.876189349 8;12;-171.842;14;0.279409543 7.860245;12;-171.86;14;0.472371444 6.838618;12;-171.991;14;0.439385673 6.80563;12;-171.993;14;0.491185991 6.772837;12;-171.998;14;0.553390951 6.760443;12;-172;14;0.081233136 6.125075;12;-172.125;14;0.395316361 6;12;-172.15;14;0.450848928 4.454031;12;-172.454;14;0.031976125 4;12;-172.543;14;0.482699756 3.994866;12;-172.544;14;0.858131594 2.881026;12;-172.881;14;0.131900748 2.014807;12;-173.143;14;0.439437968 2.002672;12;-173.146;14;0.412063632 2;12;-173.146;14;0.203540506 1.977383;12;-173.152;14;0.80818367 1.326167;12;-173.326;14;0.890125238 0;12;-173.682;14;0.401985395 ================================================ FILE: examples/data/input_data/Moureze/Sections_NS.csv ================================================ X;Y;Z;PART_ID;Cutoff 162;397.742584;-150;1;0.319533724 162;397.323975;-150.019;1;0.277706768 162;396.549408;-150.026;1;0.217495036 162;396.181;-150;1;0.774891024 162;396;-149.987;1;0.264671468 162;395.986389;-149.986;1;0.529783055 162;394;-149.848;1;0.638671692 162;393.836182;-149.836;1;0.225954485 162;393.794678;-149.833;1;0.326445059 162;393.739624;-149.817;1;0.454824014 162;393.684387;-149.781;1;0.353292737 162;392;-149.234;1;0.709764696 162;391.735016;-149.148;1;0.083393341 162;390.297302;-148.03;1;0.536414058 162;390.282562;-148;1;0.941876117 162;390.264069;-147.963;1;0.483591756 162;390;-147.483;1;0.800640985 162;389.19519;-146.021;1;0.549409553 162;389.191772;-146;1;0.54841611 162;389.185425;-145.961;1;0.732200864 162;388.99472;-144.995;1;0.678183307 162;388.802734;-144.022;1;0.459951292 162;388.800903;-144;1;0.510253815 162;388.797485;-143.96;1;0.834988926 162;388.668488;-142.668;1;0.104915567 162;388.603943;-142.023;1;0.311790619 162;388.602753;-142;1;0.538292736 162;388.600525;-141.958;1;0.164282777 162;388.563385;-140.563;1;0.353620436 162;388.548981;-140.023;1;0.625935871 162;388.548462;-140;1;0.775803967 162;388.547241;-139.944;1;0.767635602 162;388.514648;-138.515;1;0.09244357 162;388.503448;-138.024;1;0.914039889 162;388.502686;-138;1;0.930900822 162;388.501282;-137.956;1;0.183824376 162;388.44809;-136.448;1;0.545100691 162;388.433136;-136.025;1;0.915117657 162;388.430908;-136;1;0.213624214 162;388.305115;-134.612;1;0.797224943 162;388.244263;-134.244;1;0.274847784 162;388.207977;-134.025;1;0.195434402 162;388.202759;-134;1;0.200890784 162;388.113434;-133.572;1;0.288339918 162;388;-132.996;1;0.701135438 162;387.808716;-132.026;1;0.917226748 162;387.801758;-132;1;0.173129609 162;387.751038;-131.813;1;0.879433397 162;387.735901;-131.736;1;0.980300123 162;387.401154;-130.026;1;0.868500286 162;387.400146;-130;1;0.078744679 162;387.398315;-129.952;1;0.565998673 162;387.386475;-129.386;1;0.495216111 162;387.358002;-128.027;1;0.161769985 162;387.362976;-128;1;0.411697401 162;387.372223;-127.951;1;0.895339531 162;387.447235;-127.447;1;0.269268215 162;387.662811;-126;1;0.747760606 162;387.682831;-125.866;1;0.183274068 162;387.718048;-125.784;1;0.236977266 162;387.740509;-125.741;1;0.183270725 162;388;-125.242;1;0.535964478 162;388.424774;-124.425;1;0.071924788 162;388.63147;-124.027;1;0.100132476 162;388.641144;-124;1;0.548423167 162;388.996368;-122.996;1;0.790041271 162;389.34906;-122;1;0.769092682 162;389.519226;-121.519;1;0.114290893 162;389.626556;-121.216;1;0.408928014 162;389.901855;-120.592;1;0.222662279 162;390;-120.288;1;0.787108103 162;390.070129;-120.07;1;0.281513848 162;390.083771;-120.028;1;0.09107406 162;390.088776;-120;1;0.052199045 162;390.184479;-119.467;1;0.242082998 162;390.354767;-118.355;1;0.588839123 162;390.404785;-118.028;1;0.757865642 162;390.404602;-118;1;0.672379005 162;390.404297;-117.95;1;0.900854266 162;390.430206;-116.43;1;0.500452567 162;390.437073;-116.028;1;0.718179474 162;390.430176;-116;1;0.678877214 162;390.417419;-115.948;1;0.425661965 162;390.070313;-114.07;1;0.87132336 162;390.062531;-114.028;1;0.355141692 162;390.052551;-114;1;0.840838235 162;390.034058;-113.948;1;0.805448303 162;390;-113.835;1;0.547664997 162;389.456543;-112.028;1;0.633662731 162;389.449463;-112;1;0.104405804 162;389.266327;-111.266;1;0.748256519 162;388.977417;-110.109;1;0.780237967 162;388.940979;-110;1;0.776117108 162;388.923462;-109.948;1;0.895653804 162;388.213562;-108.214;1;0.793692582 162;388.137695;-108.028;1;0.802162273 162;388.12207;-108;1;0.171865625 162;388;-107.779;1;0.609571615 162;387.620422;-107.093;1;0.641167191 162;386.962006;-106.028;1;0.464026088 162;386.940582;-106;1;0.922682181 162;386.901062;-105.948;1;0.03619485 162;386.711761;-105.708;1;0.975159848 162;386;-104.848;1;0.407441988 162;385.623688;-104.394;1;0.716188195 162;385.319611;-104.028;1;0.941569854 162;385.306366;-104;1;0.263153215 162;384.679565;-102.68;1;0.842303891 162;384.519897;-102.343;1;0.380525194 162;384.345428;-102.028;1;0.35270596 162;384.332123;-102;1;0.798511389 162;384.307556;-101.949;1;0.945493776 162;384;-100.678;1;0.172133288 162;383.84259;-100.027;1;0.762270722 162;383.838623;-100;1;0.848806565 162;383.811157;-99.8111;1;0.238486756 162;383.655792;-98.743;1;0.579355621 162;383.63504;-98.6987;1;0.709205434 162;383.173584;-98;1;0.053647649 162;382;-96.2231;1;0.843071864 162;381.852631;-96;1;0.051587431 162;381.718658;-95.7972;1;0.782537539 162;381.643677;-95.6944;1;0.329613447 162;381.568604;-95.6569;1;0.998546496 162;380;-94.9556;1;0.147104419 162;379.646912;-94.7977;1;0.104940034 162;379.57251;-94.7749;1;0.727396803 162;378.470062;-94.4701;1;0.805491876 162;378;-94.3401;1;0.861341076 162;377.649261;-94.2431;1;0.044782771 162;376.076935;-94.0769;1;0.017514844 162;376;-94.0688;1;0.571823355 162;375.690216;-94.036;1;0.309484779 162;375.650543;-94.0299;1;0.206251171 162;375.61087;-94.0279;1;0.699083287 162;375.349609;-94.0259;1;0.357282355 162;374.011383;-94.0114;1;0.90160234 162;374;-94.0113;1;0.552744221 162;373.843201;-94.0096;1;0.001402233 162;373.651245;-94.0144;1;0.20015594 162;373.489563;-94.0259;1;0.72449498 162;372.152374;-94.087;1;0.561811315 162;372.089813;-94.0898;1;0.856396986 162;372;-94.0939;1;0.088933381 162;371.65155;-94.1097;1;0.369952329 162;371.578003;-94.1147;1;0.657500981 162;370.233307;-94.2333;1;0.598476804 162;370;-94.2539;1;0.388799366 162;369.651642;-94.2846;1;0.194172405 162;369.578094;-94.2942;1;0.488306185 162;368.439667;-94.4397;1;0.292152333 162;368;-94.4958;1;0.568081176 162;367.65152;-94.5403;1;0.290956433 162;367.577911;-94.5522;1;0.564136181 162;366.701111;-94.7011;1;0.080911058 162;366;-94.8202;1;0.711903419 162;365.651123;-94.8795;1;0.177654359 162;365.577454;-94.8953;1;0.424663402 162;365.010773;-95.0108;1;0.802245439 162;364;-95.2167;1;0.083348805 162;363.650574;-95.2879;1;0.795510135 162;363.552124;-95.3141;1;0.749436924 162;363.359436;-95.3594;1;0.443962407 162;362;-95.6793;1;0.927807368 162;361.740326;-95.7403;1;0.242322813 162;361.625122;-95.7674;1;0.434908996 162;360.861877;-96;1;0.396961928 162;360.201263;-96.2013;1;0.006785662 162;360;-96.2626;1;0.558724291 162;359.698181;-96.3546;1;0.674051747 162;359.648712;-96.3728;1;0.373518341 162;359.574463;-96.4037;1;0.830498745 162;358.721405;-96.7214;1;0.794080736 162;358;-96.9901;1;0.554416127 162;357.647217;-97.1215;1;0.514878369 162;357.30658;-97.2682;1;0.15615901 162;357.279846;-97.2799;1;0.540215549 162;356;-97.8401;1;0.346455343 162;355.943817;-97.8647;1;0.964253974 162;355.886139;-97.8861;1;0.405024904 162;355.578979;-98;1;0.430688405 162;355.508057;-98.0263;1;0.365995975 162;354.571167;-98.5712;1;0.190240121 162;354;-98.9034;1;0.95558008 162;353.987152;-98.9108;1;0.606200812 162;353.643158;-99.1174;1;0.945654674 162;353.545593;-99.2048;1;0.414496051 162;353.35788;-99.3579;1;0.16247583 162;352.570404;-100;1;0.912954652 162;352.256195;-100.256;1;0.461154092 162;352;-100.465;1;0.197710198 162;351.15448;-101.154;1;0.843583319 162;350.117523;-102;1;0.995718861 162;350.084534;-102.027;1;0.554952719 162;350.057617;-102.058;1;0.4136145 162;350.030243;-102.089;1;0.356760563 162;350;-102.124;1;0.517998277 162;349.137177;-103.137;1;0.200830773 162;348.402161;-104;1;0.585028194 162;348.391602;-104.012;1;0.874319248 162;348.317261;-104.105;1;0.710779888 162;348.216522;-104.217;1;0.549214592 162;348;-104.457;1;0.791647357 162;347.269501;-105.269;1;0.184426071 162;346.612518;-106;1;0.234811313 162;346.587891;-106.027;1;0.48331311 162;346.310486;-106.31;1;0.13322027 162;346;-106.627;1;0.198498828 162;345.711212;-106.922;1;0.796503709 162;345.629852;-107.014;1;0.874087111 162;345.305664;-107.306;1;0.841379979 162;344.533234;-108;1;0.251713208 162;344.486908;-108.042;1;0.123082323 162;344.41803;-108.106;1;0.837217088 162;344.241638;-108.242;1;0.35295579 162;344;-108.428;1;0.666869606 162;343.111359;-109.111;1;0.475314085 162;342;-109.967;1;0.917522902 162;341.981079;-109.981;1;0.005026832 162;341.956512;-110;1;0.118921488 162;341.920624;-110.028;1;0.89794753 162;341.832458;-110.097;1;0.50843721 162;341.481201;-110.353;1;0.770347261 162;340.846283;-110.846;1;0.367601103 162;340;-111.504;1;0.660930251 162;339.746582;-111.701;1;0.585844558 162;339.720825;-111.721;1;0.048136475 162;339.351807;-112;1;0.7901023 162;339.315277;-112.028;1;0.69002453 162;338.692291;-112.692;1;0.970616623 162;338;-113.431;1;0.464691724 162;337.745758;-113.702;1;0.382128853 162;337.72522;-113.725;1;0.324458726 162;337.480194;-114;1;0.425616526 162;337.468567;-114.013;1;0.49741767 162;337.379822;-114.185;1;0.494519938 162;336.995392;-114.995;1;0.067944553 162;336.518738;-116;1;0.04323328 162;336.468262;-116.106;1;0.790982543 162;336.371613;-116.372;1;0.877968128 162;336;-117.391;1;0.242315091 162;335.837463;-117.837;1;0.001319612 162;335.778229;-118;1;0.279440481 162;335.768616;-118.026;1;0.090426798 162;335.619995;-118.281;1;0.862603239 162;335.077301;-119.077;1;0.427378394 162;334.4487;-120;1;0.796555892 162;334.432404;-120.024;1;0.886157596 162;334.217255;-120.217;1;0.69642551 162;334;-120.413;1;0.268573284 162;333.604858;-120.768;1;0.277615321 162;332.869324;-120.759;1;0.903657486 162;332.789398;-120.789;1;0.839010454 162;332;-121.093;1;0.266152125 162;331.600616;-121.246;1;0.471433595 162;331.581146;-121.236;1;0.208420262 162;331.495392;-121.154;1;0.304494479 162;331.060822;-121.061;1;0.162617812 162;330;-120.833;1;0.393638414 162;329.581421;-120.744;1;0.341546598 162;328.539581;-120.024;1;0.713421844 162;328.524048;-120;1;0.830732988 162;328.482422;-119.936;1;0.758220472 162;328;-119.386;1;0.469493436 162;326.802185;-118.019;1;0.574080095 162;326.792145;-118;1;0.153963625 162;326.764648;-117.947;1;0.496555443 162;326;-116.767;1;0.705323247 162;325.520294;-116.027;1;0.289074819 162;325.501068;-116;1;0.029345512 162;325.479462;-115.97;1;0.064815039 162;324.664886;-114.665;1;0.074352263 162;324.279419;-114.048;1;0.457479684 162;324.241577;-114;1;0.183585149 162;324.201996;-113.95;1;0.856149487 162;324;-113.7;1;0.117089725 162;322.652954;-112.028;1;0.120095578 162;322.625885;-112;1;0.436678824 162;322;-111.36;1;0.724764878 162;321.713196;-111.067;1;0.406677307 162;321.636566;-110.99;1;0.980540038 162;320.742523;-110.027;1;0.953587492 162;320.716156;-110;1;0.024432999 162;320.665161;-109.948;1;0.995662582 162;320;-109.251;1;0.328207568 162;319.64032;-108.873;1;0.257136568 162;318.816437;-108.027;1;0.127831725 162;318.792603;-108;1;0.933509038 162;318.725311;-107.925;1;0.530072896 162;318;-107.157;1;0.114584289 162;316.932129;-106.026;1;0.942180555 162;316.910553;-106;1;0.613830962 162;316.870789;-105.952;1;0.783688269 162;316;-105.026;1;0.712386874 162;315.058685;-104.026;1;0.440498758 162;315.041718;-104;1;0.266629598 162;315.010376;-103.952;1;0.779518698 162;314.610931;-103.432;1;0.039374261 162;314;-102.628;1;0.253903297 162;313.65799;-102.177;1;0.885688369 162;313.503632;-102.021;1;0.831797071 162;313.486725;-102;1;0.580613412 162;312.388336;-100.603;1;0.38493172 162;312;-100.097;1;0.722862204 162;311.935608;-100.013;1;0.492470107 162;311.925995;-100;1;0.825405191 162;311.892242;-99.9542;1;0.107290712 162;310;-98.0915;1;0.049804063 162;309.931702;-98.0242;1;0.390290141 162;309.894989;-98;1;0.350385014 162;309.648651;-97.8374;1;0.962229396 162;309.48761;-97.7802;1;0.628777275 162;308;-97.0766;1;0.993123787 162;307.678589;-96.9246;1;0.731805288 162;306.599213;-96.5992;1;0.416703542 162;306;-96.4186;1;0.01703064 162;305.749298;-96.343;1;0.922317644 162;305.682312;-96.3273;1;0.54497471 162;305.615326;-96.3204;1;0.893271126 162;304.128906;-96.1289;1;0.021928389 162;304;-96.1123;1;0.927495463 162;303.684875;-96.0717;1;0.366734446 162;303.618378;-96.0746;1;0.549908143 162;302.144104;-96.1441;1;0.215597085 162;302;-96.1509;1;0.810100783 162;301.686188;-96.1657;1;0.663167776 162;301.619934;-96.1819;1;0.132594356 162;301.536133;-96.1976;1;0.165846024 162;300.487;-96.487;1;0.990854195 162;300.222809;-96.5599;1;0.382937265 162;300;-96.6843;1;0.560025161 162;299.15567;-97.1557;1;0.940516397 162;298;-97.8009;1;0.273087863 162;297.872192;-97.8722;1;0.071857524 162;297.834808;-97.8931;1;0.674786751 162;297.683167;-97.997;1;0.670656818 162;297.680878;-98;1;0.957683557 162;297.646057;-98.0455;1;0.178103596 162;297.133148;-99.1331;1;0.480850414 162;296.745178;-99.9558;1;0.156632906 162;296.733917;-100;1;0.887030137 162;296.727814;-100.024;1;0.470313094 162;296.721497;-100.092;1;0.87882072 162;296.613434;-100.613;1;0.745216669 162;296.326019;-102;1;0.604776457 162;296.320984;-102.024;1;0.937430806 162;296.246704;-102.247;1;0.923832579 162;296;-102.985;1;0.947785055 162;295.74588;-103.746;1;0.49222859 162;295.674744;-103.959;1;0.971636804 162;295.666199;-104;1;0.353372485 162;295.660156;-104.029;1;0.272672879 162;295.053833;-105.054;1;0.26433195 162;294.521179;-105.954;1;0.377875804 162;294.500092;-106;1;0.616778114 162;294.488647;-106.025;1;0.323116503 162;294.2771;-106.277;1;0.86210689 162;294;-106.607;1;0.97993129 162;293.693848;-106.972;1;0.223608716 162;293.662048;-107.023;1;0.940886134 162;293.373657;-107.374;1;0.977087342 162;292.859161;-108;1;0.262408371 162;292.855743;-108.004;1;0.527763362 162;292.426025;-108.426;1;0.967723243 162;292;-108.844;1;0.245219991 162;291.731598;-109.108;1;0.090656403 162;291.65387;-109.201;1;0.176378098 162;291.413483;-109.413;1;0.740299489 162;290.750854;-110;1;0.947271558 162;290.72229;-110.025;1;0.615754474 162;290.353882;-110.354;1;0.390260841 162;290;-110.669;1;0.101891516 162;289.724854;-110.915;1;0.440840466 162;289.669739;-110.968;1;0.604282784 162;289.553284;-111.059;1;0.332806655 162;289.269196;-111.269;1;0.059305081 162;288.543976;-111.806;1;0.04736256 162;288.281799;-112;1;0.975993585 162;288.119995;-112.12;1;0.676302636 162;288;-112.209;1;0.878590747 162;286.97168;-112.972;1;0.946590515 162;286;-113.692;1;0.274792939 162;285.823395;-113.823;1;0.267111022 162;285.773926;-113.86;1;0.089417616 162;285.658203;-113.96;1;0.008179418 162;285.588867;-114;1;0.830012931 162;285.492798;-114.055;1;0.063470212 162;284.480194;-114.48;1;0.936227348 162;284.215393;-114.591;1;0.712708065 162;284;-114.681;1;0.939053962 162;283.65918;-114.821;1;0.430343573 162;283.588837;-114.782;1;0.173144289 162;282.646973;-114.647;1;0.026820394 162;282;-114.554;1;0.453878007 162;281.661072;-114.506;1;0.179017186 162;280.761658;-114;1;0.89916182 162;280;-113.572;1;0.040608363 162;279.733307;-113.422;1;0.31188619 162;279.642822;-113.351;1;0.150010852 162;278.619781;-112.62;1;0.935372168 162;278;-112.177;1;0.922529668 162;277.787689;-112.025;1;0.130200281 162;277.749969;-112;1;0.346738289 162;277.667328;-111.946;1;0.223559221 162;276;-110.955;1;0.498444457 162;275.740234;-110.8;1;0.555072738 162;275.679565;-110.763;1;0.835056399 162;274.172211;-110.024;1;0.091300347 162;274.126587;-110;1;0.178107395 162;274;-109.933;1;0.53979445 162;273.85675;-109.857;1;0.13041056 162;273.674408;-109.76;1;0.123066389 162;272;-109.059;1;0.450821286 162;271.745636;-108.953;1;0.043939124 162;271.677673;-108.931;1;0.295716872 162;271.634064;-108.925;1;0.907981212 162;270.727875;-108.728;1;0.504011968 162;270;-108.569;1;0.066090017 162;269.704559;-108.505;1;0.788947712 162;269.576721;-108.496;1;0.665047516 162;268.383453;-108.383;1;0.064137211 162;268;-108.347;1;0.748401517 162;267.682739;-108.317;1;0.030846906 162;267.615814;-108.32;1;0.237078444 162;266.289459;-108.289;1;0.885955455 162;266;-108.283;1;0.232852063 162;265.684784;-108.275;1;0.771049559 162;264.326447;-108.326;1;0.414633582 162;264;-108.339;1;0.829869293 162;263.752716;-108.348;1;0.595320759 162;263.686584;-108.358;1;0.510183733 162;263.620483;-108.372;1;0.082026754 162;262.520752;-108.521;1;0.153069428 162;262;-108.591;1;0.481702033 162;261.688049;-108.633;1;0.267792647 162;261.622223;-108.652;1;0.474730917 162;260.821564;-108.822;1;0.568189622 162;260;-108.995;1;0.000588905 162;259.689209;-109.061;1;0.539214418 162;259.623627;-109.077;1;0.584251625 162;259.180176;-109.18;1;0.200922704 162;258;-109.454;1;0.339037851 162;257.690338;-109.526;1;0.605693383 162;257.55069;-109.551;1;0.920316937 162;256;-109.83;1;0.580824201 162;255.856171;-109.856;1;0.066148154 162;255.756744;-109.874;1;0.469439334 162;255.715286;-109.883;1;0.513963361 162;254.721542;-110;1;0.387395944 162;254.527878;-110.023;1;0.058493556 162;254.439514;-110.04;1;0.680809149 162;254.37471;-110.048;1;0.929316429 162;254.081085;-110.081;1;0.228233244 162;253.999985;-110.09;1;0.64650638 162;252.282303;-110.282;1;0.055384685 162;252;-110.314;1;0.475485668 162;251.69519;-110.348;1;0.097045111 162;250.475128;-110.475;1;0.247711058 162;250;-110.525;1;0.814326716 162;249.760727;-110.55;1;0.670730988 162;249.696747;-110.557;1;0.174434796 162;248.737915;-110.738;1;0.243602248 162;248.000015;-110.877;1;0.112265107 162;247.761902;-110.922;1;0.23980762 162;247.698212;-110.937;1;0.733760887 162;247.098022;-111.098;1;0.779240134 162;246;-111.392;1;0.181874188 162;245.762833;-111.455;1;0.137064641 162;245.712494;-111.472;1;0.03083369 162;245.533722;-111.534;1;0.344002264 162;244.18515;-112;1;0.423692097 162;244.120834;-112.022;1;0.56520103 162;244.05864;-112.059;1;0.65804682 162;244.044464;-112.067;1;0.834434198 162;243.999985;-112.093;1;0.968622476 162;242.792267;-112.792;1;0.001810447 162;242;-113.251;1;0.123190466 162;241.76384;-113.388;1;0.370559193 162;241.700638;-113.43;1;0.171435648 162;241.534409;-113.534;1;0.033755838 162;240.79306;-114;1;0.256324335 162;240.757721;-114.022;1;0.404705086 162;240.375351;-114.375;1;0.240307469 162;240;-114.722;1;0.48466028 162;239.837769;-114.872;1;0.914578931 162;239.700729;-114.999;1;0.382102378 162;239.355255;-115.355;1;0.13914026 162;238.729919;-116;1;0.301821753 162;238.710037;-116.021;1;0.99719012 162;238.446213;-116.367;1;0.458953502 162;238.412201;-116.412;1;0.027949785 162;238.000015;-116.959;1;0.013325663 162;237.552368;-117.552;1;0.211264068 162;237.507782;-117.611;1;0.857224397 162;237.387939;-117.766;1;0.874340234 162;237.257095;-117.986;1;0.39286273 162;237.251526;-118;1;0.438682612 162;236.900085;-118.9;1;0.408430015 162;236.706818;-119.395;1;0.499311887 162;236.537613;-120;1;0.634800289 162;236.532242;-120.019;1;0.936058603 162;236.592896;-120.593;1;0.181537724 162;236.707794;-121.68;1;0.76862686 162;236.702164;-122;1;0.899823396 162;236.699402;-122.157;1;0.971852606 162;236.815308;-122.573;1;0.491094668 162;237.029694;-123.03;1;0.999244877 162;237.23291;-123.462;1;0.0856959 162;237.309006;-123.668;1;0.552759051 162;237.331009;-123.741;1;0.511683904 162;237.40538;-124;1;0.757297327 162;237.857864;-125.575;1;0.215610072 162;237.816299;-125.816;1;0.148619178 162;237.784683;-126;1;0.858136601 162;237.651688;-126.773;1;0.990180113 162;237.554672;-127.509;1;0.317764937 162;237.541687;-127.542;1;0.166775962 162;237.356918;-128;1;0.471368753 162;237.217361;-128.346;1;0.496096222 162;236.898407;-128.898;1;0.060458139 162;236.568634;-129.469;1;0.611653875 162;236.224243;-130;1;0.84227128 162;236.135986;-130.136;1;0.223647197 162;236;-130.346;1;0.040375871 162;235.82991;-130.608;1;0.833207594 162;235.499893;-131.079;1;0.610943216 162;235.388489;-131.329;1;0.199680545 162;235.370316;-131.37;1;0.671561414 162;235.193161;-131.775;1;0.653000566 162;235.189758;-131.857;1;0.888839532 162;235.146072;-132;1;0.990903371 162;234.877762;-132.878;1;0.525912234 162;234.639267;-133.658;1;0.023016371 162;234.610611;-134;1;0.429533063 162;234.563416;-134.563;1;0.377361647 162;234.505417;-135.256;1;0.588485158 162;234.40596;-135.773;1;0.56519758 162;234.442627;-136;1;0.931823933 162;234.461044;-136.114;1;0.331921813 162;234.523071;-136.523;1;0.551881585 162;234.582291;-136.914;1;0.586341685 162;234.825333;-138;1;0.470456193 162;235.043564;-138.975;1;0.109950849 162;235.062241;-139.062;1;0.585888716 162;235.222519;-139.808;1;0.093204471 162;235.297028;-139.996;1;0.212419761 162;235.29892;-140;1;0.481361576 162;235.372421;-140.166;1;0.425035333 162;236;-141.695;1;0.168438755 162;236.125061;-142;1;0.966644854 162;236.147232;-142.054;1;0.407400278 162;236.272797;-142.273;1;0.963262029 162;237.26413;-144;1;0.363382786 162;237.732971;-144.817;1;0.645544365 162;237.770142;-144.906;1;0.811012839 162;238.000015;-145.304;1;0.029460771 162;238.381317;-145.964;1;0.851215561 162;238.398483;-146;1;0.918384705 162;238.407776;-146.019;1;0.978489067 162;238.938187;-146.938;1;0.818043511 162;239.531021;-147.965;1;0.418997771 162;239.542648;-148;1;0.842288689 162;239.54895;-148.019;1;0.316551041 162;239.526657;-148.088;1;0.556175164 162;239.548187;-148.258;1;0.653741425 162;239.568619;-149.569;1;0.779494126 162;239.570602;-149.696;1;0.819163116 162;239.628464;-150;1;0.6152043 162;239.631943;-150.018;1;0.080965508 162;238.843613;-150.844;1;0.175718052 162;238.000015;-151.727;1;0.553384989 162;237.986633;-151.741;1;0.763985907 162;237.860199;-151.86;1;0.314259854 162;237.761978;-151.953;1;0.555188674 162;237.715729;-151.961;1;0.877543226 162;237.583206;-152;1;0.728802899 162;236.358139;-152.358;1;0.003303005 162;236;-152.463;1;0.429067996 162;235.766159;-152.531;1;0.782402136 162;235.721054;-152.532;1;0.193917863 162;234.716156;-152.716;1;0.158981239 162;234;-152.847;1;0.331065008 162;233.738281;-152.895;1;0.6521592 162;233.714096;-152.894;1;0.591268728 162;233.224747;-152.936;1;0.595051432 162;232.957382;-152.957;1;0.334507168 162;232;-153.035;1;0.308106283 162;231.726776;-153.057;1;0.28100324 162;231.679947;-153.067;1;0.98660668 162;230.963226;-152.963;1;0.548816618 162;230;-152.823;1;0.129922671 162;229.731369;-152.784;1;0.146419491 162;229.595001;-152.787;1;0.80118035 162;229.422226;-152.725;1;0.289560058 162;229.27179;-152.451;1;0.541796791 162;228.93129;-152;1;0.708615257 162;228.140259;-150.953;1;0.924851566 162;228.006012;-150.006;1;0.462353572 162;228.005157;-150;1;0.447200142 162;227.999985;-149.964;1;0.36138572 162;227.927109;-149.449;1;0.490552442 162;227.732697;-149.045;1;0.319860227 162;227.468552;-148.815;1;0.374927407 162;226.245056;-148.022;1;0.451649034 162;226.211288;-148;1;0.288454265 162;226;-147.86;1;0.865891701 162;225.596909;-147.592;1;0.649676272 162;225.568573;-147.569;1;0.953409084 162;225.295364;-147.339;1;0.704468457 162;225.013931;-147.299;1;0.498462391 162;224;-147.207;1;0.200260275 162;223.313263;-147.145;1;0.859377979 162;223.146973;-147.147;1;0.456867621 162;222.000015;-147.16;1;0.418257507 162;221.712326;-147.164;1;0.898393888 162;221.272064;-147.128;1;0.703354897 162;221.138687;-147.139;1;0.634062079 162;220;-147.228;1;0.819942733 162;219.707733;-147.251;1;0.883781287 162;219.256241;-147.256;1;0.527303763 162;217.999985;-147.406;1;0.482170178 162;217.702103;-147.441;1;0.272034876 162;217.448181;-147.448;1;0.871578856 162;217.265747;-147.453;1;0.402755378 162;216;-147.575;1;0.33010609 162;215.69574;-147.605;1;0.914676494 162;215.608414;-147.608;1;0.589579165 162;215.299698;-147.622;1;0.797962072 162;214;-147.679;1;0.42798974 162;213.692764;-147.693;1;0.180600842 162;213.689423;-147.693;1;0.681778981 162;213.355789;-147.685;1;0.814612115 162;212.000015;-147.673;1;0.0566057 162;211.683899;-147.671;1;0.638612779 162;211.670029;-147.67;1;0.157604609 162;211.428848;-147.657;1;0.316197446 162;210;-147.559;1;0.844121768 162;209.679932;-147.537;1;0.249298432 162;209.518967;-147.519;1;0.832241221 162;209.512726;-147.518;1;0.157522259 162;208;-147.297;1;0.625346055 162;207.677948;-147.25;1;0.162171457 162;207.529892;-147.219;1;0.18562461 162;207.154755;-147.155;1;0.490656454 162;206.000015;-146.957;1;0.809650281 162;205.754089;-146.915;1;0.387134426 162;205.68457;-146.903;1;0.124758164 162;205.682693;-146.903;1;0.124958647 162;205.678741;-146.902;1;0.190620542 162;204.713211;-146.713;1;0.134671993 162;204;-146.574;1;0.839490494 162;203.74823;-146.524;1;0.062164258 162;203.682495;-146.519;1;0.925978046 162;202.38208;-146.382;1;0.068179116 162;201.999985;-146.342;1;0.612676676 162;201.790375;-146.32;1;0.060352038 162;200.421738;-146.422;1;0.695207994 162;200;-146.453;1;0.815705292 162;199.416962;-146.497;1;0.429852986 162;199.314468;-146.502;1;0.235011455 162;199.211823;-146.524;1;0.36788509 162;198.642975;-146.643;1;0.6219423 162;198;-146.778;1;0.563820538 162;197.797379;-146.821;1;0.45927359 162;197.079132;-147.079;1;0.360938699 162;196;-147.468;1;0.631022369 162;195.855164;-147.52;1;0.291482949 162;195.788773;-147.546;1;0.192776747 162;195.619766;-147.62;1;0.380092623 162;194.747772;-148;1;0.64773642 162;194.529221;-148.095;1;0.901427415 162;194.473541;-148.123;1;0.08932074 162;194.250534;-148.251;1;0.238371069 162;194;-148.394;1;0.853603134 162;192.978714;-148.979;1;0.404007698 162;192;-149.539;1;0.977395406 162;191.831894;-149.635;1;0.993899334 162;191.802902;-149.652;1;0.486837625 162;191.741959;-149.683;1;0.198653419 162;191.70401;-149.704;1;0.751423611 162;191.16777;-150;1;0.22369492 162;190.415314;-150.415;1;0.386456528 162;190;-150.645;1;0.600571671 162;189.791901;-150.759;1;0.893148988 162;189.065918;-151.066;1;0.610578323 162;188;-151.516;1;0.801282285 162;187.839157;-151.584;1;0.675845669 162;187.809555;-151.597;1;0.90995316 162;187.64296;-151.643;1;0.082209348 162;186.353058;-152;1;0.597483235 162;186.299133;-152.015;1;0.705546923 162;186.2435;-152.026;1;0.40910145 162;186.051712;-152.052;1;0.837959277 162;186;-152.059;1;0.64782828 162;184.289246;-152.289;1;0.840573236 162;184;-152.328;1;0.753586722 162;183.843658;-152.349;1;0.926514769 162;183.801865;-152.355;1;0.666727553 162;183.760086;-152.358;1;0.487353204 162;182.457916;-152.458;1;0.899604641 162;182;-152.493;1;0.830314892 162;181.804016;-152.508;1;0.008952576 162;181.76268;-152.51;1;0.995173408 162;180.600342;-152.6;1;0.461324732 162;180;-152.647;1;0.647570924 162;179.806152;-152.662;1;0.38798937 162;179.765289;-152.664;1;0.442087437 162;178.710098;-152.71;1;0.57301256 162;178;-152.741;1;0.364645738 162;177.808105;-152.75;1;0.919025108 162;177.767639;-152.751;1;0.796553349 162;176.780365;-152.78;1;0.050594475 162;176;-152.804;1;0.148701651 162;175.809982;-152.809;1;0.846045434 162;175.769897;-152.81;1;0.107433634 162;174.863693;-152.864;1;0.128512899 162;174;-152.915;1;0.442074465 162;173.812027;-152.926;1;0.573338939 162;173.772385;-152.925;1;0.293686259 162;172.956451;-152.956;1;0.427597693 162;172;-152.993;1;0.516542565 162;171.813965;-153;1;0.063339344 162;171.774719;-152.995;1;0.514241747 162;170.988541;-152.989;1;0.062399169 162;170;-152.98;1;0.686673592 162;169.815613;-152.978;1;0.80460147 162;169.776703;-152.972;1;0.09419306 162;168.896942;-152.897;1;0.827238476 162;168;-152.82;1;0.032868829 162;167.816849;-152.804;1;0.158606239 162;167.778183;-152.797;1;0.481633226 162;166.705826;-152.706;1;0.41541567 162;166;-152.646;1;0.584473541 162;165.818085;-152.63;1;0.574543434 162;165.777588;-152.625;1;0.739087252 162;164.535538;-152.536;1;0.533888901 162;164;-152.497;1;0.73606742 162;163.819427;-152.484;1;0.620509105 162;163.781342;-152.483;1;0.282324765 162;162.461548;-152.462;1;0.77439709 162;162;-152.454;1;0.124276908 162;161.821121;-152.451;1;0.107467596 162;161.783401;-152.451;1;0.344371986 162;160.437637;-152.438;1;0.295519964 162;160;-152.433;1;0.774199813 162;159.822861;-152.431;1;0.361187434 162;159.755539;-152.426;1;0.639291573 162;158.185089;-152.185;1;0.030988025 162;158;-152.157;1;0.048796745 162;157.065308;-152.013;1;0.97282691 162;157.011871;-152;1;0.880860041 162;156;-151.753;1;0.246011404 162;155.891312;-151.727;1;0.329401703 162;155.824585;-151.717;1;0.248302979 162;155.787567;-151.708;1;0.088734054 162;155.655594;-151.656;1;0.797731446 162;154;-150.995;1;0.395079391 162;153.824417;-150.924;1;0.045335631 162;152.646317;-150.036;1;0.70007749 162;152.604263;-150.013;1;0.202793942 162;152.58638;-150;1;0.809656978 162;152;-149.57;1;0.579807853 162;151.863739;-149.471;1;0.151286208 162;150.312775;-148.313;1;0.861856254 162;150;-148.079;1;0.864285489 162;149.91156;-148.013;1;0.36439649 162;149.900177;-148;1;0.091060142 162;149.821198;-147.908;1;0.769179963 162;149.31308;-147.313;1;0.735740485 162;148.203293;-146.013;1;0.22178767 162;148.202988;-146;1;0.493395186 162;148.195419;-145.665;1;0.456421903 162;148;-145.002;1;0.456391061 162;147.757431;-144.18;1;0.907258146 162;147.732498;-144.014;1;0.210074229 162;147.736603;-144;1;0.977436478 162;147.753998;-143.942;1;0.641396588 162;147.80954;-143.81;1;0.60551135 162;148;-143.355;1;0.241878841 162;148.399979;-142.4;1;0.190905591 162;148.561661;-142.014;1;0.919696718 162;148.573944;-142;1;0.797714481 162;149.240814;-141.241;1;0.286192488 162;149.733887;-140.679;1;0.127895572 162;149.793137;-140.615;1;0.821526782 162;149.822525;-140.575;1;0.915174352 162;150;-140.35;1;0.473297885 162;150.154129;-140.154;1;0.07273094 162;150.275574;-140;1;0.738394642 162;150.651062;-139.523;1;0.638061906 162;151.041275;-139.041;1;0.596740022 162;151.802673;-138.1;1;0.401576737 162;151.855286;-138.024;1;0.287241934 162;151.869614;-138;1;0.284144466 162;151.918488;-137.918;1;0.563642292 162;151.948563;-137.868;1;0.534404392 162;152;-137.794;1;0.150937543 162;152.732193;-136.732;1;0.798076196 162;153.237198;-136;1;0.085271102 162;153.271484;-135.95;1;0.910330363 162;153.56105;-135.561;1;0.276532126 162;153.797638;-135.243;1;0.846101558 162;154;-135.019;1;0.979235474 162;154.48381;-134.484;1;0.237908762 162;154.921082;-134;1;0.776314807 162;155.433273;-133.433;1;0.70467689 162;155.718643;-133.118;1;0.439153481 162;155.793686;-133.04;1;0.462797505 162;156;-132.855;1;0.550176852 162;156.451385;-132.451;1;0.898780937 162;156.955887;-132;1;0.499898484 162;157.506943;-131.507;1;0.307104134 162;157.709442;-131.326;1;0.561739156 162;157.790451;-131.24;1;0.394288396 162;158;-131.023;1;0.565352081 162;158.50322;-130.503;1;0.914975058 162;158.974915;-130.016;1;0.793824605 162;158.974258;-130;1;0.371710372 162;158.939377;-129.166;1;0.870652087 162;158.939346;-128.939;1;0.252183107 162;158.939255;-128.016;1;0.030781689 162;158.925949;-128;1;0.166503531 162;158;-126.908;1;0.895737594 162;157.323395;-126.11;1;0.021589344 162;157.253723;-126.016;1;0.192801465 162;157.237015;-126;1;0.720280525 162;156;-124.851;1;0.759093884 162;155.146759;-124.059;1;0.333773446 162;155.105042;-124.015;1;0.214252127 162;155.091599;-124;1;0.811728601 162;154;-122.762;1;0.52482527 162;153.785919;-122.519;1;0.380096642 162;153.745834;-122.475;1;0.434192934 162;153.468811;-122;1;0.13870527 162;152.723923;-120.724;1;0.94249385 162;152.339386;-120.065;1;0.478682317 162;152.31041;-120.015;1;0.865560669 162;152.309631;-120;1;0.702334387 162;152.308563;-119.98;1;0.799222957 162;152.304932;-119.838;1;0.024195395 162;152.250778;-118.251;1;0.675349578 162;152.242722;-118.015;1;0.828770878 162;152.249725;-118;1;0.5126863 162;152.818283;-116.818;1;0.338753546 162;153.21199;-116;1;0.404513763 162;153.467972;-115.468;1;0.934303959 162;153.634155;-115.123;1;0.181503466 162;153.735901;-114.891;1;0.665583033 162;153.775177;-114.833;1;0.023001944 162;153.813934;-114.792;1;0.189740589 162;154;-114.534;1;0.016584774 162;154.22348;-114.223;1;0.288597103 162;154.384399;-114;1;0.773329258 162;155.060715;-113.061;1;0.884113751 162;155.81427;-112.014;1;0.211159028 162;155.824661;-112;1;0.743907903 162;155.84729;-111.969;1;0.404818338 162;155.891449;-111.891;1;0.184078415 162;156;-111.7;1;0.820503473 162;156.616318;-110.616;1;0.519279307 162;156.95874;-110.014;1;0.048600376 162;156.958969;-110;1;0.613155401 162;156.959412;-109.974;1;0.367153326 162;156.978043;-108.978;1;0.749254218 162;156.996063;-108.014;1;0.802260848 162;156.983826;-108;1;0.045828823 162;156;-106.904;1;0.653436491 162;155.234238;-106.05;1;0.834202463 162;155.199066;-106.017;1;0.656364262 162;155.16835;-106;1;0.712282712 162;154;-105.35;1;0.24625324 162;153.827164;-105.254;1;0.528867573 162;153.790771;-105.237;1;0.529347552 162;152.946457;-104.946;1;0.571224003 162;152;-104.621;1;0.033301534 162;151.83168;-104.563;1;0.856900424 162;150.348663;-104;1;0.395470575 162;150;-103.868;1;0.537937863 162;149.870697;-103.819;1;0.159691035 162;149.836166;-103.811;1;0.223173523 162;149.807159;-103.807;1;0.476686005 162;149.801636;-103.807;1;0.673251433 162;148;-103.585;1;0.05840749 162;147.839386;-103.566;1;0.315815151 162;147.772247;-103.564;1;0.29818976 162;147.553192;-103.553;1;0.070590887 162;146;-103.48;1;0.146627853 162;145.842194;-103.472;1;0.733576312 162;145.506668;-103.507;1;0.275470508 162;144;-103.66;1;0.160333372 162;143.909439;-103.669;1;0.417228924 162;143.844177;-103.681;1;0.015409509 162;143.794449;-103.697;1;0.022952828 162;143.713623;-103.714;1;0.885176327 162;142.349365;-104;1;0.567495081 162;142.060608;-104.061;1;0.100193592 162;142;-104.073;1;0.981740161 162;141.828888;-104.109;1;0.455195043 162;140.56752;-104.568;1;0.740819915 162;140;-104.774;1;0.958172258 162;139.862076;-104.824;1;0.929617171 162;139.728271;-104.875;1;0.998131656 162;139.118515;-105.119;1;0.941420431 162;138.252792;-105.464;1;0.476040868 162;138;-105.585;1;0.397219912 162;137.846756;-105.658;1;0.164907611 162;137.710129;-105.71;1;0.891134254 162;137.440811;-105.813;1;0.869305211 162;136.688492;-106;1;0.880785582 162;136.642883;-106.011;1;0.223785682 162;136.556381;-106.031;1;0.073633735 162;136.524231;-106.031;1;0.578243943 162;136.110947;-106.111;1;0.726585869 162;136;-106.132;1;0.955289558 162;134.434982;-106.435;1;0.83602186 162;134;-106.519;1;0.740030385 162;133.849594;-106.548;1;0.708523766 162;133.817902;-106.545;1;0.037764646 162;132.61142;-106.611;1;0.641879339 162;132;-106.645;1;0.780664832 162;131.851898;-106.653;1;0.454579058 162;131.820694;-106.649;1;0.281849156 162;130.613663;-106.614;1;0.260594973 162;130;-106.596;1;0.477002663 162;129.854584;-106.592;1;0.262291377 162;129.823944;-106.586;1;0.165637284 162;128.473007;-106.473;1;0.724320889 162;128;-106.433;1;0.728288577 162;127.857506;-106.421;1;0.961281692 162;127.819023;-106.415;1;0.32057121 162;126.225838;-106.226;1;0.429479609 162;126;-106.199;1;0.959432454 162;125.852318;-106.181;1;0.272658871 162;124.556946;-106.01;1;0.329842083 162;124.536156;-106.006;1;0.937994312 162;124.475006;-106;1;0.058908151 162;124.000008;-105.951;1;0.193190672 162;123.945503;-105.945;1;0.643510809 162;121.999992;-105.745;1;0.302369032 162;121.894775;-105.734;1;0.44310524 162;121.866653;-105.732;1;0.483167128 162;121.838539;-105.733;1;0.158998537 162;121.72982;-105.73;1;0.529700281 162;120;-105.68;1;0.663555496 162;119.86927;-105.676;1;0.202158837 162;119.841698;-105.682;1;0.723175799 162;119.696144;-105.696;1;0.45160524 162;118;-105.866;1;0.09891914 162;117.878197;-105.878;1;0.294329662 162;117.871254;-105.879;1;0.162485582 162;117.28968;-106;1;0.18026716 162;116.222275;-106.222;1;0.243123123 162;116;-106.269;1;0.859086756 162;115.899605;-106.289;1;0.141430748 162;115.872742;-106.297;1;0.645595292 162;114.666969;-106.667;1;0.389183973 162;113.999992;-106.871;1;0.65625716 162;113.900421;-106.902;1;0.159692132 162;113.873787;-106.912;1;0.931039269 162;113.13797;-107.138;1;0.0611912 162;112;-107.488;1;0.456246827 162;111.901283;-107.518;1;0.298606237 162;111.874878;-107.527;1;0.156876394 162;111.560295;-107.56;1;0.444463638 162;110;-107.723;1;0.785853034 162;109.903526;-107.733;1;0.404677896 162;109.876862;-107.737;1;0.866839079 162;109.862358;-107.733;1;0.116937929 162;109.66082;-107.661;1;0.983212706 162;108;-107.063;1;0.527372165 162;107.89193;-107.024;1;0.68656643 162;106.874336;-106.033;1;0.929497514 162;106.839935;-106.009;1;0.895244025 162;106.831902;-106;1;0.169644425 162;106.000008;-105.112;1;0.028977037 162;105.888535;-104.993;1;0.016040736 162;105.096428;-104.031;1;0.79242525 162;105.075356;-104.008;1;0.260800187 162;105.067284;-104;1;0.232861329 162;104;-102.932;1;0.588833525 162;103.897713;-102.83;1;0.931836144 162;103.895287;-102.828;1;0.631074931 162;102.481422;-102;1;0.543549347 162;102;-101.718;1;0.567809363 162;101.921394;-101.672;1;0.706186439 162;101.89344;-101.653;1;0.686591235 162;101.87944;-101.649;1;0.065318993 162;101.57756;-101.578;1;0.969678122 162;100;-101.206;1;0.325408273 162;99.903831;-101.184;1;0.833483068 162;99.88356;-101.18;1;0.995199709 162;99.088646;-101.089;1;0.66165324 162;98;-100.964;1;0.270816702 162;97.906616;-100.954;1;0.753902873 162;97.88694;-100.949;1;0.969861468 162;96.793121;-100.793;1;0.294725472 162;96;-100.68;1;0.234737957 162;95.909523;-100.667;1;0.589558091 162;95.893936;-100.662;1;0.507767667 162;94.280968;-100.281;1;0.327933743 162;94;-100.215;1;0.376733312 162;93.118736;-100.006;1;0.288122745 162;93.101974;-100;1;0.229666592 162;93.100273;-100;1;0.979653766 162;92;-99.6772;1;0.347357147 162;91.543106;-99.5431;1;0.152640103 162;90;-99.0903;1;0.122359062 162;89.936707;-99.0718;1;0.402001603 162;89.919792;-99.0662;1;0.952988742 162;88.870811;-98.8708;1;0.180011114 162;88;-98.7086;1;0.647853388 162;87.939049;-98.6973;1;0.061714417 162;87.922752;-98.6942;1;0.914302932 162;87.906464;-98.6948;1;0.98915202 162;86.702858;-98.7029;1;0.336173794 162;86;-98.7076;1;0.426334926 162;85.924782;-98.7081;1;0.058527079 162;85.908905;-98.7122;1;0.258939581 162;84.942749;-98.9427;1;0.175873095 162;84;-99.1677;1;0.764290774 162;83.925728;-99.1854;1;0.276836748 162;83.910042;-99.1926;1;0.309599339 162;83.416504;-99.4165;1;0.566150887 162;82.130455;-100;1;0.406609998 162;82.12162;-100.004;1;0.549682168 162;82.053337;-100.053;1;0.864826691 162;82;-100.092;1;0.952414662 162;80.892113;-100.892;1;0.966286988 162;80;-101.537;1;0.738163777 162;79.730896;-101.731;1;0.422344244 162;79.37484;-101.988;1;0.327193404 162;79.358833;-101.999;1;0.716357408 162;79.357841;-102;1;0.203424773 162;79.35183;-102.006;1;0.498388353 162;78.750069;-102.75;1;0.515523062 162;78;-103.678;1;0.662467586 162;77.856064;-103.856;1;0.307743411 162;77.748383;-103.989;1;0.345700221 162;77.740524;-104;1;0.632696034 162;77.736267;-104.006;1;0.334736818 162;77.732513;-104.022;1;0.418932694 162;77.497734;-105.498;1;0.749495097 162;77.417801;-106;1;0.454592748 162;77.416832;-106.006;1;0.648281219 162;77.417084;-106.023;1;0.525092329 162;77.566353;-107.566;1;0.808873305 162;77.608307;-108;1;0.590370612 162;77.608925;-108.006;1;0.120828455 162;77.610603;-108.025;1;0.475970146 162;77.818954;-109.819;1;0.947681313 162;77.839981;-110;1;0.257660051 162;77.903397;-110.546;1;0.238846865 162;77.90406;-110.565;1;0.919078201 162;77.994125;-111.994;1;0.783973293 162;77.994492;-112;1;0.901126581 162;77.994934;-112.007;1;0.18033403 162;77.995293;-112.027;1;0.510530979 162;77.995979;-112.105;1;0.544863817 162;78;-112.202;1;0.845451021 162;78.061218;-113.687;1;0.92277015 162;78.061653;-114;1;0.567867202 162;78.061661;-114.007;1;0.941470108 162;78.05751;-114.058;1;0.370595289 162;78;-114.755;1;0.313309576 162;77.905144;-115.905;1;0.401530253 162;77.900124;-115.966;1;0.737276785 162;77.898201;-116;1;0.20826149 162;77.897781;-116.007;1;0.695515359 162;77.898117;-116.011;1;0.29738323 162;78;-116.737;1;0.345955372 162;78.1772;-118;1;0.398296021 162;78.206123;-118.206;1;0.984733754 162;78.457428;-119.997;1;0.20338244 162;78.458824;-120;1;0.524864639 162;78.466858;-120.019;1;0.236719408 162;78.481812;-120.037;1;0.562305744 162;78.671547;-120.297;1;0.818137698 162;79.72007;-121.72;1;0.691482874 162;79.89045;-121.951;1;0.200956695 162;79.935356;-122;1;0.333591365 162;80;-122.07;1;0.303925214 162;80.012917;-122.084;1;0.060306517 162;81.513855;-123.514;1;0.063187515 162;81.886307;-123.869;1;0.310544053 162;81.965012;-123.965;1;0.455827837 162;81.993591;-124;1;0.645199263 162;82;-124.008;1;0.65827114 162;83.549828;-125.905;1;0.272070646 162;83.619102;-125.991;1;0.175867109 162;83.62632;-126;1;0.668788157 162;83.633087;-126.009;1;0.299754094 162;83.632568;-126.033;1;0.198011289 162;83.598541;-127.599;1;0.323499037 162;83.589813;-128;1;0.376318072 162;83.589622;-128.009;1;0.662408644 162;83.575989;-128.029;1;0.082007613 162;82.723915;-128.724;1;0.740329758 162;82;-129.314;1;0.426749398 162;81.622131;-129.622;1;0.431872394 162;81.158615;-130;1;0.309560119 162;80.89595;-130.214;1;0.702169758 162;80.506462;-130.506;1;0.519039017 162;80;-130.887;1;0.022632575 162;79.884598;-130.973;1;0.330565048 162;79.277809;-131.278;1;0.343211448 162;78.193718;-131.822;1;0.324115268 162;78;-131.871;1;0.290053016 162;77.896645;-131.897;1;0.138107915 162;77.886803;-131.899;1;0.467568535 162;77.579781;-131.968;1;0.308942497 162;77.488411;-132;1;0.501453569 162;76.387253;-132.387;1;0.260441392 162;76.008812;-132.52;1;0.606994201 162;76;-132.523;1;0.879057811 162;75.889;-132.558;1;0.486295742 162;74.886009;-132.886;1;0.725814129 162;74;-133.176;1;0.189886848 162;73.914139;-133.204;1;0.524075692 162;73.89119;-133.212;1;0.048682505 162;73.868248;-133.227;1;0.355944478 162;73.505989;-133.506;1;0.377679789 162;72.865417;-134;1;0.19302536 162;72.376816;-134.377;1;0.277993897 162;72;-134.667;1;0.024043747 162;71.247643;-135.248;1;0.519318824 162;70.276474;-135.997;1;0.63968827 162;70.272919;-136;1;0.332916514 162;70.264755;-136.008;1;0.093630862 162;70.251823;-136.03;1;0.114755995 162;70.178406;-136.178;1;0.379244469 162;70;-136.539;1;0.485980215 162;69.516769;-137.517;1;0.078149952 162;69.277878;-138;1;0.919370722 162;69.274086;-138.008;1;0.115082712 162;69.266838;-138.029;1;0.538433809 162;68.960052;-138.96;1;0.093644322 162;68.617226;-140;1;0.858578477 162;68.614731;-140.008;1;0.672133134 162;68.610771;-140.029;1;0.127615823 162;68.498062;-140.498;1;0.812056116 162;68.137115;-142;1;0.823462581 162;68.13533;-142.007;1;0.452055221 162;68.117218;-142.117;1;0.342905678 162;68;-142.828;1;0.236004999 162;67.90844;-143.383;1;0.342511866 162;67.906609;-143.404;1;0.320939387 162;67.900841;-143.468;1;0.411618652 162;67.866959;-143.867;1;0.649284883 162;67.855644;-144;1;0.097163651 162;67.730919;-145.467;1;0.584141342 162;67.691093;-145.691;1;0.990516652 162;67.636116;-146;1;0.191498142 162;67.634842;-146.007;1;0.7660505 162;67.610321;-147.415;1;0.527127845 162;67.590691;-147.591;1;0.186425019 162;67.544952;-148;1;0.399926244 162;67.544167;-148.007;1;0.817523747 162;67.606789;-149.515;1;0.932219952 162;67.602791;-149.603;1;0.693227329 162;67.584724;-150;1;0.987632219 162;67.584412;-150.007;1;0.62497103 162;67.47905;-151.479;1;0.044272486 162;67.445305;-151.951;1;0.652772003 162;67.444901;-152;1;0.734515123 162;67.444847;-152.007;1;0.454924709 162;67.44503;-152.026;1;0.196594544 162;67.442566;-152.051;1;0.310350033 162;67.478874;-153.417;1;0.620722203 162;67.472527;-153.473;1;0.619916604 162;67.412048;-154;1;0.543429148 162;67.411308;-154.006;1;0.008909716 162;67.316689;-154.603;1;0.456480201 162;67.226891;-155.227;1;0.72660772 162;67.120621;-155.965;1;0.982490519 162;67.118942;-156;1;0.584081711 162;67.118645;-156.006;1;0.72835262 162;67.111725;-156.024;1;0.54192079 162;66.758484;-156.758;1;0.874027506 162;66.161362;-158;1;0.536413537 162;66.158501;-158.006;1;0.718828204 162;66.062569;-158.063;1;0.681422435 162;66;-158.1;1;0.710515421 162;65.920135;-158.147;1;0.078443861 162;65.688942;-158.195;1;0.639335313 162;64.760475;-158.76;1;0.321167382 162;64;-159.224;1;0.904019371 162;63.923645;-159.27;1;0.255453476 162;63.907532;-159.271;1;0.909830947 162;63.390114;-159.39;1;0.23670633 162;62.000004;-159.71;1;0.093296229 162;61.926014;-159.727;1;0.739060973 162;61.9104;-159.727;1;0.864207069 162;61.738075;-159.738;1;0.870476483 162;60;-159.852;1;0.739277908 162;59.927822;-159.856;1;0.507720762 162;59.852623;-159.853;1;0.172120709 162;58;-159.758;1;0.478696618 162;57.944183;-159.755;1;0.305597717 162;57.929249;-159.754;1;0.875468317 162;57.733131;-159.733;1;0.816033441 162;56;-159.548;1;0.581486116 162;55.945164;-159.542;1;0.369795133 162;55.930504;-159.541;1;0.968780169 162;55.915848;-159.539;1;0.731422715 162;55.475636;-159.476;1;0.298071685 162;54;-159.262;1;0.039604186 162;53.931656;-159.252;1;0.844111893 162;53.917225;-159.25;1;0.335469807 162;53.128567;-159.129;1;0.980682125 162;52;-158.955;1;0.933554223 162;51.932785;-158.944;1;0.731299603 162;51.912468;-158.939;1;0.3531964 162;50.665371;-158.665;1;0.922313071 162;50;-158.519;1;0.463277439 162;49.9277;-158.504;1;0.818675084 162;48.224621;-158;1;0.442398994 162;48;-157.934;1;0.442451384 162;47.942371;-157.917;1;0.427035112 162;47.9207;-157.908;1;0.556150003 162;47.901783;-157.902;1;0.995570742 162;46;-157.255;1;0.137534051 162;45.935223;-157.233;1;0.592501921 162;44.946022;-156.946;1;0.647177187 162;44;-156.672;1;0.457154641 162;43.949581;-156.657;1;0.763808531 162;43.93248;-156.652;1;0.16082346 162;43.908489;-156.647;1;0.185645352 162;42.584141;-156.379;1;0.931717828 162;42.352566;-156.353;1;0.726014904 162;42;-156.312;1;0.308169127 162;41.937202;-156.305;1;0.773695928 162;40.385765;-156.212;1;0.589587456 162;40.207138;-156.207;1;0.615617001 162;40;-156.202;1;0.590962742 162;39.938702;-156.2;1;0.71722796 162;38.394093;-156.203;1;0.905883146 162;38.20937;-156.209;1;0.32887551 162;38;-156.217;1;0.625463393 162;37.940308;-156.219;1;0.761368256 162;36.457458;-156.248;1;0.060532425 162;36.256096;-156.256;1;0.550937064 162;36;-156.266;1;0.277731553 162;35.941925;-156.268;1;0.629105993 162;34.427177;-156.252;1;0.210093319 162;34.253208;-156.253;1;0.944589047 162;34;-156.255;1;0.954382012 162;33.943466;-156.255;1;0.514576636 162;32.063732;-156.064;1;0.184167629 162;32;-156.057;1;0.653862622 162;31.980425;-156.055;1;0.101298087 162;31.944841;-156.053;1;0.899072587 162;31.565134;-156;1;0.366637071 162;30;-155.783;1;0.723902436 162;29.957474;-155.777;1;0.158039101 162;29.946089;-155.775;1;0.450124024 162;29.733232;-155.733;1;0.244114131 162;28;-155.391;1;0.660233165 162;27.958368;-155.383;1;0.38056578 162;27.947227;-155.381;1;0.94239168 162;27.27417;-155.274;1;0.503672529 162;26;-155.071;1;0.358187959 162;25.959328;-155.065;1;0.627314665 162;25.948444;-155.063;1;0.56425541 162;24.921167;-154.921;1;0.479093037 162;24;-154.794;1;0.228546703 162;23.960314;-154.789;1;0.557930315 162;23.949707;-154.787;1;0.787783444 162;23.939104;-154.787;1;0.739068445 162;22.712938;-154.713;1;0.364953462 162;22;-154.67;1;0.239889962 162;21.951099;-154.667;1;0.960268603 162;21.940788;-154.669;1;0.536245147 162;20.770906;-154.771;1;0.085557895 162;20;-154.838;1;0.70728899 162;19.952734;-154.842;1;0.081403542 162;19.942759;-154.846;1;0.555468099 162;19.148928;-155.149;1;0.321126071 162;18;-155.588;1;0.136308939 162;17.701483;-155.701;1;0.900882969 162;16.919502;-156;1;0.168983698 162;16.9186;-156;1;0.271559682 162;16.9139;-156.003;1;0.591699963 162;16.401508;-156.402;1;0.864212361 162;16;-156.714;1;0.341202124 162;15.961707;-156.743;1;0.422785312 162;15.957252;-156.748;1;0.950541804 162;15.286682;-157.287;1;0.101568483 162;14.401519;-157.998;1;0.348994915 162;14.399922;-158;1;0.642755336 162;14.396923;-158.003;1;0.072233288 162;14.289974;-158.29;1;0.282183538 162;14;-159.068;1;0.299113733 162;13.964644;-159.163;1;0.948672144 162;13.963634;-159.171;1;0.37404613 162;14;-159.209;1;0.124994094 162;14.757416;-160;1;0.903594107 162;15.956223;-161.252;1;0.239382041 162;15.969687;-161.258;1;0.072460501 162;16;-161.265;1;0.231797653 162;17.704433;-161.704;1;0.716904139 162;17.960836;-161.77;1;0.636456477 162;17.969097;-161.772;1;0.104941517 162;18;-161.775;1;0.888980266 162;19.923407;-161.923;1;0.402611937 162;19.959717;-161.926;1;0.34441906 162;20;-161.929;1;0.750762465 162;21.133173;-162;1;0.281021546 162;21.172609;-162.002;1;0.225208348 162;21.181267;-162.003;1;0.495385966 162;21.189924;-162.004;1;0.338601207 162;22;-162.068;1;0.136433489 162;22.073893;-162.074;1;0.983483638 162;23.957441;-162.223;1;0.58121561 162;23.966421;-162.226;1;0.780331447 162;24;-162.233;1;0.178003359 162;24.302135;-162.302;1;0.066383722 162;25.956669;-162.68;1;0.448643852 162;25.964565;-162.685;1;0.839425817 162;26;-162.708;1;0.711072599 162;27.948729;-163.949;1;0.691402637 162;27.955698;-163.953;1;0.355671832 162;27.955702;-163.956;1;0.348908415 162;27.955761;-164;1;0.079425131 162;27.958395;-165.958;1;0.464515099 162;27.958452;-166;1;0.386919525 162;27.959435;-166.73;1;0.54670572 162;27.962418;-166.738;1;0.856903157 162;27.388212;-167.388;1;0.144800881 162;26.852026;-167.995;1;0.334894759 162;26.847675;-168;1;0.484611021 162;26.845324;-168.003;1;0.923971071 162;26.834681;-168.007;1;0.113541052 162;26.241735;-168.242;1;0.210547994 162;26;-168.338;1;0.23007925 162;24.809416;-168.809;1;0.61735688 162;24;-169.13;1;0.629969109 162;23.966103;-169.144;1;0.287644822 162;23.958956;-169.145;1;0.03476235 162;23.252022;-169.252;1;0.847025063 162;22;-169.442;1;0.386931173 162;21.967598;-169.447;1;0.403096739 162;21.960756;-169.447;1;0.444714373 162;21.436647;-169.437;1;0.853873633 162;20;-169.408;1;0.890539615 162;19.968634;-169.407;1;0.798642556 162;19.962017;-169.406;1;0.077283809 162;19.3158;-169.316;1;0.442316168 162;18;-169.132;1;0.055072251 162;17.96936;-169.128;1;0.019497143 162;17.962898;-169.126;1;0.478369436 162;16.912212;-168.912;1;0.34912945 162;16;-168.726;1;0.928075296 162;15.969943;-168.72;1;0.97237161 162;15.960248;-168.718;1;0.566190624 162;14.41288;-168.413;1;0.994931413 162;14;-168.331;1;0.941287074 162;13.967262;-168.325;1;0.877984652 162;12.476815;-168.002;1;0.394214564 162;12.473926;-168.001;1;0.674343486 162;12.469959;-168;1;0.391357325 162;12.467797;-167.999;1;0.285499972 162;12;-167.856;1;0.544283406 162;11.792948;-167.793;1;0.724080348 162;10;-167.244;1;0.254786668 162;9.971471;-167.236;1;0.754055678 162;9.965449;-167.234;1;0.143405684 162;8.986324;-166.986;1;0.708885876 162;8;-166.736;1;0.549269876 162;7.972002;-166.729;1;0.724908132 162;7.966087;-166.728;1;0.618380801 162;6.427495;-166.427;1;0.779792933 162;6;-166.344;1;0.643734457 162;5.972666;-166.339;1;0.111917498 162;4.230978;-166.003;1;0.319902369 162;4.225337;-166.002;1;0.322939948 162;4.207273;-166;1;0.935923502 162;4;-165.978;1;0.516228979 162;3.975903;-165.976;1;0.194829071 162;2;-165.77;1;0.307696719 162;1.979658;-165.768;1;0.882689082 162;1.974216;-165.768;1;0.797869537 162;1.839879;-165.84;1;0.625202421 162;1.539208;-166;1;0.117941707 162;1.535686;-166.002;1;0.093537544 162;1.529885;-166.004;1;0.160594932 162;0.321001;-166.321;1;0.000211479 162;0;-166.405;1;0.120586702 68;24;-166.561;2;0.000839199 68;23.707565;-166.372;2;0.273636945 68;23.407921;-166.022;2;0.899290189 68;23.395828;-166;2;0.27912874 68;22.644701;-164.645;2;0.478316646 68;22.335327;-164.086;2;0.024715714 68;22.319822;-164.037;2;0.742578441 68;22.308285;-164;2;0.882998197 68;22;-163.022;2;0.27907818 68;21.710121;-162.103;2;0.419525336 68;21.703569;-162.023;2;0.023363135 68;21.708637;-162;2;0.871100615 68;21.717999;-161.957;2;0.491579059 68;21.727234;-161.727;2;0.809318328 68;21.795612;-160.024;2;0.160197101 68;21.813688;-160;2;0.798407993 68;21.854116;-159.947;2;0.8442542 68;21.892429;-159.892;2;0.034729311 68;22;-159.739;2;0.740794548 68;22.716127;-158.716;2;0.059762876 68;23.207289;-158.015;2;0.859367721 68;23.231604;-158;2;0.212836646 68;23.27566;-157.973;2;0.040216957 68;23.699312;-157.699;2;0.213955242 68;24;-157.505;2;0.00746545 68;24.913773;-156.914;2;0.382907892 68;25.673126;-156.423;2;0.314215353 68;26;-156.305;2;0.252008024 68;26.223919;-156.224;2;0.139938592 68;26.727816;-156.042;2;0.182292474 68;26.796877;-156.024;2;0.314339015 68;27.116045;-156;2;0.647290252 68;27.938118;-155.938;2;0.839879757 68;28;-155.933;2;0.229986414 68;29.606007;-155.813;2;0.307345735 68;29.674799;-155.831;2;0.047569184 68;29.97776;-155.978;2;0.250204753 68;30;-155.989;2;0.492187062 68;30.023615;-156;2;0.790814798 68;31.611519;-156.77;2;0.800238334 68;31.679453;-156.82;2;0.369445297 68;32;-157.074;2;0.655798918 68;33.163651;-158;2;0.701517691 68;33.193066;-158.023;2;0.818467788 68;33.686623;-158.48;2;0.733632957 68;34;-158.768;2;0.324066803 68;35.343426;-160;2;0.969305003 68;35.636162;-160.269;2;0.23657825 68;35.716835;-160.332;2;0.580015411 68;36;-160.585;2;0.891009934 68;37.585323;-162;2;0.337689979 68;37.661655;-162.068;2;0.294174077 68;37.703014;-162.114;2;0.566832674 68;38;-162.976;2;0.020638836 68;38.352566;-164;2;0.329199611 68;38.354332;-164.005;2;0.983132797 68;38.355804;-164.079;2;0.972359735 68;38.213577;-164.214;2;0.243847842 68;38;-164.416;2;0.875419207 68;37.186192;-165.186;2;0.361120405 68;36.716419;-165.631;2;0.949383268 68;36.197853;-166;2;0.389845994 68;36.082268;-166.082;2;0.187229455 68;36;-166.141;2;0.574659383 68;35.718597;-166.341;2;0.993306251 68;34.778179;-166.778;2;0.051190929 68;34;-167.14;2;0.109292921 68;33.779362;-167.242;2;0.650128825 68;33.720398;-167.274;2;0.82317787 68;33.40818;-167.408;2;0.747019001 68;32.028133;-168;2;0.960091272 68;32.008446;-168.008;2;0.927455115 68;32;-168.012;2;0.863748925 68;31.89292;-168.058;2;0.175587354 68;31.722281;-168.113;2;0.912055768 68;31.551508;-168.135;2;0.967638435 68;30.312771;-168.313;2;0.064125939 68;30;-168.358;2;0.083966718 68;29.721706;-168.398;2;0.593854453 68;29.662872;-168.395;2;0.999817601 68;28.27212;-168.272;2;0.169249845 68;28;-168.248;2;0.285279766 68;27.719173;-168.223;2;0.424295632 68;26.828676;-168.021;2;0.84302767 68;26.772148;-168;2;0.798888947 68;26;-167.714;2;0.092823636 68;25.714708;-167.608;2;0.257597176 68;25.458347;-167.458;2;0.163737744 68;24.714268;-167.024;2;0.35185221 68;397.998505;-128.027;2;0.827753582 68;397.998169;-128.027;2;0.85781863 68;396.797211;-128.797;2;0.25430714 68;395.999969;-129.308;2;0.400206508 68;395.998322;-129.309;2;0.184520286 68;395.998108;-129.309;2;0.144809171 68;395.540741;-129.541;2;0.947231644 68;394.632111;-130;2;0.104811514 68;394.188568;-130.189;2;0.345838485 68;394;-130.269;2;0.552466807 68;392.784851;-130.785;2;0.873208782 68;392;-131.118;2;0.5739305 68;391.998474;-131.119;2;0.393298849 68;391.99765;-131.119;2;0.308702589 68;391.482147;-131.482;2;0.336123946 68;390.746307;-132;2;0.429195566 68;390.308258;-132.308;2;0.787477878 68;390;-132.525;2;0.870599776 68;389.997711;-132.527;2;0.338410471 68;389.208618;-133.209;2;0.564341104 68;388.292633;-134;2;0.342947019 68;388.292145;-134.001;2;0.24503749 68;388.155975;-134.156;2;0.053529346 68;388;-134.334;2;0.382612751 68;387.221924;-135.222;2;0.947880239 68;386.540009;-136;2;0.67271817 68;386.312927;-136.313;2;0.643041151 68;386;-136.744;2;0.093382133 68;385.998199;-136.746;2;0.641938787 68;385.997681;-136.747;2;0.161576858 68;385.937897;-136.788;2;0.564122139 68;385.254425;-137.254;2;0.868248101 68;384.246399;-137.943;2;0.634248483 68;384.21994;-137.964;2;0.739020537 68;384.201508;-137.971;2;0.166573238 68;384.095612;-138;2;0.788590478 68;384.020813;-138.021;2;0.26818149 68;384;-138.027;2;0.414979444 68;382.455933;-138.456;2;0.783130298 68;382.085327;-138.559;2;0.908232062 68;382;-138.583;2;0.30638271 68;381.997345;-138.583;2;0.729665667 68;381.996857;-138.583;2;0.861937239 68;380.731964;-138.732;2;0.900161295 68;380;-138.818;2;0.72279787 68;379.997009;-138.818;2;0.733491755 68;379.996368;-138.818;2;0.072143837 68;378.883484;-138.883;2;0.888494203 68;378;-138.935;2;0.317837231 68;377.996582;-138.936;2;0.560921749 68;377.99585;-138.935;2;0.761880487 68;376.96579;-138.966;2;0.439587009 68;376;-138.994;2;0.426544401 68;375.996094;-138.994;2;0.322657549 68;375.99527;-138.994;2;0.954666765 68;375.017914;-139.018;2;0.078920527 68;374;-139.042;2;0.41666927 68;373.995544;-139.043;2;0.258214999 68;373.994598;-139.043;2;0.465392891 68;373.084961;-139.085;2;0.786601413 68;372;-139.136;2;0.304085446 68;371.994995;-139.136;2;0.630831455 68;371.993927;-139.136;2;0.088812509 68;371.19162;-139.192;2;0.105196329 68;370;-139.275;2;0.804822151 68;369.994446;-139.275;2;0.098051222 68;369.993256;-139.275;2;0.828806831 68;369.331451;-139.331;2;0.618173232 68;368;-139.445;2;0.528618659 68;367.993866;-139.445;2;0.022870497 68;367.992554;-139.446;2;0.527079072 68;367.486298;-139.486;2;0.487147 68;366;-139.606;2;0.05645392 68;365.993256;-139.606;2;0.310602359 68;365.991821;-139.607;2;0.089371929 68;365.643005;-139.643;2;0.565010081 68;364;-139.815;2;0.427474949 68;363.992462;-139.815;2;0.262793144 68;363.839386;-139.839;2;0.155803409 68;363.267639;-139.929;2;0.641862186 68;362.513824;-140;2;0.44561772 68;362.507599;-140.001;2;0.970323211 68;362.06897;-140.069;2;0.693875278 68;362;-140.08;2;0.047915104 68;361.991974;-140.081;2;0.195253015 68;360.45636;-140.456;2;0.956606088 68;360.00058;-140.568;2;0.505753995 68;360.000031;-140.568;2;0.695158558 68;359.993317;-140.57;2;0.582719655 68;359.991516;-140.57;2;0.334238164 68;359.989716;-140.571;2;0.868597946 68;358.99231;-140.992;2;0.366941673 68;358;-141.412;2;0.989217214 68;357.99115;-141.415;2;0.825087108 68;357.618011;-141.618;2;0.479940187 68;356.914856;-142;2;0.803800679 68;356.322052;-142.322;2;0.031114876 68;356;-142.497;2;0.731955272 68;355.992859;-142.501;2;0.490064848 68;355.990936;-142.502;2;0.669711365 68;355.988403;-142.504;2;0.977628019 68;355.065796;-143.066;2;0.310266554 68;354;-143.715;2;0.174404826 68;353.823059;-143.823;2;0.047467712 68;353.532654;-144;2;0.34560919 68;353.531525;-144.001;2;0.82097949 68;352.566223;-144.566;2;0.329792531 68;352;-144.898;2;0.481365419 68;351.992035;-144.903;2;0.1929821 68;351.990692;-144.904;2;0.404876882 68;351.988617;-144.905;2;0.302912341 68;351.229584;-145.23;2;0.499782941 68;350;-145.756;2;0.052128075 68;349.829193;-145.829;2;0.508128021 68;349.430267;-146;2;0.564239918 68;349.428589;-146.001;2;0.816972276 68;348.378235;-146.378;2;0.731623329 68;348;-146.514;2;0.998226598 68;347.992035;-146.517;2;0.000355211 68;347.990051;-146.518;2;0.719302696 68;346.778351;-146.778;2;0.240554794 68;346;-146.946;2;0.345624984 68;345.991699;-146.947;2;0.705410444 68;345.989471;-146.948;2;0.467048179 68;345.055328;-147.055;2;0.624247069 68;344;-147.177;2;0.661947555 68;343.99115;-147.178;2;0.316446159 68;343.98877;-147.178;2;0.583320861 68;343.986389;-147.178;2;0.478729964 68;343.215485;-147.215;2;0.253777953 68;342;-147.275;2;0.997178042 68;341.987946;-147.275;2;0.424311206 68;341.985382;-147.275;2;0.613205576 68;341.292511;-147.293;2;0.934371248 68;340;-147.324;2;0.520146782 68;339.98703;-147.325;2;0.596029044 68;339.984283;-147.325;2;0.624879145 68;339.331543;-147.332;2;0.100757492 68;338;-147.345;2;0.554396341 68;337.986084;-147.346;2;0.970573339 68;337.983124;-147.346;2;0.516364424 68;337.249451;-147.249;2;0.642754193 68;336;-147.086;2;0.513021494 68;335.984863;-147.084;2;0.259691718 68;334.641083;-146;2;0.340502023 68;334;-145.483;2;0.278577992 68;333.986206;-145.472;2;0.400021867 68;333.982513;-145.471;2;0.172514641 68;333.980164;-145.469;2;0.266974104 68;333.978668;-145.465;2;0.706745811 68;333.517303;-144.001;2;0.707853384 68;333.516876;-144;2;0.005419533 68;333.326385;-143.348;2;0.798532293 68;333.313202;-143.313;2;0.677345769 68;332.810211;-142.002;2;0.801543875 68;332.809723;-142;2;0.253694801 68;332.80127;-141.973;2;0.458909995 68;332.310272;-140.31;2;0.013859896 68;332.219452;-140.003;2;0.837267129 68;332.217743;-140;2;0.63704591 68;332;-139.644;2;0.638487594 68;331.976196;-139.605;2;0.124901739 68;331.089752;-138.036;2;0.519818811 68;331.070251;-138.002;2;0.649996502 68;331.068787;-138;2;0.122790014 68;330;-136.654;2;0.193208728 68;329.973206;-136.62;2;0.465057252 68;329.966736;-136.613;2;0.200199976 68;329.305542;-136;2;0.721418803 68;328;-134.79;2;0.247206628 68;327.970551;-134.763;2;0.793979581 68;326.830353;-134.01;2;0.750536869 68;326.823334;-134.005;2;0.444750281 68;326.818726;-134.002;2;0.083984793 68;326.813873;-134;2;0.910801281 68;326;-133.617;2;0.461636157 68;325.275391;-133.275;2;0.499154808 68;324;-132.675;2;0.852871982 68;323.966339;-132.659;2;0.616050334 68;323.959229;-132.656;2;0.187168059 68;322.182251;-132.182;2;0.308437901 68;322;-132.134;2;0.550716004 68;321.964325;-132.124;2;0.004170708 68;321.46994;-132;2;0.668461209 68;320.573517;-131.775;2;0.027529928 68;320;-131.655;2;0.567153793 68;319.962646;-131.647;2;0.816387588 68;319.560516;-131.561;2;0.675242779 68;318;-131.226;2;0.389581801 68;317.979492;-131.222;2;0.824691448 68;317.960938;-131.219;2;0.102927695 68;317.95105;-131.218;2;0.015987516 68;317.133331;-131.133;2;0.768754309 68;316;-131.016;2;0.667042212 68;315.959229;-131.012;2;0.167817586 68;315.950623;-131.013;2;0.555676033 68;315.01004;-131.01;2;0.641010018 68;314;-131.007;2;0.644489165 68;313.957611;-131.007;2;0.237834441 68;313.930603;-131.014;2;0.002568644 68;313.236664;-131.237;2;0.322442521 68;312.47995;-131.48;2;0.830418299 68;312;-131.498;2;0.618731557 68;311.956238;-131.5;2;0.667622694 68;311.611664;-131.612;2;0.022072154 68;310.413147;-132;2;0.110769899 68;310.402924;-132.003;2;0.062788115 68;310.37851;-132.018;2;0.860362809 68;310.210754;-132.211;2;0.397380491 68;310;-132.453;2;0.969130635 68;309.280243;-133.28;2;0.090671834 68;308.654053;-134;2;0.523078982 68;308.426483;-134.262;2;0.897811068 68;308.373718;-134.374;2;0.574509793 68;308;-135.168;2;0.361793362 68;307.733734;-135.734;2;0.612292352 68;307.608917;-135.999;2;0.930387227 68;307.607971;-136;2;0.627771165 68;307.598999;-136.009;2;0.966916383 68;307.00235;-137.002;2;0.605904731 68;306.403076;-138;2;0.377965007 68;306.401123;-138.003;2;0.25120481 68;306.206757;-138.207;2;0.090187686 68;306;-138.423;2;0.997631656 68;305.956665;-138.469;2;0.486893521 68;305.40448;-139.404;2;0.575837347 68;305.05304;-140;2;0.087846311 68;305.052521;-140.001;2;0.901399772 68;304.596191;-140.596;2;0.234067012 68;304;-141.374;2;0.847316535 68;303.966858;-141.417;2;0.301914268 68;303.958008;-141.424;2;0.387153729 68;303.951355;-141.428;2;0.439522532 68;303.671509;-141.671;2;0.426702413 68;303.294495;-142;2;0.731749998 68;302.602753;-142.603;2;0.48702114 68;302;-143.128;2;0.767393514 68;301.534027;-143.534;2;0.407878752 68;300.999237;-144;2;0.234530319 68;300.465271;-144.465;2;0.317038286 68;300;-144.871;2;0.735667839 68;299.965179;-144.901;2;0.938820679 68;299.958649;-144.904;2;0.071660801 68;299.193024;-145.193;2;0.482422544 68;298.341431;-145.514;2;0.965533735 68;298;-145.669;2;0.911868611 68;297.957855;-145.688;2;0.72190417 68;297.755035;-145.755;2;0.767977226 68;297.574219;-145.815;2;0.636231774 68;296.798035;-146;2;0.138486212 68;296.153534;-146.154;2;0.227398805 68;296;-146.19;2;0.209685791 68;295.95697;-146.2;2;0.850881971 68;295.947876;-146.203;2;0.004189776 68;294.448181;-146.448;2;0.040860688 68;294;-146.521;2;0.415434807 68;293.955719;-146.529;2;0.95462874 68;292.717102;-146.717;2;0.52716217 68;292;-146.826;2;0.71689596 68;291.96402;-146.832;2;0.604958244 68;291.954407;-146.834;2;0.809911442 68;291.944763;-146.836;2;0.493937597 68;290.987823;-146.988;2;0.66573292 68;290;-147.145;2;0.243329561 68;289.953125;-147.152;2;0.87531042 68;289.943207;-147.154;2;0.887353296 68;289.261353;-147.261;2;0.647970302 68;288;-147.46;2;0.07378226 68;287.951843;-147.467;2;0.421764631 68;287.94165;-147.47;2;0.311321517 68;287.542877;-147.543;2;0.378449696 68;286;-147.826;2;0.114305358 68;285.9505;-147.835;2;0.25948943 68;285.857544;-147.858;2;0.383759191 68;285.265045;-148;2;0.869072602 68;285.249664;-148.004;2;0.548688983 68;284.190552;-148.191;2;0.824745456 68;284;-148.224;2;0.167618386 68;283.949402;-148.233;2;0.641566758 68;282.555817;-148.556;2;0.810477572 68;282;-148.685;2;0.650458778 68;281.965515;-148.693;2;0.914268761 68;281.948303;-148.697;2;0.115344314 68;281.937378;-148.7;2;0.026353126 68;280.954437;-148.954;2;0.762258753 68;280;-149.202;2;0.716417481 68;279.947296;-149.215;2;0.584448094 68;279.936127;-149.219;2;0.48697097 68;279.370514;-149.37;2;0.920245082 68;278;-149.739;2;0.525674927 68;277.946289;-149.753;2;0.402770298 68;277.934967;-149.756;2;0.973738943 68;277.794373;-149.794;2;0.165797099 68;277.045258;-150;2;0.561622074 68;276.225128;-150.225;2;0.84196455 68;276;-150.287;2;0.954084995 68;275.945343;-150.302;2;0.897295824 68;275.933807;-150.305;2;0.184129766 68;274.667023;-150.667;2;0.525838018 68;274;-150.858;2;0.324326966 68;273.944427;-150.874;2;0.98704865 68;273.932709;-150.877;2;0.718209782 68;273.135406;-151.135;2;0.499509827 68;272;-151.503;2;0.396221053 68;271.943665;-151.521;2;0.044222148 68;271.931793;-151.526;2;0.021177 68;271.641083;-151.641;2;0.160603298 68;270.734375;-152;2;0.561324816 68;270.208252;-152.208;2;0.532922267 68;270;-152.291;2;0.493076727 68;269.943146;-152.313;2;0.428124458 68;268.812653;-152.813;2;0.329441296 68;268;-153.172;2;0.334016807 68;267.954926;-153.192;2;0.863399662 68;267.942841;-153.197;2;0.941931037 68;267.930786;-153.202;2;0.925155004 68;267.388062;-153.388;2;0.933549206 68;266;-153.864;2;0.886146587 68;265.898621;-153.899;2;0.918985492 68;265.602844;-154;2;0.161285939 68;265.596497;-154.002;2;0.818648213 68;265.588623;-154.004;2;0.332901981 68;264.292633;-154.293;2;0.247625532 68;264;-154.358;2;0.139614117 68;263.945679;-154.37;2;0.085934676 68;263.941254;-154.371;2;0.668084632 68;263.928864;-154.373;2;0.733020083 68;262.584595;-154.585;2;0.331816758 68;262;-154.677;2;0.017230564 68;261.939972;-154.686;2;0.80238604 68;261.927277;-154.687;2;0.938423279 68;260.801788;-154.802;2;0.349532987 68;260;-154.883;2;0.423381501 68;259.938446;-154.89;2;0.606832618 68;258.948334;-154.948;2;0.718870045 68;258;-155.005;2;0.07059705 68;257.950134;-155.008;2;0.156249887 68;257.923401;-155.007;2;0.910430682 68;257.020813;-155.021;2;0.807604248 68;256;-155.037;2;0.578115868 68;255.934875;-155.038;2;0.054852574 68;255.920486;-155.034;2;0.960139951 68;254.98764;-154.988;2;0.734058152 68;253.999985;-154.938;2;0.402462721 68;253.932053;-154.935;2;0.89531435 68;252.675171;-154.675;2;0.147551075 68;252;-154.536;2;0.134201267 68;251.944031;-154.524;2;0.344900767 68;251.933014;-154.509;2;0.388595799 68;251.929825;-154.505;2;0.992494439 68;250.770584;-154;2;0.99414391 68;250.73909;-153.986;2;0.619075121 68;250;-152.396;2;0.112876947 68;249.943512;-152.274;2;0.4416899 68;250;-152.124;2;0.919373296 68;250.033676;-152.034;2;0.771193063 68;250.046295;-152;2;0.385355861 68;250.578934;-150.579;2;0.024710575 68;250.785797;-150.027;2;0.631344338 68;250.792862;-150.006;2;0.791506915 68;250.796616;-150;2;0.656378682 68;251.261658;-149.262;2;0.480463739 68;251.917816;-148.22;2;0.171268817 68;252;-148.082;2;0.746947327 68;252.024719;-148.041;2;0.097861937 68;252.030273;-148.03;2;0.135157696 68;252.033936;-148.024;2;0.090620446 68;252.043015;-148.005;2;0.089036871 68;252.045639;-148;2;0.7475487 68;252.062241;-147.968;2;0.894498911 68;252.690079;-146.69;2;0.672868406 68;253.02594;-146.006;2;0.101619599 68;253.028915;-146;2;0.33473094 68;253.3405;-145.341;2;0.724028532 68;253.951996;-144.046;2;0.924574589 68;253.961517;-144.025;2;0.187021553 68;253.971771;-144.006;2;0.717764726 68;253.975082;-144;2;0.605987997 68;253.983505;-143.984;2;0.351807333 68;253.999985;-143.951;2;0.63009858 68;254.660095;-142.66;2;0.649913126 68;254.98407;-142.026;2;0.765803121 68;254.995834;-142.007;2;0.07720882 68;254.999252;-142;2;0.127142876 68;255.341431;-141.341;2;0.676111883 68;255.922241;-140.224;2;0.444388335 68;256;-140.076;2;0.576452162 68;256.026154;-140.026;2;0.69060336 68;256.039917;-140;2;0.667987507 68;256.715576;-138.716;2;0.666816816 68;257.068115;-138.045;2;0.708482209 68;257.09314;-138.007;2;0.007298815 68;257.098328;-138;2;0.456589291 68;257.124298;-137.966;2;0.934768513 68;257.471375;-137.471;2;0.234980245 68;258;-136.718;2;0.026665926 68;258.295868;-136.296;2;0.654708388 68;258.498596;-136.007;2;0.641551024 68;258.504059;-136;2;0.655581538 68;259.167175;-135.167;2;0.671703162 68;259.907593;-134.237;2;0.859891052 68;259.920319;-134.218;2;0.959534723 68;259.927094;-134.206;2;0.293173026 68;260;-134.067;2;0.910445656 68;260.023071;-134.023;2;0.070218801 68;260.035156;-134;2;0.577735863 68;260.710541;-132.711;2;0.039245659 68;261.064636;-132.034;2;0.999525329 68;261.074341;-132.007;2;0.714201862 68;261.074768;-132;2;0.70878381 68;261.075562;-131.987;2;0.994015416 68;261.223541;-131.224;2;0.526303871 68;261.45932;-130.007;2;0.707335281 68;261.458649;-130;2;0.737241273 68;261.457428;-129.987;2;0.499666508 68;261.459381;-129.939;2;0.654091093 68;261.425323;-129.425;2;0.066111959 68;261.366974;-128.545;2;0.683199684 68;261.408173;-128.007;2;0.25976099 68;261.407501;-128;2;0.888524453 68;261.34552;-127.346;2;0.796765304 68;261.271362;-126.562;2;0.129856568 68;261.320648;-126.007;2;0.317171431 68;261.320404;-126;2;0.850317563 68;261.298096;-125.298;2;0.95598093 68;261.258667;-124.058;2;0.555284734 68;261.255219;-124.007;2;0.383049161 68;261.253906;-124;2;0.759175947 68;261.250397;-123.981;2;0.287961139 68;260.557343;-122.557;2;0.390647498 68;260.286041;-122;2;0.188699435 68;260;-121.412;2;0.929921348 68;259.928772;-121.266;2;0.342860929 68;259.902344;-121.237;2;0.60774931 68;259.796051;-121.19;2;0.741577769 68;258.756927;-120.757;2;0.701707773 68;258;-120.442;2;0.562485437 68;257.592072;-120.272;2;0.483791664 68;256.028656;-120.029;2;0.87814735 68;256;-120.024;2;0.946801905 68;255.898209;-120.008;2;0.081814164 68;255.897247;-120.008;2;0.272869533 68;254.130875;-120.131;2;0.966176688 68;253.999985;-120.14;2;0.501775062 68;252.260696;-120.261;2;0.468857366 68;252.222321;-120.263;2;0.272766536 68;252;-120.278;2;0.250840317 68;251.893784;-120.285;2;0.143967659 68;250.537292;-120.537;2;0.623865261 68;250.439545;-120.555;2;0.718823721 68;250;-120.615;2;0.890982498 68;249.171646;-120.727;2;0.449626506 68;248.806824;-120.807;2;0.306046797 68;248.000015;-120.983;2;0.411935518 68;247.938354;-120.996;2;0.964222115 68;247.889252;-121.008;2;0.591185591 68;247.203049;-121.203;2;0.721983132 68;246;-121.545;2;0.880933005 68;245.913315;-121.569;2;0.55208155 68;245.886902;-121.577;2;0.603275692 68;245.862991;-121.586;2;0.337654019 68;245.803619;-121.608;2;0.631687896 68;245.65741;-121.657;2;0.942415761 68;244.652542;-122;2;0.294968182 68;244.165894;-122.166;2;0.192769207 68;243.999985;-122.222;2;0.827176767 68;243.884506;-122.262;2;0.119620938 68;242.689117;-122.689;2;0.796256609 68;242;-122.935;2;0.902474645 68;241.968796;-122.947;2;0.046662615 68;241.882202;-122.978;2;0.714269481 68;241.8573;-122.987;2;0.337964332 68;241.216492;-123.216;2;0.094278833 68;240;-123.652;2;0.592800428 68;239.879852;-123.695;2;0.524354517 68;239.7453;-123.745;2;0.726419774 68;239.351166;-123.892;2;0.950424562 68;239.091949;-124;2;0.076587435 68;238.322113;-124.322;2;0.841475867 68;238.000015;-124.457;2;0.465175563 68;236.912079;-124.912;2;0.021548973 68;236;-125.294;2;0.670037032 68;235.901672;-125.335;2;0.044130953 68;235.875305;-125.344;2;0.277648584 68;235.848938;-125.355;2;0.755538268 68;235.686691;-125.42;2;0.695964357 68;235.494843;-125.495;2;0.579329266 68;234.203903;-126;2;0.813244088 68;234.179901;-126.009;2;0.766037795 68;234.071777;-126.072;2;0.130957701 68;234;-126.113;2;0.174116482 68;233.794922;-126.231;2;0.362188084 68;232.830551;-126.831;2;0.268774139 68;232.065445;-127.306;2;0.884790878 68;232;-127.346;2;0.804648255 68;231.870972;-127.426;2;0.7229315 68;231.831818;-127.456;2;0.330245408 68;231.635117;-127.635;2;0.271681259 68;231.233704;-128;2;0.168960173 68;230.587448;-128.587;2;0.984819366 68;230;-129.121;2;0.070248025 68;229.869217;-129.24;2;0.633772496 68;229.832825;-129.279;2;0.323021553 68;229.5746;-129.575;2;0.729255454 68;229.203323;-130;2;0.531704633 68;228.642548;-130.643;2;0.957669272 68;227.999985;-131.379;2;0.2301653 68;227.710495;-131.711;2;0.871919993 68;227.481354;-131.973;2;0.40581131 68;227.454529;-132;2;0.764980673 68;227.444748;-132.01;2;0.235123101 68;226.77301;-132.773;2;0.131234961 68;226;-133.651;2;0.41060385 68;225.867264;-133.802;2;0.494899898 68;225.839233;-133.837;2;0.613922194 68;225.838135;-133.838;2;0.342051806 68;225.708145;-134;2;0.350790239 68;225.654221;-134.067;2;0.566347381 68;224.949905;-134.95;2;0.19467958 68;224.112076;-136;2;0.221058749 68;224.104218;-136.01;2;0.375633876 68;224.053436;-136.053;2;0.912232367 68;224;-136.099;2;0.14776196 68;223.867081;-136.213;2;0.528418953 68;223.041855;-137.042;2;0.479123181 68;222.087463;-138;2;0.962756464 68;222.080521;-138.007;2;0.020203397 68;222.043869;-138.044;2;0.302337168 68;222.000015;-138.088;2;0.730685543 68;221.874573;-138.214;2;0.697943635 68;221.838852;-138.251;2;0.420484446 68;221.535782;-138.538;2;0.161779789 68;221.022095;-139.022;2;0.748948463 68;220;-139.986;2;0.515848138 68;219.992599;-139.993;2;0.74569428 68;219.984741;-140;2;0.904188504 68;219.974274;-140.01;2;0.017019828 68;219.866943;-140.122;2;0.93644487 68;219.169785;-141.17;2;0.098124317 68;218.617294;-142;2;0.279630011 68;218.370621;-142.371;2;0.34908452 68;217.999985;-142.928;2;0.658285063 68;217.712585;-143.359;2;0.171376013 68;217.569901;-143.57;2;0.194521779 68;217.302261;-143.965;2;0.932017291 68;217.288177;-143.982;2;0.877278325 68;217.281677;-144;2;0.584943754 68;217.278168;-144.01;2;0.533917025 68;217.192017;-145.192;2;0.657098546 68;217.134415;-145.983;2;0.892849392 68;217.132294;-146;2;0.649234174 68;217.131149;-146.009;2;0.14785076 68;217.850372;-147.85;2;0.285771584 68;217.851883;-147.854;2;0.376042249 68;217.858505;-147.88;2;0.546622331 68;217.877914;-147.921;2;0.456133109 68;217.919724;-148;2;0.67081719 68;217.999985;-148.151;2;0.643293371 68;218.981064;-150;2;0.079009849 68;218.985641;-150.009;2;0.289469159 68;218.992783;-150.034;2;0.301111248 68;219.676697;-151.677;2;0.113365729 68;219.811325;-152;2;0.215161982 68;219.814758;-152.008;2;0.496528762 68;219.810913;-152.087;2;0.462849209 68;219.947205;-153.947;2;0.919155625 68;219.951065;-154;2;0.662376739 68;219.951645;-154.008;2;0.058453822 68;219.066635;-155.067;2;0.702254086 68;218.286438;-156;2;0.890752438 68;218.156021;-156.156;2;0.545644507 68;217.999985;-156.343;2;0.388965357 68;217.897446;-156.465;2;0.519213263 68;217.875854;-156.492;2;0.097374787 68;216.769547;-156.77;2;0.550724701 68;216;-156.963;2;0.059487004 68;215.8965;-156.989;2;0.648295656 68;215.874634;-156.993;2;0.158956589 68;214.999847;-157;2;0.686380105 68;214;-157.007;2;0.587208935 68;213.894241;-157.008;2;0.757294111 68;213.871887;-157.007;2;0.021387757 68;212.829559;-156.83;2;0.010818354 68;212.000015;-156.688;2;0.667746865 68;211.891068;-156.67;2;0.51148579 68;211.862961;-156.665;2;0.263828933 68;210.217834;-156.218;2;0.525319114 68;210;-156.159;2;0.221843812 68;209.88208;-156.127;2;0.840486756 68;209.425278;-156;2;0.263053185 68;208;-155.605;2;0.796621119 68;207.90274;-155.578;2;0.637888292 68;207.883484;-155.574;2;0.460771787 68;207.858841;-155.569;2;0.99967414 68;207.496964;-155.497;2;0.201119816 68;206.000015;-155.199;2;0.826467601 68;205.880081;-155.175;2;0.97181761 68;205.854721;-155.172;2;0.945216146 68;205.097839;-155.098;2;0.778564999 68;204;-154.99;2;0.688381373 68;203.877151;-154.978;2;0.082243639 68;203.851181;-154.978;2;0.669209311 68;203.010895;-155.011;2;0.664459886 68;201.999985;-155.05;2;0.967946855 68;201.874908;-155.055;2;0.387808678 68;201.848465;-155.057;2;0.128942377 68;201.148743;-155.149;2;0.895070572 68;200;-155.299;2;0.167030781 68;199.873154;-155.316;2;0.833228848 68;199.846359;-155.319;2;0.964094002 68;199.408005;-155.408;2;0.178388198 68;198;-155.692;2;0.116417557 68;197.871796;-155.718;2;0.577663445 68;197.844696;-155.722;2;0.232110182 68;197.746216;-155.746;2;0.615360992 68;196.71225;-156;2;0.968591993 68;196.685394;-156.007;2;0.68383651 68;196.671265;-156.01;2;0.099159975 68;196.103439;-156.103;2;0.00479778 68;196;-156.121;2;0.140631482 68;195.870438;-156.142;2;0.453443639 68;194.448257;-156.448;2;0.530670968 68;194;-156.545;2;0.973708937 68;193.931549;-156.56;2;0.956263828 68;193.869217;-156.57;2;0.592262842 68;193.841568;-156.573;2;0.989314083 68;192.741501;-156.742;2;0.199181046 68;192;-156.855;2;0.041120286 68;191.867599;-156.876;2;0.735582067 68;191.851303;-156.877;2;0.261860682 68;190.978577;-156.979;2;0.079422564 68;190;-157.092;2;0.252654187 68;189.865799;-157.108;2;0.341053787 68;189.837433;-157.109;2;0.957805446 68;189.175903;-157.176;2;0.002905915 68;188;-157.294;2;0.686796152 68;187.863907;-157.308;2;0.153824239 68;187.835144;-157.311;2;0.992620403 68;187.384125;-157.384;2;0.519712548 68;186;-157.609;2;0.37662144 68;185.862335;-157.631;2;0.557795193 68;185.656784;-157.657;2;0.596521835 68;185.241074;-157.709;2;0.889896967 68;184;-157.873;2;0.742958872 68;183.887619;-157.888;2;0.83044934 68;183.860641;-157.891;2;0.652745474 68;183.614853;-157.93;2;0.52989919 68;183.166443;-158;2;0.895077203 68;183.100449;-158.01;2;0.07918608 68;182.196518;-158.197;2;0.452195096 68;182;-158.237;2;0.719581222 68;181.859268;-158.266;2;0.458978702 68;180.513016;-158.513;2;0.928008919 68;180;-158.607;2;0.216619299 68;179.98288;-158.61;2;0.204339749 68;179.857941;-158.636;2;0.468428831 68;178.809158;-158.809;2;0.046628317 68;178;-158.943;2;0.685964011 68;177.900772;-158.959;2;0.727964523 68;177.867767;-158.966;2;0.037104183 68;177.826126;-158.974;2;0.731405375 68;177.059769;-159.06;2;0.57080619 68;176;-159.179;2;0.016653622 68;175.854675;-159.195;2;0.175879185 68;175.823959;-159.198;2;0.36864588 68;175.213684;-159.214;2;0.80550363 68;174;-159.244;2;0.948437201 68;173.852371;-159.248;2;0.683336141 68;173.821136;-159.247;2;0.2421761 68;173.199753;-159.2;2;0.210896135 68;172;-159.108;2;0.868811875 68;171.849396;-159.096;2;0.106141134 68;170.967804;-158.968;2;0.453548041 68;170;-158.827;2;0.787465866 68;169.87854;-158.809;2;0.519844125 68;169.845993;-158.805;2;0.277312796 68;168.535172;-158.535;2;0.019387064 68;168;-158.425;2;0.067336637 68;167.875549;-158.399;2;0.777545707 68;167.842178;-158.391;2;0.654191326 68;166.419495;-158.012;2;0.787338112 68;166.385452;-158;2;0.708427827 68;166.384628;-158;2;0.904590089 68;166;-157.846;2;0.31355584 68;165.744186;-157.744;2;0.149136576 68;164;-157.047;2;0.377256785 68;163.868149;-156.995;2;0.44536921 68;163.828842;-156.972;2;0.717665232 68;162.525482;-156.013;2;0.503492462 68;162.516541;-156;2;0.653460065 68;162.500015;-155.976;2;0.0665537 68;162;-155.022;2;0.608719103 68;161.471695;-154.013;2;0.915592171 68;161.473145;-154;2;0.914588277 68;161.524902;-153.525;2;0.257418533 68;161.685318;-152.052;2;0.489064727 68;161.684357;-152.014;2;0.665440956 68;161.689041;-152;2;0.655106494 68;161.768478;-151.768;2;0.612765528 68;162;-151.094;2;0.086363019 68;162.279388;-150.279;2;0.079086401 68;162.356827;-150.054;2;0.568477781 68;162.365128;-150.014;2;0.927387662 68;162.367615;-150;2;0.956012007 68;162.61499;-148.615;2;0.461881445 68;162.715027;-148.055;2;0.300406682 68;162.726578;-148;2;0.25938914 68;162.732117;-147.974;2;0.760828195 68;162.753998;-146.754;2;0.687821463 68;162.767258;-146.015;2;0.492567524 68;162.773804;-146;2;0.41975954 68;162.84935;-145.832;2;0.404946458 68;163.142288;-145.142;2;0.511053276 68;163.621429;-144.015;2;0.030710374 68;163.630493;-144;2;0.53344149 68;163.770889;-143.771;2;0.419715698 68;163.800385;-143.723;2;0.400333329 68;164;-143.495;2;0.039903787 68;164.699234;-142.699;2;0.096010253 68;165.313293;-142;2;0.318089159 68;165.6129;-141.659;2;0.311697745 68;165.634583;-141.635;2;0.621239603 68;165.799225;-141.45;2;0.39182139 68;165.841614;-141.411;2;0.796600165 68;166;-141.255;2;0.901720031 68;166.631409;-140.631;2;0.054945282 68;167.231735;-140.039;2;0.45251517 68;167.258362;-140.015;2;0.508652571 68;167.264572;-140;2;0.325868713 68;167.276031;-139.972;2;0.186173989 68;167.377441;-139.377;2;0.202341853 68;167.612152;-138;2;0.027531984 68;167.668625;-137.669;2;0.485389105 68;167.92868;-136.143;2;0.299849352 68;167.905548;-136.015;2;0.701936602 68;167.892258;-136;2;0.845690126 68;167.832413;-135.932;2;0.187708048 68;167.795197;-135.881;2;0.341981849 68;167.557983;-135.558;2;0.294922327 68;166.41246;-134;2;0.237655906 68;166;-133.439;2;0.132317878 68;165.835037;-133.215;2;0.022937389 68;165.807388;-133.179;2;0.715129072 68;164.863708;-132.016;2;0.566463942 68;164.853119;-132;2;0.697570412 68;164.833572;-131.971;2;0.45304928 68;164;-130.759;2;0.166309397 68;163.488663;-130.016;2;0.956563461 68;163.481339;-130;2;0.800087144 68;163.467819;-129.971;2;0.211658747 68;163.098419;-129.098;2;0.551979857 68;162.64003;-128.016;2;0.28813689 68;162.636887;-128;2;0.44850887 68;162.631104;-127.971;2;0.129464892 68;162.487549;-126.488;2;0.019523914 68;162.441895;-126.016;2;0.499814302 68;162.44046;-126;2;0.708652218 68;162.43808;-125.974;2;0.844053203 68;162.589798;-124.59;2;0.97166245 68;162.652725;-124.016;2;0.280148366 68;162.651581;-124;2;0.191371901 68;162.64946;-123.971;2;0.597819342 68;162.763626;-122.764;2;0.14337196 68;162.834366;-122.016;2;0.8936626 68;162.83252;-122;2;0.972874024 68;162.829102;-121.971;2;0.284187455 68;162.820038;-120.82;2;0.556641581 68;162.813721;-120.015;2;0.544811196 68;162.811798;-120;2;0.372768954 68;162.808273;-119.971;2;0.683365297 68;162.698547;-118.699;2;0.148897021 68;162.639664;-118.015;2;0.258653654 68;162.637878;-118;2;0.401382646 68;162.634613;-117.972;2;0.721035612 68;162.165283;-116.165;2;0.644782533 68;162.126266;-116.015;2;0.551673381 68;162.122803;-116;2;0.609079181 68;162;-115.466;2;0.316932584 68;161.981918;-115.387;2;0.60834504 68;161.798218;-115.084;2;0.037261321 68;161.220016;-114;2;0.919481699 68;160.618896;-112.873;2;0.241112134 68;160;-112.016;2;0.211424296 68;159.988693;-112;2;0.364893778 68;159.959366;-111.959;2;0.100977952 68;159.145966;-110.832;2;0.846518984 68;158.648682;-110;2;0.746942902 68;158.047455;-108.994;2;0.317806535 68;158;-108.93;2;0.730528132 68;157.685806;-108.508;2;0.528461738 68;157.423355;-108.014;2;0.958580772 68;157.416183;-108;2;0.713972823 68;157.173172;-107.52;2;0.846292377 68;156.760834;-106.761;2;0.539224006 68;156.347641;-106;2;0.049317982 68;156;-105.36;2;0.269296804 68;155.925323;-105.222;2;0.555152753 68;155.851578;-105.077;2;0.519781946 68;155.815857;-105.038;2;0.144719063 68;154.976913;-104.011;2;0.034138622 68;154.957932;-104;2;0.94957792 68;154;-103.427;2;0.97663896 68;153.857391;-103.342;2;0.079091559 68;153.819275;-103.319;2;0.201159006 68;153.797379;-103.306;2;0.649112359 68;153.665848;-103.23;2;0.697053545 68;152.705597;-102.706;2;0.279062491 68;152;-102.32;2;0.002864198 68;151.821091;-102.223;2;0.094063232 68;151.453827;-102.051;2;0.798436507 68;151.338226;-102;2;0.018293585 68;150;-101.41;2;0.431171205 68;149.97345;-101.398;2;0.235711111 68;149.875778;-101.36;2;0.610740023 68;149.822342;-101.336;2;0.360924491 68;149.772339;-101.314;2;0.276963122 68;149.012405;-101.012;2;0.951311354 68;148;-100.61;2;0.289364697 68;147.823425;-100.54;2;0.346369611 68;146.577042;-100;2;0.224428382 68;146;-99.7501;2;0.110367304 68;145.874176;-99.6956;2;0.32655949 68;145.824905;-99.6702;2;0.991498394 68;145.768951;-99.6406;2;0.385671287 68;145.507278;-99.5073;2;0.839513346 68;144;-98.7391;2;0.517138433 68;143.827042;-98.651;2;0.910455715 68;142.630341;-98;2;0.969624729 68;142;-97.6571;2;0.234584224 68;141.884064;-97.594;2;0.301317168 68;141.829605;-97.5535;2;0.446177723 68;141.700287;-97.4806;2;0.047870152 68;141.228043;-97.228;2;0.583043237 68;140;-96.5712;2;0.759734318 68;139.832352;-96.4815;2;0.6052707 68;139.475922;-96.4192;2;0.677976096 68;138.281372;-96.0124;2;0.719293111 68;138.240524;-96;2;0.622457636 68;138;-95.9271;2;0.705535213 68;137.937485;-95.9081;2;0.962404405 68;137.908737;-95.9087;2;0.600322069 68;137.691025;-95.9135;2;0.967626236 68;137.494568;-96;2;0.660758377 68;137.466324;-96.0124;2;0.081658255 68;136.56311;-96.5631;2;0.991564637 68;136;-96.9064;2;0.175745957 68;135.320618;-97.3206;2;0.002323635 68;134.206314;-98;2;0.897750252 68;134.07814;-98.0781;2;0.842939028 68;134;-98.1258;2;0.891459471 68;133.821503;-98.2346;2;0.379208379 68;133.803604;-98.2856;2;0.482800788 68;133.436798;-99.4368;2;0.702569998 68;133.265427;-99.9746;2;0.928445196 68;133.262161;-100;2;0.620439019 68;133.260391;-100.014;2;0.264010116 68;132.824753;-100.825;2;0.427930801 68;132.19342;-102;2;0.667359923 68;132.125824;-102.126;2;0.782609213 68;132;-102.36;2;0.749206689 68;131.820618;-102.694;2;0.667169371 68;131.803558;-102.741;2;0.472078575 68;131.385223;-103.385;2;0.039003405 68;130.999817;-103.978;2;0.118484616 68;130.988739;-104;2;0.227059976 68;130.981049;-104.015;2;0.996169706 68;130.539169;-104.539;2;0.103580906 68;130;-105.179;2;0.074817627 68;129.62439;-105.624;2;0.17108065 68;129.33194;-105.971;2;0.465610607 68;129.310303;-106;2;0.769651753 68;129.298569;-106.016;2;0.050202172 68;128.706741;-106.707;2;0.369060027 68;128;-107.532;2;0.25322325 68;127.784203;-107.784;2;0.897993633 68;127.624886;-107.97;2;0.553442486 68;127.601875;-108;2;0.920992666 68;127.589401;-108.016;2;0.22572183 68;127.557205;-108.062;2;0.478813994 68;126.923714;-108.924;2;0.241038489 68;126.132431;-110;2;0.381617807 68;126.076324;-110.076;2;0.753723122 68;126;-110.18;2;0.62697255 68;125.790298;-110.465;2;0.34975303 68;125.773834;-110.494;2;0.651572051 68;125.285339;-111.285;2;0.622701846 68;124.845688;-111.998;2;0.717294132 68;124.84436;-112;2;0.414411229 68;124.808365;-112.066;2;0.404677393 68;124.563385;-112.563;2;0.891683934 68;124.000008;-113.707;2;0.736862829 68;123.903366;-113.903;2;0.808125191 68;123.855766;-114;2;0.332319479 68;123.847099;-114.018;2;0.438719437 68;123.762016;-114.272;2;0.34454031 68;123.40229;-115.402;2;0.915264353 68;123.212059;-116;2;0.221154852 68;123.210846;-116.004;2;0.728133166 68;123.199928;-116.069;2;0.342027086 68;123.102364;-117.102;2;0.978642113 68;123.017586;-118;2;0.518641423 68;123.015854;-118.018;2;0.683158859 68;123.019127;-118.071;2;0.425405459 68;123.124771;-119.125;2;0.632977894 68;123.212471;-120;2;0.389790685 68;123.214333;-120.019;2;0.651442931 68;123.638123;-121.638;2;0.937274542 68;123.72374;-121.965;2;0.781428032 68;123.731117;-122;2;0.340864412 68;123.735107;-122.019;2;0.368013355 68;123.752762;-122.072;2;0.063651699 68;124.000008;-122.732;2;0.442560658 68;124.474915;-124;2;0.501483617 68;124.482002;-124.019;2;0.622705345 68;124.496269;-124.073;2;0.333579237 68;124.704437;-124.704;2;0.745360685 68;125.131424;-126;2;0.176248361 68;125.137695;-126.019;2;0.257957107 68;125.12648;-126.073;2;0.809651389 68;124.974022;-126.974;2;0.925278957 68;124.800392;-128;2;0.39117777 68;124.79715;-128.019;2;0.152094864 68;124.435913;-128.436;2;0.019391219 68;124.000008;-128.939;2;0.003856319 68;123.765137;-129.21;2;0.391972329 68;123.739899;-129.241;2;0.307426914 68;123.719025;-129.265;2;0.43892642 68;123.467728;-129.468;2;0.349165518 68;122.809013;-130;2;0.10834029 68;122.361557;-130.362;2;0.594712947 68;121.999992;-130.654;2;0.230872811 68;121.771591;-130.838;2;0.243756509 68;121.737114;-130.864;2;0.147590383 68;121.239548;-131.24;2;0.537509706 68;120.231674;-132;2;0.835402087 68;120.099632;-132.1;2;0.761866591 68;120;-132.175;2;0.319776331 68;119.790741;-132.333;2;0.086526916 68;119.734673;-132.377;2;0.098396915 68;119.012718;-133.013;2;0.47618225 68;118;-133.904;2;0.549547417 68;117.948929;-133.949;2;0.211078687 68;117.890892;-134;2;0.790729293 68;117.789078;-134.09;2;0.878909923 68;117.732567;-134.141;2;0.295840249 68;116.981743;-134.982;2;0.221968001 68;116.072678;-136;2;0.150552111 68;116.038399;-136.038;2;0.443380107 68;116;-136.081;2;0.234593584 68;115.78791;-136.319;2;0.868949873 68;115.731117;-136.389;2;0.230055204 68;115.202957;-137.203;2;0.20740478 68;114.695221;-137.986;2;0.878520127 68;114.687141;-138;2;0.898777212 68;114.675842;-138.02;2;0.793209268 68;114.559669;-138.246;2;0.02814158 68;114.454323;-138.454;2;0.504168833 68;113.999992;-139.355;2;0.246318613 68;113.783607;-139.784;2;0.3628461 68;113.731567;-139.887;2;0.590797143 68;113.682426;-140;2;0.767187118 68;113.173279;-141.173;2;0.705896008 68;112.90316;-141.796;2;0.235571177 68;112.827805;-142;2;0.173746385 68;112.820496;-142.02;2;0.817516147 68;112.799248;-142.076;2;0.526719277 68;112.592979;-142.593;2;0.986834415 68;112.031425;-144;2;0.702470575 68;112.023575;-144.02;2;0.93633213 68;112.022469;-144.022;2;0.999543264 68;112;-144.079;2;0.621231736 68;111.989288;-144.106;2;0.912802982 68;111.521042;-145.521;2;0.080509223 68;111.362526;-146;2;0.5041878 68;111.356087;-146.019;2;0.116750619 68;111.335464;-146.075;2;0.362845111 68;111.117157;-147.117;2;0.275541288 68;110.932251;-148;2;0.599117869 68;110.92823;-148.019;2;0.649424253 68;110.905647;-148.074;2;0.582911561 68;110.737564;-148.738;2;0.712983592 68;110.41787;-150;2;0.577266738 68;110.413086;-150.019;2;0.968431544 68;110.255318;-150.255;2;0.324125402 68;110;-150.638;2;0.55320519 68;109.763947;-150.992;2;0.591466151 68;109.406601;-151.407;2;0.717142529 68;108.92527;-151.966;2;0.023441836 68;108.885704;-152;2;0.804293523 68;108.85524;-152.027;2;0.184555178 68;108.291954;-152.292;2;0.956048624 68;108;-152.43;2;0.885558973 68;107.748512;-152.548;2;0.735490917 68;107.695404;-152.568;2;0.16859696 68;106.880035;-152.88;2;0.278254529 68;106.000008;-153.216;2;0.477520616 68;105.748199;-153.313;2;0.919880914 68;105.695015;-153.33;2;0.371736817 68;105.414139;-153.414;2;0.591123617 68;104;-153.84;2;0.034036707 68;103.87674;-153.877;2;0.888886548 68;103.747482;-153.916;2;0.874970473 68;103.43026;-154;2;0.46491548 68;102.300484;-154.3;2;0.502052547 68;102;-154.38;2;0.015112051 68;101.80014;-154.434;2;0.11781866 68;101.693108;-154.463;2;0.665837038 68;100.729912;-154.73;2;0.490577032 68;100;-154.932;2;0.55523255 68;99.745872;-155.003;2;0.736880041 68;99.692215;-155.02;2;0.57581572 68;99.189301;-155.189;2;0.305783311 68;98;-155.589;2;0.054802608 68;97.745537;-155.674;2;0.797858573 68;97.694687;-155.695;2;0.628287356 68;97.691818;-155.696;2;0.812360744 68;96.885521;-156;2;0.174970611 68;96.242554;-156.243;2;0.15016378 68;96;-156.334;2;0.216343438 68;95.745529;-156.43;2;0.165647675 68;95.691818;-156.453;2;0.254949554 68;94.816177;-156.816;2;0.789352025 68;94;-157.155;2;0.358338585 68;93.74585;-157.26;2;0.943424691 68;93.414276;-157.414;2;0.132698657 68;92.165695;-157.995;2;0.965347973 68;92.155678;-158;2;0.667774161 68;92.117439;-158.019;2;0.030334368 68;92.058685;-158.045;2;0.347250271 68;92.049263;-158.049;2;0.988472859 68;92;-158.072;2;0.915033227 68;90.675255;-158.675;2;0.386859247 68;90;-158.983;2;0.441294906 68;89.747383;-159.098;2;0.8273774 68;89.693604;-159.125;2;0.209200027 68;89.321854;-159.322;2;0.833792087 68;88.038116;-160;2;0.789159279 68;88.013176;-160.013;2;0.829152078 68;88.002815;-160.019;2;0.494882759 68;88;-160.02;2;0.168655319 68;86.671181;-160.671;2;0.887338095 68;86;-161;2;0.700229453 68;85.803291;-161.096;2;0.247401445 68;85.750038;-161.119;2;0.698314835 68;85.697273;-161.136;2;0.79151486 68;85.308784;-161.309;2;0.602227811 68;84;-161.891;2;0.96998495 68;83.924232;-161.924;2;0.676126572 68;83.753777;-162;2;0.20478874 68;83.75106;-162.001;2;0.23325124 68;83.636597;-162.018;2;0.413606882 68;82.28624;-162.286;2;0.668032435 68;82;-162.343;2;0.525432935 68;81.750267;-162.393;2;0.18216294 68;80.134651;-162.135;2;0.487094979 68;80;-162.113;2;0.064744151 68;79.837379;-162.087;2;0.687100711 68;79.761932;-162.035;2;0.087918862 68;79.739075;-162;2;0.996858081 68;79.250488;-161.25;2;0.904211073 68;78.448006;-160.019;2;0.497548481 68;78.455887;-160;2;0.658146019 68;78.901276;-158.901;2;0.238815603 68;78.934555;-158.819;2;0.215174801 68;79.344307;-158.024;2;0.887502783 68;79.367104;-158;2;0.063663331 68;79.674652;-157.675;2;0.632474297 68;79.730881;-157.615;2;0.964817866 68;80;-157.289;2;0.212336867 68;80.583313;-156.583;2;0.445075871 68;81.065186;-156;2;0.424256554 68;81.488083;-155.488;2;0.395861635 68;81.515846;-155.454;2;0.332179716 68;81.745445;-155.178;2;0.77515336 68;81.783234;-155.131;2;0.023869963 68;82;-154.86;2;0.440008332 68;82.381462;-154.381;2;0.9747073 68;82.660812;-154.031;2;0.076855857 68;82.686798;-154;2;0.608482232 68;83.281761;-153.282;2;0.873057058 68;83.720818;-152.752;2;0.899782129 68;84;-152.475;2;0.207853811 68;84.238663;-152.239;2;0.561302307 68;84.458542;-152.021;2;0.878328864 68;84.486557;-152;2;0.972509821 68;85.355034;-151.355;2;0.78241367 68;85.718567;-151.085;2;0.482827292 68;85.777962;-151.047;2;0.822496035 68;86;-150.925;2;0.180880033 68;86.596657;-150.597;2;0.812033886 68;86.597931;-150.596;2;0.921958089 68;87.647255;-150.008;2;0.238880807 68;87.659843;-150;2;0.516911047 68;87.718155;-149.964;2;0.94980634 68;87.880524;-149.881;2;0.83859278 68;88;-149.819;2;0.749102517 68;88.837746;-149.386;2;0.663303772 68;89.195946;-149.196;2;0.106350983 68;89.718063;-148.919;2;0.955212621 68;89.777573;-148.88;2;0.166767281 68;89.853828;-148.828;2;0.680799591 68;90;-148.714;2;0.654247493 68;90.401054;-148.401;2;0.144278465 68;90.888405;-148.021;2;0.296765427 68;90.901382;-148;2;0.260793788 68;91.321556;-147.322;2;0.164480049 68;92;-146.226;2;0.626748327 68;92.042007;-146.158;2;0.295299997 68;92.055435;-146.101;2;0.75360887 68;92.072395;-146.072;2;0.527328529 68;92.103043;-146.021;2;0.406545849 68;92.101433;-146;2;0.530093623 68;92.098465;-145.961;2;0.567017428 68;92;-145.269;2;0.20604936 68;91.822372;-144.021;2;0.643119049 68;91.815331;-144;2;0.004268239 68;91.771591;-143.867;2;0.023072192 68;91.710876;-143.73;2;0.198801531 68;91.693771;-143.694;2;0.657959402 68;90.903343;-142.022;2;0.552257544 68;90.891518;-142;2;0.161104805 68;90;-140.366;2;0.151597435 68;89.827721;-140.05;2;0.842745803 68;89.800545;-140;2;0.655338396 68;89.758781;-139.923;2;0.904582594 68;89.740288;-139.861;2;0.964307944 68;89.685875;-139.686;2;0.531458082 68;89.169067;-138.022;2;0.178392689 68;89.163681;-138;2;0.54736712 68;89.144211;-137.92;2;0.981797608 68;88.936401;-136.936;2;0.462652559 68;88.743286;-136.022;2;0.561499723 68;88.741928;-136;2;0.845779074 68;88.737694;-135.931;2;0.512869631 68;88.469383;-134.469;2;0.781769899 68;88.387291;-134.022;2;0.597197497 68;88.380005;-134;2;0.340423708 68;88.214966;-133.497;2;0.73299268 68;88;-133.067;2;0.710333766 68;87.762291;-132.591;2;0.396187208 68;87.718849;-132.528;2;0.324780132 68;87.422005;-132.25;2;0.221189088 68;87.155876;-132;2;0.687749277 68;86;-130.915;2;0.76706231 68;85.69944;-130.633;2;0.214140629 68;84.12117;-130.121;2;0.917573279 68;84;-130.082;2;0.420611811 68;83.81636;-130.022;2;0.786961086 68;83.746323;-130;2;0.366271493 68;83.579315;-129.947;2;0.4108711 68;83.519012;-129.921;2;0.126449698 68;82;-129.742;2;0.684940624 68;81.798088;-129.718;2;0.310277248 68;81.705856;-129.706;2;0.510675637 68;81.696327;-129.705;2;0.905266948 68;81.565392;-129.692;2;0.582158588 68;80;-129.677;2;0.470138721 68;79.694557;-129.674;2;0.963811815 68;79.661987;-129.662;2;0.910640071 68;79.144722;-129.473;2;0.201418522 68;78;-129.093;2;0.928544952 68;77.693466;-128.991;2;0.996899129 68;76.028992;-128.029;2;0.820681617 68;76.018234;-128.023;2;0.202656111 68;76.004471;-128.004;2;0.321737472 68;76.001106;-128;2;0.011870949 68;76;-127.999;2;0.584943624 68;75.923958;-127.897;2;0.58275966 68;74.848991;-126.023;2;0.578320975 68;74.841911;-126;2;0.130500833 68;74.816711;-125.919;2;0.184950768 68;74.807945;-125.737;2;0.357510532 68;74.754082;-124.754;2;0.765584193 68;74.713997;-124.022;2;0.491046872 68;74.707085;-124;2;0.301395826 68;74.474716;-123.247;2;0.074168698 68;74.413063;-122.413;2;0.711579485 68;74.384163;-122.022;2;0.874796153 68;74.369888;-122;2;0.973874087 68;74.322388;-121.926;2;0.632229977 68;74;-121.046;2;0.222669736 68;73.799736;-120.5;2;0.872930443 68;73.705269;-120.343;2;0.709514078 68;73.485062;-120;2;0.73211851 68;72.558678;-118.559;2;0.216801903 68;72.1996;-118;2;0.611650818 68;72;-117.689;2;0.465578414 68;71.853096;-117.461;2;0.988463994 68;71.772614;-117.376;2;0.450557517 68;71.711876;-117.319;2;0.907058985 68;70.097313;-116.097;2;0.84715232 68;70;-116.024;2;0.682880121 68;69.968735;-116;2;0.782432352 68;69.855042;-115.914;2;0.070168876 68;69.775131;-115.865;2;0.754785248 68;69.715042;-115.828;2;0.648604848 68;68;-114.764;2;0.173994572 68;67.777283;-114.626;2;0.187961166 68;67.719597;-114.587;2;0.153146103 68;66.813705;-114;2;0.07749113 68;66.170853;-113.583;2;0.984717982 68;66;-113.409;2;0.872284949 68;65.743851;-113.147;2;0.351950498 68;64.711754;-112;2;0.765904059 68;64;-111.209;2;0.911465236 68;63.788643;-110.974;2;0.075128712 68;63.712357;-110.917;2;0.291351182 68;63.67136;-110.902;2;0.383116216 68;62.464764;-110;2;0.042182833 68;62.000004;-109.652;2;0.256358678 68;61.733467;-109.453;2;0.379346444 68;61.162571;-109.163;2;0.317306361 68;60;-108.571;2;0.407474753 68;59.792065;-108.465;2;0.934493166 68;59.736446;-108.452;2;0.464217423 68;59.680817;-108.444;2;0.860917672 68;58.119804;-108.12;2;0.179703171 68;58;-108.095;2;0.77178156 68;57.737263;-108.04;2;0.827749688 68;57.38047;-108;2;0.029975687 68;56;-107.844;2;0.058146267 68;55.823689;-107.824;2;0.094465381 68;55.792797;-107.82;2;0.408452819 68;55.737339;-107.817;2;0.983503299 68;55.660477;-107.816;2;0.419395011 68;54;-107.792;2;0.029566824 68;53.788597;-107.789;2;0.825110467 68;53.501518;-107.784;2;0.119557987 68;53.086327;-107.805;2;0.077396676 68;52;-107.919;2;0.226581864 68;51.926334;-107.926;2;0.477346986 68;51.222107;-108;2;0.306962495 68;50.115734;-108.116;2;0.594332947 68;50;-108.128;2;0.651483892 68;49.73341;-108.156;2;0.572228699 68;49.677048;-108.165;2;0.069145353 68;48.535896;-108.536;2;0.354380245 68;48;-108.71;2;0.957216098 68;47.729858;-108.798;2;0.167878963 68;47.65255;-108.818;2;0.050578907 68;47.077953;-109.078;2;0.280045806 68;46;-109.566;2;0.323014296 68;45.701557;-109.702;2;0.000894785 68;45.171631;-109.942;2;0.068363395 68;45.107315;-109.965;2;0.548968942 68;45.028099;-110;2;0.061555187 68;44.981499;-110.021;2;0.819238311 68;44.358208;-110.358;2;0.949271375 68;44;-110.552;2;0.246122698 68;43.720322;-110.704;2;0.911991015 68;43.037689;-111.038;2;0.295979721 68;42.377434;-111.361;2;0.115728715 68;42;-111.552;2;0.6787059 68;41.715435;-111.696;2;0.904872361 68;41.703278;-111.703;2;0.132151097 68;41.504517;-111.82;2;0.125739499 68;41.086494;-112;2;0.797001241 68;40.326488;-112.326;2;0.34741524 68;40;-112.467;2;0.734957917 68;39.708088;-112.592;2;0.260269856 68;39.624275;-112.645;2;0.10517412 68;38.967365;-112.967;2;0.291872111 68;38;-113.442;2;0.254776546 68;37.706387;-113.586;2;0.400082396 68;37.633121;-113.633;2;0.388219469 68;37.38055;-113.794;2;0.59678628 68;37.015018;-114;2;0.012538468 68;36.976086;-114.022;2;0.697928403 68;36.346729;-114.347;2;0.739508068 68;36;-114.526;2;0.27788793 68;35.70145;-114.68;2;0.164721882 68;35.020294;-115.02;2;0.033231445 68;34;-115.53;2;0.45567223 68;33.686909;-115.687;2;0.735863946 68;33.372501;-115.844;2;0.347462316 68;33.162098;-115.956;2;0.554850569 68;33.09763;-115.995;2;0.972511443 68;33.085518;-116;2;0.021446299 68;33.033718;-116.023;2;0.601615098 68;32.417671;-116.418;2;0.671172928 68;32.24165;-116.531;2;0.545712652 68;32;-116.614;2;0.004719531 68;31.692396;-116.721;2;0.133283689 68;30.94013;-116.94;2;0.013210102 68;30;-117.214;2;0.563663663 68;29.844805;-117.259;2;0.744182603 68;29.681;-117.319;2;0.403956179 68;29.352514;-117.353;2;0.914585236 68;28;-117.489;2;0.829100149 68;27.745428;-117.515;2;0.012791234 68;27.687855;-117.529;2;0.258497322 68;27.621929;-117.528;2;0.379841797 68;27.519718;-117.52;2;0.850750182 68;26;-117.393;2;0.845505147 68;25.6877;-117.367;2;0.552620611 68;25.609329;-117.354;2;0.346909758 68;25.285433;-117.285;2;0.743086002 68;24;-117.014;2;0.079592484 68;23.676098;-116.946;2;0.488793498 68;22.568361;-116.568;2;0.156899216 68;22;-116.375;2;0.142932339 68;20.967533;-116.023;2;0.650833947 68;20.914675;-116.011;2;0.628070495 68;20.882431;-116;2;0.790009384 68;20;-115.696;2;0.321204836 68;19.757299;-115.612;2;0.880399752 68;19.69241;-115.593;2;0.034970596 68;19.535109;-115.535;2;0.999979791 68;18;-114.974;2;0.445934698 68;17.759136;-114.886;2;0.309264285 68;17.69474;-114.866;2;0.206859443 68;17.656008;-114.853;2;0.007641659 68;17.123537;-114.635;2;0.707087413 68;16.295231;-114.295;2;0.607329626 68;16;-114.174;2;0.825794511 68;15.575445;-114;2;0.375184393 68;15.553096;-113.991;2;0.471975669 68;14.264017;-113.502;2;0.679558477 68;14;-113.401;2;0.365384835 68;13.788721;-113.32;2;0.174039374 68;13.700306;-113.296;2;0.695655815 68;13.637064;-113.287;2;0.784477191 68;13.110833;-113.111;2;0.862055516 68;12;-112.739;2;0.219661234 68;11.702749;-112.639;2;0.887684565 68;11.639985;-112.638;2;0.121634092 68;10.304168;-112.304;2;0.830244929 68;10;-112.228;2;0.426365971 68;9.704541;-112.154;2;0.736061472 68;8.867892;-112;2;0.246769465 68;8;-111.84;2;0.764948039 68;7.803727;-111.804;2;0.686379522 68;7.767948;-111.797;2;0.496339094 68;7.70579;-111.808;2;0.320206688 68;6;-111.671;2;0.183357771 68;5.768258;-111.653;2;0.354389473 68;5.706111;-111.679;2;0.305525292 68;5.68085;-111.681;2;0.386411573 68;5.129088;-111.722;2;0.818508821 68;4;-111.847;2;0.372966085 68;3.862371;-111.862;2;0.971472347 68;3.843289;-111.864;2;0.024808297 68;3.772267;-111.772;2;0.160040151 68;3.705858;-111.686;2;0.753101221 68;2.53698;-110.537;2;0.066034836 68;2.276359;-110.281;2;0.697047831 68;2;-110.255;2;0.807967143 68;1.712503;-110.228;2;0.900480466 68;1.669824;-110;2;0.105855887 68;1.598858;-109.622;2;0.595155082 68;1.603105;-109.603;2;0.443132053 68;1.621625;-109.523;2;0.942846268 68;0.97223;-108.021;2;0.832949771 68;0.956776;-108;2;0.851285666 68;0;-106.728;2;0.449937655 68;25.647726;-136.874;2;0.516639041 68;25.357412;-136.316;2;0.766308279 68;25.239008;-136.026;2;0.56857822 68;25.240753;-136;2;0.41197884 68;25.264605;-135.643;2;0.700950579 68;25.247065;-135.247;2;0.378889924 68;25.192921;-134.026;2;0.969087543 68;25.19635;-134;2;0.612924196 68;25.289974;-133.29;2;0.816474957 68;25.427097;-132.25;2;0.56657647 68;25.468433;-132.026;2;0.917374798 68;25.471285;-132;2;0.873481753 68;25.488564;-131.843;2;0.430289933 68;25.528008;-131.528;2;0.200848646 68;25.653799;-130.522;2;0.66585117 68;25.725836;-130;2;0.504719526 68;25.726385;-129.996;2;0.895923828 68;25.74972;-129.901;2;0.184164315 68;25.775181;-129.775;2;0.453211246 68;26;-128.661;2;0.318638065 68;26.110901;-128.111;2;0.176328896 68;26.128159;-128.025;2;0.14497622 68;26.139513;-128;2;0.537434677 68;26.715061;-126.715;2;0.982730062 68;26.982594;-126.118;2;0.144867236 68;27.078979;-126.025;2;0.322351722 68;27.108524;-126;2;0.955204701 68;27.591358;-125.591;2;0.119751897 68;27.938293;-125.298;2;0.715412446 68;28;-125.246;2;0.240433136 68;28.676998;-124.677;2;0.295692228 68;29.453428;-124.025;2;0.652684055 68;29.490631;-124;2;0.052074748 68;29.583397;-123.939;2;0.811926367 68;29.643064;-123.911;2;0.225445924 68;29.8634;-123.863;2;0.028149216 68;30;-123.834;2;0.540561304 68;31.13521;-123.589;2;0.505401062 68;31.506292;-123.506;2;0.933004423 68;31.671474;-123.469;2;0.1799098 68;32;-123.476;2;0.628358358 68;33.147781;-123.5;2;0.089654095 68;33.521259;-123.521;2;0.829017432 68;33.67231;-123.53;2;0.752872521 68;34;-123.602;2;0.497011717 68;34.056015;-123.615;2;0.737377773 68;35.442726;-123.778;2;0.365776177 68;35.672504;-123.829;2;0.167871974 68;35.889462;-123.889;2;0.91312171 68;36;-123.92;2;0.307183807 68;36.288082;-124;2;0.018457352 68;37.390846;-124.306;2;0.888561215 68;37.67231;-124.375;2;0.141562694 68;38;-124.454;2;0.02584605 68;38.134605;-124.487;2;0.427167682 68;38.625908;-124.626;2;0.92168823 68;39.672222;-124.923;2;0.83780822 68;40;-124.992;2;0.867946075 68;40.811325;-125.163;2;0.311940576 68;41.269394;-125.269;2;0.475889384 68;41.672413;-125.363;2;0.684224853 68;42;-125.416;2;0.075750917 68;43.470585;-125.655;2;0.977339495 68;43.594536;-125.707;2;0.196784294 68;43.672768;-125.725;2;0.113759495 68;43.739449;-125.739;2;0.070394736 68;44;-125.794;2;0.951664264 68;44.979431;-126;2;0.131237001 68;45.579945;-126.126;2;0.169650629 68;45.673153;-126.154;2;0.009706575 68;45.852859;-126.212;2;0.971441255 68;46;-126.255;2;0.115401942 68;46.358654;-126.359;2;0.541865242 68;47.673401;-126.739;2;0.219431841 68;48;-126.834;2;0.385272412 68;49.172943;-127.173;2;0.517848353 68;49.494141;-127.266;2;0.602020837 68;49.565544;-127.344;2;0.642632491 68;49.673515;-127.411;2;0.986983731 68;50;-127.504;2;0.658759072 68;51.519146;-127.938;2;0.874940855 68;51.596485;-128;2;0.096658816 68;51.673843;-128.062;2;0.825738603 68;52;-128.258;2;0.823509296 68;52.651115;-128.651;2;0.831515097 68;53.409542;-129.109;2;0.887095886 68;53.458519;-129.298;2;0.776593717 68;53.663868;-129.664;2;0.988788416 68;53.673096;-129.68;2;0.118135697 68;53.823341;-130;2;0.18525166 68;54;-130.376;2;0.690699078 68;54.763344;-132;2;0.844449435 68;54.774803;-132.024;2;0.939174383 68;54.830402;-132.83;2;0.242300957 68;54.832619;-132.863;2;0.270593086 68;54.930298;-134;2;0.984338692 68;54.9324;-134.024;2;0.869178554 68;54.705223;-134.705;2;0.92672366 68;54.616394;-134.971;2;0.953268857 68;54.049801;-136;2;0.418761202 68;54.036263;-136.025;2;0.603094291 68;54.03001;-136.03;2;0.381188733 68;54;-136.056;2;0.367030218 68;52.959961;-136.96;2;0.878484319 68;52.768921;-137.126;2;0.812945287 68;52;-137.991;2;0.103136758 68;51.995747;-137.996;2;0.068256157 68;51.991962;-138;2;0.238699804 68;51.969994;-138.025;2;0.238392278 68;51.666653;-138.211;2;0.933409008 68;50.783905;-138.784;2;0.37132338 68;50.537483;-138.944;2;0.40091433 68;50;-139.254;2;0.338542687 68;49.526775;-139.527;2;0.369946013 68;49.292061;-139.662;2;0.807699532 68;49.000393;-139.754;2;0.327174175 68;48.716125;-140;2;0.871718075 68;48.687328;-140.025;2;0.69572519 68;48.230255;-140.23;2;0.511678504 68;48;-140.334;2;0.199674908 68;47.981434;-140.342;2;0.385487011 68;47.664223;-140.56;2;0.291950531 68;46.960762;-140.961;2;0.672382827 68;46.341522;-141.314;2;0.338785172 68;46;-141.424;2;0.06498115 68;45.663013;-141.532;2;0.583659943 68;45.523731;-141.524;2;0.860480224 68;45.178528;-141.503;2;0.547799543 68;44;-141.709;2;0.533700987 68;43.752243;-141.752;2;0.445741395 68;43.661495;-141.768;2;0.537853185 68;42.079254;-141.606;2;0.973057619 68;42;-141.603;2;0.03269821 68;41.659763;-141.591;2;0.249829281 68;41.588558;-141.589;2;0.940639052 68;40;-141.535;2;0.540620411 68;39.518948;-141.519;2;0.551736891 68;39.500465;-141.518;2;0.09727907 68;38.951111;-141.613;2;0.653462324 68;38.070602;-141.59;2;0.030500714 68;38;-141.617;2;0.063814329 68;37.721832;-141.722;2;0.660355655 68;37.656662;-141.746;2;0.968353313 68;37.492657;-141.837;2;0.326207136 68;36.438519;-142;2;0.607389693 68;36.058823;-142.059;2;0.304412738 68;36;-142.068;2;0.029005208 68;35.655342;-142.121;2;0.012768144 68;34.662594;-142;2;0.789255233 68;34;-141.919;2;0.554778313 68;33.907742;-141.908;2;0.589004533 68;33.519615;-141.86;2;0.1242619 68;33.348801;-141.893;2;0.433971337 68;32.175701;-141.502;2;0.723899755 68;32;-141.498;2;0.977804219 68;31.652027;-141.489;2;0.166078791 68;31.29001;-141.29;2;0.970366115 68;30;-140.583;2;0.688493797 68;28.984743;-140.026;2;0.738378149 68;28.926945;-140;2;0.367350445 68;28.817827;-139.951;2;0.046145996 68;28.705978;-139.886;2;0.675219014 68;28;-139.328;2;0.773974411 68;26.350368;-138.026;2;0.283335791 68;26.334425;-138;2;0.423195988 68;26;-137.452;2;0.788285052 68;0;-112.906;2;0.867702657 68;1.039257;-113.66;2;0.618394714 68;1.435857;-113.475;2;0.241519734 68;1.502855;-114;2;0.310703684 68;1.505743;-114.023;2;0.567775219 68;1.384122;-114.087;2;0.60472773 68;1.358439;-114.157;2;0.631443605 68;1.086517;-115.087;2;0.152456368 68;0.819353;-116;2;0.641231615 68;0.812554;-116.023;2;0.891929035 68;0.429579;-116.43;2;0.836545618 68;0;-116.885;2;0.743654936 68;181.825134;-111.702;2;0.512582655 68;181.617859;-111.618;2;0.843067895 68;180;-110.958;2;0.097982608 68;179.861649;-110.902;2;0.505327414 68;179.824615;-110.882;2;0.929776468 68;178.350037;-110.002;2;0.523520311 68;178.348343;-110;2;0.545222621 68;178;-109.691;2;0.955331634 68;177.825409;-109.536;2;0.533836944 68;176.021942;-108;2;0.748892747 68;176;-107.981;2;0.488509772 68;175.874146;-107.874;2;0.615426944 68;175.859299;-107.862;2;0.493970179 68;175.855759;-107.856;2;0.867918072 68;175.837006;-107.825;2;0.940334208 68;174.746811;-106.013;2;0.437816134 68;174.746201;-106;2;0.040798855 68;174.682358;-104.682;2;0.132921793 68;174.682266;-104.681;2;0.476522561 68;174.612518;-104.012;2;0.33792808 68;174.61554;-104;2;0.063147966 68;174.890121;-102.89;2;0.610567904 68;175.096985;-102.054;2;0.572188629 68;175.108932;-102.012;2;0.583727194 68;175.112869;-102;2;0.432549075 68;175.335052;-101.335;2;0.931739297 68;175.753799;-100.082;2;0.627507068 68;175.76355;-100;2;0.770155339 68;175.788742;-99.7887;2;0.765420978 68;175.850021;-99.275;2;0.58955052 68;175.873703;-99.1864;2;0.857309556 68;175.879562;-99.1597;2;0.899541926 68;175.885483;-98;2;0.657799273 68;175.886078;-97.8861;2;0.382540267 68;175.895508;-96.0377;2;0.760979819 68;175.898132;-96.0104;2;0.81522666 68;175.896744;-96;2;0.029480555 68;175.880783;-95.8808;2;0.375028278 68;175.868195;-95.7868;2;0.583447857 68;175.639084;-94.2366;2;0.675078781 68;175.56546;-94.0099;2;0.449495733 68;175.562988;-94;2;0.108261426 68;175.465485;-93.6077;2;0.543448687 68;175.404404;-93.4044;2;0.568274068 68;175.182404;-92.6655;2;0.258035167 68;175.256378;-92.0094;2;0.629156928 68;175.25946;-92;2;0.081583446 68;175.441833;-91.4418;2;0.054594092 68;175.901749;-90.0342;2;0.464967087 68;175.925522;-90.0089;2;0.923873789 68;175.942474;-90;2;0.341850255 68;175.980209;-89.9802;2;0.567853797 68;176;-89.9698;2;0.196997716 68;177.292053;-89.2921;2;0.974053385 68;177.884888;-88.9811;2;0.998413344 68;178;-88.9372;2;0.928020485 68;178.678696;-88.6787;2;0.951484354 68;179.549377;-88.347;2;0.02354067 68;179.888855;-88.189;2;0.87322199 68;180;-88.1455;2;0.601809222 68;180.104584;-88.1046;2;0.350422542 68;180.350769;-88.0082;2;0.180883273 68;180.38147;-88;2;0.305636606 68;181.413467;-87.7251;2;0.600250774 68;181.659027;-87.659;2;0.790420776 68;181.892075;-87.5963;2;0.581901961 68;182;-87.5722;2;0.134400441 68;182.370819;-87.4893;2;0.995954598 68;183.251755;-87.2518;2;0.309410468 68;183.827698;-87.0964;2;0.241449021 68;183.895142;-87.0802;2;0.167840523 68;183.917313;-87.0749;2;0.225046602 68;184;-87.062;2;0.752474302 68;184.918365;-86.9184;2;0.204701207 68;185.897446;-86.7653;2;0.509561531 68;186;-86.7592;2;0.686583458 68;186.716995;-86.717;2;0.260978944 68;187.211227;-86.6879;2;0.977796504 68;187.899033;-86.618;2;0.28039002 68;188;-86.6205;2;0.978322307 68;188.636322;-86.6363;2;0.907842734 68;189.882538;-86.6673;2;0.273595473 68;189.900269;-86.6675;2;0.516120499 68;190;-86.6869;2;0.14227909 68;190.853317;-86.8533;2;0.022982714 68;191.879196;-87.0533;2;0.284203489 68;191.893677;-87.0554;2;0.468913464 68;191.961411;-87.0747;2;0.793974714 68;192;-87.0873;2;0.611806504 68;193.613708;-87.6137;2;0.945914735 68;193.899414;-87.7069;2;0.811633443 68;194;-87.7593;2;0.381183347 68;194.395416;-87.9653;2;0.859486501 68;194.463928;-88;2;0.159934679 68;195.834946;-88.6943;2;0.558671108 68;195.897598;-88.7324;2;0.582623473 68;196;-88.8602;2;0.833658635 68;196.91301;-90;2;0.929824219 68;197.868546;-91.1929;2;0.90378481 68;197.878586;-91.2138;2;0.878584675 68;197.881454;-91.2367;2;0.051660982 68;197.890167;-91.6327;2;0.739025142 68;197.893112;-91.8931;2;0.821325916 68;197.894302;-92;2;0.389927156 68;197.915878;-93.9159;2;0.366975141 68;197.91684;-94;2;0.511449999 68;197.916931;-94.0087;2;0.558051605 68;197.902939;-94.1269;2;0.967717757 68;197.870316;-95.6711;2;0.947757075 68;197.864441;-95.8644;2;0.270969214 68;197.860306;-96;2;0.242823373 68;197.860031;-96.0091;2;0.43139701 68;197.979248;-97.9792;2;0.853646483 68;197.979446;-97.9825;2;0.6216047 68;197.982544;-98;2;0.705954604 68;197.987839;-98.0298;2;0.177803409 68;198;-98.219;2;0.42179907 68;198.114517;-100;2;0.801434754 68;198.115158;-100.01;2;0.50140501 68;198.121048;-100.038;2;0.885642325 68;198.126648;-100.127;2;0.696367766 68;198.244904;-102;2;0.608553356 68;198.245544;-102.01;2;0.482766193 68;198.218933;-102.219;2;0.239389254 68;198;-103.936;2;0.093046836 68;197.992752;-103.993;2;0.735429401 68;197.991821;-104;2;0.96575612 68;197.862274;-105.016;2;0.876934031 68;197.861832;-105.047;2;0.178093112 68;197.854675;-105.071;2;0.153857153 68;197.555969;-105.556;2;0.782302083 68;197.282639;-106;2;0.899830324 68;196.79393;-106.794;2;0.122290751 68;196.051529;-108;2;0.161399142 68;196.031891;-108.032;2;0.124336775 68;196;-108.084;2;0.054668747 68;195.878571;-108.281;2;0.978877427 68;195.845947;-108.328;2;0.188880933 68;194.987045;-108.987;2;0.027265822 68;194;-109.745;2;0.493237442 68;193.855667;-109.856;2;0.98610934 68;193.686462;-109.986;2;0.27955015 68;193.666351;-110;2;0.122584526 68;193.652725;-110.01;2;0.96563206 68;193.618988;-110.024;2;0.446248576 68;192.519196;-110.519;2;0.914085978 68;192;-110.753;2;0.441712826 68;191.837173;-110.826;2;0.665829093 68;191.055283;-111.055;2;0.811682299 68;190;-111.364;2;0.266827567 68;189.86911;-111.403;2;0.330351462 68;189.834045;-111.411;2;0.202696851 68;189.79895;-111.416;2;0.045127804 68;189.473053;-111.473;2;0.089079962 68;188;-111.729;2;0.363252763 68;187.831314;-111.759;2;0.018738362 68;187.765625;-111.766;2;0.945786565 68;186;-111.954;2;0.666418159 68;185.958801;-111.959;2;0.778160323 68;185.865021;-111.969;2;0.69570382 68;185.828842;-111.971;2;0.859221674 68;184;-111.995;2;0.494320671 68;183.995193;-111.995;2;0.383175302 68;183.863312;-111.997;2;0.263317329 68;183.826706;-111.995;2;0.167707461 68;182;-111.731;2;0.471079091 68;181.862076;-111.712;2;0.739500331 102;397.915924;-143.405;7;0.931689847 102;397.898163;-143.405;7;0.811944293 102;397.360809;-143.361;7;0.388003607 102;396;-143.248;7;0.928488364 102;395.913391;-143.241;7;0.916186456 102;395.070435;-143.07;7;0.386643978 102;394;-142.854;7;0.924590076 102;393.92926;-142.84;7;0.6354572 102;393.910309;-142.836;7;0.022911366 102;393.891327;-142.832;7;0.825072924 102;392.473419;-142.473;7;0.96802231 102;392;-142.354;7;0.06174109 102;391.906921;-142.33;7;0.52226294 102;390.472137;-142.009;7;0.122718069 102;390.451965;-142.005;7;0.245008165 102;390.431793;-142.002;7;0.477285419 102;390.419128;-142;7;0.663307157 102;390;-141.918;7;0.848675941 102;389.897614;-141.898;7;0.877846984 102;388;-141.525;7;0.03571029 102;387.900543;-141.505;7;0.767153133 102;387.879486;-141.503;7;0.220229797 102;387.41745;-141.417;7;0.737781984 102;386;-141.156;7;0.491501914 102;385.8974;-141.137;7;0.939069505 102;385.875702;-141.135;7;0.495769996 102;385.006958;-141.007;7;0.024757868 102;384;-140.859;7;0.070118903 102;383.894409;-140.843;7;0.694217428 102;383.87207;-140.842;7;0.701394595 102;382.743073;-140.743;7;0.118206783 102;382;-140.678;7;0.930134164 102;381.891663;-140.669;7;0.536192693 102;381.868744;-140.669;7;0.1040948 102;380.642639;-140.643;7;0.810182575 102;380;-140.629;7;0.074829657 102;379.889221;-140.626;7;0.263994044 102;379.865784;-140.628;7;0.581098161 102;378.681213;-140.681;7;0.92580298 102;378;-140.712;7;0.895828015 102;377.887054;-140.717;7;0.428373948 102;376.842529;-140.843;7;0.939858236 102;376;-140.944;7;0.041518063 102;375.909454;-140.955;7;0.726840814 102;375.885223;-140.958;7;0.007377204 102;375.096313;-141.096;7;0.29012241 102;374;-141.288;7;0.326452044 102;373.908234;-141.304;7;0.41071525 102;373.883667;-141.309;7;0.355000615 102;373.401245;-141.401;7;0.778324978 102;372;-141.668;7;0.738237025 102;371.902649;-141.687;7;0.993267871 102;371.882202;-141.69;7;0.787071033 102;371.805847;-141.696;7;0.104496677 102;371.705444;-141.705;7;0.306780344 102;370.353851;-141.836;7;0.792120478 102;370;-141.869;7;0.372097906 102;369.880219;-141.881;7;0.706966998 102;368;-141.555;7;0.307332646 102;367.956604;-141.548;7;0.265509539 102;367.876953;-141.534;7;0.677110111 102;367.850891;-141.516;7;0.291795284 102;366.86615;-140.866;7;0.134503687 102;366;-140.295;7;0.71087891 102;365.578369;-140.017;7;0.178444424 102;365.574402;-140;7;0.649342109 102;365.57019;-139.982;7;0.14616782 102;365.455841;-139.456;7;0.45003679 102;365.141754;-138.01;7;0.304448704 102;365.145691;-138;7;0.656808421 102;365.387238;-137.387;7;0.832415502 102;365.918518;-136.039;7;0.106830283 102;365.930756;-136.01;7;0.741338684 102;365.937531;-136;7;0.680345974 102;365.956207;-135.972;7;0.793160904 102;365.962402;-135.962;7;0.50523618 102;366;-135.906;7;0.479617275 102;366.765472;-134.765;7;0.70223751 102;367.278473;-134.001;7;0.608182705 102;367.27887;-134;7;0.367456448 102;367.512146;-133.512;7;0.334847555 102;367.858002;-132.789;7;0.893948371 102;367.86969;-132.769;7;0.425048316 102;368;-132.155;7;0.964058549 102;368.027161;-132.027;7;0.545714355 102;368.032928;-132;7;0.507595852 102;368.377594;-130.378;7;0.134723305 102;368.448944;-130.042;7;0.491514444 102;368.455322;-130.011;7;0.279372942 102;368.454498;-130;7;0.687349216 102;368.453003;-129.98;7;0.589456773 102;368.279419;-128.279;7;0.277980975 102;368.252045;-128.011;7;0.882299256 102;368.249603;-128;7;0.74086839 102;368.245117;-127.98;7;0.786961191 102;368;-127.026;7;0.157501712 102;367.73938;-126.011;7;0.532697816 102;367.735657;-126;7;0.353890827 102;367.72937;-125.981;7;0.982573044 102;367.458008;-125.458;7;0.823078018 102;366.707336;-124.012;7;0.773618421 102;366.699799;-124;7;0.4351382 102;366.685913;-123.979;7;0.147964878 102;366;-123.147;7;0.39157143 102;365.064392;-122.012;7;0.790880131 102;365.05072;-122;7;0.698019775 102;365.019714;-121.973;7;0.185564981 102;364;-121.107;7;0.631158517 102;363.837738;-120.969;7;0.081517877 102;362.437378;-120;7;0.309109369 102;362.3461;-119.937;7;0.99787644 102;362;-119.736;7;0.911445388 102;361.370483;-119.37;7;0.245799772 102;361.32251;-119.343;7;0.130067382 102;360;-118.665;7;0.437255454 102;358.703278;-118.001;7;0.934789126 102;358.701599;-118;7;0.246066014 102;358.667297;-117.97;7;0.84917961 102;358;-117.274;7;0.827746034 102;356.78302;-116.006;7;0.011390088 102;356.780334;-116;7;0.74312006 102;356;-114.296;7;0.62390625 102;355.884247;-114.043;7;0.725327851 102;355.865723;-114.013;7;0.599588054 102;355.861115;-114;7;0.355652853 102;355.84729;-113.961;7;0.876347387 102;355.810272;-113.81;7;0.199562376 102;355.369263;-112.013;7;0.374334274 102;355.369019;-112;7;0.818414213 102;355.368591;-111.976;7;0.078351918 102;355.347626;-111.348;7;0.079873122 102;355.303131;-110.013;7;0.725662286 102;355.303619;-110;7;0.526576944 102;355.304565;-109.976;7;0.96103751 102;355.339417;-109.339;7;0.818277888 102;355.412048;-108.013;7;0.767992496 102;355.411469;-108;7;0.207186625 102;355.4104;-107.976;7;0.429233366 102;355.367157;-107.367;7;0.98618206 102;355.271057;-106.013;7;0.746037739 102;355.263885;-106;7;0.580039217 102;354.483246;-104.623;7;0.322447743 102;354.363861;-104.364;7;0.545922822 102;354.196045;-104;7;0.386218124 102;354.18811;-103.983;7;0.636517933 102;354;-103.833;7;0.884852508 102;353.220795;-103.212;7;0.885666386 102;353.03717;-103.037;7;0.07586054 102;352;-102.048;7;0.704506414 102;351.949951;-102;7;0.987103681 102;351.831146;-101.887;7;0.932370926 102;351.427094;-101.688;7;0.816603415 102;350;-100.818;7;0.261798308 102;349.830811;-100.715;7;0.466565341 102;348.467194;-100.02;7;0.159116903 102;348.431396;-100.001;7;0.237430365 102;348.429962;-100;7;0.626261445 102;348.39563;-99.9838;7;0.494120833 102;348;-99.7654;7;0.635328257 102;347.476105;-99.4761;7;0.795773789 102;346;-98.6611;7;0.720041426 102;345.830444;-98.5675;7;0.844512381 102;344.134888;-98.0197;7;0.430520981 102;344.113098;-98.0126;7;0.043761579 102;344.003601;-98.0036;7;0.595128094 102;344;-98.0033;7;0.565182617 102;343.959961;-98;7;0.083202073 102;342;-97.8384;7;0.515093074 102;341.87854;-97.8284;7;0.005407759 102;341.82785;-97.8225;7;0.421411665 102;341.823761;-97.8237;7;0.618440936 102;341.791412;-97.8336;7;0.758349858 102;341.389221;-98;7;0.831947517 102;340.406525;-98.4065;7;0.014096789 102;340;-98.5747;7;0.502038777 102;339.824127;-98.6475;7;0.083485251 102;339.778198;-98.6793;7;0.159860485 102;339.193054;-99.1931;7;0.806492992 102;338.274048;-100;7;0.035081695 102;338.128113;-100.128;7;0.807950959 102;338;-100.241;7;0.570517743 102;337.809753;-100.408;7;0.392557077 102;337.154755;-101.155;7;0.987810973 102;336.413727;-102;7;0.695677267 102;336.220459;-102.22;7;0.32110981 102;336;-102.472;7;0.424212129 102;335.843018;-102.651;7;0.978789823 102;335.812561;-102.685;7;0.746607166 102;335.772858;-102.721;7;0.354638993 102;335.254333;-103.254;7;0.891657171 102;334.529053;-104;7;0.268412709 102;334.268188;-104.268;7;0.143541719 102;334;-104.544;7;0.307942079 102;333.80722;-104.742;7;0.960701178 102;333.74054;-104.808;7;0.850029536 102;333.28598;-105.286;7;0.396496815 102;332.606903;-106;7;0.738813263 102;332.538116;-106.072;7;0.274178388 102;332.292938;-106.293;7;0.800549211 102;332;-106.557;7;0.766152362 102;331.802368;-106.734;7;0.716822123 102;331.25705;-107.257;7;0.457517026 102;330.482025;-108;7;0.997878292 102;330.235901;-108.236;7;0.291430745 102;330;-108.462;7;0.364809139 102;329.867584;-108.589;7;0.853802567 102;329.790497;-108.668;7;0.701690806 102;329.752991;-108.71;7;0.96162716 102;329.243042;-109.243;7;0.517594952 102;328.518463;-110;7;0.243753427 102;328.264893;-110.265;7;0.323747035 102;328;-110.542;7;0.562050112 102;327.791534;-110.759;7;0.840909283 102;327.336121;-111.336;7;0.232911284 102;326.834351;-111.971;7;0.631590782 102;326.814789;-112;7;0.387796604 102;326.804199;-112.015;7;0.546190691 102;326.792297;-112.048;7;0.581148478 102;326.585449;-112.585;7;0.843675105 102;326.041443;-114;7;0.586910507 102;326.029938;-114.03;7;0.385590917 102;326;-114.108;7;0.175185985 102;325.788971;-114.657;7;0.502758043 102;325.621338;-115.621;7;0.575329554 102;325.562653;-115.959;7;0.862042454 102;325.555267;-116;7;0.765969023 102;325.552429;-116.016;7;0.845447705 102;325.555786;-116.06;7;0.095947799 102;325.547974;-117.548;7;0.93727608 102;325.545624;-118;7;0.585354726 102;325.545532;-118.016;7;0.488521192 102;325.993774;-119.971;7;0.392338971 102;325.999573;-120;7;0.603225832 102;326;-120;7;0.217535905 102;326;-120.002;7;0.136705836 102;326.000641;-120.005;7;0.282816137 102;326.025116;-120.06;7;0.575561613 102;327.267487;-122;7;0.151388808 102;327.277374;-122.015;7;0.581345415 102;327.294098;-122.047;7;0.202627938 102;328;-122.66;7;0.169824437 102;329.542236;-124;7;0.187794599 102;329.559631;-124.015;7;0.083259411 102;329.568695;-124.058;7;0.682185679 102;329.59848;-124.121;7;0.48298479 102;330;-124.728;7;0.585210906 102;330.840698;-126;7;0.730955416 102;330.850525;-126.015;7;0.301509582 102;330.617798;-126.618;7;0.06637791 102;330.253174;-127.563;7;0.526450977 102;330.069122;-128;7;0.018122199 102;330.062927;-128.015;7;0.381664569 102;330.04538;-128.045;7;0.742722043 102;330;-128.125;7;0.913246842 102;329.982788;-128.155;7;0.124463613 102;329.377563;-129.378;7;0.810049621 102;329.230225;-129.675;7;0.919402372 102;329.083984;-130;7;0.802860989 102;329.077423;-130.015;7;0.704795414 102;329.061249;-130.095;7;0.269354457 102;328.916962;-130.917;7;0.988720069 102;328.726959;-132;7;0.168539551 102;328.724426;-132.014;7;0.481714015 102;328.731079;-132.055;7;0.196793076 102;328.803345;-132.803;7;0.543663227 102;328.918945;-134;7;0.691151277 102;328.920319;-134.014;7;0.090971068 102;328.931061;-134.054;7;0.197553288 102;329.02774;-135.028;7;0.744332655 102;329.124329;-136;7;0.735170988 102;329.125702;-136.014;7;0.266332022 102;329.084717;-137.085;7;0.890928572 102;329.050629;-137.975;7;0.897409844 102;329.055176;-138;7;0.567013388 102;329.057617;-138.013;7;0.943249166 102;329.05835;-138.052;7;0.312806499 102;328.947632;-138.948;7;0.034688972 102;328.817627;-140;7;0.878158025 102;328.81601;-140.013;7;0.505034484 102;328.813873;-140.041;7;0.489154437 102;328.720551;-140.721;7;0.797349573 102;328.544708;-142;7;0.996929536 102;328.542969;-142.013;7;0.825210928 102;328.539948;-142.045;7;0.356040597 102;328.486877;-142.487;7;0.764500922 102;328.305359;-144;7;0.018491807 102;328.304382;-144.008;7;0.203927699 102;328.269165;-144.269;7;0.102293582 102;328.039154;-145.974;7;0.333980625 102;328.033997;-146;7;0.937707672 102;328.031647;-146.012;7;0.957914177 102;328.022186;-146.022;7;0.559044428 102;328;-146.046;7;0.112068004 102;327.064117;-147.064;7;0.648454547 102;326.203613;-148;7;0.741963951 102;326.106079;-148.106;7;0.318071399 102;326;-148.221;7;0.081736807 102;325.869934;-148.363;7;0.5965685 102;325.848633;-148.396;7;0.273596029 102;325.811768;-148.408;7;0.481513595 102;324.666016;-148.666;7;0.74466637 102;324;-148.816;7;0.411294691 102;323.843597;-148.851;7;0.524610907 102;323.810516;-148.855;7;0.533916118 102;322.938568;-148.939;7;0.631745077 102;322;-149.028;7;0.802365379 102;321.841736;-149.044;7;0.564114281 102;321.808258;-149.045;7;0.599382235 102;321.082245;-149.082;7;0.762408861 102;320;-149.138;7;0.322389317 102;319.8396;-149.146;7;0.684890879 102;319.805664;-149.147;7;0.765284306 102;319.172211;-149.172;7;0.559505047 102;318;-149.219;7;0.827252363 102;317.837341;-149.225;7;0.339607953 102;317.802979;-149.225;7;0.428022497 102;317.243774;-149.244;7;0.472131401 102;316;-149.285;7;0.723856686 102;315.835083;-149.291;7;0.481786787 102;315.800232;-149.291;7;0.730270318 102;315.306091;-149.306;7;0.639217248 102;314;-149.345;7;0.445093709 102;313.832794;-149.35;7;0.010773304 102;313.797455;-149.352;7;0.283657125 102;313.363556;-149.364;7;0.8336359 102;312;-149.4;7;0.597298541 102;311.830475;-149.405;7;0.264883501 102;311.794647;-149.406;7;0.830849653 102;311.431946;-149.432;7;0.904581904 102;310;-149.536;7;0.233245449 102;309.828461;-149.548;7;0.234437471 102;309.792206;-149.551;7;0.465029795 102;309.561157;-149.561;7;0.944932995 102;308;-149.632;7;0.767516012 102;307.826294;-149.64;7;0.807863817 102;307.789581;-149.641;7;0.144765707 102;307.657166;-149.657;7;0.244641052 102;306;-149.86;7;0.947437609 102;305.87561;-149.876;7;0.47158976 102;305.824646;-149.882;7;0.29248909 102;305.787567;-149.883;7;0.805460573 102;305.541443;-149.906;7;0.230895183 102;304.231934;-150;7;0.23146012 102;304.048126;-150.013;7;0.550686703 102;304.0177;-150.018;7;0.111693976 102;304;-150.02;7;0.745624932 102;303.822723;-150.047;7;0.347897639 102;302.883667;-150.013;7;0.020340332 102;302.665619;-150;7;0.291925518 102;302.049805;-149.963;7;0.867835406 102;302;-149.958;7;0.693376979 102;301.952698;-149.953;7;0.970522526 102;301.819855;-149.939;7;0.397983051 102;300;-149.07;7;0.98883111 102;299.853333;-149;7;0.256511313 102;299.80127;-148.973;7;0.059383672 102;298.903564;-148.014;7;0.368596011 102;298.891663;-148;7;0.568078501 102;298;-146.94;7;0.155558108 102;297.256866;-146.057;7;0.337924067 102;297.22821;-146.034;7;0.792400952 102;297.19342;-146;7;0.082512037 102;297.185913;-145.993;7;0.437783755 102;296;-144.527;7;0.137919984 102;295.793304;-144.272;7;0.398418038 102;294.512543;-144.037;7;0.769879895 102;294.475708;-144.016;7;0.93020399 102;294.423981;-144.01;7;0.635468594 102;294.229919;-144;7;0.860937091 102;294;-143.988;7;0.699442506 102;293.987335;-143.987;7;0.961148421 102;292;-143.884;7;0.997426587 102;291.877167;-143.877;7;0.878427487 102;291.787018;-143.872;7;0.142303806 102;291.613922;-144;7;0.33524452 102;290.684692;-144.685;7;0.47062785 102;290;-145.189;7;0.704470562 102;289.833527;-145.312;7;0.921982552 102;289.78894;-145.322;7;0.148496505 102;289.744415;-145.344;7;0.005873987 102;289.554962;-145.425;7;0.386275157 102;289.461456;-145.461;7;0.493979888 102;288.073181;-146;7;0.971785557 102;288.071411;-146.001;7;0.52612872 102;288.028107;-146.028;7;0.785742033 102;288;-146.046;7;0.48877966 102;287.789246;-146.179;7;0.384581587 102;286.612244;-146.612;7;0.161748688 102;286.023041;-146.829;7;0.756122738 102;286;-146.838;7;0.417644481 102;285.795258;-146.916;7;0.650067223 102;285.74472;-146.936;7;0.836780503 102;285.105774;-147.106;7;0.899503675 102;284;-147.4;7;0.179792799 102;283.788574;-147.456;7;0.02330662 102;283.743896;-147.467;7;0.22232231 102;283.501038;-147.501;7;0.036344112 102;282;-147.709;7;0.140904729 102;281.787048;-147.739;7;0.665471291 102;281.742645;-147.743;7;0.328198913 102;281.742035;-147.743;7;0.620790748 102;280;-147.795;7;0.209313796 102;279.800629;-147.801;7;0.641593076 102;279.78479;-147.801;7;0.929135487 102;279.739258;-147.801;7;0.404488134 102;278;-147.71;7;0.546721781 102;277.781952;-147.699;7;0.427757756 102;277.735809;-147.694;7;0.08417204 102;277.688538;-147.689;7;0.254819483 102;276;-147.488;7;0.539996358 102;275.778625;-147.462;7;0.73032288 102;275.731781;-147.454;7;0.933245389 102;275.40094;-147.401;7;0.036687789 102;274;-147.175;7;0.513599076 102;273.775055;-147.139;7;0.880728883 102;273.704041;-147.114;7;0.674016908 102;272.959869;-146.96;7;0.741871089 102;272;-146.761;7;0.146052705 102;271.747345;-146.708;7;0.011906281 102;270.324768;-146;7;0.162426304 102;270;-145.838;7;0.791047361 102;269.790619;-145.734;7;0.542318253 102;269.765259;-145.713;7;0.233389297 102;268.410278;-144.048;7;0.382138876 102;268.387482;-144.018;7;0.610279142 102;268.378448;-144;7;0.145523515 102;268;-143.246;7;0.511371356 102;267.782562;-142.813;7;0.577714706 102;267.753448;-142.762;7;0.266477968 102;267.729553;-142.709;7;0.47808791 102;267.387299;-142;7;0.441836283 102;266.815247;-140.815;7;0.343342766 102;266.430786;-140.019;7;0.24557431 102;266.423248;-140;7;0.825920127 102;266.409332;-139.965;7;0.532877403 102;266;-138.887;7;0.460607079 102;265.895172;-138.611;7;0.210484937 102;265.498871;-138;7;0.615640283 102;264.574036;-136.574;7;0.441515214 102;264.251343;-136.076;7;0.338044344 102;264.238708;-136.02;7;0.253238685 102;264.240723;-136;7;0.038373534 102;264.25296;-135.879;7;0.85010508 102;264.318451;-134.318;7;0.262783713 102;264.331818;-134;7;0.336408159 102;264.333954;-133.949;7;0.223261288 102;264.789337;-132.789;7;0.343560423 102;265.091431;-132.02;7;0.522852239 102;265.099762;-132;7;0.210578688 102;265.361176;-131.361;7;0.548255945 102;265.880157;-130.093;7;0.44882577 102;265.885345;-130.079;7;0.345576432 102;265.892731;-130.02;7;0.129103488 102;265.898834;-130;7;0.547945972 102;265.910095;-129.962;7;0.965133267 102;265.923004;-129.923;7;0.318667482 102;266;-129.69;7;0.327754627 102;266.420166;-128.42;7;0.480542513 102;266.552338;-128.021;7;0.532453138 102;266.561371;-128;7;0.427021018 102;266.58194;-127.953;7;0.693179802 102;266.971802;-126.972;7;0.224277899 102;267.35791;-126;7;0.018877021 102;267.540497;-125.54;7;0.347139594 102;267.720917;-125.086;7;0.922003176 102;268;-124.44;7;0.711149164 102;268.132904;-124.133;7;0.911915021 102;268.159821;-124.071;7;0.695013467 102;268.190277;-124.021;7;0.888916446 102;268.201202;-124;7;0.232959618 102;268.226624;-123.952;7;0.772531148 102;268.702576;-122.703;7;0.438901204 102;268.962372;-122.021;7;0.893944324 102;268.966675;-122;7;0.432517781 102;268.993011;-121.874;7;0.331999037 102;269.161499;-121.161;7;0.075087122 102;269.305908;-120.551;7;0.584954152 102;269.347717;-120.021;7;0.239110324 102;269.344574;-120;7;0.703399904 102;269.22641;-119.226;7;0.150914637 102;269.064606;-118.167;7;0.559200318 102;269.044464;-118.021;7;0.428475536 102;269.034393;-118;7;0.722183412 102;269.026093;-117.983;7;0.305672298 102;268;-116.039;7;0.776279344 102;267.979156;-116;7;0.640500482 102;267.955872;-115.956;7;0.554123557 102;267.760254;-115.585;7;0.146746517 102;267.722717;-115.53;7;0.774393379 102;266.522156;-114.021;7;0.551993358 102;266.506683;-114;7;0.744548925 102;266.46286;-113.942;7;0.039951571 102;266;-113.439;7;0.249378496 102;264.673981;-112;7;0.778764907 102;264.649261;-111.962;7;0.602048181 102;264.56369;-111.849;7;0.30946067 102;264;-111.081;7;0.973497027 102;263.725067;-110.707;7;0.06198118 102;263.15921;-110.02;7;0.447179906 102;263.142944;-110;7;0.197627273 102;262;-108.572;7;0.668882135 102;261.856842;-108.393;7;0.375272857 102;261.661591;-108.158;7;0.458596713 102;261.612152;-108.123;7;0.326632735 102;261.545227;-108.1;7;0.100658709 102;261.414978;-108;7;0.578640506 102;260;-106.909;7;0.259904276 102;259.31665;-106.382;7;0.317492094 102;258.640808;-106.071;7;0.597621772 102;258.486786;-106;7;0.667246626 102;258;-105.776;7;0.677338546 102;257.58493;-105.585;7;0.672656318 102;256.797974;-105.223;7;0.647899418 102;256;-104.674;7;0.944938073 102;255.772812;-104.518;7;0.469596061 102;254.848465;-104.15;7;0.660318575 102;254.434143;-104;7;0.248524736 102;253.999985;-103.843;7;0.450475794 102;253.846436;-103.788;7;0.633579323 102;253.763809;-103.764;7;0.339772812 102;252.961151;-103.531;7;0.238979104 102;252;-103.314;7;0.756333935 102;251.91153;-103.294;7;0.357213205 102;251.210709;-103.093;7;0.537679781 102;251.073502;-103.074;7;0.888941664 102;250;-102.92;7;0.722616165 102;249.72139;-102.88;7;0.618351726 102;249.492355;-102.867;7;0.842678531 102;248.885681;-102.886;7;0.536459932 102;248.000015;-102.914;7;0.201680804 102;247.728226;-102.922;7;0.002349482 102;247.691208;-102.924;7;0.940489911 102;247.687668;-102.924;7;0.683638227 102;247.680573;-102.924;7;0.0724261 102;247.046295;-103.046;7;0.139239888 102;246;-103.248;7;0.891433456 102;245.725815;-103.3;7;0.09132185 102;245.669495;-103.32;7;0.928842515 102;245.400879;-103.401;7;0.680980021 102;243.999985;-103.824;7;0.444049033 102;243.864929;-103.865;7;0.54277836 102;243.723938;-103.908;7;0.965164507 102;243.665375;-103.936;7;0.428750287 102;243.498672;-104;7;0.229129652 102;242.41716;-104.417;7;0.950808189 102;242;-104.578;7;0.084174233 102;241.720154;-104.686;7;0.887660564 102;241.634293;-104.736;7;0.68562207 102;241.048035;-105.048;7;0.955126463 102;240;-105.605;7;0.953224747 102;239.742096;-105.742;7;0.286901008 102;239.25679;-106;7;0.259943765 102;239.216965;-106.021;7;0.312409937 102;238.494797;-106.495;7;0.290508568 102;238.000015;-106.819;7;0.284081765 102;237.744644;-106.987;7;0.245702573 102;237.710892;-107.009;7;0.152943002 102;237.311386;-107.311;7;0.282164974 102;236.400848;-108;7;0.891664999 102;236.172607;-108.173;7;0.157797786 102;236;-108.303;7;0.901047969 102;235.767838;-108.479;7;0.934803192 102;235.705368;-108.526;7;0.889061855 102;235.069901;-109.07;7;0.079925708 102;234;-109.985;7;0.001692964 102;233.991989;-109.992;7;0.694642313 102;233.982635;-110;7;0.264221441 102;233.76123;-110.189;7;0.440560623 102;233.696991;-110.245;7;0.361658855 102;233.628342;-110.308;7;0.104276753 102;232.952957;-110.953;7;0.461142648 102;232;-111.863;7;0.736743961 102;231.929764;-111.93;7;0.647992535 102;231.856201;-112;7;0.289191815 102;231.836502;-112.019;7;0.488762538 102;230.926117;-112.926;7;0.999415622 102;230.639725;-113.212;7;0.175763747 102;230;-113.866;7;0.336530476 102;229.933685;-113.934;7;0.854653216 102;229.868866;-114;7;0.075187143 102;229.63118;-114.243;7;0.945402767 102;228.927338;-114.927;7;0.832100356 102;228.871231;-114.982;7;0.002978971 102;227.999985;-115.849;7;0.789956292 102;227.924042;-115.924;7;0.086404136 102;227.900208;-115.948;7;0.631054856 102;227.852371;-116;7;0.394124528 102;227.830978;-116.023;7;0.608703341 102;226.896973;-116.897;7;0.018197961 102;226.672867;-117.107;7;0.255641297 102;226;-117.705;7;0.519004847 102;225.843994;-117.844;7;0.836056357 102;225.66864;-118;7;0.063404145 102;225.638916;-118.026;7;0.752401062 102;225.407211;-118.193;7;0.17353502 102;224.707153;-118.707;7;0.045097753 102;224;-119.226;7;0.796893359 102;223.553619;-119.554;7;0.685103915 102;223.508286;-119.587;7;0.32526064 102;222.958588;-120;7;0.816513929 102;222.952301;-120.005;7;0.333857109 102;222.435272;-120.435;7;0.338720411 102;222.000015;-120.798;7;0.533077801 102;221.700531;-121.047;7;0.266937824 102;221.6082;-121.132;7;0.444704724 102;221.361298;-121.361;7;0.256246067 102;220.673264;-122;7;0.428768865 102;220.656921;-122.015;7;0.409741211 102;220.49115;-122.307;7;0.800748976 102;220.425095;-122.425;7;0.286575327 102;220;-123.184;7;0.934590803 102;219.707108;-123.707;7;0.286306581 102;219.626785;-123.851;7;0.142149755 102;219.571686;-124;7;0.852260079 102;219.148346;-125.148;7;0.279630606 102;218.933731;-125.731;7;0.546873359 102;218.85347;-126;7;0.849805174 102;218.847015;-126.022;7;0.679918744 102;218.842224;-126.055;7;0.960343284 102;218.65947;-126.659;7;0.628874804 102;218.25412;-128;7;0.118840085 102;218.195114;-128.195;7;0.793401217 102;217.999985;-128.84;7;0.303372686 102;217.730759;-129.731;7;0.316568568 102;217.70343;-129.821;7;0.900412009 102;217.673447;-129.892;7;0.156397848 102;217.659576;-129.921;7;0.45220454 102;217.635269;-130;7;0.627901988 102;217.250061;-131.25;7;0.935491928 102;217.018967;-132;7;0.328557337 102;217.014801;-132.014;7;0.628522046 102;216.994843;-132.093;7;0.609490968 102;216.915436;-132.915;7;0.612928359 102;216.81076;-134;7;0.097339393 102;216.808472;-134.024;7;0.189352551 102;216.806625;-134.092;7;0.90341583 102;216.888901;-134.889;7;0.258356947 102;217.003647;-136;7;0.835744466 102;217.006104;-136.024;7;0.625003213 102;217.661835;-137.488;7;0.644163181 102;217.692322;-137.555;7;0.738334242 102;217.999985;-137.89;7;0.209865993 102;218.101257;-138;7;0.793891852 102;219.24675;-139.247;7;0.392202386 102;219.633545;-139.668;7;0.986849647 102;219.690872;-139.723;7;0.386529416 102;219.802628;-139.803;7;0.623730863 102;220;-139.944;7;0.961727622 102;220.078568;-140;7;0.013938698 102;221.632278;-141.111;7;0.269159446 102;221.696548;-141.155;7;0.149382278 102;222.000015;-141.401;7;0.629384308 102;222.726837;-141.992;7;0.195068 102;222.738586;-142;7;0.25324638 102;222.77037;-142.022;7;0.189617595 102;222.779343;-142.086;7;0.952650019 102;222.841385;-142.841;7;0.523893426 102;222.936493;-144;7;0.097185724 102;222.938278;-144.022;7;0.563911862 102;222.537201;-144.537;7;0.739518927 102;222.000015;-145.227;7;0.698576032 102;221.760086;-145.536;7;0.844861513 102;221.709778;-145.609;7;0.393668436 102;221.649307;-145.649;7;0.70878087 102;221.127396;-146;7;0.971215021 102;220.453094;-146.453;7;0.364345604 102;220;-146.758;7;0.088844507 102;219.780197;-146.905;7;0.933636223 102;219.691742;-146.957;7;0.925138663 102;219.563782;-147.025;7;0.694739079 102;219.213196;-147.213;7;0.463937291 102;217.999985;-147.865;7;0.511314935 102;217.912369;-147.912;7;0.720478876 102;217.836166;-147.953;7;0.588687754 102;217.739212;-148;7;0.552613186 102;217.41568;-148.156;7;0.679384702 102;216.576706;-148.494;7;0.028453267 102;216.514511;-148.515;7;0.741962159 102;216.062012;-148.667;7;0.188027688 102;216;-148.675;7;0.923565323 102;214.83345;-148.833;7;0.216996206 102;214.544601;-148.873;7;0.75532016 102;214.3116;-148.903;7;0.165629431 102;214;-148.922;7;0.978188406 102;213.963211;-148.924;7;0.331104165 102;212.987198;-148.987;7;0.078541609 102;212.57196;-149.014;7;0.290491477 102;212.249725;-149.043;7;0.789442696 102;212.000015;-149.076;7;0.793119699 102;211.183807;-149.184;7;0.938867539 102;210.839798;-149.229;7;0.712613277 102;210.332794;-149.32;7;0.28186869 102;210;-149.374;7;0.470967212 102;209.460938;-149.461;7;0.090578607 102;208.964172;-149.541;7;0.242028501 102;208;-149.788;7;0.406335762 102;207.830902;-149.831;7;0.145410903 102;207.63913;-149.88;7;0.73208868 102;207.191895;-149.992;7;0.582025458 102;207.161163;-150;7;0.332507947 102;206.22821;-150.228;7;0.958335495 102;206.000015;-150.284;7;0.758079266 102;205.80809;-150.331;7;0.54261178 102;205.223648;-150.502;7;0.01968974 102;204.720093;-150.72;7;0.272282723 102;204;-151.033;7;0.428448606 102;203.673416;-151.174;7;0.097090283 102;203.314484;-151.314;7;0.476047011 102;203.036407;-151.423;7;0.006542484 102;202.069489;-152;7;0.471989808 102;202.064148;-152.003;7;0.094770264 102;202.023483;-152.023;7;0.714492987 102;201.999985;-152.035;7;0.67364329 102;201.190948;-152.439;7;0.003021117 102;200.657684;-152.658;7;0.23056075 102;200.526215;-152.712;7;0.895711169 102;200;-152.918;7;0.477895583 102;199.222137;-153.222;7;0.937273432 102;198.496658;-153.506;7;0.884322169 102;198.314453;-153.563;7;0.935592499 102;198;-153.667;7;0.204421763 102;197.996689;-153.668;7;0.482331556 102;197.737793;-153.738;7;0.68830868 102;196.758682;-154;7;0.93292313 102;196.160263;-154.16;7;0.776774308 102;196;-154.203;7;0.785134037 102;195.956268;-154.215;7;0.215506179 102;194.546936;-154.547;7;0.460261423 102;194;-154.676;7;0.177007329 102;193.84433;-154.712;7;0.263227069 102;193.768692;-154.732;7;0.919643144 102;193.690552;-154.753;7;0.547480327 102;192.846069;-154.846;7;0.210269599 102;192;-154.94;7;0.702250378 102;191.716034;-154.971;7;0.851948825 102;191.656052;-154.977;7;0.897100317 102;190.969208;-154.969;7;0.593832593 102;190;-154.958;7;0.218246996 102;189.714142;-154.954;7;0.400825734 102;189.653717;-154.951;7;0.783048653 102;188.67868;-154.679;7;0.860782737 102;188;-154.489;7;0.042911825 102;187.710007;-154.408;7;0.708577679 102;186.894501;-154.233;7;0.237857611 102;186.07576;-154.076;7;0.472482708 102;186;-154.061;7;0.189806219 102;185.795334;-154.022;7;0.192647051 102;185.706955;-154;7;0.772765257 102;185.706497;-154;7;0.76544488 102;184.032303;-153.935;7;0.436642603 102;184;-153.923;7;0.802891871 102;183.877686;-153.878;7;0.033523582 102;183.704041;-153.813;7;0.848037634 102;182.702972;-152.703;7;0.831149522 102;182.337082;-152.297;7;0.378760776 102;182.288223;-152.288;7;0.85307292 102;182.072296;-152.248;7;0.408255402 102;182.041275;-152.049;7;0.360116949 102;182.043869;-152.044;7;0.967274535 102;182.067505;-152;7;0.244263245 102;182.090012;-151.958;7;0.228405516 102;182;-150.379;7;0.342401301 102;181.979736;-150.023;7;0.0636152 102;181.978775;-150;7;0.577903061 102;181.977859;-149.978;7;0.380851475 102;181.977005;-149.957;7;0.669715453 102;181.869537;-149.186;7;0.416512147 102;181.701035;-148.109;7;0.139475876 102;181.698288;-148.024;7;0.066305932 102;181.698807;-148;7;0.653508678 102;181.70015;-147.939;7;0.895968948 102;181.679367;-147.766;7;0.331723151 102;181.664139;-147.664;7;0.954855767 102;181.419769;-146.024;7;0.101992165 102;181.413757;-146;7;0.589475741 102;181.299316;-145.538;7;0.33050422 102;181.272339;-145.272;7;0.901810198 102;181.14563;-144.025;7;0.379657699 102;181.142776;-144;7;0.95227503 102;181.030853;-143.031;7;0.217749137 102;180.922928;-142.096;7;0.16124022 102;180.904419;-142.025;7;0.184674733 102;180.895966;-142;7;0.600247831 102;180.335419;-140.335;7;0.827597286 102;180.255432;-140.098;7;0.060490721 102;180.2323;-140.025;7;0.329601161 102;180.220123;-140;7;0.711691018 102;180.197647;-139.953;7;0.282629871 102;180;-139.646;7;0.130893867 102;178.941116;-138;7;0.010809874 102;178;-136.537;7;0.397839601 102;177.718994;-136.101;7;0.317113215 102;177.673615;-136.026;7;0.246950895 102;177.647476;-136.004;7;0.82033048 102;177.64389;-136;7;0.245125383 102;177.615692;-135.972;7;0.424264997 102;176.928146;-135.157;7;0.861976711 102;176;-134.056;7;0.371796821 102;175.975266;-134.026;7;0.8483786 102;175.958191;-134;7;0.107139794 102;175.926651;-133.951;7;0.672115157 102;175.857468;-133.857;7;0.132101738 102;174.506287;-132.027;7;0.09652795 102;174.491959;-132;7;0.664076634 102;174;-131.085;7;0.751714108 102;173.662369;-130.458;7;0.487697327 102;173.639648;-130.416;7;0.686364822 102;173.582321;-130.305;7;0.569473749 102;173.440475;-130;7;0.730215667 102;172.955338;-128.955;7;0.234950063 102;172.524139;-128.027;7;0.571595432 102;172.508636;-128;7;0.990583667 102;172;-127.121;7;0.757207322 102;171.657211;-126.528;7;0.292848552 102;171.603882;-126.452;7;0.720165872 102;171.266769;-126;7;0.668159119 102;170;-124.303;7;0.056639024 102;169.774017;-124;7;0.057186045 102;169.680695;-123.875;7;0.413072958 102;169.617188;-123.799;7;0.394734895 102;169.562653;-123.728;7;0.698476311 102;169.027344;-123.027;7;0.298780243 102;168.267853;-122.033;7;0.155302975 102;168.25174;-122;7;0.278487651 102;168;-121.49;7;0.462407442 102;167.641373;-120.763;7;0.405007901 102;167.600037;-120.682;7;0.603087056 102;167.348602;-120;7;0.160510171 102;166.967834;-118.968;7;0.034826871 102;166.648117;-118.101;7;0.987163577 102;166.631744;-118.026;7;0.722699672 102;166.630325;-118;7;0.089914405 102;166.627701;-117.951;7;0.025073643 102;166.38176;-116.382;7;0.765468112 102;166.326019;-116.026;7;0.395537252 102;166.320511;-116;7;0.103632326 102;166;-114.486;7;0.191605369 102;165.917999;-114.099;7;0.714893348 102;165.905334;-114.019;7;0.686395428 102;165.899979;-114;7;0.244714081 102;165.859924;-113.86;7;0.322803827 102;165.353912;-112.09;7;0.274961583 102;165.330719;-112.025;7;0.237313348 102;165.314362;-112;7;0.045720282 102;165.28244;-111.951;7;0.44247144 102;164.284012;-110.284;7;0.459719542 102;164.113876;-110;7;0.040811455 102;164;-109.81;7;0.11359568 102;163.667679;-109.255;7;0.24682784 102;162.422577;-108;7;0.461965278 102;162;-107.574;7;0.820838313 102;161.742905;-107.315;7;0.937226898 102;161.674301;-107.249;7;0.085571876 102;161.605759;-107.197;7;0.560718977 102;160.111465;-106;7;0.243044269 102;160;-105.911;7;0.252173807 102;159.680023;-105.654;7;0.625878625 102;159.612671;-105.61;7;0.090093228 102;159.600601;-105.601;7;0.270373151 102;158;-104.402;7;0.459617073 102;157.546402;-104.062;7;0.711397313 102;157.485184;-104.023;7;0.693875855 102;157.454208;-104;7;0.941200088 102;156;-102.908;7;0.678235384 102;155.696625;-102.68;7;0.910859345 102;155.55661;-102.593;7;0.794824833 102;154.493332;-102;7;0.099391375 102;154.29982;-101.892;7;0.591278996 102;154;-101.722;7;0.3075278 102;153.69693;-101.55;7;0.052822812 102;153.396576;-101.397;7;0.9743859 102;152.733948;-101.057;7;0.135098426 102;152;-100.779;7;0.807216773 102;151.700851;-100.665;7;0.734734884 102;150.098709;-100.099;7;0.029544085 102;150;-100.064;7;0.875490296 102;149.819595;-100;7;0.240857784 102;149.766403;-99.9812;7;0.849139135 102;149.703934;-99.9687;7;0.78732005 102;149.641479;-99.9603;7;0.392655919 102;149.25325;-99.929;7;0.773072545 102;148;-99.8505;7;0.017770759 102;147.840485;-99.8405;7;0.826428365 102;146.475525;-99.7549;7;0.683652671 102;146;-99.6777;7;0.841551806 102;145.615234;-99.6152;7;0.71986238 102;145.320648;-99.5674;7;0.252786621 102;144;-99.7521;7;0.965507965 102;143.929779;-99.7619;7;0.163856611 102;143.781876;-99.7819;7;0.963540225 102;143.704926;-99.7923;7;0.923331304 102;143.642517;-99.8122;7;0.683767389 102;142.952209;-100;7;0.464135872 102;142.203674;-100.204;7;0.966595186 102;142;-100.259;7;0.771941577 102;141.702393;-100.34;7;0.860847627 102;141.546799;-100.409;7;0.200510418 102;140.741989;-100.742;7;0.151718567 102;140;-101.049;7;0.828579999 102;139.698547;-101.174;7;0.383294536 102;139.367599;-101.368;7;0.489255977 102;138.288788;-102;7;0.393919673 102;138.250153;-102.023;7;0.340395875 102;138.098633;-102.099;7;0.803807107 102;138;-102.148;7;0.698210075 102;137.693497;-102.302;7;0.062688622 102;136.854156;-102.854;7;0.003421463 102;136;-103.416;7;0.128384912 102;135.647903;-103.648;7;0.810851133 102;135.112808;-104;7;0.965682252 102;135.069275;-104.029;7;0.489739952 102;135.002808;-104.064;7;0.324060202 102;134.936264;-104.101;7;0.040542449 102;134.423828;-104.424;7;0.490321216 102;134;-104.691;7;0.380730546 102;133.682144;-104.892;7;0.780136471 102;133.208206;-105.208;7;0.183932911 102;132.023071;-106;7;0.779157041 102;132.009232;-106.009;7;0.583322057 102;132;-106.015;7;0.42223418 102;131.925888;-106.065;7;0.786419828 102;131.676682;-106.227;7;0.520553754 102;130.799805;-106.8;7;0.54362161 102;130;-107.323;7;0.791068768 102;129.590271;-107.59;7;0.04664734 102;128.963303;-108;7;0.218751212 102;128.925781;-108.025;7;0.581531152 102;128.875549;-108.065;7;0.093963558 102;128.75798;-108.175;7;0.676765 102;128.470062;-108.47;7;0.165326865 102;128;-108.952;7;0.385373341 102;127.664795;-109.296;7;0.983008516 102;127.492104;-109.492;7;0.173334025 102;127.075813;-109.965;7;0.387155363 102;127.054825;-110;7;0.438686801 102;126.658875;-110.659;7;0.486426824 102;126;-111.755;7;0.797765748 102;125.931511;-111.869;7;0.476322419 102;125.909676;-111.91;7;0.29039921 102;125.860931;-112;7;0.466471716 102;125.847115;-112.026;7;0.443820295 102;125.825188;-112.099;7;0.663454729 102;125.769325;-112.46;7;0.567516701 102;125.616272;-113.616;7;0.899509382 102;125.565475;-114;7;0.006765901 102;125.382477;-115.382;7;0.779316239 102;125.356506;-115.579;7;0.156272339 102;125.339951;-116;7;0.379630034 102;125.338913;-116.027;7;0.608351106 102;125.345505;-117.346;7;0.249959947 102;125.346764;-117.597;7;0.890614943 102;125.416634;-118;7;0.330467301 102;125.421295;-118.027;7;0.826936179 102;125.635757;-118.706;7;0.466085404 102;125.634567;-119.174;7;0.971487797 102;125.672569;-119.357;7;0.425677679 102;125.69706;-119.435;7;0.063668124 102;125.922157;-119.922;7;0.79584512 102;125.958092;-120;7;0.598623977 102;126;-120.091;7;0.208016431 102;126.881409;-122;7;0.620431735 102;126.894112;-122.028;7;0.856354611 102;127.463684;-123.464;7;0.003308554 102;127.656075;-123.949;7;0.797471512 102;127.670151;-124;7;0.245434015 102;127.670517;-124.001;7;0.70538268 102;127.688133;-124.107;7;0.734308636 102;128;-125.747;7;0.277479194 102;128.048141;-126;7;0.038017835 102;128.053452;-126.028;7;0.446655855 102;128.054169;-126.054;7;0.893931423 102;128.055618;-126.107;7;0.964098212 102;128.220886;-128;7;0.019178789 102;128.223343;-128.028;7;0.000173866 102;128.21463;-128.215;7;0.758255094 102;128.133652;-129.948;7;0.781234812 102;128.130524;-130;7;0.828622809 102;128.12883;-130.028;7;0.459481738 102;128.119217;-130.108;7;0.265995625 102;128.117691;-130.118;7;0.329274748 102;128;-130.865;7;0.300344011 102;127.845703;-131.846;7;0.997299513 102;127.821419;-132;7;0.912498981 102;127.816994;-132.028;7;0.482223251 102;127.611;-133.611;7;0.789143495 102;127.567123;-133.948;7;0.598058142 102;127.563919;-134;7;0.49110281 102;127.562187;-134.028;7;0.080739302 102;127.564766;-134.108;7;0.190938009 102;127.528923;-135.529;7;0.473025951 102;127.517044;-136;7;0.293210681 102;127.516335;-136.028;7;0.132749277 102;127.627335;-137.125;7;0.703248288 102;127.644119;-137.204;7;0.770308013 102;127.670143;-137.283;7;0.520072642 102;127.761055;-137.761;7;0.829137914 102;127.806534;-138;7;0.172136176 102;128;-139.016;7;0.537035533 102;128.187241;-140;7;0.233184895 102;128.19249;-140.028;7;0.154062602 102;128.279999;-140.28;7;0.416491342 102;128.858887;-141.95;7;0.264382396 102;128.880966;-142;7;0.339684595 102;128.891754;-142.025;7;0.563415383 102;129.12648;-142.711;7;0.564509689 102;129.338593;-143.339;7;0.648231354 102;129.537888;-143.929;7;0.364948525 102;129.561523;-144;7;0.713114622 102;129.57045;-144.027;7;0.895346901 102;129.609604;-144.162;7;0.465331119 102;129.926956;-145.355;7;0.433222144 102;130;-145.633;7;0.38230954 102;130.096375;-146;7;0.831933942 102;130.103363;-146.027;7;0.547010683 102;130.110703;-146.102;7;0.606512197 102;130.11261;-146.113;7;0.13296386 102;130.45874;-148;7;0.627388524 102;130.463547;-148.026;7;0.624229232 102;130.462067;-148.101;7;0.381182785 102;130.49379;-148.494;7;0.21421491 102;130.615265;-150;7;0.952536039 102;130.617325;-150.026;7;0.740803707 102;130.600098;-150.099;7;0.102574229 102;130.52475;-150.525;7;0.431942854 102;130.26384;-152;7;0.621074545 102;130.259384;-152.025;7;0.231493302 102;130.228104;-152.08;7;0.373924725 102;130.164581;-152.165;7;0.089384657 102;130;-152.383;7;0.318470219 102;129.663574;-152.831;7;0.194046838 102;129.309982;-153.31;7;0.833061417 102;128.80098;-154;7;0.163725365 102;128.460953;-154.461;7;0.488521348 102;128.248489;-154.749;7;0.577706562 102;128;-154.988;7;0.978420775 102;127.484329;-155.484;7;0.380057509 102;127.054771;-155.898;7;0.757325223 102;126.851555;-156;7;0.751782436 102;126.285164;-156.285;7;0.284537811 102;126.184715;-156.336;7;0.49328651 102;126;-156.467;7;0.3090016 102;125.676659;-156.696;7;0.231500391 102;125.608452;-156.715;7;0.189351054 102;124.92189;-156.922;7;0.034459766 102;124.000008;-157.199;7;0.461787872 102;123.678268;-157.296;7;0.19225547 102;123.610352;-157.305;7;0.768295968 102;123.340233;-157.34;7;0.269747882 102;121.999992;-157.517;7;0.35960808 102;121.678452;-157.56;7;0.651761119 102;121.610558;-157.564;7;0.73488627 102;121.566109;-157.566;7;0.72368882 102;120;-157.647;7;0.584593438 102;119.678001;-157.664;7;0.282406041 102;119.664261;-157.664;7;0.767717885 102;119.609993;-157.666;7;0.421830039 102;118;-157.701;7;0.118876712 102;117.707352;-157.707;7;0.734269037 102;117.677315;-157.708;7;0.793537191 102;117.609161;-157.709;7;0.613713939 102;116;-157.705;7;0.327719468 102;115.704414;-157.704;7;0.620071276 102;115.676453;-157.704;7;0.055312881 102;115.608124;-157.706;7;0.803083897 102;113.999992;-157.739;7;0.804718554 102;113.744156;-157.744;7;0.676442446 102;113.675812;-157.746;7;0.390352444 102;113.607346;-157.747;7;0.760556088 102;112;-157.8;7;0.63304561 102;111.806587;-157.807;7;0.242598981 102;111.675308;-157.811;7;0.949465216 102;111.606735;-157.812;7;0.709455277 102;110;-157.839;7;0.281173555 102;109.841309;-157.841;7;0.225845875 102;109.674706;-157.844;7;0.549951459 102;109.605995;-157.844;7;0.140900579 102;108;-157.85;7;0.463240758 102;107.851006;-157.851;7;0.451557484 102;107.674011;-157.852;7;0.035015515 102;107.605164;-157.852;7;0.818449331 102;106.000008;-157.859;7;0.48849282 102;105.8601;-157.86;7;0.611238209 102;105.673363;-157.861;7;0.013638525 102;105.604378;-157.862;7;0.903393382 102;104;-157.911;7;0.960636772 102;103.913795;-157.914;7;0.415176937 102;103.672943;-157.921;7;0.901430562 102;103.603905;-157.926;7;0.816581265 102;102.224106;-157.997;7;0.609148838 102;102.169373;-158;7;0.719607335 102;102.008354;-158.008;7;0.868206181 102;102;-158.009;7;0.292606115 102;101.701546;-158.024;7;0.239893647 102;101.672752;-158.027;7;0.612496133 102;101.647675;-158.031;7;0.277051992 102;100.567055;-158.213;7;0.525666312 102;100.264252;-158.264;7;0.534279632 102;100;-158.309;7;0.317910303 102;98.552109;-158.552;7;0.15395147 102;98;-158.645;7;0.531619878 102;97.708778;-158.694;7;0.477782791 102;97.640091;-158.708;7;0.149331882 102;97.605728;-158.714;7;0.883463918 102;96.829704;-158.83;7;0.4106928 102;96;-158.954;7;0.945512176 102;95.675156;-159.002;7;0.738767485 102;95.606598;-159.012;7;0.064683997 102;95.082436;-159.082;7;0.301616268 102;94;-159.229;7;0.596726572 102;93.675789;-159.272;7;0.991836553 102;93.607361;-159.281;7;0.361911803 102;93.312149;-159.312;7;0.049002964 102;92;-159.45;7;0.416793832 102;91.676193;-159.484;7;0.041013432 102;91.607841;-159.489;7;0.420638847 102;91.499954;-159.5;7;0.524300959 102;90;-159.646;7;0.997404463 102;89.677277;-159.677;7;0.898555085 102;89.676552;-159.677;7;0.418049818 102;89.608246;-159.677;7;0.770897734 102;88;-159.857;7;0.405626039 102;87.871193;-159.871;7;0.309240595 102;87.677147;-159.893;7;0.094251552 102;86.955467;-159.448;7;0.017793339 102;86;-159.583;7;0.719353574 102;85.658379;-159.631;7;0.234943755 102;84.026558;-158.025;7;0.506434753 102;84.023026;-158;7;0.212459964 102;84;-157.84;7;0.020634433 102;83.957939;-157.547;7;0.770969427 102;83.928192;-156.025;7;0.677833464 102;83.931526;-156;7;0.063215134 102;83.939552;-155.94;7;0.513351989 102;83.986397;-155.587;7;0.491164349 102;84;-155.526;7;0.229927646 102;84.279404;-154.279;7;0.830861586 102;84.336281;-154.026;7;0.794955138 102;84.34359;-154;7;0.792844476 102;84.710335;-152.71;7;0.605994456 102;84.883728;-152.101;7;0.444687691 102;84.899727;-152.026;7;0.791746837 102;84.9048;-152;7;0.33245876 102;84.926331;-151.889;7;0.775692442 102;85.092392;-151.092;7;0.24232123 102;85.314606;-150.027;7;0.117818608 102;85.31794;-150;7;0.190359745 102;85.39389;-149.394;7;0.42161654 102;85.547462;-148.168;7;0.484445931 102;85.563354;-148.027;7;0.837806998 102;85.562439;-148;7;0.009169477 102;85.560753;-147.95;7;0.108361815 102;85.553513;-147.737;7;0.088167629 102;85.547104;-147.547;7;0.385394277 102;85.507957;-146.386;7;0.798468374 102;85.495956;-146.027;7;0.468164403 102;85.491669;-146;7;0.036162613 102;85.397308;-145.397;7;0.89838336 102;85.229118;-144.323;7;0.777302962 102;85.183853;-144.028;7;0.706311072 102;85.179016;-144;7;0.379915832 102;85.004875;-143.005;7;0.685608515 102;84.847786;-142.107;7;0.569131016 102;84.834152;-142.028;7;0.165242508 102;84.829819;-142;7;0.648898838 102;84.821815;-141.949;7;0.460389149 102;84.659714;-140.66;7;0.445507887 102;84.580269;-140.028;7;0.317610421 102;84.576744;-140;7;0.383101264 102;84.570244;-139.948;7;0.932658645 102;84.427101;-138.427;7;0.733953741 102;84.389565;-138.028;7;0.497066937 102;84.388069;-138;7;0.243189008 102;84.385307;-137.948;7;0.157909126 102;84.301315;-136.301;7;0.597180814 102;84.287392;-136.028;7;0.205488842 102;84.290398;-136;7;0.900478775 102;84.295959;-135.948;7;0.347874361 102;84.383408;-134.383;7;0.844528538 102;84.403259;-134.028;7;0.963648458 102;84.408379;-134;7;0.827591533 102;84.652466;-132.652;7;0.36114918 102;84.750984;-132.109;7;0.926759212 102;84.769257;-132.028;7;0.823814573 102;84.778069;-132;7;0.708169919 102;85.06881;-131.069;7;0.694381813 102;85.402512;-130;7;0.097543166 102;85.54467;-129.545;7;0.355978024 102;85.613892;-129.323;7;0.023511569 102;85.643074;-129.243;7;0.358932086 102;86;-128.251;7;0.662357326 102;86.051346;-128.108;7;0.137301701 102;86.066872;-128.067;7;0.326911125 102;86.081635;-128.028;7;0.582621262 102;86.090729;-128;7;0.777651129 102;86.558655;-126.559;7;0.572352315 102;86.705276;-126.107;7;0.196871034 102;86.732933;-126.014;7;0.824015407 102;86.737358;-126;7;0.910146294 102;87.035439;-125.035;7;0.57872856 102;87.326775;-124.093;7;0.854082457 102;87.342628;-124.028;7;0.551477239 102;87.349655;-124;7;0.373994598 102;87.481758;-123.482;7;0.497649716 102;87.83271;-122.105;7;0.327219414 102;87.845482;-122.027;7;0.973058454 102;87.84761;-122;7;0.565207924 102;87.851547;-121.95;7;0.193178782 102;87.864143;-121.864;7;0.940940549 102;88;-120.942;7;0.961961489 102;88.120911;-120.121;7;0.178381722 102;88.13475;-120.027;7;0.094792417 102;88.136581;-120;7;0.088673748 102;88.139954;-119.95;7;0.962731275 102;88.37114;-118.371;7;0.495591972 102;88.421593;-118.027;7;0.999543285 102;88.423447;-118;7;0.86359639 102;88.426872;-117.951;7;0.624275305 102;88.616554;-116.617;7;0.430358688 102;88.700493;-116.026;7;0.830304562 102;88.699631;-116;7;0.820329729 102;88.698051;-115.952;7;0.335073444 102;88.733162;-114.733;7;0.421975244 102;88.75354;-114.026;7;0.10794117 102;88.742096;-114;7;0.627143852 102;88.714943;-113.939;7;0.826413426 102;88.104706;-112.105;7;0.000901952 102;88.073822;-112.012;7;0.38480167 102;88.062843;-112;7;0.930029154 102;88;-111.932;7;0.584968456 102;86.284821;-110.081;7;0.589269507 102;86.240074;-110.024;7;0.827557327 102;86.209846;-110;7;0.097370301 102;86;-109.831;7;0.887714569 102;85.12587;-109.126;7;0.510422472 102;84.665474;-108.755;7;0.412887933 102;84;-108.063;7;0.030324109 102;83.962379;-108.024;7;0.348192384 102;83.936005;-108;7;0.349714719 102;83.148636;-107.294;7;0.21138859 102;82;-106.476;7;0.331531074 102;81.707176;-106.267;7;0.604313842 102;81.689873;-106.253;7;0.590250064 102;81.25547;-106;7;0.807824994 102;80;-105.269;7;0.860447509 102;79.760239;-105.13;7;0.787374956 102;79.678116;-105.08;7;0.12648684 102;78.665924;-104.666;7;0.47446096 102;78;-104.394;7;0.001674231 102;77.091652;-104.022;7;0.486421732 102;77.047585;-104;7;0.39651552 102;77.046875;-104;7;0.626692516 102;76;-103.632;7;0.341366782 102;75.767891;-103.551;7;0.896836081 102;75.705917;-103.528;7;0.714473323 102;75.63826;-103.507;7;0.455519576 102;75.455826;-103.456;7;0.621113373 102;74;-103.05;7;0.452555467 102;73.70977;-102.969;7;0.702699038 102;72.681793;-102.682;7;0.207222027 102;72;-102.491;7;0.199325366 102;71.779625;-102.43;7;0.541945637 102;71.713699;-102.409;7;0.029556386 102;71.653412;-102.391;7;0.8699035 102;70.45578;-102;7;0.04385383 102;70;-101.851;7;0.851141523 102;69.779007;-101.779;7;0.749949698 102;69.718231;-101.759;7;0.016083096 102;68;-101.168;7;0.237792055 102;67.781281;-101.093;7;0.456002061 102;67.72287;-101.076;7;0.398968683 102;67.640068;-101.06;7;0.142516421 102;66.846886;-100.847;7;0.455961069 102;66;-100.62;7;0.048680831 102;65.726845;-100.546;7;0.189485809 102;65.597618;-100.533;7;0.800665846 102;64.386581;-100.387;7;0.017845132 102;64.305565;-100.377;7;0.48513461 102;64;-100.307;7;0.190620762 102;63.729763;-100.246;7;0.455815574 102;62.273365;-100.232;7;0.629926901 102;62.226528;-100.227;7;0.967620394 102;62.000004;-100.198;7;0.063451434 102;61.731422;-100.165;7;0.424022084 102;60.220612;-100.221;7;0.47958009 102;60;-100.229;7;0.426206132 102;59.869629;-100.233;7;0.633480742 102;59.732159;-100.244;7;0.614401451 102;59.675583;-100.255;7;0.506489985 102;58.430592;-100.431;7;0.139869246 102;58;-100.491;7;0.356654568 102;57.731922;-100.529;7;0.724348397 102;57.67527;-100.545;7;0.098714127 102;56.762539;-100.763;7;0.989758696 102;56;-100.944;7;0.142084243 102;55.730694;-101.008;7;0.708021348 102;55.673752;-101.029;7;0.116486104 102;55.196499;-101.196;7;0.311660555 102;54;-101.616;7;0.410958005 102;53.715931;-101.716;7;0.911522612 102;52.906231;-102;7;0.31050339 102;52.869625;-102.013;7;0.601990721 102;52.811974;-102.035;7;0.513811591 102;52.754269;-102.06;7;0.17830621 102;52.259651;-102.26;7;0.452115116 102;52;-102.364;7;0.825948933 102;50.833946;-102.834;7;0.805567114 102;50;-103.17;7;0.353921441 102;49.722942;-103.281;7;0.636162958 102;49.427002;-103.427;7;0.4284446 102;48.261818;-104;7;0.555592467 102;48.086308;-104.086;7;0.450363125 102;48;-104.129;7;0.176967925 102;47.778687;-104.238;7;0.539181865 102;47.743458;-104.256;7;0.480840797 102;47.659985;-104.295;7;0.138680329 102;46.701393;-104.701;7;0.139657318 102;46;-104.999;7;0.870843925 102;45.716522;-105.119;7;0.585457641 102;45.655083;-105.139;7;0.479963766 102;45.241947;-105.242;7;0.97216341 102;44;-105.552;7;0.31825183 102;43.713943;-105.623;7;0.323219314 102;43.628963;-105.629;7;0.521489464 102;42;-105.74;7;0.713611662 102;41.77462;-105.755;7;0.772671383 102;41.756886;-105.757;7;0.082685238 102;41.716255;-105.762;7;0.571007318 102;41.622768;-105.755;7;0.734171927 102;40;-105.61;7;0.384007513 102;39.685207;-105.581;7;0.598411399 102;39.561104;-105.561;7;0.437261359 102;38;-105.305;7;0.709201995 102;37.747353;-105.264;7;0.136095072 102;37.663086;-105.247;7;0.924647685 102;37.130291;-105.13;7;0.305394531 102;36;-104.882;7;0.894667771 102;35.725414;-104.822;7;0.077244584 102;35.667583;-104.808;7;0.657183561 102;34.523232;-104.523;7;0.868009782 102;34;-104.393;7;0.192980122 102;33.729588;-104.326;7;0.522111193 102;32.555496;-104.047;7;0.126507077 102;32.498997;-104.032;7;0.478840613 102;32.446423;-104.02;7;0.483707318 102;32.376301;-104;7;0.858699862 102;32;-103.893;7;0.988828779 102;31.851149;-103.851;7;0.256882099 102;30;-103.326;7;0.576178473 102;29.738092;-103.252;7;0.511067224 102;29.710508;-103.247;7;0.917708451 102;29.190832;-103.191;7;0.533114791 102;28;-103.061;7;0.340903525 102;26.947014;-102.947;7;0.179801861 102;26;-102.844;7;0.136598283 102;25.770639;-102.819;7;0.780584437 102;25.713039;-102.817;7;0.343538153 102;25.689522;-102.817;7;0.815812601 102;24.851564;-102.852;7;0.162054131 102;24;-102.887;7;0.994936679 102;23.74485;-102.897;7;0.893402412 102;23.69101;-102.902;7;0.188888308 102;22.973692;-102.974;7;0.862047538 102;22;-103.071;7;0.054035277 102;21.745508;-103.097;7;0.133806328 102;21.171684;-103.172;7;0.937866948 102;20;-103.324;7;0.891370616 102;19.799522;-103.35;7;0.994009324 102;19.745878;-103.357;7;0.453949786 102;19.414576;-103.415;7;0.290054009 102;18;-103.659;7;0.504354426 102;17.799503;-103.693;7;0.4457323 102;17.745838;-103.705;7;0.833125826 102;17.717585;-103.718;7;0.251343029 102;17.692087;-103.729;7;0.871477153 102;16.986002;-104;7;0.540263203 102;16.27379;-104.274;7;0.488334454 102;16;-104.379;7;0.913896614 102;15.743675;-104.478;7;0.532234263 102;15.081464;-105.081;7;0.691606636 102;14.07631;-105.998;7;0.484630558 102;14.073874;-106;7;0.936620677 102;14.049127;-106.019;7;0.139348401 102;14.037951;-106.038;7;0.833927402 102;14.020626;-106.067;7;0.894349119 102;14;-106.123;7;0.320016595 102;13.499681;-107.5;7;0.29619622 102;13.317806;-108;7;0.315831609 102;13.313617;-108.012;7;0.891898902 102;13.295406;-108.078;7;0.615283851 102;13.084592;-109.085;7;0.188538134 102;12.892964;-110;7;0.815753732 102;12.888612;-110.021;7;0.43771058 102;12.885731;-110.08;7;0.654970931 102;12.83258;-110.833;7;0.678263864 102;12.750127;-112;7;0.218665213 102;12.748613;-112.021;7;0.27123649 102;12.954832;-112.955;7;0.809861944 102;13.176744;-113.959;7;0.030945541 102;13.191352;-114;7;0.367442131 102;13.198915;-114.021;7;0.672879198 102;14;-115.493;7;0.317992074 102;14.252581;-115.957;7;0.717325779 102;14.286593;-116;7;0.074573943 102;14.304595;-116.023;7;0.428162287 102;15.097884;-117.098;7;0.298761316 102;15.744892;-117.975;7;0.735430745 102;15.764252;-118;7;0.725372397 102;15.782195;-118.023;7;0.867127238 102;16;-118.402;7;0.89214315 102;16.89514;-119.956;7;0.25408278 102;16.920675;-120;7;0.072095991 102;16.924105;-120.006;7;0.996744432 102;16.974415;-120.223;7;0.365605446 102;17.18285;-121.183;7;0.695996751 102;17.265808;-121.565;7;0.549189982 102;17.348682;-122;7;0.219312937 102;17.353334;-122.024;7;0.823127153 102;17.237667;-123.238;7;0.795541922 102;17.182228;-123.819;7;0.183886106 102;17.173264;-124;7;0.887738095 102;17.172033;-124.025;7;0.006089605 102;17.16284;-124.096;7;0.865816226 102;17.04604;-125.046;7;0.148394885 102;16.928814;-126;7;0.481286187 102;16.92572;-126.025;7;0.940284064 102;16.90382;-126.087;7;0.570739055 102;16.655939;-126.656;7;0.198060168 102;16.070393;-128;7;0.867377203 102;16.059309;-128.025;7;0.803423793 102;16.042414;-128.042;7;0.953726548 102;16;-128.085;7;0.943064018 102;15.656649;-128.43;7;0.073953862 102;15.108784;-129.109;7;0.204863563 102;14.389456;-130;7;0.045086756 102;14.368791;-130.026;7;0.362435116 102;14.187196;-130.187;7;0.86986311 102;14;-130.354;7;0.638094934 102;13.654508;-130.661;7;0.323486718 102;13.151893;-131.152;7;0.285028443 102;12.283166;-132;7;0.62537718 102;12.139882;-132.14;7;0.373077225 102;12;-132.276;7;0.434300938 102;11.706586;-132.563;7;0.236285453 102;11.652963;-132.635;7;0.401286748 102;11.255513;-133.256;7;0.106653444 102;10.778307;-134;7;0.39607394 102;10.761768;-134.026;7;0.578998396 102;10.73136;-134.099;7;0.549278734 102;10.548507;-134.549;7;0.318571089 102;10;-135.896;7;0.191500922 102;9.969938;-135.97;7;0.890234585 102;9.957703;-136;7;0.006311206 102;9.697115;-136.64;7;0.316168494 102;9.650795;-136.799;7;0.415370497 102;9.453945;-137.454;7;0.881939285 102;9.428538;-137.538;7;0.087055203 102;9.22582;-138;7;0.29036916 102;9.163238;-138.142;7;0.370381534 102;8.995569;-138.996;7;0.504978138 102;8.832141;-139.827;7;0.232274038 102;8.793802;-140;7;0.437804476 102;8.788055;-140.026;7;0.896698305 102;8.771528;-140.1;7;0.820757735 102;8.624;-140.624;7;0.990329983 102;8.236829;-142;7;0.761781672 102;8.229555;-142.026;7;0.471030631 102;8.188507;-142.189;7;0.463293203 102;8.113153;-142.487;7;0.26884596 102;8;-142.744;7;0.287565826 102;7.652961;-143.533;7;0.700385509 102;7.613635;-143.614;7;0.01373266 102;7.42512;-144;7;0.374899306 102;6.957793;-144.958;7;0.813326539 102;6.449278;-146;7;0.044683397 102;6.436811;-146.026;7;0.025247083 102;6.350097;-146.35;7;0.306236926 102;6;-147.66;7;0.464974905 102;5.928742;-147.927;7;0.643006121 102;5.928375;-147.928;7;0.508230274 102;5.907661;-148;7;0.060263438 102;5.885687;-148.076;7;0.609367296 102;6;-149.799;7;0.315651155 102;6.013326;-150;7;0.524055374 102;6.014273;-150.014;7;0.240938392 102;6.014993;-150.025;7;0.025176179 102;6.010213;-150.097;7;0.265589935 102;6.412941;-152;7;0.25854612 102;6.4182;-152.025;7;0.811482504 102;6.414226;-152.096;7;0.694242421 102;6.422767;-152.423;7;0.035853565 102;6.463937;-154;7;0.134619644 102;6.464577;-154.025;7;0.096867664 102;6.457801;-154.094;7;0.445071473 102;6.42956;-154.43;7;0.264591989 102;6.297267;-156;7;0.562712286 102;6.295233;-156.024;7;0.282399226 102;6.283104;-156.093;7;0.21686827 102;6.261243;-156.261;7;0.791601843 102;6.03555;-158;7;0.887232278 102;6.032472;-158.024;7;0.71883647 102;6.0306;-158.031;7;0.74886609 102;6;-158.143;7;0.210005851 102;5.603209;-159.603;7;0.293128502 102;5.507039;-159.957;7;0.182957958 102;5.492757;-160;7;0.541543029 102;5.48503;-160.023;7;0.643999765 102;5.418787;-160.094;7;0.116922262 102;4.919658;-160.92;7;0.74622704 102;4.266377;-162;7;0.742295706 102;4.249717;-162.028;7;0.675489274 102;4.185363;-162.065;7;0.247409795 102;4.11624;-162.116;7;0.972038717 102;4;-162.202;7;0.904421891 102;2.967117;-162.967;7;0.165002428 102;2;-163.683;7;0.394574388 102;1.817995;-163.818;7;0.076468125 102;1.572194;-164;7;0.519478171 102;1.5715;-164.001;7;0.034917733 102;1.52576;-164.022;7;0.302979203 102;0.495166;-164.495;7;0.58538428 102;0;-164.722;7;0.285219496 36;398;-136.465;8;0.860114674 36;396.370544;-136.371;8;0.505115858 36;396;-136.349;8;0.29605928 36;394.409088;-136.409;8;0.335670988 36;394;-136.424;8;0.938970813 36;392.468109;-136.468;8;0.076652967 36;392;-136.481;8;0.247363149 36;390.450623;-136.451;8;0.67789147 36;390;-136.442;8;0.73657162 36;388.422058;-136.422;8;0.703937381 36;388;-136.417;8;0.988878771 36;386.518005;-136.518;8;0.151285158 36;386;-136.553;8;0.938830428 36;384.7836;-136.784;8;0.414201255 36;384;-136.932;8;0.334579897 36;383.189392;-137.189;8;0.625329477 36;382;-137.567;8;0.240696437 36;381.691559;-137.692;8;0.887368465 36;380.926514;-138;8;0.991944072 36;380.266205;-138.266;8;0.422073374 36;380;-138.374;8;0.931580835 36;378.863129;-138.863;8;0.726363787 36;378;-139.235;8;0.911410733 36;377.452148;-139.452;8;0.769328487 36;376.071198;-140;8;0.925929712 36;376.016754;-140.017;8;0.705077755 36;376;-140.022;8;0.155622889 36;374.486938;-140.487;8;0.93476935 36;374;-140.637;8;0.569814165 36;372.903259;-140.903;8;0.959057036 36;372;-141.123;8;0.93825531 36;371.28125;-141.281;8;0.482184818 36;370;-141.564;8;0.08997099 36;369.641113;-141.641;8;0.416787206 36;368;-141.996;8;0.51233891 36;367.996429;-141.996;8;0.306261922 36;367.979889;-142;8;0.593740302 36;366.291504;-142.292;8;0.503401441 36;366;-142.342;8;0.069497937 36;364.534027;-142.534;8;0.086191313 36;364;-142.604;8;0.012417501 36;362.718323;-142.718;8;0.047349464 36;362;-142.782;8;0.555230963 36;360.805054;-142.805;8;0.477538807 36;360;-142.82;8;0.803344491 36;358.744171;-142.744;8;0.757212438 36;358;-142.699;8;0.658129969 36;356.489105;-142.489;8;0.320557017 36;356;-142.421;8;0.43963727 36;354.025543;-142.026;8;0.050699296 36;354;-142.02;8;0.873795835 36;353.89801;-142;8;0.738404125 36;352;-141.656;8;0.192748601 36;351.591217;-141.591;8;0.210289729 36;350;-141.341;8;0.605955977 36;349.992889;-141.34;8;0.270365312 36;349.977814;-141.336;8;0.047074871 36;349.969177;-141.334;8;0.918690603 36;349.128357;-141.128;8;0.422868896 36;348;-140.852;8;0.135916539 36;347.91449;-140.832;8;0.14854694 36;346.388;-140.388;8;0.674283954 36;346;-140.275;8;0.481894227 36;345.930054;-140.255;8;0.972053188 36;345.813293;-140.23;8;0.933183327 36;345.167694;-140;8;0.016614403 36;344;-139.583;8;0.956786779 36;343.886475;-139.543;8;0.033546957 36;343.697601;-139.501;8;0.384710276 36;343.406067;-139.406;8;0.306655364 36;342;-138.948;8;0.525949833 36;341.855621;-138.901;8;0.180166452 36;341.618103;-138.85;8;0.16956334 36;341.452545;-138.815;8;0.769211782 36;340.556213;-138.556;8;0.50947187 36;340;-138.396;8;0.510758248 36;339.700989;-138.31;8;0.613626831 36;339.378235;-138.209;8;0.992084859 36;338.75415;-138;8;0.243734054 36;338;-137.747;8;0.715049008 36;337.619476;-137.619;8;0.04741708 36;337.610901;-137.617;8;0.341225915 36;336;-136.787;8;0.601990762 36;335.155273;-136.352;8;0.223229918 36;334.936249;-136.232;8;0.712215811 36;334.770905;-136.042;8;0.925711497 36;334.737885;-136;8;0.335055753 36;334;-135.053;8;0.302980134 36;333.310181;-134.168;8;0.366911113 36;333.227844;-134;8;0.861678229 36;332.487793;-132.488;8;0.676702317 36;332.249084;-132;8;0.637096712 36;332;-131.491;8;0.036641639 36;331.958618;-131.407;8;0.755639 36;331.920898;-131.345;8;0.152508152 36;331.883026;-131.285;8;0.995790105 36;331.242859;-130.031;8;0.841160702 36;331.221527;-130.006;8;0.556164931 36;331.216583;-130;8;0.07050185 36;330;-128.603;8;0.964615053 36;329.475281;-128;8;0.195019146 36;328;-126.681;8;0.140813036 36;327.239044;-126;8;0.491913626 36;326;-125.124;8;0.07858279 36;324.235321;-124;8;0.118728033 36;324;-123.85;8;0.610354644 36;323.729614;-123.73;8;0.833093693 36;322;-122.958;8;0.873618063 36;320.608032;-122.608;8;0.94975041 36;320;-122.455;8;0.484002116 36;318.304321;-122.304;8;0.954319589 36;318;-122.277;8;0.946597665 36;316.29248;-122.292;8;0.037986202 36;316;-122.295;8;0.336960674 36;314.409546;-122.41;8;0.744143783 36;314;-122.439;8;3.83724E-05 36;312.563782;-122.564;8;0.225619464 36;312;-122.613;8;0.267374011 36;310.765564;-122.766;8;0.556531072 36;310;-122.86;8;0.944363921 36;308.996704;-122.997;8;0.594852792 36;308;-123.132;8;0.669674819 36;307.278961;-123.279;8;0.607854749 36;306;-123.539;8;0.281671984 36;305.629272;-123.629;8;0.648106053 36;304.107452;-123.998;8;0.046635306 36;304.100861;-124;8;0.709745377 36;304.018799;-124.019;8;0.589057234 36;304;-124.023;8;0.923703929 36;302.4729;-124.473;8;0.94823892 36;302;-124.612;8;0.471087708 36;300.978821;-124.979;8;0.212726418 36;300;-125.33;8;0.184317969 36;299.517944;-125.518;8;0.613281203 36;298.279907;-126;8;0.636709282 36;298.091003;-126.091;8;0.25030054 36;298;-126.135;8;0.730956917 36;297.635773;-126.319;8;0.481955155 36;296.756042;-126.756;8;0.190281036 36;296;-127.132;8;0.89637255 36;295.450104;-127.45;8;0.525470523 36;294.499908;-128;8;0.920362836 36;294.231812;-128.232;8;0.635337838 36;294;-128.432;8;0.255796093 36;293.159241;-129.159;8;0.524065526 36;292.18689;-130;8;0.54223947 36;292.093811;-130.094;8;0.356040103 36;292;-130.188;8;0.250489158 36;291.097595;-131.098;8;0.932045718 36;290.201996;-132;8;0.210929467 36;290.098846;-132.099;8;0.134421655 36;290;-132.194;8;0.9038552 36;289.077484;-133.077;8;0.684045493 36;288.25412;-133.866;8;0.737776324 36;288.12326;-134;8;0.559505066 36;288.062256;-134.062;8;0.275890828 36;288;-134.126;8;0.458410315 36;287.150421;-135.15;8;0.702239573 36;286.445984;-136;8;0.260495511 36;286.482117;-136.482;8;0.510090803 36;286.595825;-138;8;0.278641227 36;287.675171;-139.675;8;0.330086078 36;287.88446;-140;8;0.378534178 36;288;-140.179;8;0.460951092 36;289.55127;-142;8;0.367601228 36;290;-142.527;8;0.953729856 36;291.102905;-144;8;0.546624737 36;292;-145.264;8;0.03241469 36;292.128876;-145.446;8;0.94399658 36;292.451996;-146;8;0.973900597 36;293.083984;-147.084;8;0.099433918 36;293.618042;-148;8;0.862707042 36;294;-148.655;8;0.377652917 36;294.934906;-150;8;0.034536374 36;295.17511;-151.175;8;0.405241791 36;295.343719;-152;8;0.869176445 36;294.505951;-152.506;8;0.525687133 36;294;-152.812;8;0.119923736 36;293.161194;-153.161;8;0.973075715 36;292;-153.645;8;0.373897113 36;291.686462;-153.686;8;0.035534731 36;290;-153.908;8;0.721335037 36;289.90509;-153.905;8;0.863372285 36;288;-153.851;8;0.818018203 36;287.829193;-153.829;8;0.986439246 36;287.445099;-153.78;8;0.152818681 36;286;-153.713;8;0.350061558 36;285.698303;-153.698;8;0.072938959 36;284;-153.613;8;0.93529937 36;283.59668;-153.597;8;0.898832908 36;282;-153.533;8;0.596295145 36;281.534698;-153.535;8;0.100193103 36;280;-153.541;8;0.328460348 36;279.535187;-153.535;8;0.090095857 36;278;-153.516;8;0.847584041 36;277.532928;-153.533;8;0.137784388 36;276;-153.588;8;0.401488962 36;275.608978;-153.609;8;0.338610888 36;274;-153.694;8;0.240834294 36;273.721344;-153.721;8;0.238011189 36;272;-153.892;8;0.215823909 36;271.899597;-153.9;8;0.288904437 36;270.591461;-154;8;0.99105036 36;270.042145;-154.042;8;0.973626573 36;270;-154.045;8;0.210644774 36;268.167908;-154.168;8;0.409844103 36;268;-154.179;8;0.23761349 36;266.358307;-154.358;8;0.784186933 36;266;-154.397;8;0.294810821 36;264.562775;-154.563;8;0.880552719 36;264;-154.628;8;0.271063814 36;262.79599;-154.796;8;0.900389493 36;262;-154.907;8;0.403738879 36;261.019379;-155.019;8;0.110869281 36;260;-155.136;8;0.914809348 36;259.209229;-155.209;8;0.18555949 36;258;-155.322;8;0.092864466 36;257.370544;-155.371;8;0.426450485 36;256;-155.477;8;0.271363035 36;255.500107;-155.5;8;0.82083589 36;253.999985;-155.569;8;0.015794908 36;253.580536;-155.581;8;0.828671327 36;252;-155.626;8;0.348124759 36;251.627548;-155.628;8;0.760839212 36;250;-155.636;8;0.30245283 36;249.63446;-155.634;8;0.391702984 36;248.000015;-155.629;8;0.916253275 36;247.635437;-155.635;8;0.238208718 36;246;-155.662;8;0.968107733 36;245.670868;-155.671;8;0.926119482 36;243.999954;-155.714;8;0.270207966 36;243.728439;-155.728;8;0.790265537 36;241.999908;-155.817;8;0.608060317 36;241.829285;-155.829;8;0.32261552 36;240;-155.957;8;0.576434212 36;239.957809;-155.958;8;0.332071423 36;239.696915;-155.965;8;0.879394127 36;239.03714;-156;8;0.26046476 36;238.052551;-156.053;8;0.171872894 36;237.99971;-156.055;8;0.171714681 36;236.198669;-156.199;8;0.559272837 36;236;-156.214;8;0.479841703 36;235.999542;-156.215;8;0.050174549 36;234.430771;-156.431;8;0.752488025 36;233.999802;-156.49;8;0.332136631 36;233.99939;-156.49;8;0.260829213 36;232.806732;-156.807;8;0.816641726 36;232;-157.021;8;0.885771778 36;231.999268;-157.021;8;0.690664819 36;231.334976;-157.335;8;0.641770288 36;230.293442;-157.827;8;0.591865791 36;230;-157.983;8;0.309557949 36;229.989197;-157.989;8;0.522288505 36;229.968903;-158;8;0.498864724 36;228.684067;-158.684;8;0.260076738 36;227.999985;-159.048;8;0.298376159 36;227.999146;-159.049;8;0.971947719 36;227.998505;-159.049;8;0.273025556 36;227.313477;-159.313;8;0.69388654 36;226.435287;-159.653;8;0.343305441 36;226;-159.59;8;0.329928386 36;225.998962;-159.59;8;0.259316913 36;224.79361;-158.794;8;0.848259652 36;224;-158.269;8;0.589032912 36;223.998398;-158.269;8;0.941600436 36;223.998398;-158.268;8;0.971875795 36;223.998398;-158.268;8;0.770474271 36;224.000137;-158.264;8;0.282456914 36;224.08461;-158.085;8;0.310036373 36;224.124298;-158;8;0.773117363 36;224.723724;-156.724;8;0.756827186 36;225.063629;-156;8;0.277725857 36;225.064041;-156;8;0.643093592 36;225.486359;-155.486;8;0.170780406 36;226;-154.862;8;0.452210485 36;226.389084;-154.389;8;0.212357984 36;226.70903;-154;8;0.250775797 36;227.019394;-153.019;8;0.437559394 36;227.341858;-152;8;0.854563523 36;227.236908;-151.237;8;0.51296121 36;227.066742;-150;8;0.452158852 36;226.83728;-148.837;8;0.154653026 36;226.672302;-148.001;8;0.728680072 36;226.67218;-148;8;0.472928637 36;226.41188;-146.412;8;0.315277998 36;226.344604;-146.001;8;0.935230226 36;226.344482;-146;8;0.741059663 36;226.143005;-144.143;8;0.00995127 36;226.127655;-144.002;8;0.164192656 36;226.127518;-144;8;0.050390179 36;226.040359;-142.04;8;0.103558471 36;226.038651;-142.002;8;0.70649356 36;226.038544;-142;8;0.829805966 36;226.038483;-142;8;0.422688102 36;226.038391;-141.999;8;0.363580723 36;226;-141.482;8;0.01596859 36;225.889938;-140;8;0.944352268 36;225.889862;-140;8;0.620583018 36;225.866898;-139.867;8;0.528892959 36;225.828247;-139.643;8;0.398156564 36;225.685562;-138.001;8;0.109055504 36;225.685455;-138;8;0.765736802 36;225.611267;-137.611;8;0.91354811 36;225.304123;-136.002;8;0.024196142 36;225.303741;-136.001;8;0.402106392 36;225.303787;-136;8;0.380383476 36;225.303879;-135.999;8;0.047442058 36;225.33548;-135.335;8;0.211572915 36;225.399048;-134.001;8;0.739875048 36;225.399185;-134;8;0.38502101 36;225.399429;-133.999;8;0.839051137 36;225.470825;-133.471;8;0.402774329 36;225.669601;-132.001;8;0.651754229 36;225.669586;-132;8;0.06876958 36;225.66954;-131.999;8;0.962978729 36;225.667709;-131.668;8;0.188905426 36;225.658508;-130.001;8;0.844458744 36;225.658295;-130;8;0.445059385 36;225.467422;-129.467;8;0.508040374 36;224.942398;-128.002;8;0.199448966 36;224.941269;-128;8;0.305361427 36;224;-126.511;8;0.129524854 36;223.990906;-126.497;8;0.432216307 36;223.988983;-126.495;8;0.559466653 36;223.519226;-126;8;0.486418026 36;222.000015;-124.4;8;0.986828748 36;221.990158;-124.389;8;0.96431757 36;221.988312;-124.388;8;0.351716674 36;221.639297;-124;8;0.969331916 36;220.011429;-122.192;8;0.642416594 36;220;-122.181;8;0.022082063 36;219.807587;-122.001;8;0.627018647 36;219.807419;-122;8;0.80421643 36;219.757629;-121.758;8;0.947754928 36;219.397095;-120.003;8;0.342870707 36;219.396988;-120.001;8;0.539208032 36;219.397522;-120;8;0.634664795 36;219.398727;-119.999;8;0.89517102 36;219.543289;-119.543;8;0.233119818 36;220;-118.105;8;0.208229135 36;220.025299;-118.025;8;0.206212302 36;220.033081;-118.001;8;0.511680903 36;220.033676;-118;8;0.330736912 36;220.886139;-116.886;8;0.478049613 36;221.562302;-116.003;8;0.307042896 36;221.564514;-116.001;8;0.172913907 36;221.565277;-116;8;0.545964011 36;221.566666;-115.999;8;0.146516909 36;221.774857;-115.775;8;0.545295601 36;222.000015;-115.533;8;0.130421714 36;222.738464;-114.738;8;0.45755296 36;223.424484;-114.001;8;0.500737683 36;223.425201;-114;8;0.419973338 36;223.426498;-113.999;8;0.095108073 36;223.712265;-113.712;8;0.197674281 36;224;-113.424;8;0.192069121 36;224.710754;-112.711;8;0.415675239 36;225.418839;-112.001;8;0.462353282 36;225.418991;-112;8;0.342093591 36;225.554504;-111.554;8;0.128366131 36;226;-110.09;8;0.377168437 36;226.008591;-110.062;8;0.204340183 36;226.023254;-110.023;8;0.932086983 36;226.031967;-110;8;0.634826534 36;226.031586;-110;8;0.634502631 36;226;-109.962;8;0.478471001 36;225.981766;-109.939;8;0.455662697 36;224.715866;-108;8;0.131911014 36;224.714844;-108;8;0.977332452 36;224.713501;-107.999;8;0.400165947 36;224;-107.531;8;0.553087611 36;222.634567;-106.635;8;0.969326365 36;222.000015;-106.218;8;0.929747219 36;221.668564;-106;8;0.556445186 36;221.667755;-106;8;0.280968806 36;220;-105.025;8;0.107511592 36;219.994827;-105.022;8;0.529948909 36;219.993515;-105.021;8;0.750170359 36;218.481186;-104;8;0.786558841 36;217.999985;-103.675;8;0.88066464 36;217.994812;-103.672;8;0.567671066 36;217.993423;-103.671;8;0.931075383 36;217.991425;-103.669;8;0.957102046 36;217.078995;-103.079;8;0.160559992 36;216;-102.381;8;0.968326272 36;215.412354;-102;8;0.470365979 36;215.411484;-102;8;0.584636179 36;214;-101.187;8;0.221773811 36;213.99408;-101.184;8;0.503982299 36;213.993301;-101.183;8;0.841511516 36;213.991882;-101.183;8;0.957725753 36;212.397507;-100.397;8;0.821490663 36;212.000015;-100.202;8;0.073420288 36;211.993195;-100.198;8;0.311669533 36;211.531647;-100;8;0.773809563 36;210;-99.3417;8;0.341600418 36;209.994492;-99.3393;8;0.514567181 36;209.993011;-99.3387;8;0.902920748 36;209.991531;-99.3381;8;0.865449957 36;208.979721;-98.9797;8;0.411489253 36;208;-98.6327;8;0.817713614 36;207.992783;-98.6301;8;0.796112313 36;207.991013;-98.6296;8;0.084438497 36;206.234589;-98.2346;8;0.880370527 36;206.000015;-98.1818;8;0.693354117 36;205.992188;-98.18;8;0.539500421 36;205.04689;-98;8;0.889224925 36;204;-97.8006;8;0.399924487 36;203.993454;-97.7994;8;0.882415255 36;203.99205;-97.799;8;0.250207575 36;203.753632;-97.7536;8;0.710514509 36;201.999985;-97.4203;8;0.558141424 36;201.993408;-97.4191;8;0.596820592 36;201.991653;-97.4186;8;0.241274478 36;201.989212;-97.4177;8;0.610935146 36;201.317413;-97.3174;8;0.531435305 36;200;-97.1207;8;0.803125964 36;199.990509;-97.1193;8;0.546564857 36;198.842728;-96.8427;8;0.736398661 36;198;-96.6397;8;0.20984998 36;197.992081;-96.6378;8;0.964224487 36;196.055206;-96.0552;8;0.379404074 36;196;-96.0386;8;0.921948685 36;195.993851;-96.0368;8;0.928021526 36;195.990326;-96.0348;8;0.788397407 36;195.988693;-96.0339;8;0.693671101 36;195.904099;-96;8;0.916281261 36;194;-95.2371;8;0.126110444 36;193.990555;-95.2333;8;0.803763365 36;192.737915;-94.7379;8;0.700682951 36;192;-94.4461;8;0.598877624 36;191.992493;-94.4431;8;0.27485372 36;191.9888;-94.442;8;0.354944631 36;190.591415;-94;8;0.046517063 36;190;-93.8129;8;0.433691425 36;189.990646;-93.81;8;0.418734576 36;189.987579;-93.8094;8;0.883449344 36;189.763046;-93.763;8;0.992133817 36;188;-93.3993;8;0.919824006 36;187.989975;-93.3973;8;0.622613303 36;187.229187;-93.2292;8;0.801196308 36;187.215195;-93.2261;8;0.087637047 36;186;-92.888;8;0.198380086 36;185.989731;-92.8851;8;0.705557801 36;185.981873;-92.8835;8;0.618901309 36;184.646927;-92.6469;8;0.368864577 36;184.633194;-92.6445;8;0.687971701 36;184;-92.5069;8;0.464165397 36;183.98938;-92.5046;8;0.752061644 36;183.558441;-92.3925;8;0.307528898 36;182.047638;-92.0476;8;0.810463293 36;182;-92.0368;8;0.131796119 36;181.997437;-92.0362;8;0.191562173 36;181.989136;-92.0347;8;0.534759919 36;181.752274;-92;8;0.194172739 36;180;-91.743;8;0.553527486 36;179.991119;-91.7417;8;0.871762651 36;179.988739;-91.7414;8;0.285638527 36;179.986359;-91.7412;8;0.744589791 36;179.723526;-91.7235;8;0.70953061 36;178;-91.6076;8;0.419558935 36;177.988174;-91.6068;8;0.733854246 36;177.576385;-91.5764;8;0.766476495 36;177.063034;-91.5385;8;0.59313187 36;176;-91.474;8;0.232477354 36;175.984924;-91.4731;8;0.040874972 36;175.487427;-91.4874;8;0.21109711 36;174;-91.5303;8;0.997601119 36;173.986908;-91.5307;8;0.121154669 36;173.533371;-91.5219;8;0.000159308 36;173.522263;-91.5223;8;0.916768658 36;172;-91.5723;8;0.175449645 36;171.986191;-91.5728;8;0.740616927 36;171.610519;-91.6105;8;0.371892491 36;170;-91.7725;8;0.193230272 36;169.988388;-91.7736;8;0.807519652 36;169.985291;-91.7738;8;0.488505052 36;169.982803;-91.7744;8;0.845740313 36;169.801544;-91.8015;8;0.104351171 36;168.487534;-91.9985;8;0.304121729 36;168.484085;-91.9992;8;0.362465577 36;168.477585;-92;8;0.6584462 36;168.468338;-92.0012;8;0.020866054 36;168.090103;-92.0901;8;0.191282515 36;168;-92.1113;8;0.783190811 36;166.470871;-92.4709;8;0.208683522 36;166.456314;-92.4743;8;0.580119657 36;166;-92.535;8;0.127999509 36;165.983032;-92.5373;8;0.914081367 36;164.775467;-92.7755;8;0.610150348 36;164;-92.9284;8;0.521595744 36;163.981796;-92.9331;8;0.039016456 36;163.977936;-92.936;8;0.18765841 36;163.955933;-92.9508;8;0.64447259 36;163.373825;-93.3738;8;0.169270957 36;162.512131;-94;8;0.041062414 36;162.510101;-94.0015;8;0.506977681 36;162.512054;-94.5121;8;0.614013563 36;162.517654;-95.9702;8;0.116827692 36;162.523544;-96;8;0.790353517 36;162.523865;-96.0016;8;0.918727039 36;162.533844;-96.0121;8;0.911076695 36;163.976929;-97.3658;8;0.390284453 36;164;-97.3843;8;0.298856068 36;164.768356;-98;8;0.710654318 36;164.770508;-98.0017;8;0.58464741 36;165.965179;-98.7768;8;0.723999269 36;165.970047;-98.7792;8;0.138809081 36;165.976349;-98.7837;8;0.666002513 36;166;-98.8005;8;0.287166447 36;167.634003;-99.9653;8;0.986869655 36;167.683243;-100;8;0.14620342 36;168;-100.223;8;0.387296341 36;168.170914;-100.344;8;0.892859196 36;169.085388;-101.112;8;0.037904877 36;169.166183;-101.166;8;0.175081222 36;169.975281;-101.712;8;0.596300414 36;170;-101.736;8;0.424785967 36;170.264984;-102;8;0.73909499 36;170.26683;-102.002;8;0.123869147 36;172;-103.655;8;0.878449309 36;172.329437;-103.97;8;0.474315413 36;172.359161;-103.996;8;0.701797104 36;172.363251;-104;8;0.298412469 36;172.365448;-104.002;8;0.689962492 36;172.368347;-104.007;8;0.338625904 36;172.725632;-104.726;8;0.488446128 36;173.359467;-106;8;0.170094452 36;173.360458;-106.002;8;0.814298068 36;173.360565;-106.008;8;0.76480224 36;173.330154;-107.33;8;0.110260997 36;173.314758;-108;8;0.549054508 36;173.314697;-108.002;8;0.711502138 36;173.011505;-109.012;8;0.892338295 36;172.71582;-109.996;8;0.764381016 36;172.714722;-110;8;0.229501642 36;172.713943;-110.003;8;0.628264048 36;172.492661;-110.493;8;0.781509052 36;172;-111.583;8;0.211010521 36;171.967972;-111.654;8;0.778593205 36;171.96579;-111.66;8;0.274438005 36;171.961182;-111.669;8;0.133335358 36;171.862671;-111.863;8;0.520941356 36;171.792694;-112;8;0.687506043 36;171.187607;-113.188;8;0.865216653 36;170.773712;-114;8;0.138114852 36;170.77095;-114.005;8;0.45422102 36;170.489563;-114.49;8;0.027417048 36;170;-115.332;8;0.503950004 36;169.75444;-115.754;8;0.989804554 36;169.612839;-115.998;8;0.138655444 36;169.611694;-116;8;0.25809192 36;169.610107;-116.003;8;0.815826512 36;169.605347;-116.01;8;0.152657429 36;169.042877;-117.043;8;0.730841814 36;168.521454;-118;8;0.913361754 36;168.337555;-118.338;8;0.58931145 36;168;-118.957;8;0.279609073 36;167.96106;-119.029;8;0.355622319 36;167.956802;-119.037;8;0.085287811 36;167.770721;-119.771;8;0.598126062 36;167.712585;-120;8;0.722713164 36;167.36615;-121.366;8;0.181989758 36;167.206833;-121.994;8;0.615580563 36;167.205734;-122;8;0.465975552 36;167.205139;-122.003;8;0.687394285 36;167.207062;-122.012;8;0.352313018 36;167.839676;-123.84;8;0.00077733 36;167.895157;-124;8;0.553476749 36;167.954956;-124.173;8;0.659633309 36;167.958954;-124.178;8;0.774595032 36;168;-124.223;8;0.767290166 36;169.226868;-125.576;8;0.599437419 36;169.643845;-126;8;0.284075386 36;170;-126.362;8;0.439808647 36;170.231827;-126.598;8;0.039367781 36;171.546295;-128;8;0.705238869 36;171.546646;-128;8;0.410995011 36;171.55452;-128.01;8;0.108822708 36;172;-128.735;8;0.532516819 36;172.776825;-130;8;0.409801161 36;172.777924;-130.002;8;0.140365413 36;172.779922;-130.011;8;0.419518934 36;173.045227;-131.045;8;0.229160265 36;173.290115;-132;8;0.876303333 36;173.290833;-132.003;8;0.895353356 36;173.292236;-132.011;8;0.465638065 36;173.478378;-133.478;8;0.26309701 36;173.54454;-134;8;0.601109164 36;173.544891;-134.003;8;0.93939303 36;173.545227;-134.011;8;0.484419507 36;173.517349;-135.517;8;0.765511965 36;173.508423;-136;8;0.332295045 36;173.508377;-136.003;8;0.779624152 36;173.199646;-137.2;8;0.067857253 36;172.994507;-137.995;8;0.935212647 36;172.99295;-138;8;0.56958235 36;172.990921;-138.006;8;0.371695983 36;172.688171;-138.688;8;0.749592061 36;172.106171;-139.999;8;0.486563207 36;172.105453;-140;8;0.588931978 36;172.066177;-140.066;8;0.506109428 36;172;-140.178;8;0.827475209 36;171.321289;-141.321;8;0.220112631 36;170.923706;-141.991;8;0.249189363 36;170.919327;-142;8;0.152353883 36;170.916138;-142.006;8;0.804485355 36;170.915085;-142.01;8;0.617751301 36;170.716431;-142.716;8;0.685123234 36;170.355347;-144;8;0.083880772 36;170.354614;-144.003;8;0.947865813 36;170.340302;-144.34;8;0.40697219 36;170.270203;-145.995;8;0.927526685 36;170.270691;-146;8;0.100075548 36;170.27121;-146.005;8;0.799558927 36;170.348526;-146.349;8;0.466114242 36;170.719803;-147.998;8;0.273719521 36;170.720291;-148;8;0.417079106 36;170.720871;-148.002;8;0.918436807 36;170.723526;-148.009;8;0.323926707 36;171.064713;-149.065;8;0.661218915 36;171.36702;-150;8;0.579680118 36;171.367737;-150.002;8;0.214126602 36;171.372192;-150.014;8;0.490492899 36;171.971436;-151.33;8;0.097979808 36;172;-151.418;8;0.303787258 36;172.188324;-152;8;0.083391079 36;172.188995;-152.002;8;0.832526561 36;172.230072;-152.23;8;0.802030304 36;172.54744;-153.992;8;0.994269255 36;172.54953;-154;8;0.634250716 36;172.550018;-154.002;8;0.008849386 36;172.551422;-154.007;8;0.56172454 36;172.839676;-154.84;8;0.222342544 36;173.241516;-156;8;0.142624627 36;173.242126;-156.002;8;0.009760947 36;173.243973;-156.007;8;0.587907761 36;173.860031;-156.828;8;0.880014709 36;174;-157.063;8;0.624372864 36;174.558411;-158;8;0.268796341 36;174.559341;-158.002;8;0.712214568 36;174.684326;-158.684;8;0.628497168 36;174.924683;-159.997;8;0.092262341 36;174.925247;-160;8;0.372312147 36;174.925568;-160.001;8;0.918815573 36;174.925247;-160.003;8;0.87855323 36;174.924011;-160.005;8;0.053708331 36;174.715073;-160.715;8;0.341588437 36;174.336777;-162;8;0.202510195 36;174.260178;-162.26;8;0.819499205 36;174;-163.144;8;0.923290796 36;173.98262;-163.203;8;0.407868951 36;173.98027;-163.204;8;0.290600087 36;173.399994;-163.4;8;0.979085068 36;172;-163.872;8;0.201315641 36;171.904007;-163.904;8;0.587250451 36;171.621277;-163.999;8;0.392711416 36;170;-163.396;8;0.715977922 36;169.985565;-163.391;8;0.51955788 36;169.981705;-163.391;8;0.79899061 36;169.975723;-163.388;8;0.017199596 36;168.528488;-162.528;8;0.773386827 36;168;-162.215;8;0.509830505 36;167.641113;-162.002;8;0.084467101 36;167.639206;-162;8;0.851473 36;167.19632;-161.636;8;0.20525012 36;166;-160.778;8;0.007503733 36;165.984268;-160.767;8;0.447055817 36;165.981552;-160.765;8;0.130563922 36;165.976608;-160.762;8;0.085113625 36;165.971664;-160.761;8;0.30213529 36;164.249557;-160.25;8;0.172582235 36;164;-160.175;8;0.266995577 36;163.418137;-160.003;8;0.889886615 36;163.413818;-160.002;8;0.506526555 36;163.399826;-160;8;0.986902216 36;162;-159.808;8;0.716686691 36;161.974182;-159.804;8;0.927147943 36;161.96727;-159.803;8;0.397756903 36;161.793991;-159.794;8;0.044889736 36;160;-159.701;8;0.752177729 36;159.971497;-159.699;8;0.74528372 36;159.965469;-159.698;8;0.061184605 36;159.691223;-159.691;8;0.572546148 36;158;-159.647;8;0.600800728 36;157.970047;-159.646;8;0.500306264 36;157.963715;-159.645;8;0.619537454 36;157.632874;-159.633;8;0.608587213 36;156;-159.571;8;0.41634641 36;155.968536;-159.57;8;0.625950818 36;155.961884;-159.57;8;0.820277754 36;155.566116;-159.566;8;0.170893444 36;154;-159.551;8;0.423237094 36;153.967041;-159.551;8;0.486268646 36;153.960083;-159.551;8;0.507884367 36;153.558533;-159.559;8;0.029398162 36;152;-159.588;8;0.145021494 36;151.965607;-159.589;8;0.480135259 36;151.958344;-159.589;8;0.317644052 36;151.615204;-159.615;8;0.731551469 36;150;-159.736;8;0.442286938 36;149.964279;-159.739;8;0.583990308 36;149.956741;-159.74;8;0.34522884 36;149.763885;-159.764;8;0.838311714 36;148;-159.982;8;0.240715108 36;147.98439;-159.984;8;0.566974472 36;147.858368;-160;8;0.162086234 36;147.84877;-160.001;8;0.853813941 36;147.840515;-160.003;8;0.216466058 36;146.270508;-160.271;8;0.221746596 36;146;-160.317;8;0.536463401 36;145.961517;-160.323;8;0.315796046 36;144.48558;-160.486;8;0.973064654 36;144;-160.539;8;0.329472854 36;143.968506;-160.542;8;0.875051885 36;143.960648;-160.543;8;0.435740164 36;143.952332;-160.544;8;0.088648993 36;142.680969;-160.681;8;0.291665024 36;142;-160.754;8;0.185605451 36;141.959335;-160.759;8;0.14593288 36;141.950745;-160.759;8;0.416954442 36;140.849075;-160.849;8;0.155871824 36;140;-160.918;8;0.500672946 36;139.957947;-160.922;8;0.417794558 36;139.949051;-160.922;8;0.325570604 36;138.978851;-160.979;8;0.116907097 36;138;-161.036;8;0.079667261 36;137.956451;-161.038;8;0.515041416 36;137.94725;-161.039;8;0.851316624 36;137.081192;-161.081;8;0.155029056 36;136;-161.134;8;0.75132201 36;135.954926;-161.136;8;0.583456787 36;135.945389;-161.137;8;0.401350747 36;135.15715;-161.157;8;0.615008466 36;134;-161.187;8;0.417527235 36;133.953293;-161.189;8;0.662722699 36;133.94342;-161.188;8;0.506631887 36;133.171371;-161.171;8;0.019861246 36;132;-161.146;8;0.249225411 36;131.951492;-161.145;8;0.411794496 36;131.941238;-161.144;8;0.452795681 36;131.147324;-161.147;8;0.383405631 36;130;-161.152;8;0.531234481 36;129.949738;-161.152;8;0.95074244 36;129.939117;-161.152;8;0.132520513 36;129.172745;-161.173;8;0.035533202 36;128;-161.205;8;0.618110595 36;127.948044;-161.206;8;0.70843292 36;127.937065;-161.206;8;0.428727037 36;127.256096;-161.256;8;0.931763853 36;126;-161.348;8;0.175478325 36;125.946472;-161.352;8;0.472994449 36;125.935158;-161.353;8;0.240582868 36;125.407333;-161.407;8;0.7076774 36;124.000008;-161.553;8;0.181279708 36;123.944977;-161.559;8;0.574882116 36;123.93335;-161.56;8;0.299054105 36;123.608398;-161.608;8;0.860295122 36;121.999992;-161.847;8;0.826874373 36;121.943527;-161.855;8;0.0359482 36;121.869781;-161.87;8;0.647598721 36;121.208443;-162;8;0.896539252 36;121.187012;-162.004;8;0.911701391 36;120.198456;-162.198;8;0.59370881 36;120;-162.237;8;0.876183486 36;119.942276;-162.249;8;0.792605951 36;118.618317;-162.618;8;0.270805836 36;118;-162.791;8;0.185572562 36;117.969452;-162.799;8;0.91017243 36;117.941467;-162.807;8;0.692844178 36;117.9291;-162.811;8;0.665384637 36;117.076508;-163.077;8;0.107455339 36;116;-163.412;8;0.616640138 36;115.940666;-163.431;8;0.885321143 36;115.928131;-163.435;8;0.027568751 36;115.725174;-163.496;8;0.761678105 36;115.548553;-163.549;8;0.032649657 36;114.028847;-164;8;0.018926924 36;114.013809;-164.004;8;0.566473598 36;114.006622;-164.007;8;0.262140739 36;113.999992;-164.009;8;0.739877387 36;113.939804;-164.027;8;0.528561548 36;112.431549;-164.432;8;0.107656348 36;112.160126;-164.504;8;0.615900452 36;112;-164.546;8;0.028775726 36;111.938896;-164.563;8;0.609035676 36;110.726234;-164.726;8;0.301137644 36;110;-164.824;8;0.172462001 36;109.952126;-164.831;8;0.469192882 36;109.937477;-164.833;8;0.242698409 36;109.924263;-164.834;8;0.528419539 36;108.865318;-164.865;8;0.484444508 36;108;-164.891;8;0.872224441 36;107.935654;-164.893;8;0.415032905 36;107.92205;-164.893;8;0.360809647 36;106.863167;-164.863;8;0.178063893 36;106.000008;-164.839;8;0.343720074 36;105.933594;-164.837;8;0.71553058 36;105.919548;-164.837;8;0.27241327 36;104.776161;-164.776;8;0.770573101 36;104;-164.735;8;0.604986157 36;103.931381;-164.731;8;0.569306671 36;103.916878;-164.731;8;0.118692197 36;102.651917;-164.652;8;0.871769863 36;102;-164.611;8;0.110128892 36;101.929123;-164.607;8;0.868197307 36;101.914139;-164.606;8;0.093071332 36;100.5112;-164.511;8;0.037485446 36;100;-164.477;8;0.111452281 36;99.926819;-164.472;8;0.474826796 36;98.311089;-164.311;8;0.474944045 36;98;-164.28;8;0.095933456 36;97.940338;-164.274;8;0.240751625 36;97.924355;-164.273;8;0.250767454 36;96.011787;-164.012;8;0.543483829 36;96;-164.01;8;0.265196725 36;95.972626;-164.006;8;0.522435709 36;95.956085;-164.004;8;0.90632914 36;95.939529;-164.001;8;0.663604575 36;95.93251;-164;8;0.453873798 36;94;-163.606;8;0.362693294 36;93.918755;-163.589;8;0.750141222 36;93.901566;-163.585;8;0.42273416 36;93.483002;-163.483;8;0.837543565 36;92;-163.12;8;0.068502004 36;91.915604;-163.099;8;0.782262928 36;91.897758;-163.096;8;0.409824488 36;90.872047;-162.872;8;0.477906264 36;90;-162.682;8;0.214607896 36;89.912537;-162.663;8;0.938444307 36;89.894035;-162.66;8;0.06100601 36;88.429283;-162.429;8;0.124705757 36;88;-162.362;8;0.535015578 36;87.909683;-162.348;8;0.891543511 36;87.890587;-162.347;8;0.019216298 36;86.324135;-162.324;8;0.302502636 36;86;-162.319;8;0.066430932 36;85.907394;-162.318;8;0.655067377 36;85.887825;-162.32;8;0.108077307 36;84.557434;-162.557;8;0.199869424 36;84;-162.657;8;0.71885861 36;83.905884;-162.673;8;0.155488014 36;83.886002;-162.679;8;0.294282042 36;82.985985;-162.986;8;0.388723313 36;82;-163.322;8;0.642251828 36;81.905075;-163.355;8;0.844632472 36;81.867386;-163.371;8;0.639715094 36;81.513687;-163.514;8;0.426819878 36;80.31234;-164;8;0.395912315 36;80.294853;-164.007;8;0.399747729 36;80.090157;-164.09;8;0.313230693 36;80;-164.127;8;0.742085867 36;78.667534;-164.668;8;0.243287721 36;78;-164.938;8;0.50509155 36;77.942184;-164.962;8;0.379944645 36;77.904121;-164.975;8;0.915703234 36;77.883865;-164.981;8;0.102487054 36;77.234978;-165.235;8;0.173488553 36;76;-165.718;8;0.576407657 36;75.903656;-165.756;8;0.689920891 36;75.861511;-165.768;8;0.825677594 36;75.785736;-165.786;8;0.450525944 36;74.881042;-166;8;0.912636937 36;74.168701;-166.169;8;0.761362994 36;74;-166.209;8;0.14522512 36;73.90242;-166.232;8;0.899275599 36;72.478661;-166.479;8;0.501388643 36;72;-166.562;8;0.21746205 36;71.944328;-166.571;8;0.515855527 36;71.901054;-166.577;8;0.901954637 36;70.637299;-166.637;8;0.760639746 36;70;-166.668;8;0.650940821 36;69.920341;-166.671;8;0.094941536 36;69.899002;-166.672;8;0.535288725 36;69.87764;-166.672;8;0.33157939 36;68.586723;-166.587;8;0.61999924 36;68;-166.548;8;0.056387263 36;67.896385;-166.541;8;0.266171824 36;66.349297;-166.349;8;0.57908138 36;66;-166.306;8;0.618623115 36;65.915977;-166.296;8;0.388913753 36;65.893456;-166.293;8;0.765437098 36;65.321335;-166.216;8;0.553498045 36;64.036423;-166.036;8;0.953673562 36;64;-166.031;8;0.546080995 36;63.944637;-166.024;8;0.98680896 36;63.836254;-166.002;8;0.574065821 36;63.823662;-166;8;0.616517552 36;62.482571;-165.807;8;0.990788881 36;62.000004;-165.734;8;0.458791103 36;61.91116;-165.721;8;0.488154931 36;61.887352;-165.72;8;0.03489486 36;61.863529;-165.719;8;0.464476235 36;61.694061;-165.694;8;0.364637526 36;60;-165.445;8;0.688576241 36;59.884247;-165.428;8;0.954899238 36;59.859772;-165.427;8;0.430926148 36;59.370373;-165.37;8;0.370671269 36;58;-165.211;8;0.731340069 36;57.881279;-165.197;8;0.829707348 36;57.856167;-165.196;8;0.647323652 36;57.107395;-165.107;8;0.825044069 36;56;-164.977;8;0.801699856 36;55.878284;-164.963;8;0.720371201 36;55.852539;-164.96;8;0.918149244 36;54.819027;-164.819;8;0.276001199 36;54;-164.708;8;0.440208102 36;53.875175;-164.691;8;0.673439168 36;53.848774;-164.688;8;0.495403445 36;52.593948;-164.594;8;0.192822933 36;52;-164.549;8;0.144174021 36;51.872353;-164.54;8;0.14953249 36;51.845352;-164.538;8;0.580860874 36;50.483742;-164.484;8;0.581074685 36;50;-164.465;8;0.169800262 36;48.401112;-164.401;8;0.960802568 36;48;-164.385;8;0.817393523 36;47.895123;-164.381;8;0.813380944 36;47.867012;-164.379;8;0.057315665 36;47.83889;-164.379;8;0.597233556 36;46.414097;-164.414;8;0.41078982 36;46;-164.424;8;0.436536147 36;45.864647;-164.428;8;0.189294639 36;45.836025;-164.427;8;0.144350578 36;44.476238;-164.476;8;0.39086688 36;44;-164.493;8;0.29476883 36;43.862331;-164.498;8;0.841756165 36;43.833218;-164.498;8;0.636542865 36;42.579472;-164.579;8;0.543876665 36;42;-164.617;8;0.735955774 36;41.860153;-164.626;8;0.768955164 36;41.830585;-164.627;8;0.291475615 36;40.715675;-164.716;8;0.090236771 36;40;-164.773;8;0.99979304 36;39.858051;-164.784;8;0.021452427 36;39.828041;-164.787;8;0.973808978 36;38.906311;-164.906;8;0.070340372 36;38;-165.024;8;0.75954157 36;37.856209;-165.043;8;0.597040277 36;37.825821;-165.048;8;0.838095909 36;37.180019;-165.18;8;0.959243297 36;36;-165.422;8;0.806529752 36;35.854774;-165.452;8;0.102876701 36;35.8241;-165.461;8;0.903815805 36;35.701805;-165.5;8;0.923085403 36;35.547791;-165.548;8;0.882751412 36;34.089115;-166;8;0.607534752 36;34.05418;-166.011;8;0.522962882 36;34.023815;-166.024;8;0.510717202 36;34;-166.034;8;0.983801524 36;33.853985;-166.096;8;0.485633781 36;32.67226;-166.672;8;0.947431605 36;32.007656;-166.996;8;0.663759988 36;32;-167;8;0.563919625 36;31.884966;-167.056;8;0.874910721 36;31.854181;-167.071;8;0.259144298 36;31.823402;-167.087;8;0.143557977 36;31.32251;-167.323;8;0.088065867 36;30.578522;-167.673;8;0.648505901 36;30;-167.945;8;0.745835532 36;29.962378;-167.962;8;0.734263753 36;29.882267;-168;8;0.230629342 36;29.854361;-168.013;8;0.891009393 36;29.130283;-168.294;8;0.059577404 36;28.527321;-168.527;8;0.673936528 36;28;-168.731;8;0.013821837 36;27.884928;-168.776;8;0.135555835 36;27.85413;-168.79;8;0.132030552 36;27.823317;-168.799;8;0.536907495 36;27.019897;-169.02;8;0.322338026 36;26;-169.301;8;0.01472789 36;25.853279;-169.341;8;0.244624943 36;25.822285;-169.349;8;0.029958481 36;25.44623;-169.446;8;0.368438333 36;24;-169.819;8;0.922340956 36;23.856243;-169.856;8;0.770376687 36;23.85235;-169.857;8;0.137498431 36;23.832342;-169.863;8;0.900623078 36;23.306185;-170;8;0.561404178 36;22.269518;-170.27;8;0.174455815 36;22;-170.34;8;0.831034196 36;21.862709;-170.375;8;0.097629971 36;21.820099;-170.389;8;0.324378316 36;20.731421;-170.731;8;0.021155983 36;20;-170.962;8;0.651151381 36;19.850956;-171.009;8;0.199397761 36;19.819487;-171.02;8;0.06872363 36;19.225445;-171.225;8;0.61183801 36;18;-171.65;8;0.627952106 36;17.739851;-171.74;8;0.977601245 36;16.988544;-172;8;0.818167999 36;16.976908;-172.004;8;0.423675772 36;16.950832;-172.011;8;0.639234313 36;16.91378;-172.019;8;0.913211646 36;16.202639;-172.203;8;0.573343201 36;16;-172.255;8;0.497479125 36;14.612568;-172.613;8;0.226388655 36;14;-172.77;8;0.611363969 36;13.84937;-172.809;8;0.823261678 36;13.817536;-172.814;8;0.258274736 36;12.962022;-172.962;8;0.467308223 36;12;-173.129;8;0.375433572 36;11.84806;-173.155;8;0.09794347 36;11.815939;-173.157;8;0.112904429 36;11.215138;-173.215;8;0.285068077 36;10;-173.333;8;0.865382605 36;9.846243;-173.348;8;0.741446062 36;9.813724;-173.346;8;0.577625265 36;9.353317;-173.353;8;0.804362015 36;8;-173.375;8;0.065002721 36;7.843872;-173.378;8;0.512142588 36;7.799271;-173.365;8;0.336828612 36;7.316369;-173.316;8;0.848674665 36;6;-173.183;8;0.550006507 36;5.828908;-173.166;8;0.450153298 36;5.779991;-173.15;8;0.473269828 36;4.956439;-172.956;8;0.597549983 36;4;-172.731;8;0.048892202 36;3.836564;-172.693;8;0.820211815 36;3.597089;-172.631;8;0.237142931 36;2.232624;-172.233;8;0.000609596 36;2.054769;-172.181;8;0.216580535 36;2;-172.181;8;0.014459931 36;1.832313;-172.182;8;0.917956165 36;0.343144;-172.343;8;0.778119539 36;0.07742;-172.372;8;0.795199165 36;0;-172.375;8;0.581411323 36;0;-113.721;8;0.478306157 36;0.573637;-114;8;0.318337664 36;0.601096;-114.013;8;0.505700411 36;1.818349;-114.743;8;0.877579733 36;2;-114.845;8;0.302260121 36;3.765205;-115.831;8;0.545832414 36;3.816703;-115.86;8;0.165187098 36;3.855417;-115.882;8;0.845035956 36;3.99139;-115.991;8;0.23920268 36;4;-115.998;8;0.083159091 36;4.002092;-116;8;0.728722792 36;5.81401;-117.458;8;0.015283535 36;6;-117.625;8;0.001752609 36;6.368844;-117.958;8;0.278239241 36;6.402722;-118;8;0.146939934 36;7.809695;-119.752;8;0.982394207 36;7.849789;-119.807;8;0.787617925 36;7.882427;-119.872;8;0.284276779 36;7.89207;-119.892;8;0.121249267 36;7.944935;-120;8;0.807199253 36;8;-120.112;8;0.626669851 36;8.924544;-122;8;0.311457581 36;8.931618;-122.014;8;0.841434913 36;9.538891;-123.539;8;0.401418791 36;9.698219;-123.939;8;0.628522507 36;9.71864;-124;8;0.177721952 36;9.723551;-124.015;8;0.340054874 36;10;-124.818;8;0.643499225 36;10.397273;-125.972;8;0.365122791 36;10.403728;-126;8;0.741989454 36;10.407224;-126.015;8;0.955438144 36;10.423793;-126.074;8;0.57168675 36;10.556352;-126.556;8;0.839019684 36;10.953297;-128;8;0.815441125 36;10.957458;-128.015;8;0.277739862 36;11.019905;-129.02;8;0.653831619 36;11.077988;-129.954;8;0.622858657 36;11.080281;-130;8;0.680813958 36;11.081055;-130.015;8;0.267990827 36;10.838137;-130.838;8;0.875530057 36;10.503597;-131.971;8;0.720332934 36;10.496766;-132;8;0.349149022 36;10.493899;-132.012;8;0.113489177 36;10.47054;-132.06;8;0.809569185 36;10.374195;-132.282;8;0.664903673 36;10.345;-132.345;8;0.761613705 36;10;-133.087;8;0.55388806 36;9.710155;-133.71;8;0.804503382 36;9.6376;-133.866;8;0.008768519 36;9.58146;-134;8;0.649686413 36;9.574834;-134.016;8;0.646809722 36;9.110041;-135.11;8;0.693377149 36;8.841052;-135.743;8;0.882764106 36;8.727207;-136;8;0.763669005 36;8.72012;-136.016;8;0.666021855 36;8.714716;-136.058;8;0.369889763 36;8.710814;-136.107;8;0.126984513 36;8.586806;-136.587;8;0.263671965 36;8.22156;-138;8;0.135158601 36;8.176057;-138.176;8;0.728692891 36;8;-138.857;8;0.229094937 36;7.82223;-139.545;8;0.420924768 36;7.765324;-139.765;8;0.756538682 36;7.704694;-140;8;0.240483306 36;7.354697;-141.355;8;0.14255109 36;7.195718;-141.97;8;0.886605865 36;7.194409;-142;8;0.414717101 36;7.193699;-142.016;8;0.232349917 36;7.170597;-142.11;8;0.640854336 36;6.900897;-142.901;8;0.044629824 36;6.526102;-144;8;0.761909762 36;6.52056;-144.016;8;0.789834208 36;6.426267;-144.426;8;0.500724873 36;6.144035;-145.653;8;0.574497557 36;6.035928;-146;8;0.832295228 36;6.030866;-146.016;8;0.68055181 36;6.027957;-146.028;8;0.263324628 36;6;-146.141;8;0.52215873 36;5.981312;-146.216;8;0.849031876 36;5.837478;-147.837;8;0.319882224 36;5.83038;-147.917;8;0.862546312 36;5.828498;-148;8;0.164115015 36;5.787725;-149.788;8;0.265597316 36;5.7836;-149.969;8;0.581391143 36;5.781668;-149.979;8;0.505349946 36;5.782149;-150;8;0.0908982 36;5.823096;-151.823;8;0.054603698 36;5.825841;-151.945;8;0.631929614 36;5.816792;-152;8;0.338707376 36;5.814182;-152.016;8;0.280438357 36;5.914292;-153.914;8;0.40495986 36;5.918004;-153.985;8;0.175820394 36;5.914283;-154;8;0.563948829 36;5.910503;-154.016;8;0.481772209 36;5.89873;-154.06;8;0.890202451 36;5.804479;-155.262;8;0.710484432 36;5.795073;-155.306;8;0.898929273 36;5.756311;-155.756;8;0.981957952 36;5.735336;-156;8;0.527801547 36;5.597803;-157.598;8;0.95590396 36;5.563183;-158;8;0.672682848 36;5.56189;-158.015;8;0.124084539 36;5.555381;-158.058;8;0.717918194 36;5.399223;-159.399;8;0.827822278 36;5.329288;-160;8;0.54314892 36;5.327576;-160.015;8;0.851140384 36;5.323116;-160.057;8;0.561086725 36;5.11498;-161.115;8;0.15672848 36;4.94094;-162;8;0.535247545 36;4.938111;-162.014;8;0.935213722 36;4.928473;-162.055;8;0.765879434 36;4.668724;-162.669;8;0.550116628 36;4.104976;-164;8;0.101551575 36;4.09901;-164.014;8;0.383709218 36;4.074782;-164.075;8;0.055906468 36;4;-164.262;8;0.894957967 36;3.892191;-164.532;8;0.990335546 36;3.301657;-165.302;8;0.128191939 36;2.765703;-166;8;0.996133987 36;2.755119;-166.014;8;0.601914574 36;2.425019;-166.425;8;0.980855741 36;2;-166.954;8;0.759720586 36;1.861013;-167.128;8;0.519546065 36;1.84177;-167.166;8;0.29694493 36;1.816425;-167.236;8;0.731155878 36;1.413101;-167.413;8;0.471055977 36;0.076048;-168;8;0.935641323 36;0.023198;-168.023;8;0.507706038 36;0;-168.033;8;0.604595281 192;397.681427;-108.335;10;0.868080762 192;397.324127;-108.024;10;0.138531139 192;397.300781;-108;10;0.785877212 192;396;-106.685;10;0.751803138 192;395.759491;-106.442;10;0.874051329 192;395.751068;-106.434;10;0.201525095 192;395.68454;-106.372;10;0.412898923 192;395.447449;-106;10;0.464458914 192;394.477997;-104.478;10;0.428129582 192;394.173523;-104;10;0.20540262 192;394;-103.728;10;0.268857219 192;393.735657;-103.313;10;0.786586305 192;393.689758;-103.247;10;0.958976059 192;393.662628;-103.209;10;0.680981195 192;393.043762;-102.023;10;0.290948988 192;393.024902;-102;10;0.602521829 192;392;-100.76;10;0.823219506 192;391.443817;-100.086;10;0.533555352 192;391.394989;-100.022;10;0.793847017 192;391.346985;-100;10;0.551876264 192;390;-99.3695;10;0.195615783 192;389.752136;-99.2534;10;0.175612547 192;389.70047;-99.2221;10;0.292425013 192;389.169739;-99.1697;10;0.221295893 192;388;-99.0543;10;0.227329708 192;387.765656;-99.0312;10;0.897757478 192;387.703033;-99.0195;10;0.603762989 192;387.640411;-99.0213;10;0.104531024 192;387.071381;-99.0714;10;0.348467608 192;386;-99.1656;10;0.263540385 192;385.704865;-99.1916;10;0.27399958 192;385.642639;-99.1993;10;0.619543328 192;385.260468;-99.2605;10;0.440834562 192;384;-99.4623;10;0.242119125 192;383.706451;-99.5093;10;0.905330272 192;383.644531;-99.5184;10;0.553230777 192;383.536591;-99.5366;10;0.651716055 192;382;-99.7957;10;0.128439133 192;381.825195;-99.8252;10;0.041536718 192;381.708069;-99.8449;10;0.223042213 192;381.247131;-99.9336;10;0.808596041 192;380.896698;-100;10;0.847739112 192;380.782745;-100.022;10;0.186938732 192;380.127899;-100.128;10;0.021225348 192;380;-100.149;10;0.20457687 192;379.709625;-100.196;10;0.628511957 192;378.489807;-100.49;10;0.622885889 192;378;-100.608;10;0.918878506 192;377.876831;-100.638;10;0.260740663 192;377.710938;-100.677;10;0.004989148 192;377.649933;-100.699;10;0.013983236 192;376.919739;-100.92;10;0.941707438 192;376;-101.197;10;0.261385419 192;375.712097;-101.284;10;0.129423275 192;375.639954;-101.318;10;0.483697421 192;375.460602;-101.388;10;0.342374718 192;375.407196;-101.407;10;0.759593685 192;374;-101.923;10;0.284706601 192;373.94342;-101.943;10;0.71747973 192;373.78891;-102;10;0.682230847 192;373.713165;-102.028;10;0.749946069 192;372.685181;-102.685;10;0.820702141 192;372;-103.123;10;0.123617966 192;371.963989;-103.146;10;0.065507861 192;371.762573;-103.269;10;0.433828872 192;371.713409;-103.305;10;0.589042307 192;371.461975;-103.462;10;0.75992965 192;370.603516;-103.997;10;0.756164247 192;370.599854;-104;10;0.652491343 192;370.570953;-104.021;10;0.278606531 192;370.274261;-104.274;10;0.328607734 192;370;-104.508;10;0.975272768 192;369.741577;-104.729;10;0.493427621 192;369.713715;-104.755;10;0.910432309 192;369.131348;-105.131;10;0.772357705 192;368;-105.862;10;0.572244202 192;367.997131;-105.864;10;0.273346026 192;367.923645;-105.924;10;0.851478942 192;367.830048;-106;10;0.578413975 192;367.804077;-106.021;10;0.646756706 192;366.864624;-106.865;10;0.758185148 192;366;-107.641;10;0.34968948 192;365.810791;-107.811;10;0.22269715 192;365.79422;-107.826;10;0.992819242 192;365.714996;-107.903;10;0.394861278 192;365.68338;-107.946;10;0.983271361 192;365.637756;-108;10;0.926167874 192;364.887421;-108.887;10;0.793337693 192;364;-109.937;10;0.096724103 192;363.97113;-109.971;10;0.217327719 192;363.946747;-110;10;0.072878301 192;363.928894;-110.021;10;0.343512481 192;363.684601;-110.47;10;0.501784878 192;363.330078;-111.33;10;0.869010623 192;363.053864;-112;10;0.108444112 192;363.045197;-112.021;10;0.399971931 192;363.013397;-112.081;10;0.430931806 192;362.671967;-112.672;10;0.329693128 192;362;-113.835;10;0.488683377 192;361.939545;-113.94;10;0.798782672 192;361.904602;-114;10;0.567069141 192;361.892456;-114.021;10;0.810784287 192;361.863556;-114.081;10;0.219961643 192;361.287872;-115.288;10;0.164021094 192;360.948242;-116;10;0.917935879 192;360.938263;-116.021;10;0.164195046 192;360.918304;-116.08;10;0.4905211 192;360.746094;-116.746;10;0.903039587 192;360.421783;-118;10;0.96601142 192;360.416412;-118.021;10;0.604561261 192;360.408081;-118.08;10;0.958583074 192;360.380127;-118.38;10;0.481673124 192;360.229462;-120;10;0.440427439 192;360.227539;-120.021;10;0.972789534 192;360.220428;-120.079;10;0.842047546 192;360.210205;-120.21;10;0.789736319 192;360.07077;-122;10;0.215433966 192;360.069183;-122.02;10;0.6476973 192;360.057404;-122.057;10;0.723229365 192;360.051483;-122.076;10;0.80140179 192;360;-122.204;10;0.84630776 192;359.485138;-123.485;10;0.504642227 192;359.278229;-124;10;0.950368913 192;359.270142;-124.02;10;0.517150104 192;359.243958;-124.078;10;0.186187749 192;358.836487;-124.836;10;0.880049253 192;358.211853;-126;10;0.910269119 192;358.201202;-126.02;10;0.644158978 192;358.145935;-126.146;10;0.162828565 192;358;-126.479;10;0.368848736 192;357.536377;-127.536;10;0.686215442 192;357.348877;-127.964;10;0.401730389 192;357.338226;-128;10;0.387016681 192;357.332458;-128.02;10;0.631686034 192;357.335541;-128.042;10;0.715917439 192;357.321167;-128.082;10;0.260230376 192;357.070984;-129.071;10;0.599013799 192;356.835968;-130;10;0.144518862 192;356.831146;-130.019;10;0.287317523 192;356.841888;-130.074;10;0.680423913 192;356.84964;-130.85;10;0.008499618 192;356.861145;-132;10;0.483052849 192;356.861328;-132.019;10;0.171273357 192;356.896759;-132.177;10;0.906518786 192;357.095551;-133.096;10;0.702233626 192;357.195007;-133.555;10;0.394702876 192;357.174133;-134;10;0.986657622 192;357.173279;-134.018;10;0.276321955 192;357.562897;-135.563;10;0.551387691 192;357.650757;-135.911;10;0.277949672 192;357.658691;-136;10;0.458741855 192;357.660309;-136.018;10;0.63441131 192;357.666626;-136.109;10;0.068996512 192;357.759644;-136.595;10;0.640468178 192;358;-137.882;10;0.78352156 192;358.022064;-138;10;0.444307004 192;358.02533;-138.018;10;0.228359009 192;358.02533;-138.025;10;0.659600138 192;358.025269;-138.148;10;0.507470906 192;358.428406;-140;10;0.234598746 192;358.547577;-140.548;10;0.679840559 192;358.760223;-141.524;10;0.990935705 192;358.986877;-142;10;0.210863678 192;359.374603;-142.813;10;0.564401732 192;360;-143.73;10;0.161230159 192;360.18396;-144;10;0.360440146 192;360.194855;-144.016;10;0.128262624 192;360.473755;-144.474;10;0.253641893 192;361.378204;-145.958;10;0.286565759 192;361.397095;-146;10;0.520078085 192;361.404083;-146.015;10;0.601213869 192;361.419708;-146.054;10;0.578208804 192;362;-147.476;10;0.994992114 192;362.197937;-147.962;10;0.562625995 192;362.230347;-148;10;0.969096604 192;363.463959;-149.464;10;0.173638205 192;363.888794;-149.968;10;0.847677757 192;363.911255;-150;10;0.244445805 192;363.921326;-150.014;10;0.21903698 192;364;-150.09;10;0.907628812 192;365.76947;-151.795;10;0.950383733 192;365.992401;-152;10;0.949675503 192;366;-152.007;10;0.893236709 192;366.007294;-152.014;10;0.621968051 192;367.45047;-154;10;0.469115736 192;367.825958;-154.517;10;0.676273936 192;367.862915;-154.547;10;0.208371674 192;367.826233;-154.578;10;0.886977617 192;367.019531;-155.02;10;0.981034416 192;366;-155.578;10;0.236126726 192;365.727356;-155.727;10;0.620841823 192;365.229645;-156;10;0.536835078 192;365.218292;-156.006;10;0.702690877 192;365.183319;-156.019;10;0.380822947 192;365.148376;-156.029;10;0.704611008 192;365.113403;-156.036;10;0.401793039 192;364.188995;-156.189;10;0.127313411 192;364;-156.22;10;0.579373378 192;362.473358;-156.473;10;0.882290761 192;362;-156.552;10;0.767225795 192;361.838135;-156.579;10;0.691941549 192;361.803986;-156.578;10;0.352425772 192;360.446014;-156.446;10;0.297683057 192;360;-156.403;10;0.061215431 192;359.838135;-156.387;10;0.400696584 192;359.254639;-156.264;10;0.385271618 192;358.068146;-156.068;10;0.821857531 192;358;-156.057;10;0.469043984 192;357.818939;-156.027;10;0.222692345 192;357.782867;-156.012;10;0.447673323 192;357.757904;-156;10;0.273625009 192;356;-155.15;10;0.641361588 192;355.833954;-155.069;10;0.427921937 192;355.798828;-155.051;10;0.563739538 192;354.090393;-154.09;10;0.847453626 192;354;-154.04;10;0.14221608 192;353.984497;-154.031;10;0.826108053 192;353.948547;-154.006;10;0.221086695 192;353.938599;-154;10;0.807464691 192;352;-152.752;10;0.31094316 192;351.825256;-152.639;10;0.032097551 192;351.788208;-152.606;10;0.870389198 192;351.078796;-152;10;0.174377635 192;350;-151.078;10;0.824881351 192;349.819;-150.923;10;0.334779403 192;348.909515;-150.05;10;0.338683076 192;348.870453;-150.002;10;0.72164883 192;348.868378;-150;10;0.899717413 192;348;-149.205;10;0.65651578 192;347.812317;-149.033;10;0.098812702 192;346.7258;-148.042;10;0.748718235 192;346.701416;-148.014;10;0.474455859 192;346.68512;-148;10;0.371677105 192;346;-147.405;10;0.446509445 192;345.822693;-147.25;10;0.937238822 192;344.547882;-146.056;10;0.935744748 192;344.504303;-146.015;10;0.283142434 192;344.491821;-146;10;0.569253456 192;344.48941;-145.997;10;0.953892063 192;344;-145.414;10;0.951138637 192;342.846344;-144.04;10;0.619734303 192;342.82782;-144.015;10;0.837257365 192;342.817017;-144;10;0.74496566 192;342;-142.857;10;0.460455916 192;341.816986;-142.601;10;0.326289802 192;341.791656;-142.557;10;0.69885361 192;341.766022;-142.513;10;0.522453367 192;341.401672;-142;10;0.375222697 192;340;-140.027;10;0.992809768 192;339.992493;-140.016;10;0.616751043 192;339.982666;-140;10;0.543874352 192;339.973389;-139.985;10;0.195968129 192;339.949677;-139.95;10;0.815711775 192;338.658203;-138.031;10;0.088157912 192;338.641754;-138;10;0.096197269 192;338.625763;-137.97;10;0.467429139 192;338;-136.802;10;0.413950731 192;337.57901;-136.017;10;0.482733928 192;337.574646;-136;10;0.466505032 192;337.564972;-135.963;10;0.338483302 192;337.401886;-135.402;10;0.411561442 192;336.999481;-134.017;10;0.82390821 192;336.996368;-134;10;0.110580838 192;336.771881;-132.772;10;0.414625516 192;336.644196;-132.073;10;0.740839018 192;336.635132;-132.017;10;0.679783911 192;336.631989;-132;10;0.264482327 192;336.62619;-131.968;10;0.952659503 192;336.342987;-130.343;10;0.799778411 192;336.286285;-130.018;10;0.493792248 192;336.282349;-130;10;0.190557845 192;336.275085;-129.967;10;0.26443164 192;336;-128.361;10;0.785855133 192;335.941284;-128.018;10;0.987787226 192;335.939331;-128;10;0.878230764 192;335.935699;-127.967;10;0.858028153 192;335.933502;-127.934;10;0.33894282 192;335.807465;-126.018;10;0.884885438 192;335.808868;-126;10;0.688487256 192;335.811432;-125.966;10;0.539458914 192;335.826233;-125.826;10;0.855928071 192;336;-124.178;10;0.671393849 192;336.016876;-124.018;10;0.159964454 192;336.01712;-124.017;10;0.393451578 192;336.020508;-124;10;0.051532804 192;336.345428;-122.345;10;0.02270262 192;336.399231;-122.072;10;0.908084349 192;336.410431;-122;10;0.137038573 192;336.625824;-120.626;10;0.111735764 192;336.704254;-120.125;10;0.565437113 192;336.71991;-120.037;10;0.53420127 192;336.722076;-120.001;10;0.188008732 192;336.722229;-120;10;0.134000585 192;336.725677;-119.979;10;0.817930293 192;336.776672;-118.777;10;0.160572439 192;336.808807;-118.019;10;0.920164623 192;336.808075;-118;10;0.612424753 192;336.806732;-117.965;10;0.132349723 192;336.757355;-116.757;10;0.37106627 192;336.727142;-116.019;10;0.418477436 192;336.724274;-116;10;0.343886863 192;336.718994;-115.965;10;0.056095237 192;336.582123;-114.582;10;0.09000666 192;336.526367;-114.019;10;0.369984061 192;336.522888;-114;10;0.274438768 192;336.516479;-113.965;10;0.190857984 192;336.369446;-112.369;10;0.278040403 192;336.337128;-112.019;10;0.321675823 192;336.334473;-112;10;0.425022556 192;336.329529;-111.965;10;0.756105567 192;336.053589;-110.054;10;0.53027917 192;336.048553;-110.019;10;0.012521749 192;336.043335;-110;10;0.305717234 192;336.024841;-109.934;10;0.453637297 192;336;-109.848;10;0.807394695 192;335.74939;-108.988;10;0.229461439 192;335.429871;-108.018;10;0.746577432 192;335.417999;-108;10;0.776806741 192;334.770935;-106.992;10;0.082627802 192;334;-106.093;10;0.176098218 192;333.935974;-106.018;10;0.722692695 192;333.915375;-106;10;0.478220928 192;332;-104.311;10;0.8157226 192;331.911163;-104.232;10;0.100354247 192;331.6539;-104;10;0.018734224 192;331.546387;-103.903;10;0.237908188 192;330;-102.601;10;0.201613397 192;329.701721;-102.35;10;0.317134031 192;329.312531;-102.017;10;0.885774256 192;329.302612;-102.014;10;0.111255112 192;329.283875;-102;10;0.532169803 192;328;-101.042;10;0.159067275 192;327.819489;-100.907;10;0.352074085 192;327.752716;-100.862;10;0.462289407 192;326.583405;-100;10;0.224212321 192;326;-99.5698;10;0.451361213 192;325.805786;-99.4265;10;0.264092237 192;325.776947;-99.4079;10;0.320110384 192;324.406677;-98.4067;10;0.715285961 192;324.313049;-98.3383;10;0.502965538 192;324;-98.1276;10;0.414934991 192;323.834442;-98.0161;10;0.458885321 192;323.808502;-98;10;0.042372367 192;322.979706;-97.4848;10;0.176721394 192;322;-96.9205;10;0.792253774 192;320.401764;-96;10;0.282436362 192;320;-95.7686;10;0.853374369 192;319.814728;-95.6619;10;0.241593486 192;319.750244;-95.64;10;0.101144055 192;319.612427;-95.6124;10;0.586168802 192;318;-95.2896;10;0.807479521 192;317.797333;-95.249;10;0.238009224 192;317.754608;-95.2498;10;0.317761101 192;317.25943;-95.2594;10;0.672788664 192;316;-95.284;10;0.669027125 192;315.799835;-95.2879;10;0.691785068 192;315.757599;-95.2949;10;0.208597884 192;315.381714;-95.3817;10;0.104687606 192;314;-95.7007;10;0.517176618 192;313.801239;-95.7466;10;0.597224326 192;313.759491;-95.7598;10;0.663812667 192;313.759277;-95.7598;10;0.013374265 192;312.999573;-96;10;0.525680245 192;312.240082;-96.2401;10;0.878394994 192;312;-96.316;10;0.535389934 192;311.802216;-96.3785;10;0.585656771 192;311.760468;-96.3941;10;0.184084509 192;310.800873;-96.8009;10;0.70846998 192;310;-97.1403;10;0.541761174 192;309.802734;-97.2239;10;0.528331589 192;309.759827;-97.25;10;0.654778559 192;309.438477;-97.4385;10;0.506097467 192;308.480896;-98;10;0.529508058 192;308.177765;-98.1778;10;0.128912475 192;308;-98.282;10;0.5103755 192;307.801331;-98.3985;10;0.824587762 192;307.75708;-98.4432;10;0.177710852 192;307.074738;-99.0747;10;0.84578324 192;306.075104;-100;10;0.256016 192;306.036102;-100.036;10;0.766240274 192;306;-100.07;10;0.957443366 192;305.801117;-100.254;10;0.970246306 192;305.107269;-101.107;10;0.843939796 192;304.407104;-101.969;10;0.478496817 192;304.387268;-102;10;0.353631326 192;304.377838;-102.015;10;0.133679234 192;304.358795;-102.057;10;0.295995389 192;304.242737;-102.243;10;0.93049274 192;304;-102.631;10;0.13936179 192;303.473175;-103.473;10;0.45751831 192;303.143646;-104;10;0.430320086 192;303.134247;-104.015;10;0.415605565 192;303.116211;-104.058;10;0.899149103 192;302.75119;-104.751;10;0.426266864 192;302.093811;-106;10;0.329448097 192;302.085846;-106.015;10;0.926427343 192;302.065979;-106.066;10;0.212595713 192;302.064056;-106.071;10;0.329136107 192;302;-106.219;10;0.071126714 192;301.461304;-107.461;10;0.908815619 192;301.227814;-108;10;0.993778525 192;301.215698;-108.028;10;0.715120668 192;301.203278;-108.059;10;0.401585704 192;300.810913;-108.811;10;0.415081234 192;300.190582;-110;10;0.808897893 192;300.182587;-110.015;10;0.818510032 192;300.150208;-110.066;10;0.527182296 192;300.116302;-110.116;10;0.21322734 192;300;-110.29;10;0.173434172 192;299.314819;-111.315;10;0.808587895 192;298.856598;-112;10;0.597643474 192;298.846375;-112.015;10;0.034515993 192;298.427429;-112.427;10;0.210125033 192;298;-112.848;10;0.08229365 192;297.844116;-113.001;10;0.653498466 192;297.794006;-113.053;10;0.536231227 192;297.452698;-113.453;10;0.959465367 192;296.985352;-114;10;0.619423941 192;296.972351;-114.015;10;0.280778624 192;296.547729;-114.548;10;0.370969877 192;296;-115.235;10;0.581522003 192;295.84845;-115.425;10;0.545538363 192;295.809479;-115.475;10;0.888162786 192;295.785156;-115.518;10;0.160169078 192;295.692963;-115.693;10;0.060744682 192;295.531006;-116;10;0.171739521 192;295.00235;-117.002;10;0.921773528 192;294.476196;-118;10;0.303996794 192;294.468231;-118.015;10;0.114965915 192;294.451569;-118.058;10;0.004948456 192;294.349487;-118.349;10;0.260550872 192;294;-119.347;10;0.110268522 192;293.830719;-119.831;10;0.112944978 192;293.771454;-120;10;0.027819061 192;293.766174;-120.015;10;0.288241409 192;293.757782;-120.058;10;0.027687353 192;293.607239;-121.607;10;0.207542284 192;293.569061;-122;10;0.137641211 192;293.567627;-122.015;10;0.48577762 192;293.565643;-122.057;10;0.194811741 192;293.655853;-123.656;10;0.241611691 192;293.675293;-124;10;0.542172126 192;293.676117;-124.015;10;0.267406081 192;293.678741;-124.057;10;0.520305935 192;293.9422;-125.942;10;0.183624191 192;293.950287;-126;10;0.887213889 192;294;-126.356;10;0.809293563 192;294.226044;-127.973;10;0.592021785 192;294.228973;-128;10;0.727548582 192;294.230591;-128.015;10;0.809926833 192;294.237213;-128.056;10;0.961251389 192;294.27713;-128.277;10;0.880621337 192;294.58847;-130;10;0.743611742 192;294.591064;-130.014;10;0.907317422 192;294.596924;-130.056;10;0.777057369 192;294.70105;-130.701;10;0.725567549 192;294.910614;-132;10;0.175444031 192;294.912903;-132.014;10;0.728582418 192;294.941254;-132.941;10;0.468961583 192;294.972809;-133.974;10;0.334511637 192;294.973633;-134;10;0.436675267 192;294.974091;-134.014;10;0.88940148 192;294.974304;-134.054;10;0.744226433 192;294.915955;-134.916;10;0.54239773 192;294.84259;-136;10;0.76942483 192;294.841675;-136.014;10;0.072406368 192;294.846771;-136.053;10;0.748171913 192;294.850952;-136.851;10;0.424332032 192;294.856995;-138;10;0.186422039 192;294.857056;-138.013;10;0.259887908 192;294.862793;-138.044;10;0.584039424 192;294.87204;-138.872;10;0.170052493 192;294.884613;-140;10;0.963443643 192;294.884766;-140.013;10;0.904683826 192;294.887878;-140.05;10;0.706472647 192;294.889404;-140.889;10;0.545692765 192;294.891449;-142;10;0.212489995 192;294.891479;-142.013;10;0.736963149 192;294.88736;-142.049;10;0.869788727 192;294.801392;-142.801;10;0.583685946 192;294.66449;-144;10;0.959109695 192;294.663116;-144.012;10;0.91183494 192;294.650299;-144.047;10;0.55341451 192;294.523773;-144.524;10;0.942455553 192;294.13208;-146;10;0.081789722 192;294.128967;-146.012;10;0.719743569 192;294.080505;-146.081;10;0.026040648 192;294;-146.195;10;0.36734018 192;293.617157;-146.738;10;0.972306228 192;293.319977;-147.32;10;0.870888855 192;292.972809;-148;10;0.728017027 192;292.971741;-148.002;10;0.776771559 192;292.507599;-148.508;10;0.127586913 192;292;-149.06;10;0.585412381 192;291.884003;-149.187;10;0.590104524 192;291.853058;-149.215;10;0.04679983 192;291.472626;-149.473;10;0.546228679 192;290.694427;-150;10;0.384242779 192;290.280487;-150.281;10;0.759405379 192;290;-150.471;10;0.070728005 192;289.888611;-150.546;10;0.133704918 192;289.858856;-150.561;10;0.468109198 192;289.829102;-150.569;10;0.513332422 192;288.906799;-150.907;10;0.898512595 192;288;-151.239;10;0.075371656 192;287.862732;-151.289;10;0.257914675 192;287.833771;-151.292;10;0.408615229 192;287.378082;-151.378;10;0.148028505 192;286;-151.64;10;0.065225762 192;285.865479;-151.665;10;0.16964025 192;285.655273;-151.655;10;0.078831226 192;285.229614;-151.635;10;0.87346628 192;284;-151.694;10;0.495055926 192;283.867065;-151.701;10;0.898763833 192;283.83902;-151.699;10;0.211960869 192;283.691162;-151.691;10;0.074898348 192;282;-151.601;10;0.635292535 192;281.868317;-151.594;10;0.133489159 192;281.581116;-151.581;10;0.494766654 192;281.228302;-151.565;10;0.562084691 192;280;-151.449;10;0.504124039 192;279.869354;-151.436;10;0.437429593 192;279.841797;-151.436;10;0.609317136 192;279.39801;-151.398;10;0.903626118 192;278;-151.279;10;0.322170881 192;277.870392;-151.268;10;0.833674878 192;277.843079;-151.267;10;0.872860971 192;277.19455;-151.195;10;0.338070719 192;276;-151.061;10;0.135851607 192;275.871338;-151.047;10;0.517263834 192;275.844177;-151.045;10;0.2385122 192;274.92514;-150.925;10;0.189907213 192;274;-150.805;10;0.748736366 192;273.872192;-150.788;10;0.979374584 192;272.573547;-150.574;10;0.196975843 192;272;-150.479;10;0.859532933 192;271.899689;-150.462;10;0.702202941 192;271.872864;-150.459;10;0.624287204 192;270.083221;-150.083;10;0.794877052 192;270;-150.066;10;0.682237383 192;269.73877;-150.011;10;0.768620363 192;269.712036;-150.006;10;0.512603574 192;269.687256;-150;10;0.24212993 192;268;-149.595;10;0.777510732 192;267.900299;-149.571;10;0.710019497 192;267.873627;-149.565;10;0.053724423 192;267.846954;-149.559;10;0.300674388 192;267.443848;-149.444;10;0.659800485 192;266;-149.032;10;0.145454631 192;265.873779;-148.996;10;0.36458447 192;265.847137;-148.989;10;0.899649361 192;264.680298;-148.68;10;0.304618678 192;264;-148.501;10;0.494970441 192;263.874084;-148.467;10;0.349860226 192;263.847504;-148.463;10;0.714549477 192;262.042511;-148.043;10;0.388158734 192;262;-148.033;10;0.632889122 192;261.874603;-148.003;10;0.662960974 192;261.851227;-148;10;0.253488016 192;260;-147.728;10;0.981708999 192;259.901855;-147.713;10;0.504989557 192;259.87561;-147.71;10;0.767059465 192;259.849365;-147.708;10;0.069855073 192;259.685394;-147.685;10;0.912587694 192;258;-147.452;10;0.03156131 192;257.876678;-147.435;10;0.009534742 192;257.850677;-147.432;10;0.223858379 192;257.395691;-147.396;10;0.844155925 192;256;-147.285;10;0.552354753 192;255.878067;-147.275;10;0.012457043 192;255.852341;-147.274;10;0.861165775 192;255.230469;-147.23;10;0.654436679 192;253.999985;-147.145;10;0.787753362 192;253.879456;-147.137;10;0.25613756 192;253.854034;-147.133;10;0.960970852 192;253.083023;-147.083;10;0.395878709 192;252;-147.013;10;0.994704504 192;251.880936;-147.005;10;0.257373174 192;251.85582;-147.002;10;0.443792376 192;250.901169;-146.901;10;0.348161119 192;250;-146.806;10;0.394497543 192;249.882233;-146.794;10;0.917304899 192;249.857391;-146.79;10;0.264901516 192;248.60556;-146.606;10;0.279278786 192;248.000015;-146.516;10;0.297749394 192;247.883377;-146.499;10;0.663802987 192;247.858749;-146.495;10;0.829095132 192;246.224945;-146.225;10;0.489100088 192;246;-146.188;10;0.135414156 192;245.884445;-146.169;10;0.515829038 192;245.872253;-146.169;10;0.921783919 192;244.054565;-146.055;10;0.727145193 192;243.999985;-146.051;10;0.791182053 192;243.187454;-146;10;0.685427168 192;242.673416;-145.968;10;0.245839718 192;242;-145.862;10;0.323709013 192;241.836868;-145.837;10;0.445823171 192;240;-145.55;10;0.417718233 192;239.912048;-145.536;10;0.742980584 192;239.896362;-145.535;10;0.57288824 192;239.87677;-145.535;10;0.814726432 192;239.865021;-145.534;10;0.667610654 192;239.541794;-145.542;10;0.594232616 192;238.000015;-145.577;10;0.199589267 192;237.890442;-145.58;10;0.230907449 192;237.86734;-145.582;10;0.080533368 192;237.608643;-145.609;10;0.441579944 192;236;-145.772;10;0.459135188 192;235.892624;-145.783;10;0.34957533 192;235.800507;-145.801;10;0.566879867 192;234.751434;-146;10;0.534892101 192;234.723694;-146.005;10;0.667961027 192;234.70137;-146.009;10;0.024046494 192;234.679062;-146.012;10;0.584315295 192;234.099228;-146.099;10;0.996611235 192;234;-146.114;10;0.706291943 192;232.361923;-146.362;10;0.338256 192;232;-146.417;10;0.068241504 192;231.897461;-146.432;10;0.929730859 192;231.875839;-146.435;10;0.047429107 192;230.63205;-146.632;10;0.470618312 192;230;-146.732;10;0.587661983 192;229.899826;-146.748;10;0.151252498 192;229.878723;-146.751;10;0.965102865 192;228.893295;-146.893;10;0.614662827 192;227.999985;-147.022;10;0.029017645 192;227.902115;-147.037;10;0.170755879 192;227.88147;-147.039;10;0.751730533 192;227.131226;-147.131;10;0.594957676 192;226;-147.27;10;0.425027639 192;225.904343;-147.282;10;0.648939635 192;225.884171;-147.285;10;0.004751291 192;225.356369;-147.356;10;0.354815889 192;224;-147.54;10;0.803924161 192;223.90657;-147.553;10;0.443972471 192;223.886871;-147.556;10;0.725659725 192;223.604233;-147.604;10;0.682119892 192;222.000015;-147.879;10;0.108631516 192;221.908936;-147.895;10;0.956124001 192;221.89682;-147.897;10;0.887434884 192;221.892532;-147.898;10;0.606327229 192;221.225311;-148;10;0.881541338 192;220.162994;-148.163;10;0.57824109 192;220;-148.188;10;0.174912694 192;219.911179;-148.202;10;0.509245352 192;219.892456;-148.204;10;0.516941692 192;218.386627;-148.387;10;0.86423192 192;217.999985;-148.434;10;0.717017964 192;217.913284;-148.444;10;0.602926241 192;217.895004;-148.445;10;0.085161882 192;216.546188;-148.546;10;0.816374364 192;216;-148.587;10;0.456535668 192;215.915237;-148.593;10;0.538947741 192;215.897354;-148.594;10;0.89382591 192;214.651993;-148.652;10;0.114310155 192;214;-148.682;10;0.622916874 192;213.917068;-148.686;10;0.037010543 192;213.899567;-148.686;10;0.376266098 192;212.727661;-148.728;10;0.175515208 192;212.000015;-148.753;10;0.90010729 192;211.918869;-148.756;10;0.146797137 192;211.901749;-148.757;10;0.29090125 192;210.782211;-148.782;10;0.736485245 192;210;-148.8;10;0.56017073 192;209.920578;-148.802;10;0.111998605 192;209.903824;-148.803;10;0.478148876 192;208.873032;-148.873;10;0.728709172 192;208;-148.932;10;0.256391562 192;207.92244;-148.937;10;0.665804679 192;207.906082;-148.939;10;0.400562414 192;207.039703;-149.04;10;0.639085969 192;206.000015;-149.16;10;0.017223071 192;205.924454;-149.169;10;0.425924496 192;205.908539;-149.171;10;0.177058065 192;205.263397;-149.263;10;0.99858807 192;204;-149.444;10;0.268296084 192;203.926514;-149.455;10;0.251425194 192;203.911011;-149.456;10;0.201532083 192;203.504059;-149.504;10;0.449263643 192;201.999985;-149.682;10;0.900303826 192;201.928482;-149.691;10;0.168990874 192;201.913406;-149.69;10;0.437276289 192;201.700043;-149.7;10;0.822353993 192;200;-149.779;10;0.2377908 192;199.930145;-149.782;10;0.103303983 192;199.763351;-149.763;10;0.803354366 192;199.203094;-149.7;10;0.492692983 192;198;-149.706;10;0.985939412 192;197.931671;-149.706;10;0.956262264 192;197.657761;-149.658;10;0.975898928 192;196;-149.364;10;0.120166264 192;195.946884;-149.354;10;0.407255717 192;195.932678;-149.352;10;0.230797542 192;195.189545;-149.19;10;0.065033755 192;194;-148.93;10;0.120394717 192;193.947601;-148.918;10;0.313294036 192;193.926605;-148.913;10;0.738075983 192;192.483246;-148.483;10;0.738135877 192;192;-148.339;10;0.593004831 192;190.8759;-148.005;10;0.27063901 192;190.864685;-148;10;0.167410606 192;190;-147.626;10;0.247658518 192;189.955536;-147.606;10;0.403275368 192;189.934891;-147.6;10;0.672511292 192;189.920975;-147.593;10;0.926756389 192;188.967682;-146.968;10;0.747463287 192;188;-146.333;10;0.442799158 192;187.934601;-146.29;10;0.222725838 192;187.582001;-146;10;0.605755605 192;186;-144.697;10;0.99536847 192;185.94809;-144.654;10;0.001094712 192;185.934418;-144.643;10;0.721055412 192;184.859833;-144.008;10;0.108607763 192;184.846039;-144.002;10;0.048669178 192;184.83223;-144.002;10;0.60778646 192;184.819687;-144;10;0.121510373 192;184;-143.85;10;0.285316834 192;183.816162;-143.816;10;0.882000226 192;182;-143.483;10;0.031479885 192;181.936401;-143.472;10;0.215847789 192;181.571609;-143.572;10;0.662024512 192;180.09407;-143.976;10;0.598903218 192;180;-144;10;0.748355516 192;179.998825;-144;10;0.337750138 192;179.938599;-144.015;10;0.39299349 192;178.47435;-144.474;10;0.154378754 192;178;-144.623;10;0.901829163 192;177.953339;-144.638;10;0.388823987 192;177.940857;-144.642;10;0.792314831 192;176.876068;-144.876;10;0.660064881 192;176;-145.069;10;0.180936145 192;175.954956;-145.078;10;0.820069991 192;175.930862;-145.083;10;0.647680353 192;175.212204;-145.212;10;0.945082132 192;174;-145.431;10;0.911944424 192;173.944839;-145.441;10;0.844714506 192;173.933197;-145.442;10;0.727914678 192;173.502014;-145.502;10;0.109971069 192;172;-145.712;10;0.051358048 192;171.946655;-145.72;10;0.734574691 192;171.935394;-145.719;10;0.06021136 192;171.732147;-145.732;10;0.184573749 192;170;-145.847;10;0.439536457 192;169.948196;-145.85;10;0.647109544 192;169.802292;-145.802;10;0.846965355 192;168;-145.209;10;0.239636534 192;167.959885;-145.196;10;0.151902557 192;167.945633;-145.188;10;0.602384226 192;166.677414;-144.004;10;0.771701542 192;166.675507;-144;10;0.736059647 192;166.66539;-143.98;10;0.317532758 192;166;-142.773;10;0.942020184 192;165.948395;-142.679;10;0.713557637 192;165.64325;-142.004;10;0.603329273 192;165.642532;-142;10;0.609268136 192;165.560242;-141.56;10;0.688389395 192;165.273651;-140.029;10;0.676078386 192;165.268539;-140.004;10;0.129157955 192;165.267746;-140;10;0.473149576 192;165.266296;-139.993;10;0.413554747 192;164.983383;-138.983;10;0.569085157 192;164.708862;-138.004;10;0.488845345 192;164.707932;-138;10;0.0164186 192;164.7061;-137.992;10;0.673393493 192;164.156845;-136.157;10;0.650111887 192;164.109909;-136;10;0.400482322 192;164.040192;-135.767;10;0.67613255 192;164.01973;-135.653;10;0.329664103 192;164;-135.561;10;0.448052591 192;163.666367;-134;10;0.506269016 192;163.638687;-133.87;10;0.531363962 192;163.620071;-133.62;10;0.109368906 192;163.526657;-132.363;10;0.690646999 192;163.529999;-132;10;0.664892558 192;163.532959;-131.68;10;0.775728803 192;163.55191;-131.552;10;0.020979235 192;163.652893;-130.87;10;0.429358594 192;163.772751;-130;10;0.726058052 192;163.800262;-129.8;10;0.270379921 192;163.852356;-129.422;10;0.313219471 192;164;-128.97;10;0.525302719 192;164.238983;-128.239;10;0.695054502 192;164.317078;-128;10;0.977599738 192;164.359985;-127.869;10;0.968144906 192;164.647858;-127.105;10;0.878557844 192;164.797058;-126.797;10;0.075059781 192;164.87381;-126.639;10;0.191322087 192;165.154037;-126;10;0.498954467 192;165.412048;-125.412;10;0.372678669 192;165.59436;-124.997;10;0.294611041 192;165.699539;-124.764;10;0.129680068 192;165.730011;-124.671;10;0.991722706 192;165.981842;-124;10;0.140168703 192;165.986801;-123.987;10;0.462518669 192;166;-123.952;10;0.397381095 192;166.5327;-122.533;10;0.44671614 192;166.56604;-122.444;10;0.116784227 192;166.643799;-122;10;0.736345252 192;166.707031;-121.639;10;0.719975433 192;166.857147;-120.857;10;0.0982164 192;166.981354;-120.21;10;0.879615071 192;166.987839;-120;10;0.679578587 192;167.016083;-119.084;10;0.858388494 192;167.016663;-119.017;10;0.530712233 192;167.024719;-118.092;10;0.778735105 192;167.016113;-118;10;0.700485784 192;166.916824;-116.944;10;0.855827831 192;166.912003;-116.912;10;0.590954196 192;166.787979;-116.091;10;0.979473179 192;166.755234;-116;10;0.846311785 192;166.43634;-115.114;10;0.254152734 192;166;-114.364;10;0.225406308 192;165.82663;-114.066;10;0.170152601 192;165.765625;-114;10;0.936646598 192;165.061005;-113.241;10;0.476771131 192;164.142899;-112.32;10;0.30080474 192;164;-112.218;10;0.466424934 192;163.791611;-112.068;10;0.285411062 192;163.714478;-112;10;0.168809686 192;162.256714;-110.711;10;0.996612705 192;162.166931;-110.622;10;0.718462253 192;162;-110.369;10;0.138206902 192;161.844009;-110.133;10;0.449765374 192;161.746918;-110;10;0.259221379 192;161.134445;-109.16;10;0.988088097 192;161.105835;-109.106;10;0.207459467 192;161.026443;-108.957;10;0.323068844 192;160.616348;-108;10;0.767259661 192;160.449982;-107.612;10;0.753750659 192;160.406067;-107.188;10;0.56996458 192;160;-106.357;10;0.497650483 192;159.928589;-106.211;10;0.359727401 192;159.873978;-106;10;0.633108642 192;159.829834;-105.83;10;0.415126858 192;159.724045;-105.422;10;0.457156168 192;159.088181;-104.57;10;0.504451018 192;158.854477;-104;10;0.130199709 192;158.657623;-103.52;10;0.827831767 192;158;-102.804;10;0.241961503 192;157.300354;-102.042;10;0.441495673 192;157.260559;-102;10;0.342013524 192;157.127243;-101.86;10;0.444958019 192;156.1548;-101.029;10;0.278191533 192;156.083771;-100.968;10;0.453237012 192;156;-100.899;10;0.115417433 192;154.90097;-100.002;10;0.28886396 192;154.898697;-100;10;0.48337127 192;154.886139;-99.9902;10;0.960026768 192;154;-99.3733;10;0.93956465 192;153.974121;-99.3553;10;0.738729359 192;153.9646;-99.3503;10;0.592403441 192;152.687073;-98.6871;10;0.617094165 192;152;-98.3304;10;0.975010336 192;151.973267;-98.3165;10;0.46121973 192;151.970123;-98.3153;10;0.592863583 192;151.119125;-98;10;0.02368658 192;150;-97.5853;10;0.686480126 192;149.977676;-97.577;10;0.161148765 192;149.970184;-97.575;10;0.839796989 192;149.475662;-97.4757;10;0.304859142 192;148;-97.1792;10;0.676993556 192;147.977081;-97.1746;10;0.617381667 192;147.972244;-97.1738;10;0.423665314 192;147.052582;-97.0526;10;0.747147926 192;146;-96.9138;10;0.40426361 192;145.978577;-96.911;10;0.542663994 192;145.974045;-96.9104;10;0.286765968 192;144.838348;-96.8383;10;0.778844007 192;144;-96.7851;10;0.831550495 192;143.979889;-96.7839;10;0.165126827 192;142.734146;-96.7341;10;0.198934084 192;142;-96.7048;10;0.008537489 192;141.985092;-96.7043;10;0.85723988 192;141.981125;-96.7041;10;0.287084004 192;141.977142;-96.7042;10;0.445861333 192;140.71019;-96.7102;10;0.167651472 192;140;-96.7136;10;0.391037892 192;139.982239;-96.7136;10;0.594913306 192;139.978485;-96.7138;10;0.453444941 192;138.67189;-96.6719;10;0.491119552 192;138;-96.6503;10;0.681223253 192;137.983368;-96.6498;10;0.563868925 192;137.979874;-96.6497;10;0.666690426 192;136.474899;-96.4749;10;0.470231222 192;136;-96.4198;10;0.605755994 192;135.984619;-96.418;10;0.774168589 192;135.981384;-96.4175;10;0.646779877 192;134.078049;-96.078;10;0.119333075 192;134;-96.0641;10;0.524551548 192;133.985901;-96.0616;10;0.634121735 192;133.628906;-96.001;10;0.592093476 192;133.627106;-96;10;0.670463866 192;132;-95.0678;10;0.716629447 192;131.987732;-95.0608;10;0.527334382 192;131.985138;-95.0599;10;0.574145353 192;130.750443;-94.7504;10;0.043446915 192;130;-94.5623;10;0.590005477 192;129.989044;-94.5596;10;0.407097691 192;129.986725;-94.5594;10;0.4636413 192;128.643997;-94.644;10;0.934629506 192;128;-94.6846;10;0.210951283 192;127.989799;-94.6852;10;0.85249585 192;127.987656;-94.6855;10;0.029905229 192;126.999641;-94.9996;10;0.273275394 192;126;-95.3175;10;0.086083165 192;125.990158;-95.3206;10;0.425470724 192;125.537376;-95.5374;10;0.857913251 192;124.571106;-96;10;0.243228768 192;124.184906;-96.1849;10;0.371339995 192;124.000008;-96.2734;10;0.354268976 192;123.992348;-96.2771;10;0.183507202 192;123.990921;-96.2776;10;0.289449476 192;123.988266;-96.2791;10;0.166596481 192;122.957687;-96.9577;10;0.442184623 192;121.999992;-97.5883;10;0.479315194 192;121.990189;-97.5948;10;0.466609678 192;121.780624;-97.7806;10;0.128719843 192;121.533272;-98;10;0.912830636 192;120.720665;-98.7207;10;0.651363943 192;120;-99.3598;10;0.731552178 192;119.991974;-99.3669;10;0.929252358 192;119.989822;-99.3687;10;0.177356759 192;119.988968;-99.3697;10;0.825751846 192;119.710159;-99.7102;10;0.488508906 192;119.472778;-100;10;0.86717085 192;118.809669;-100.81;10;0.600748667 192;118;-101.798;10;0.571911476 192;117.90918;-101.909;10;0.499464648 192;117.836021;-101.998;10;0.896370653 192;117.834915;-102;10;0.635829857 192;117.83432;-102.001;10;0.682974708 192;117.832909;-102.003;10;0.475906307 192;117.126648;-103.127;10;0.190529145 192;116.577652;-104;10;0.929547131 192;116.577103;-104.001;10;0.271201795 192;116.415947;-104.416;10;0.301761638 192;116;-105.487;10;0.42975127 192;115.988335;-105.517;10;0.367839758 192;115.987366;-105.52;10;0.315215726 192;115.986916;-105.523;10;0.092451674 192;115.891357;-105.891;10;0.076394456 192;115.863213;-106;10;0.350801828 192;115.479813;-107.48;10;0.10106605 192;115.345039;-108;10;0.204689096 192;115.34478;-108.001;10;0.780048151 192;115.344917;-108.004;10;0.328199157 192;115.368317;-109.368;10;0.676301775 192;115.379143;-110;10;0.638521168 192;115.379166;-110.001;10;0.088095004 192;115.379547;-110.004;10;0.270094659 192;115.61483;-111.615;10;0.449757886 192;115.671097;-112;10;0.301156624 192;115.671265;-112.001;10;0.077705295 192;116;-113.704;10;0.196691115 192;116.056679;-113.998;10;0.621465215 192;116.057503;-114;10;0.255486571 192;116.059227;-114.005;10;0.380156951 192;116.10041;-114.1;10;0.549767015 192;116.919235;-116;10;0.900928434 192;116.919823;-116.001;10;0.432745894 192;117.978584;-117.633;10;0.599792888 192;118;-117.663;10;0.488871861 192;118.244408;-118;10;0.951086534 192;118.887085;-118.887;10;0.117864496 192;119.693367;-120;10;0.61866324 192;119.971573;-120.384;10;0.759103789 192;119.978065;-120.393;10;0.883857259 192;119.981392;-120.398;10;0.290810663 192;120;-120.428;10;0.920919998 192;120.975204;-122;10;0.736096537 192;120.976265;-122.002;10;0.129843139 192;121.24617;-123.246;10;0.147164814 192;121.408951;-123.997;10;0.636305825 192;121.409607;-124;10;0.520166152 192;121.409958;-124.002;10;0.939155533 192;121.409157;-124.007;10;0.863827998 192;121.24765;-125.248;10;0.773595366 192;121.149734;-126;10;0.407888974 192;121.149498;-126.002;10;0.715622943 192;121.14566;-126.009;10;0.726696361 192;120.815903;-126.816;10;0.952461148 192;120.332062;-128;10;0.335060722 192;120.330521;-128.004;10;0.179829594 192;120.220963;-128.221;10;0.584792467 192;120;-128.659;10;0.497448665 192;119.550392;-129.55;10;0.929115855 192;119.324234;-129.999;10;0.258042466 192;119.323448;-130;10;0.725915575 192;119.322342;-130.002;10;0.225742031 192;119.320221;-130.007;10;0.362760308 192;119.025383;-131.025;10;0.724572976 192;118.743324;-132;10;0.258750161 192;118.742836;-132.002;10;0.306156112 192;118.6604;-132.66;10;0.355926548 192;118.493141;-133.997;10;0.816431485 192;118.49276;-134;10;0.17912488 192;118.492554;-134.002;10;0.238281624 192;118.492447;-134.006;10;0.5842779 192;118.500664;-134.501;10;0.621088375 192;118.525558;-136;10;0.252800842 192;118.525581;-136.002;10;0.002203552 192;118.526245;-136.006;10;0.150758855 192;118.623787;-136.624;10;0.76086588 192;118.841194;-138;10;0.86742372 192;118.841446;-138.002;10;0.002631245 192;118.842941;-138.006;10;0.229026654 192;119.368195;-139.368;10;0.168316369 192;119.61187;-140;10;0.248852904 192;119.975807;-140.944;10;0.286993334 192;119.978134;-140.949;10;0.624340491 192;120;-140.992;10;0.777759824 192;120.516388;-142;10;0.108156898 192;120.517784;-142.003;10;0.461017327 192;120.654434;-142.654;10;0.832375736 192;120.93618;-143.998;10;0.880754811 192;120.936661;-144;10;0.193308395 192;120.937065;-144.002;10;0.756443328 192;120.936188;-144.005;10;0.6190015 192;120.767929;-144.768;10;0.547089997 192;120.496117;-146;10;0.429911462 192;120.495956;-146.001;10;0.971621424 192;120.240143;-146.24;10;0.605364682 192;120;-146.465;10;0.256931649 192;119.207001;-147.207;10;0.858645541 192;118.359642;-148;10;0.023355867 192;118.173859;-148.174;10;0.732082916 192;118;-148.337;10;0.031332596 192;117.986069;-148.35;10;0.845506905 192;117.982353;-148.354;10;0.35225754 192;117.978638;-148.356;10;0.902049903 192;116.904572;-148.905;10;0.435277105 192;116;-149.366;10;0.789340603 192;115.983803;-149.375;10;0.837922773 192;115.529518;-149.53;10;0.037247459 192;114.150436;-150;10;0.734866853 192;114.147285;-150.001;10;0.021795235 192;114.144096;-150.002;10;0.523777836 192;114.032364;-150.032;10;0.518723195 192;113.999992;-150.041;10;0.377613754 192;112.459251;-150.459;10;0.936591686 192;112;-150.584;10;0.614393205 192;111.986153;-150.588;10;0.119539731 192;111.983223;-150.588;10;0.012278979 192;110.76947;-150.769;10;0.464142353 192;110;-150.884;10;0.485335621 192;109.987122;-150.886;10;0.816540294 192;109.984406;-150.887;10;0.237541258 192;108.966629;-150.967;10;0.0635848 192;108;-151.043;10;0.543924544 192;107.987984;-151.044;10;0.970195461 192;107.985451;-151.044;10;0.041568094 192;107.066139;-151.066;10;0.654372607 192;106.000008;-151.092;10;0.888767832 192;105.988777;-151.092;10;0.678054082 192;105.986412;-151.092;10;0.249848726 192;105.106384;-151.106;10;0.558172779 192;104;-151.124;10;0.976333361 192;103.989525;-151.124;10;0.149720083 192;103.98732;-151.124;10;0.049483913 192;103.177605;-151.178;10;0.080886207 192;102;-151.255;10;0.494977864 192;101.990295;-151.256;10;0.020533896 192;101.988258;-151.256;10;0.792714822 192;101.353355;-151.353;10;0.825131854 192;100;-151.56;10;0.780943902 192;99.991104;-151.562;10;0.139500786 192;99.667557;-151.668;10;0.985632429 192;98.652451;-152;10;0.565805488 192;98.160957;-152.161;10;0.234296175 192;98;-152.214;10;0.933888011 192;97.993706;-152.216;10;0.701545082 192;97.99218;-152.216;10;0.692333259 192;97.990326;-152.218;10;0.144909688 192;96.998993;-152.999;10;0.699106273 192;96;-153.786;10;0.567286857 192;95.880508;-153.881;10;0.456963579 192;95.728508;-154;10;0.757366018 192;95.727104;-154.002;10;0.610343636 192;94.975128;-154.975;10;0.17862987 192;94.183014;-156;10;0.381213813 192;94.18251;-156.001;10;0.251569144 192;94.18119;-156.002;10;0.367027682 192;94.0811;-156.081;10;0.327626293 192;94;-156.146;10;0.562475545 192;92.966606;-156.967;10;0.98417617 192;92;-157.735;10;0.923510124 192;91.995552;-157.738;10;0.618932786 192;91.807686;-157.808;10;0.371395101 192;91.288086;-158;10;0.858465578 192;90.347954;-158.348;10;0.419492844 192;90;-158.477;10;0.32654612 192;89.997009;-158.478;10;0.96623896 192;89.996353;-158.478;10;0.033420589 192;89.99559;-158.478;10;0.729790412 192;88.70517;-158.705;10;0.901241627 192;88;-158.829;10;0.798844516 192;87.996864;-158.83;10;0.582333479 192;87.996208;-158.83;10;0.250319857 192;86.890266;-158.89;10;0.203353845 192;86;-158.939;10;0.467716693 192;85.997269;-158.939;10;0.735811714 192;85.996689;-158.939;10;0.991209455 192;84.943893;-158.944;10;0.953597619 192;84;-158.948;10;0.084546773 192;83.997627;-158.948;10;0.126647477 192;83.997124;-158.948;10;0.924236784 192;82.896042;-158.896;10;0.935556199 192;82;-158.854;10;0.456223035 192;81.997932;-158.853;10;0.668802531 192;81.99749;-158.853;10;0.469103319 192;80.742508;-158.743;10;0.977956769 192;80;-158.677;10;0.411794225 192;79.998199;-158.677;10;0.966304646 192;79.997597;-158.677;10;0.838969775 192;78.298386;-158.298;10;0.461244329 192;77.999985;-158.232;10;0.694491585 192;76.957848;-158;10;0.463735315 192;76.957245;-157.999;10;0.060333773 192;76;-156.911;10;0.706949417 192;75.998405;-156.909;10;0.633192275 192;75.106903;-156;10;0.816560659 192;75.098877;-155.099;10;0.684087537 192;75.089096;-154.001;10;0.612810781 192;75.089035;-154;10;0.666752324 192;75.090118;-153.997;10;0.437687623 192;75.285408;-153.285;10;0.423236799 192;75.502289;-152.496;10;0.021889378 192;75.63266;-152;10;0.825409155 192;75.789803;-151.79;10;0.705068642 192;75.997383;-151.512;10;0.800079777 192;76;-151.508;10;0.618809139 192;76.616829;-150.617;10;0.189984897 192;77.039581;-150.006;10;0.654038319 192;77.042877;-150.001;10;0.132210158 192;77.043465;-150;10;0.694368163 192;77.455223;-149.455;10;0.903475237 192;78;-148.734;10;0.530549092 192;78.316177;-148.316;10;0.071883906 192;78.384995;-148.225;10;0.123407894 192;78.523651;-148;10;0.443433755 192;78.915688;-147.081;10;0.663036234 192;78.971443;-146.971;10;0.235351383 192;79.46759;-146;10;0.639095364 192;79.660439;-145.665;10;0.082822132 192;79.661385;-145.661;10;0.7842563 192;79.995232;-144.26;10;0.054200013 192;80;-144.243;10;0.30245849 192;80.044022;-144.082;10;0.973481993 192;80.048988;-144.049;10;0.698978756 192;80.056412;-144;10;0.26331833 192;80.106857;-143.777;10;0.951446691 192;80.448418;-142.448;10;0.769670444 192;80.563705;-142;10;0.983233778 192;80.564003;-141.999;10;0.637175456 192;80.953575;-140.954;10;0.22483329 192;81.308807;-140;10;0.755679249 192;81.308815;-140;10;0.536233898 192;81.308861;-139.999;10;0.83800048 192;81.385017;-139.385;10;0.75356375 192;81.55687;-138;10;0.833259587 192;81.556725;-138;10;0.821722644 192;81.342819;-137.343;10;0.748887248 192;80.906494;-136.002;10;0.987257681 192;80.905991;-136;10;0.383151143 192;80.9058;-136;10;0.619704375 192;80.905457;-135.999;10;0.153442315 192;80.902573;-135.994;10;0.833204908 192;80.098221;-134.325;10;0.067077475 192;80;-134.232;10;0.941046129 192;79.75386;-134;10;0.285983807 192;79.67009;-133.921;10;0.052760765 192;79.306007;-133.306;10;0.548426421 192;78.536415;-132.006;10;0.160269353 192;78.53315;-132;10;0.497635166 192;78.532837;-131.999;10;0.145747242 192;78.531113;-131.996;10;0.506689355 192;78;-130.943;10;0.512055486 192;77.727234;-130.402;10;0.77566229 192;77.430222;-130;10;0.288013738 192;76.720749;-128.721;10;0.624029493 192;76.323265;-128.004;10;0.059971685 192;76.321327;-128;10;0.092627165 192;76.319618;-127.997;10;0.719963063 192;76;-127.12;10;0.137115952 192;75.995735;-127.108;10;0.903155847 192;75.603188;-126.461;10;0.115403631 192;75.377174;-126;10;0.17051617 192;74.734566;-124.735;10;0.379095682 192;74.363281;-124.003;10;0.401883844 192;74.361435;-124;10;0.146524684 192;74.36116;-124;10;0.894330981 192;74.360321;-123.997;10;0.740801136 192;74;-123.228;10;0.2378352 192;73.582008;-122.335;10;0.34283782 192;73.478874;-122;10;0.914688973 192;73.446198;-121.446;10;0.050254488 192;73.361015;-120.002;10;0.670735509 192;73.360703;-120;10;0.382983008 192;73.361359;-119.997;10;0.453904261 192;73.435669;-119.436;10;0.866416391 192;73.569;-118.429;10;0.756746358 192;73.676094;-118;10;0.630368112 192;73.700806;-117.901;10;0.253494837 192;73.764725;-117.765;10;0.252284666 192;74;-117.263;10;0.450913395 192;74.402992;-116.403;10;0.069691314 192;74.590492;-116.003;10;0.096941977 192;74.591438;-116.001;10;0.581131677 192;74.591667;-116;10;0.943180344 192;75.000465;-115;10;0.039972203 192;75.409576;-114;10;0.190347625 192;75.409744;-113.999;10;0.816351858 192;75.412468;-113.412;10;0.542617118 192;75.416328;-112.582;10;0.85721242 192;75.497299;-112;10;0.002808609 192;75.253029;-111.253;10;0.814715783 192;74.843658;-110.001;10;0.824267085 192;74.843163;-110;10;0.005315823 192;73.999924;-109.363;10;0.739267885 192;72.19429;-108;10;0.976926433 192;71.999992;-107.939;10;0.556513763 192;71.910217;-107.91;10;0.731024391 192;69.999634;-107.306;10;0.811424825 192;69.07869;-107.079;10;0.058520779 192;67.999817;-106.812;10;0.032451779 192;66.454056;-106.454;10;0.061851377 192;66;-106.349;10;0.786846797 192;64.493172;-106;10;0.968680833 192;64;-105.869;10;0.264780873 192;63.821472;-105.821;10;0.423517365 192;62.000004;-105.337;10;0.678143933 192;61.12077;-105.121;10;0.813409034 192;60;-104.845;10;0.698107883 192;58.641785;-104.642;10;0.514491963 192;58;-104.546;10;0.006210931 192;56.524086;-104.524;10;0.672589107 192;56;-104.516;10;0.616144304 192;54.652622;-104.653;10;0.883633567 192;54;-104.719;10;0.954741761 192;52.981777;-104.982;10;0.162939193 192;52;-105.235;10;0.630535448 192;51.497875;-105.498;10;0.516560242 192;50.536953;-106;10;0.866563153 192;50.277775;-106.278;10;0.446313171 192;50;-106.575;10;0.432067064 192;49.312405;-107.312;10;0.955574823 192;48.670837;-108;10;0.248761127 192;48.475407;-108.475;10;0.457888223 192;48;-109.632;10;0.369833551 192;47.956608;-109.957;10;0.903016845 192;47.950809;-110;10;0.083656148 192;47.72086;-111.721;10;0.159919999 192;47.683559;-112;10;0.159681721 192;47.679295;-113.679;10;0.41967422 192;47.678482;-114;10;0.855062914 192;47.64558;-115.646;10;0.143911199 192;47.638496;-116;10;0.747631671 192;47.567173;-116.475;10;0.155054871 192;47.360939;-117.361;10;0.98155592 192;47.212234;-118;10;0.099525552 192;47.030792;-119.031;10;0.137485203 192;46.860191;-120;10;0.234111311 192;46.731441;-120.731;10;0.782067368 192;46.68417;-121;10;0.040207614 192;46.310425;-122;10;0.980171889 192;46.225971;-122.226;10;0.423886228 192;46;-122.831;10;0.021402603 192;45.68185;-123.682;10;0.37475774 192;45.562946;-124;10;0.4358063 192;45.119194;-125.119;10;0.479498301 192;44.769958;-126;10;0.090515477 192;44.6096;-126.61;10;0.739398236 192;44.243847;-128;10;0.677049836 192;44.248081;-128.248;10;0.309483725 192;44.277988;-130;10;0.498377343 192;44.765263;-130.765;10;0.291991401 192;45.551472;-132;10;0.38279003 192;45.999958;-132.704;10;0.282457298 192;46.777695;-134;10;0.562792668 192;47.1796;-135.18;10;0.106109991 192;47.259003;-135.413;10;0.948327192 192;47.447594;-136;10;0.550283669 192;47.555317;-136.444;10;0.300309638 192;47.6661;-137.666;10;0.363962454 192;47.696381;-138;10;0.728681553 192;47.80101;-138.413;10;0.545352459 192;48;-139.799;10;0.276550563 192;48.028805;-140;10;0.840918462 192;48.028519;-140.029;10;0.575142581 192;48.008614;-142;10;0.528978155 192;48.008526;-142.009;10;0.616228088 192;48.000004;-142.853;10;0.067803788 192;47.999928;-142.86;10;0.745071703 192;47.643085;-143.643;10;0.659327161 192;47.480415;-144;10;0.037046607 192;46.699932;-144.7;10;0.118849457 192;46.000004;-145.328;10;0.410395345 192;45.645515;-145.646;10;0.729437055 192;45.250225;-146;10;0.19605728 192;44.385479;-146.385;10;0.599322718 192;44;-146.557;10;0.08919033 192;42.712353;-146.712;10;0.444004128 192;42;-146.798;10;0.434533451 192;40.65144;-146.651;10;0.974114415 192;40;-146.668;10;0.47165965 192;39.388149;-146.612;10;0.968854488 192;38.191196;-146.191;10;0.866613117 192;38;-146.124;10;0.917067921 192;37.647152;-146;10;0.058050992 192;36;-145.393;10;0.011392437 192;34.841381;-144.841;10;0.846766442 192;34;-144.441;10;0.363968714 192;33.218121;-144;10;0.761892875 192;32;-143.313;10;0.423130212 192;30.575848;-142.576;10;0.195527032 192;30;-142.298;10;0.320463632 192;29.131189;-142;10;0.034309042 192;28.242201;-141.7;10;0.904294702 192;28;-141.627;10;0.921107394 192;27.569143;-141.569;10;0.000347003 192;26;-141.39;10;0.438383525 192;25.389576;-141.39;10;0.173229402 192;24;-141.47;10;0.38228014 192;23.532249;-141.532;10;0.016211917 192;22;-141.857;10;0.423648047 192;21.912609;-141.874;10;0.387622211 192;21.882807;-141.883;10;0.200558689 192;21.493338;-142;10;0.704755178 192;20.404747;-142.405;10;0.319943501 192;20;-142.555;10;0.777580991 192;19.125259;-143.125;10;0.623401844 192;18;-143.859;10;0.621491813 192;17.914349;-143.914;10;0.829149367 192;17.782909;-144;10;0.105306219 192;17.028923;-145.029;10;0.88983494 192;16.317326;-146;10;0.093090565 192;16.272081;-146.272;10;0.158461546 192;16;-147.908;10;0.830942288 192;15.986918;-147.987;10;0.272126073 192;15.984743;-148;10;0.204961656 192;15.894481;-149.894;10;0.05403484 192;15.889453;-150;10;0.968629162 192;15.851161;-150.149;10;0.711149717 192;15.719141;-151.719;10;0.945681819 192;15.695528;-152;10;0.37651538 192;14.924525;-152.925;10;0.805854439 192;14.027638;-154;10;0.705970134 192;14.015071;-154.015;10;0.578836567 192;14;-154.033;10;0.535103916 192;12.322412;-154.322;10;0.504455233 192;12;-154.378;10;0.672440553 192;10.330423;-154.33;10;0.130628988 192;10;-154.321;10;0.26766611 192;8.259051;-154.259;10;0.130335522 192;8;-154.25;10;0.405877799 192;6.182737;-154.114;10;0.267610422 192;6.096715;-154.097;10;0.687243379 192;6;-154.078;10;0.745944678 192;4.163216;-154.163;10;0.92402035 192;4;-154.171;10;0.981360599 192;2.384132;-154.384;10;0.21215337 192;2;-154.435;10;0.860611782 192;0.737046;-154.737;10;0.303440266 192;0;-154.913;10;0.139762963 192;87.126801;-100;10;0.496172854 192;86.643539;-98.6435;10;0.190997335 192;86.414192;-98;10;0.810611788 192;87.059578;-97.0596;10;0.524177065 192;87.786713;-96;10;0.776672193 192;87.943451;-95.9435;10;0.016265868 192;88;-95.923;10;0.68664772 192;89.412384;-95.4124;10;0.761662758 192;89.999428;-95.2001;10;0.101712169 192;90;-95.2;10;0.084774197 192;90.986809;-94.9868;10;0.410571335 192;91.999344;-94.7679;10;0.039903881 192;92;-94.7679;10;0.126120058 192;92.783913;-94.7837;10;0.132511666 192;93.998772;-94.8085;10;0.941475547 192;93.9991;-94.8083;10;0.184750175 192;94.000031;-94.8084;10;0.644791156 192;94.964851;-94.9646;10;0.249336764 192;95.998253;-95.1321;10;0.502546022 192;95.998741;-95.1324;10;0.901693832 192;95.999466;-95.1329;10;0.81492694 192;95.999725;-95.1333;10;0.402256283 192;97.763016;-95.763;10;0.152353228 192;98;-95.8477;10;0.056294126 192;98.426331;-96;10;0.68792735 192;98.429848;-96.0013;10;0.246119032 192;99.020988;-97.021;10;0.3989469 192;99.588646;-98;10;0.438704166 192;99.217979;-99.218;10;0.306821 192;99.217148;-99.2207;10;0.785326553 192;99.089684;-100;10;0.139455672 192;98.639526;-100.64;10;0.294570535 192;98;-101.548;10;0.734043114 192;97.996193;-101.553;10;0.558499974 192;97.730621;-101.731;10;0.811748652 192;97.327583;-102;10;0.494932777 192;96.53186;-102.532;10;0.951572156 192;96;-102.887;10;0.600011655 192;95.9991;-102.888;10;0.471614878 192;95.996208;-102.89;10;0.07692172 192;95.994507;-102.891;10;0.824060768 192;95.13353;-103.134;10;0.864115437 192;94;-103.452;10;0.412092446 192;93.996513;-103.453;10;0.366964072 192;93.2444;-103.244;10;0.277198704 192;92.859573;-103.137;10;0.414509898 192;92;-103.186;10;0.657429665 192;91.996971;-103.187;10;0.731588195 192;90.944138;-102.944;10;0.035071325 192;90;-102.727;10;0.465831386 192;89.998604;-102.726;10;0.978711636 192;89.997658;-102.726;10;0.953718489 192;88.83802;-102;10;0.938307717 192;88.000008;-101.373;10;0.100514061 192;87.999374;-101.372;10;0.244360138 192;87.998398;-101.372;10;0.027661697 192;87.232605;-100.297;10;0.999966335 192;76.321327;-128;10;0.736445237 192;76.320969;-128;10;0.412590228 248;397.99527;-155.003;13;0.70990019 248;397.994293;-155.003;13;0.72902109 248;396.560303;-154.56;13;0.675099433 248;396;-154.387;13;0.169090476 248;395.99527;-154.386;13;0.899378616 248;394.470032;-154;13;0.964274688 248;394.469055;-154;13;0.397729474 248;394.468445;-154;13;0.860716645 248;394;-153.91;13;0.156361328 248;393.888641;-153.889;13;0.777873495 248;392;-153.526;13;0.94973205 248;391.99649;-153.525;13;0.026849096 248;391.995544;-153.525;13;0.014104558 248;391.472198;-153.472;13;0.836609959 248;390;-153.324;13;0.257228488 248;389.996674;-153.323;13;0.656203007 248;389.995789;-153.323;13;0.021148384 248;389.994904;-153.323;13;0.710074354 248;389.296692;-153.297;13;0.527058162 248;388;-153.247;13;0.728384389 248;387.996124;-153.247;13;0.557583287 248;387.9953;-153.247;13;0.943570884 248;387.264587;-153.265;13;0.181176283 248;386;-153.294;13;0.115698629 248;385.996521;-153.295;13;0.684917934 248;385.995789;-153.295;13;0.540136641 248;385.357178;-153.357;13;0.706075308 248;384;-153.49;13;0.934608221 248;383.996948;-153.49;13;0.502512127 248;383.996063;-153.49;13;0.889103959 248;383.561554;-153.562;13;0.196947413 248;382;-153.817;13;0.776432628 248;381.997192;-153.817;13;0.128125263 248;381.850342;-153.85;13;0.216366943 248;381.183655;-154;13;0.376256836 248;380.21698;-154.217;13;0.967976583 248;380;-154.266;13;0.382264717 248;379.997894;-154.266;13;0.35994482 248;379.997467;-154.266;13;0.578891113 248;378.558502;-154.558;13;0.279418983 248;378;-154.672;13;0.329652492 248;377.998291;-154.672;13;0.375572096 248;377.997925;-154.672;13;0.175868605 248;376.832825;-154.833;13;0.226348534 248;376;-154.948;13;0.527411918 248;375.998627;-154.948;13;0.489346593 248;375.998352;-154.948;13;0.644169561 248;375.024902;-155.025;13;0.949081664 248;374;-155.106;13;0.612393865 248;373.998871;-155.106;13;0.38600158 248;373.114868;-155.115;13;0.275128801 248;372;-155.126;13;0.293129973 248;371.999084;-155.126;13;0.453296982 248;371.130005;-155.13;13;0.934798655 248;370;-155.135;13;0.79962562 248;369.999237;-155.135;13;0.70202178 248;369.147064;-155.147;13;0.238238483 248;368;-155.163;13;0.072973494 248;367.99942;-155.163;13;0.068183024 248;367.162231;-155.162;13;0.045666512 248;366;-155.161;13;0.386009263 248;365.999542;-155.161;13;0.88356194 248;365.148773;-155.149;13;0.290571605 248;363.999664;-155.132;13;0.802638281 248;363.036804;-155.037;13;0.649773483 248;361.999725;-154.935;13;0.081307835 248;360.169556;-154.17;13;0.722654773 248;360;-154.099;13;0.820487151 248;359.764008;-154;13;0.578382943 248;357.999725;-153.262;13;0.514472794 248;357.092896;-152;13;0.317209313 248;356.968872;-150.969;13;0.083611259 248;356.852356;-150;13;0.760576146 248;356.903687;-148.904;13;0.438299454 248;356.945953;-148;13;0.091305384 248;357.084747;-147.085;13;0.05858841 248;357.24884;-146;13;0.597357124 248;357.406769;-145.407;13;0.385807011 248;357.781067;-144;13;0.705877661 248;357.863892;-143.864;13;0.912104096 248;357.997375;-143.644;13;0.71973557 248;358;-143.639;13;0.177215837 248;358.527466;-142.527;13;0.00323963 248;358.77771;-142;13;0.827195871 248;358.778198;-142;13;0.31432086 248;359.224396;-141.224;13;0.115691604 248;359.929047;-140;13;0.897281462 248;359.954895;-139.955;13;0.301206135 248;360;-139.876;13;0.933867443 248;360.029846;-139.823;13;0.527177522 248;360.58316;-138.583;13;0.624176749 248;360.843231;-138;13;0.348197988 248;360.843628;-137.999;13;0.711254794 248;361.085754;-137.086;13;0.902623243 248;361.373383;-136;13;0.321999161 248;361.373383;-136;13;0.937154223 248;361.373383;-135.999;13;0.696061913 248;361.339966;-135.34;13;0.822358798 248;361.272095;-134.001;13;0.723005919 248;361.271881;-134;13;0.466380332 248;361.271301;-133.999;13;0.053880862 248;360.651062;-132.651;13;0.697618113 248;360.351379;-132;13;0.596712604 248;360;-131.237;13;0.569158907 248;359.992554;-131.22;13;0.169103196 248;359.072479;-130.002;13;0.239914887 248;359.071564;-130;13;0.415602042 248;359.068756;-129.995;13;0.036894598 248;358.263;-128.445;13;0.058273097 248;358.106506;-128.107;13;0.966038242 248;358.057495;-128.001;13;0.975935643 248;358.057373;-128;13;0.116610726 248;358;-127.745;13;0.087637833 248;357.957489;-127.556;13;0.965647468 248;357.723358;-126.007;13;0.443019951 248;357.722321;-126.001;13;0.957330312 248;357.722321;-126;13;0.339978225 248;357.72229;-125.999;13;0.84456065 248;357.721252;-125.721;13;0.294150626 248;357.714661;-124.001;13;0.813262946 248;357.714569;-124;13;0.901500982 248;357.658295;-123.658;13;0.360519932 248;357.385712;-122.003;13;0.006634891 248;357.385315;-122.001;13;0.599876483 248;357.384979;-122;13;0.761174894 248;356.766174;-120.766;13;0.321773278 248;356.383179;-120.003;13;0.752591755 248;356.382202;-120.001;13;0.6694168 248;356.381622;-120;13;0.721265656 248;356.380737;-119.999;13;0.138422917 248;356;-119.446;13;0.848958122 248;355.004456;-118.001;13;0.126625599 248;355.004028;-118;13;0.854840329 248;354;-116.52;13;0.111760079 248;353.991943;-116.509;13;0.848204623 248;353.990814;-116.507;13;0.207663413 248;353.990051;-116.505;13;0.272491806 248;353.724792;-116;13;0.6574728 248;353.420319;-115.42;13;0.169590547 248;352.674591;-114.001;13;0.743337239 248;352.674469;-114;13;0.657982855 248;352.290009;-112.29;13;0.632935356 248;352.225311;-112.002;13;0.883891027 248;352.225037;-112.001;13;0.19992986 248;352.224945;-112;13;0.793758626 248;352.223969;-111.99;13;0.471442679 248;352.081848;-110.082;13;0.472501683 248;352.075745;-110;13;0.884591794 248;352;-108.983;13;0.754182769 248;351.99234;-108.88;13;0.925476083 248;351.991577;-108.874;13;0.540987125 248;351.991211;-108.872;13;0.944582883 248;351.88327;-108;13;0.765528601 248;351.86676;-107.867;13;0.871253831 248;351.635712;-106.001;13;0.948352127 248;351.63562;-106;13;0.056035615 248;351.559479;-105.559;13;0.785510895 248;351.290283;-104.002;13;0.11129756 248;351.289917;-104.001;13;0.639296572 248;351.289764;-104;13;0.124063239 248;351.041779;-103.042;13;0.079285701 248;350.772583;-102.002;13;0.631145715 248;350.772247;-102;13;0.360415381 248;350.772095;-102;13;0.523489413 248;350.767853;-101.987;13;0.649991796 248;350.163849;-100.164;13;0.540253366 248;350.109711;-100;13;0.80780232 248;350.109528;-100;13;0.354624888 248;350;-99.7614;13;0.718241536 248;349.994385;-99.7492;13;0.17965401 248;349.217224;-98.011;13;0.770647608 248;349.212433;-98.0005;13;0.890168394 248;349.212067;-98;13;0.203623578 248;348;-96.3574;13;0.696771851 248;347.995697;-96.3516;13;0.441939624 248;347.689362;-96;13;0.248937678 248;347.687469;-95.9978;13;0.909602146 248;346;-94.79;13;0.62465886 248;345.996613;-94.7876;13;0.740501593 248;345.995911;-94.7872;13;0.611946809 248;344.265839;-94.0005;13;0.283864205 248;344.265259;-94;13;0.152927653 248;344.26413;-94;13;0.635121106 248;344;-93.9332;13;0.685302885 248;343.910614;-93.9106;13;0.052982949 248;342;-93.4275;13;0.802619317 248;341.997406;-93.4269;13;0.365654448 248;341.345551;-93.3456;13;0.206102067 248;340;-93.1777;13;0.103684647 248;339.998291;-93.1775;13;0.472331449 248;339.997833;-93.1775;13;0.645108965 248;339.121521;-93.1214;13;0.968472873 248;338;-93.0498;13;0.554277677 248;337.998566;-93.0497;13;0.98285522 248;337.998322;-93.0498;13;0.17009389 248;337.050293;-93.0502;13;0.699727901 248;336;-93.0507;13;0.760757959 248;335.998871;-93.0507;13;0.953780819 248;335.098938;-93.0988;13;0.665202922 248;334;-93.1576;13;0.183177567 248;333.999115;-93.1577;13;0.871754336 248;333.20813;-93.2081;13;0.784668095 248;332;-93.2851;13;0.778579669 248;331.999329;-93.2851;13;0.440022474 248;331.337891;-93.3378;13;0.630445793 248;330;-93.4445;13;0.059932912 248;329.999512;-93.4445;13;0.531163975 248;329.49881;-93.4988;13;0.630895922 248;327.999664;-93.6612;13;0.358614925 248;327.998901;-93.6613;13;0.739906846 248;327.706268;-93.7063;13;0.303842958 248;325.999756;-93.9684;13;0.976662725 248;325.975525;-93.9755;13;0.052728319 248;325.893005;-94;13;0.058888896 248;325.814972;-94.0231;13;0.93328059 248;324.411285;-94.4113;13;0.19375504 248;323.999878;-94.525;13;0.105360286 248;322.94165;-94.9417;13;0.290114622 248;321.999908;-95.3124;13;0.847636195 248;321.523682;-95.5237;13;0.760338277 248;320.449982;-96;13;0.597028634 248;320.165924;-96.1659;13;0.28024109 248;320;-96.2628;13;0.044554632 248;318.903381;-96.9034;13;0.524016924 248;317.999969;-97.4311;13;0.781486355 248;317.624481;-97.6245;13;0.649558055 248;316.895569;-98;13;0.339925274 248;316.447113;-98.4471;13;0.459850651 248;316;-98.8929;13;0.376071627 248;315.437439;-99.4374;13;0.742648901 248;314.856323;-100;13;0.399906216 248;314.777496;-100.778;13;0.360609764 248;314.653595;-102;13;0.222294669 248;314.920624;-102.921;13;0.585804064 248;315.233704;-104;13;0.068297728 248;315.504425;-104.495;13;0.201409739 248;315.999878;-105.744;13;0.050697889 248;316.070496;-106;13;0.863769222 248;316.097351;-106.097;13;0.465223708 248;316.622009;-108;13;0.994447214 248;316.682465;-108.683;13;0.409581418 248;316.799194;-110;13;0.41432798 248;316.699493;-110.7;13;0.35616474 248;316.514038;-112;13;0.427818994 248;316.340057;-112.34;13;0.311295451 248;316;-113.005;13;0.82919038 248;316;-113.005;13;0.730492385 248;315.764374;-113.527;13;0.469545197 248;315.709717;-113.71;13;0.558263504 248;315.622711;-114;13;0.544248387 248;315.459839;-114.54;13;0.536739893 248;315.179108;-115.179;13;0.79561891 248;314.818573;-116;13;0.044432049 248;314.679962;-116.68;13;0.886588907 248;314.410828;-118;13;0.532831263 248;314.395477;-118.395;13;0.48208463 248;314.33316;-120;13;0.868007385 248;314.339081;-120.339;13;0.113255431 248;314.344543;-120.652;13;0.905511725 248;314.479462;-122;13;0.134304188 248;314.604004;-122.604;13;0.944296269 248;314.891815;-124;13;0.1430218 248;315.245911;-125.246;13;0.298690922 248;315.460236;-126;13;0.897208365 248;315.999908;-127.451;13;0.523706457 248;316.257233;-128;13;0.187200406 248;316.484406;-128.484;13;0.838576816 248;317.19519;-130;13;0.594146755 248;317.999939;-131.422;13;0.455270339 248;318.312317;-132;13;0.605020736 248;318.679077;-132.679;13;0.885896784 248;319.392456;-134;13;0.686843972 248;319.707397;-135.707;13;0.988802073 248;319.761383;-136;13;0.63839494 248;319.29483;-137.295;13;0.568883154 248;319.040741;-138;13;0.107641092 248;318.638794;-138.639;13;0.179841801 248;318;-139.654;13;0.27643232 248;317.866394;-139.866;13;0.327742405 248;317.782318;-140;13;0.107743613 248;317.035004;-141.035;13;0.041303321 248;316.338196;-142;13;0.181339554 248;316.173096;-142.173;13;0.150000394 248;316;-142.355;13;0.188190519 248;315.196838;-143.197;13;0.168514528 248;314.430908;-144;13;0.034463469 248;314.220581;-144.221;13;0.197802695 248;314;-144.452;13;0.456373795 248;313.089508;-145.09;13;0.513499224 248;312;-145.853;13;0.117145771 248;311.898285;-145.898;13;0.609376328 248;311.672211;-146;13;0.936818843 248;310.518921;-146.519;13;0.412434554 248;310;-146.752;13;0.391671751 248;309.00238;-147.002;13;0.138709784 248;308;-147.254;13;0.85794021 248;307.350861;-147.351;13;0.504916933 248;306;-147.553;13;0.3991973 248;305.601715;-147.602;13;0.250805854 248;304;-147.796;13;0.757311801 248;303.820435;-147.82;13;0.505188502 248;303.399841;-147.878;13;0.635951503 248;302.219055;-148;13;0.396061567 248;302.024414;-148.024;13;0.179506539 248;302;-148.027;13;0.883436573 248;300.30899;-148.309;13;0.005644236 248;300;-148.36;13;0.865525328 248;298.617584;-148.618;13;0.276817699 248;298;-148.732;13;0.468538475 248;296.935425;-148.935;13;0.162553988 248;296;-149.114;13;0.930855109 248;295.233093;-149.233;13;0.085784905 248;294;-149.425;13;0.846017165 248;293.480072;-149.48;13;0.875996095 248;292;-149.637;13;0.90471051 248;291.656494;-149.657;13;0.323859134 248;290;-149.751;13;0.049123705 248;289.746552;-149.747;13;0.04770105 248;288;-149.716;13;0.322678904 248;287.472412;-149.383;13;0.74770822 248;287.374146;-149.374;13;0.116996539 248;286;-149.253;13;0.566171891 248;284.602173;-148;13;0.299326739 248;284.088928;-146.089;13;0.977322205 248;284.08371;-146.07;13;0.3776188 248;284.055389;-146;13;0.502605313 248;284.046143;-145.916;13;0.738945584 248;284.072723;-144.073;13;0.244317217 248;284.073761;-144;13;0.849577933 248;284.185699;-142.186;13;0.373054272 248;284.197174;-142;13;0.771346143 248;284.16983;-141.632;13;0.477253732 248;284.15097;-140.151;13;0.986652802 248;284.149048;-140;13;0.533561341 248;284;-139.545;13;0.28225938 248;283.493317;-138;13;0.25229572 248;282.908356;-136.908;13;0.392260665 248;282.4216;-136;13;0.544518302 248;282;-135.495;13;0.689278527 248;280.752136;-134;13;0.054317798 248;280;-133.369;13;0.037249044 248;278.366608;-132;13;0.839806826 248;278;-131.723;13;0.219515172 248;276.871216;-130.871;13;0.134502916 248;276;-130.214;13;0.897479131 248;275.717041;-130;13;0.596978292 248;274;-128.841;13;0.230899641 248;272.381683;-128;13;0.534133524 248;272.001007;-127.802;13;0.639460648 248;272;-127.802;13;0.163682145 248;271.998688;-127.801;13;0.048869217 248;271.664276;-127.664;13;0.171111314 248;270.00177;-126.982;13;0.277012219 248;270;-126.982;13;0.119713956 248;269.971802;-126.974;13;0.871004625 248;268.494476;-126.494;13;0.46177913 248;268.004486;-126.335;13;0.712852333 248;268;-126.334;13;0.896937412 248;266.620361;-126;13;0.44489425 248;266.082092;-125.87;13;0.818018741 248;266.018219;-125.85;13;0.584262411 248;266.001282;-125.848;13;0.874440991 248;266;-125.848;13;0.623510269 248;265.787537;-125.788;13;0.793321742 248;264.015137;-125.283;13;0.057353486 248;264;-125.278;13;0.620710413 248;262.946716;-124.947;13;0.358727358 248;262.016144;-124.654;13;0.633446017 248;262.002289;-124.647;13;0.918181177 248;262;-124.646;13;0.865508839 248;260.734161;-124;13;0.812079043 248;260.001282;-123.626;13;0.02528187 248;260;-123.625;13;0.449480875 248;258.27832;-122.005;13;0.803430624 248;258.272766;-122;13;0.823909487 248;258.173828;-121.907;13;0.765030832 248;258.000031;-121.796;13;0.638319802 248;257.594513;-121.595;13;0.412413693 248;256;-120.801;13;0.850040551 248;254.321594;-120.322;13;0.232687734 248;253.999985;-120.23;13;0.232545692 248;252.106125;-120.106;13;0.152728389 248;252.09848;-120.106;13;0.000526399 248;252;-120.112;13;0.40813763 248;250.676056;-120.676;13;0.292395798 248;250;-120.964;13;0.656890453 248;250.804016;-122;13;0.952186229 248;252;-123.541;13;0.673962501 248;252.291748;-124;13;0.019182506 248;252.801712;-124.802;13;0.888582142 248;253.563919;-126;13;0.260533076 248;253.999985;-126.686;13;0.749126045 248;253.666321;-127.666;13;0.849313638 248;253.552811;-128;13;0.588028133 248;252.887466;-128.887;13;0.134665025 248;252.053406;-130;13;0.392286705 248;252.030518;-130.031;13;0.984613831 248;252;-130.071;13;0.393216551 248;251.60463;-130.461;13;0.21927987 248;251.096527;-131.097;13;0.049130464 248;250.374512;-132;13;0.421026492 248;250.179001;-132.179;13;0.287156333 248;250;-132.343;13;0.970018807 248;249.134903;-133.135;13;0.371181342 248;248.190002;-134;13;0.06225611 248;248.080154;-134.08;13;0.007744492 248;248.000015;-134.139;13;0.394048806 248;246.923843;-134.924;13;0.769222223 248;246;-135.598;13;0.07143097 248;245.767517;-135.768;13;0.745246138 248;245.448898;-136;13;0.89415133 248;244.553558;-136.554;13;0.853280479 248;243.999985;-136.896;13;0.566659449 248;243.309143;-137.309;13;0.575683773 248;242.15448;-138;13;0.494403654 248;242.057449;-138.057;13;0.394615087 248;242;-138.091;13;0.339105638 248;240.801224;-138.801;13;0.426654257 248;240;-139.276;13;0.662436578 248;239.549683;-139.55;13;0.58116533 248;238.809708;-140;13;0.298661926 248;238.342239;-140.342;13;0.131063698 248;238.000015;-140.593;13;0.741695465 248;237.187546;-141.188;13;0.734300245 248;236.332458;-141.814;13;0.14110821 248;236.159317;-142;13;0.634833666 248;236.082611;-142.083;13;0.264704075 248;236;-142.172;13;0.110313734 248;235.271011;-143.271;13;0.470614462 248;234.787659;-144;13;0.935328972 248;234.539841;-144.54;13;0.405947014 248;234;-145.716;13;0.88162032 248;233.910599;-145.911;13;0.680835596 248;233.869568;-146;13;0.723581378 248;233.335342;-147.335;13;0.53944907 248;233.069443;-148;13;0.931525758 248;232.717712;-148.718;13;0.648877926 248;232.089279;-150;13;0.629778568 248;232.04863;-150.049;13;0.685973557 248;232;-150.107;13;0.417974243 248;231.133606;-151.134;13;0.882330721 248;230.402557;-152;13;0.947644008 248;230.139694;-152.14;13;0.201304401 248;230;-152.214;13;0.589997141 248;228.833725;-152.834;13;0.871743777 248;227.999985;-153.277;13;0.006993206 248;227.453949;-153.454;13;0.742085566 248;226;-153.926;13;0.9533234 248;226;-153.973;13;0.791546057 248;225.976776;-153.977;13;0.385682438 248;225.844711;-154;13;0.139473349 248;225.279953;-154.099;13;0.078925031 248;224.3004;-154.3;13;0.385738166 248;224;-154.362;13;0.974187392 248;222.61499;-154.615;13;0.469328225 248;222.000015;-154.727;13;0.559808858 248;220.940338;-154.94;13;0.337477086 248;220;-155.129;13;0.024936285 248;219.276367;-155.276;13;0.338848633 248;217.999985;-155.536;13;0.040766736 248;217.619965;-155.62;13;0.995616429 248;216;-155.979;13;0.908966427 248;215.982895;-155.983;13;0.983022894 248;215.8974;-156;13;0.727295621 248;214.316254;-156.316;13;0.158415091 248;214;-156.38;13;0.895310001 248;212.619003;-156.619;13;0.083385801 248;212.000015;-156.726;13;0.264701744 248;210.946182;-156.946;13;0.584905714 248;210;-157.144;13;0.448729719 248;209.348862;-157.349;13;0.765096741 248;208;-157.774;13;0.119918001 248;207.828293;-157.828;13;0.61300055 248;207.283691;-158;13;0.439642985 248;206.035049;-158.035;13;0.238300079 248;206.000015;-158.036;13;0.579400689 248;204.767365;-158.767;13;0.029838418 248;204;-159.223;13;0.494945251 248;203.454102;-159.454;13;0.038226494 248;202.166611;-160;13;0.426487727 248;202.049606;-160.05;13;0.495318327 248;201.999985;-160.071;13;0.676490059 248;201.606537;-160.188;13;0.06517802 248;200.483032;-160.483;13;0.941421038 248;200;-160.61;13;0.716534593 248;198.824203;-160.824;13;0.663511768 248;198;-160.975;13;0.954116794 248;197.002991;-161.003;13;0.729463174 248;196;-161.032;13;0.264234037 248;195.034073;-161.034;13;0.244364415 248;194;-161.037;13;0.452637778 248;193.036331;-161.036;13;0.764679357 248;192;-161.036;13;0.254050692 248;191.121994;-161.122;13;0.315681885 248;190;-161.232;13;0.1393531 248;189.355362;-161.355;13;0.907981204 248;188;-161.615;13;0.147050463 248;187.679504;-161.68;13;0.625172255 248;186.091049;-162;13;0.933445054 248;186.015289;-162.015;13;0.113542534 248;186;-162.018;13;0.520258108 248;184.213898;-162.214;13;0.881757572 248;184;-162.237;13;0.352231179 248;182.093216;-162.093;13;0.998849163 248;182;-162.086;13;0.337657186 248;181.940948;-162;13;0.943238445 248;181.812378;-161.812;13;0.629727404 248;180.570389;-160;13;0.030376489 248;180.862732;-158.863;13;0.410046435 248;181.084503;-158;13;0.83037541 248;181.438812;-157.439;13;0.287491917 248;182;-156.55;13;0.030884543 248;182.273392;-156.273;13;0.316742117 248;182.543655;-156;13;0.571184077 248;183.26767;-155.268;13;0.219525002 248;184;-154.527;13;0.101317729 248;184.302582;-154.303;13;0.287834903 248;184.710663;-154;13;0.918388242 248;185.45105;-153.451;13;0.015649453 248;186;-153.044;13;0.469110245 248;186.689651;-152.69;13;0.398790213 248;188;-152.016;13;0.851657395 248;188.008224;-152.008;13;0.986714321 248;188.016602;-152;13;0.631146271 248;189.01709;-151.017;13;0.799383297 248;190;-150.051;13;0.983183731 248;190.02594;-150.026;13;0.063352085 248;190.052338;-150;13;0.987852932 248;190.540115;-148.54;13;0.109309423 248;190.585175;-148.405;13;0.96434708 248;190.43808;-148;13;0.784177623 248;190.452393;-146.452;13;0.515707984 248;190.456573;-146;13;0.022775106 248;190.101624;-144.102;13;0.747511533 248;190.082611;-144;13;0.482428212 248;190;-143.558;13;0.517893216 248;189.708664;-142;13;0.378329584 248;189.511658;-141.512;13;0.613634384 248;188.901825;-140;13;0.80981738 248;188.414124;-138.414;13;0.220414585 248;188.286758;-138;13;0.20941328 248;188;-137.068;13;0.29343072 248;187.70285;-136;13;0.044353188 248;187.573624;-135.574;13;0.29668423 248;187.09671;-134;13;0.465544124 248;186.023087;-132.023;13;0.185135053 248;186.010544;-132;13;0.913372904 248;186.008453;-131.996;13;0.261022434 248;186;-131.981;13;0.659935333 248;185.988998;-131.961;13;0.238475202 248;184.84552;-130;13;0.880275775 248;184.025299;-128.593;13;0.807262628 248;184;-128.508;13;0.059779203 248;183.849854;-128;13;0.128806918 248;183.786789;-127.787;13;0.294614495 248;183.652176;-127.332;13;0.865213279 248;183.674988;-127.069;13;0.244707025 248;183.741821;-126;13;0.290018989 248;183.757019;-125.757;13;0.784076069 248;183.805161;-124.987;13;0.729741741 248;184;-124.627;13;0.790318741 248;184.220139;-124.22;13;0.643708933 248;184.339294;-124;13;0.981319079 248;184.453156;-123.79;13;0.623213375 248;185.075409;-123.075;13;0.104277003 248;185.384384;-122.721;13;0.406334485 248;185.730606;-122;13;0.263894995 248;185.818024;-121.818;13;0.789685403 248;185.898865;-121.65;13;0.530358602 248;186;-121.367;13;0.291241633 248;186.210602;-120.778;13;0.841671383 248;186.180069;-120.18;13;0.833270108 248;186.170868;-120;13;0.183554076 248;186.11264;-118.86;13;0.559100243 248;186.110321;-118.84;13;0.14448074 248;186.00946;-118.441;13;0.737500699 248;186;-118.403;13;0.967483099 248;185.900833;-118;13;0.458785756 248;185.868439;-117.868;13;0.650497985 248;185.519516;-116.452;13;0.19844183 248;185.502716;-116.381;13;0.843818316 248;185.417038;-116.22;13;0.18884832 248;185.297394;-116;13;0.023301156 248;184.461105;-114.461;13;0.781833305 248;184.210526;-114;13;0.340163018 248;184;-113.613;13;0.55138039 248;183.123657;-112;13;0.115698493 248;182.834076;-111.467;13;0.755705655 248;182;-110.676;13;0.844340957 248;181.287994;-110;13;0.429277131 248;180.953934;-109.683;13;0.39160165 248;180.549515;-109.381;13;0.642499802 248;180;-109.057;13;0.981390986 248;178.343506;-108.082;13;0.294561218 248;178.171646;-108;13;0.516368535 248;178;-107.918;13;0.747759006 248;177.929382;-107.885;13;0.808981826 248;177.85495;-107.855;13;0.193688458 248;176;-107.117;13;0.027137293 248;175.5159;-106.924;13;0.455865958 248;174.92897;-106.72;13;0.793937437 248;174.594009;-106.594;13;0.447705872 248;174.370438;-106.51;13;0.02408919 248;174;-106.396;13;0.838210821 248;172.711334;-106;13;0.344429628 248;172.411316;-105.908;13;0.853405712 248;172;-105.734;13;0.724864076 248;171.540955;-105.541;13;0.801560177 248;171.300751;-105.44;13;0.345815947 248;170.088516;-105.283;13;0.767504888 248;170;-105.26;13;0.41052255 248;169.000809;-105.001;13;0.170924593 248;168;-104.741;13;0.326773295 248;167.9431;-104.727;13;0.270691957 248;167.188507;-104.633;13;0.875577931 248;166.591934;-104.592;13;0.526067496 248;166.556702;-104.59;13;0.712010626 248;166;-104.502;13;0.612441257 248;165.056656;-104.353;13;0.881939307 248;164.232758;-104.233;13;0.003618388 248;164;-104.199;13;0.103520594 248;163.254318;-104.089;13;0.433228935 248;163.08371;-104.075;13;0.816444004 248;162.922272;-104.066;13;0.148405183 248;162.049622;-104.05;13;0.776099607 248;162;-104.049;13;0.107960578 248;161.174454;-104.034;13;0.039690393 248;160.871765;-104;13;0.85966885 248;160.68837;-103.98;13;0.37318444 248;160;-103.889;13;0.114048584 248;159.871643;-103.872;13;0.741634467 248;159.400101;-103.809;13;0.980345114 248;158.886658;-103.714;13;0.251364248 248;158;-103.529;13;0.785177184 248;157.726242;-103.472;13;0.272615775 248;157.39035;-103.39;13;0.48727478 248;157.165451;-103.336;13;0.333904521 248;156.161362;-103.063;13;0.61807494 248;156;-103.036;13;0.840413528 248;155.126205;-102.886;13;0.113877154 248;154.833435;-102.833;13;0.479156429 248;154.462051;-102.767;13;0.308617948 248;154;-102.745;13;0.691667316 248;153.716568;-102.731;13;0.482369134 248;152.695587;-102.685;13;0.424885996 248;152.685593;-102.686;13;0.069831156 248;152;-102.707;13;0.521317153 248;151.543625;-102.721;13;0.035106826 248;150.822647;-102.793;13;0.530066121 248;150.796494;-102.796;13;0.972696916 248;150.077545;-102.905;13;0.249274315 248;150;-102.918;13;0.488120397 248;149.07663;-103.077;13;0.994093989 248;148.907547;-103.106;13;0.204857696 248;148;-103.285;13;0.482673262 248;147.429947;-103.398;13;0.230591981 248;147.399826;-103.4;13;0.718703163 248;146.892899;-103.428;13;0.773896458 248;146;-103.675;13;0.94378286 248;145.757538;-103.742;13;0.283065844 248;145.745361;-103.745;13;0.586374122 248;144.826019;-104;13;0.583795675 248;144.425827;-104.111;13;0.403268249 248;144.194931;-104.195;13;0.399688991 248;144;-104.266;13;0.290990957 248;142.998917;-104.63;13;0.690302195 248;142.741638;-104.742;13;0.034386061 248;142.622604;-104.793;13;0.317006058 248;142.038712;-105.157;13;0.073127102 248;142;-105.184;13;0.007423681 248;141.514053;-105.514;13;0.575194787 248;140.799377;-106;13;0.195924442 248;140.323547;-106.324;13;0.314544602 248;140;-106.544;13;0.695059987 248;139.762039;-106.705;13;0.552193563 248;139.227859;-107.228;13;0.132847824 248;138.438492;-108;13;0.409255539 248;138.216827;-108.217;13;0.192902459 248;138.182983;-108.25;13;0.938840347 248;138;-108.427;13;0.222769861 248;137.643585;-108.772;13;0.672653811 248;137.428207;-109.083;13;0.915749718 248;137.297562;-109.298;13;0.23222131 248;136.870499;-110;13;0.610858969 248;136.541367;-110.541;13;0.478978108 248;136.376968;-110.812;13;0.735003361 248;136.210342;-111.336;13;0.840784572 248;136;-111.941;13;0.319771281 248;135.984665;-111.985;13;0.83948367 248;135.979324;-112;13;0.354386683 248;135.691864;-112.826;13;0.096247955 248;135.791626;-113.333;13;0.367260002 248;135.892868;-113.893;13;0.519107143 248;135.912231;-114;13;0.925931675 248;136;-114.485;13;0.14747611 248;136.058441;-114.809;13;0.060350756 248;136.757751;-116;13;0.276333198 248;136.860931;-116.176;13;0.496277144 248;137.21344;-116.753;13;0.356787994 248;138;-117.944;13;0.792122875 248;138.03685;-118;13;0.931182035 248;138.108566;-118.109;13;0.876791451 248;138.256042;-118.332;13;0.808255709 248;138.491547;-118.666;13;0.718762761 248;138.798721;-119.096;13;0.078007187 248;139.416168;-120;13;0.266616994 248;139.788437;-120.545;13;0.304584939 248;140;-120.871;13;0.43779916 248;140.455429;-121.573;13;0.54681305 248;140.686035;-122;13;0.709624174 248;140.910721;-122.416;13;0.102839435 248;141.67868;-123.604;13;0.93466683 248;141.762787;-123.763;13;0.970102966 248;141.888565;-124;13;0.789465905 248;142;-124.21;13;0.092097694 248;142.04071;-124.287;13;0.908542387 248;142.998047;-125.682;13;0.422769464 248;143.182175;-126;13;0.222991961 248;143.279587;-126.168;13;0.475156932 248;144;-127.423;13;0.473186634 248;144.260208;-127.876;13;0.363300724 248;144.320953;-128;13;0.165250611 248;144.356705;-128.073;13;0.113582729 248;144.505844;-128.506;13;0.031613544 248;145.014236;-129.981;13;0.369464746 248;145.019409;-130;13;0.3809627 248;145.023392;-130.015;13;0.819268693 248;145.023972;-131.024;13;0.71097436 248;145.024521;-132;13;0.330460805 248;144.874359;-132.874;13;0.369649666 248;144.681046;-134;13;0.734536413 248;144.496506;-134.497;13;0.328263163 248;144;-135.832;13;0.390695865 248;143.954559;-135.955;13;0.739651197 248;143.937668;-136;13;0.203476616 248;143.227005;-137.227;13;0.949086294 248;142.779297;-138;13;0.176511609 248;142.49025;-138.49;13;0.527072892 248;142;-139.322;13;0.367461059 248;141.748444;-139.748;13;0.189243354 248;141.600128;-140;13;0.3714192 248;141.055786;-141.056;13;0.180884655 248;140.56897;-142;13;0.988451671 248;140.415421;-142.415;13;0.308104893 248;140;-143.539;13;0.958972077 248;139.843079;-143.843;13;0.969785815 248;139.762039;-144;13;0.681391556 248;139.161926;-145.162;13;0.53959255 248;138.729095;-146;13;0.662365972 248;138.29303;-146.293;13;0.502540254 248;138;-146.49;13;0.632622736 248;137.096863;-147.097;13;0.51347168 248;136;-147.834;13;0.206561542 248;135.865021;-147.865;13;0.990861973 248;135.278702;-148;13;0.914006875 248;134.239288;-148.239;13;0.162095963 248;134;-148.294;13;0.658520591 248;133.297623;-148.367;13;0.159706941 248;132.455353;-148.455;13;0.946707426 248;132;-148.503;13;0.040993513 248;130.755295;-148.755;13;0.021200697 248;130;-148.908;13;0.120720576 248;129.135727;-149.136;13;0.484604176 248;128;-149.434;13;0.79892467 248;127.568871;-149.569;13;0.59487196 248;126.185783;-150;13;0.533286134 248;126.047249;-150.047;13;0.429847523 248;126;-150.063;13;0.852501793 248;124.555878;-150.556;13;0.96562641 248;124.000008;-150.745;13;0.069904419 248;123.055977;-151.056;13;0.640562375 248;121.999992;-151.403;13;0.977316154 248;121.553619;-151.554;13;0.76510105 248;120.227867;-152;13;0.085774149 248;120.048874;-152.049;13;0.081769544 248;120;-152.062;13;0.974465116 248;118.477806;-152.478;13;0.78606844 248;118;-152.608;13;0.761249145 248;116.753792;-152.754;13;0.694427983 248;116;-152.842;13;0.328523938 248;114.748779;-152.275;13;0.594750974 248;114.20372;-152.204;13;0.042571538 248;113.999992;-152.177;13;0.649399175 248;113.930359;-152;13;0.982121008 248;113.885193;-151.885;13;0.296870272 248;113.143463;-150;13;0.584313711 248;113.022247;-149.022;13;0.061901774 248;112.895508;-148;13;0.205346336 248;112.736153;-146.736;13;0.382014723 248;112.643341;-146;13;0.549376324 248;112.7005;-145.299;13;0.248502635 248;112.618576;-144.619;13;0.707738752 248;112.544159;-144;13;0.638705957 248;112.611191;-143.389;13;0.569696721 248;112.557243;-142.557;13;0.454458442 248;112.521095;-142;13;0.339605257 248;112.523232;-141.477;13;0.473775963 248;112.341713;-140.342;13;0.43017833 248;112.287071;-140;13;0.30138476 248;112.251198;-139.749;13;0.058394812 248;112;-138.502;13;0.085758433 248;111.898979;-138;13;0.83019215 248;111.879829;-137.88;13;0.486110087 248;111.637978;-136.362;13;0.193928032 248;111.539467;-136;13;0.271565013 248;111.492775;-135.493;13;0.113601346 248;111.409691;-134.59;13;0.724967841 248;111.34359;-134;13;0.958215039 248;111.356613;-133.357;13;0.816590868 248;111.371338;-132.629;13;0.941239875 248;111.343086;-132;13;0.908357072 248;111.439041;-131.439;13;0.233863244 248;111.685196;-130;13;0.978653667 248;111.742912;-129.743;13;0.272402436 248;112;-128.598;13;0.980904824 248;112.109596;-128.11;13;0.310467658 248;112.112183;-128.098;13;0.467532451 248;112.142036;-128;13;0.000418938 248;112.179726;-127.82;13;0.404831137 248;112.43708;-126.437;13;0.272295048 248;112.518402;-126;13;0.986934763 248;112.007027;-124.007;13;0.597875242 248;112.005226;-124;13;0.579951807 248;112;-123.98;13;0.77985347 248;111.406952;-123.407;13;0.829634448 248;110;-122.048;13;0.424686163 248;109.920555;-122;13;0.713983379 248;108;-120.832;13;0.11728612 248;107.00396;-120;13;0.289701532 248;106.000008;-119.161;13;0.681618279 248;105.590416;-118.556;13;0.731816013 248;105.307274;-118;13;0.166900079 248;105.239677;-117.24;13;0.039961371 248;105.200539;-116.799;13;0.033637173 248;105.151367;-116;13;0.190691876 248;105.327499;-115.327;13;0.15332619 248;105.675179;-114;13;0.988162448 248;105.742592;-113.743;13;0.085751792 248;106.000008;-112.76;13;0.460135407 248;106.173317;-112.173;13;0.707339692 248;106.206551;-112;13;0.858188705 248;106.230392;-110.23;13;0.917578162 248;106.233498;-110;13;0.622280483 248;106.000008;-108.289;13;0.303945713 248;105.873253;-108;13;0.1526542 248;105.774529;-107.775;13;0.837499397 248;104.99752;-106;13;0.448120898 248;104;-104.893;13;0.426297944 248;102.717499;-104;13;0.852216952 248;102;-103.747;13;0.690191839 248;101.609138;-103.609;13;0.901588432 248;100;-103.042;13;0.487951794 248;98.803459;-102.803;13;0.696981522 248;98;-102.644;13;0.23533535 248;96.437866;-102.438;13;0.268113517 248;96;-102.38;13;0.832364281 248;94.205811;-102.206;13;0.906774464 248;94;-102.186;13;0.180418762 248;92.070549;-102.071;13;0.352250103 248;92;-102.066;13;0.407933698 248;90.189781;-102.19;13;0.350519785 248;90;-102.203;13;0.21433196 248;88.66925;-102.669;13;0.758201023 248;88;-102.904;13;0.511827079 248;87.344124;-103.344;13;0.280481711 248;86.366997;-104;13;0.374389581 248;86.1474;-104.147;13;0.225062064 248;86;-104.246;13;0.758824089 248;85.137428;-105.137;13;0.717658879 248;84.302475;-106;13;0.268626863 248;84.161011;-106.161;13;0.082227163 248;84;-106.344;13;0.861762664 248;83.225655;-107.226;13;0.547588135 248;82.545341;-108;13;0.416634792 248;82.290291;-108.29;13;0.463993707 248;82;-108.621;13;0.165861945 248;81.349991;-109.35;13;0.190784577 248;80.77063;-110;13;0.118190779 248;80.449081;-110.449;13;0.440876289 248;80;-111.076;13;0.667645871 248;79.582764;-111.583;13;0.231123303 248;79.239059;-112;13;0.638021869 248;78.853905;-112.854;13;0.872120939 248;78.33696;-114;13;0.230456132 248;78.278564;-114.279;13;0.517797095 248;78;-115.608;13;0.122548095 248;77.954033;-115.954;13;0.354537872 248;77.947937;-116;13;0.156574279 248;77.719788;-117.72;13;0.519648203 248;77.682617;-118;13;0.812910362 248;77.479065;-119.479;13;0.034754819 248;77.407372;-120;13;0.250863083 248;77.002892;-121.003;13;0.435746591 248;76.600754;-122;13;0.572376515 248;76.428101;-122.428;13;0.699108718 248;76;-123.49;13;0.014213031 248;75.762474;-123.762;13;0.105625581 248;75.555733;-124;13;0.529010124 248;74.831764;-124.832;13;0.878304147 248;74;-125.787;13;0.35485914 248;73.877663;-125.878;13;0.022740412 248;73.711906;-126;13;0.340448388 248;72.726944;-126.727;13;0.660143306 248;72;-127.263;13;0.24933076 248;71.500137;-127.5;13;0.702255105 248;70.44442;-128;13;0.845463248 248;70;-128;13;0.91553834 248;68;-128;13;0.303956201 248;66.617065;-128;13;0.331559111 248;66;-127.6;13;0.491507997 248;64.86409;-126.864;13;0.61288837 248;64;-126.304;13;0.722720372 248;63.530594;-126;13;0.080149311 248;62.101009;-124.136;13;0.160087667 248;62.000004;-124;13;0.224610608 248;61.968796;-123.864;13;0.104414286 248;61.184261;-122;13;0.418761317 248;61.165905;-121.166;13;0.070146936 248;61.140247;-120;13;0.144303898 248;61.474754;-119.475;13;0.850838346 248;62.000004;-118.65;13;0.03318648 248;62.252903;-118.253;13;0.563415433 248;62.413963;-118;13;0.924573147 248;63.284779;-117.285;13;0.831162181 248;64;-116.697;13;0.888532782 248;64.388901;-116.389;13;0.005445031 248;64.879234;-116;13;0.279220017 248;65.504265;-115.504;13;0.224024135 248;66;-115.111;13;0.179744606 248;66.609207;-114.609;13;0.383802415 248;67.348717;-114;13;0.054793331 248;67.585793;-113.586;13;0.695099835 248;68;-112.862;13;0.218310296 248;68.31382;-112.314;13;0.19507717 248;68.493431;-112;13;0.778749344 248;68;-111.054;13;0.333036978 248;67.450432;-110;13;0.031308625 248;66;-109.248;13;0.740282704 248;64.890015;-108.89;13;0.515819287 248;64;-108.603;13;0.476690439 248;62.075211;-108.075;13;0.599306471 248;62.000004;-108.055;13;0.645689734 248;61.728901;-108;13;0.896191287 248;61.573429;-107.969;13;0.459417537 248;60;-107.578;13;0.946246733 248;59.424011;-107.424;13;0.107600175 248;58;-107.044;13;0.816749687 248;56.673294;-106.673;13;0.474217751 248;56;-106.485;13;0.186397061 248;54.097446;-106;13;0.815001444 248;54.070782;-105.993;13;0.489888079 248;54;-105.966;13;0.700894199 248;53.955418;-105.955;13;0.200994061 248;52;-105.499;13;0.061423674 248;51.357914;-105.358;13;0.970057479 248;50;-105.059;13;0.373960048 248;48.744698;-104.745;13;0.220132731 248;48;-104.558;13;0.156783036 248;47.378658;-104.621;13;0.829032834 248;46.594002;-104.594;13;0.735976213 248;46;-104.573;13;0.535902047 248;44.600945;-104.601;13;0.677411575 248;44;-104.613;13;0.205676619 248;42.993298;-104.993;13;0.866952567 248;42;-105.369;13;0.229453565 248;41.602596;-105.603;13;0.453449489 248;40.927345;-106;13;0.76165574 248;40.794701;-106.795;13;0.507120619 248;40.593517;-108;13;0.607088512 248;40.842499;-108.842;13;0.508721597 248;41.18457;-110;13;0.986371003 248;42;-111.333;13;0.288711024 248;42.407864;-112;13;0.442789815 248;44;-113.864;13;0.996965102 248;44.110676;-114;13;0.208816247 248;44.595909;-114.596;13;0.229034311 248;45.739227;-116;13;0.677982227 248;46;-116.32;13;0.08249928 248;47.067123;-118;13;0.797106544 248;47.12418;-119.124;13;0.433110172 248;47.168629;-120;13;0.684879848 248;46.785374;-120.785;13;0.554862513 248;46.192654;-122;13;0.200929774 248;46.129471;-122.129;13;0.959608554 248;46;-122.395;13;0.18585989 248;45.365311;-123.365;13;0.163475114 248;44.950241;-124;13;0.450626431 248;44.532444;-124.532;13;0.774937499 248;44;-125.211;13;0.963808985 248;43.653091;-125.653;13;0.117194216 248;43.380882;-126;13;0.489113826 248;42.691895;-126.692;13;0.485216432 248;42;-127.387;13;0.123999729 248;41.693996;-127.694;13;0.625225506 248;41.389275;-128;13;0.541548189 248;40.57729;-128.577;13;0.289411066 248;40;-128.988;13;0.121051431 248;39.40836;-129.408;13;0.127351521 248;38.576195;-130;13;0.944429312 248;38.229305;-130.229;13;0.778319849 248;38;-130.381;13;0.279951402 248;37.025227;-131.025;13;0.140923802 248;36;-131.703;13;0.419727079 248;35.847191;-131.847;13;0.694624808 248;35.685329;-132;13;0.085317006 248;34.818428;-132.818;13;0.886791633 248;34;-133.591;13;0.284810015 248;33.817192;-133.817;13;0.62728798 248;33.669395;-134;13;0.917059073 248;33.64909;-134.025;13;0.642740355 248;33.245026;-134.755;13;0.503122219 248;33.052692;-135.053;13;0.83159192 248;32.51952;-135.878;13;0.399668759 248;32.448784;-136;13;0.571301938 248;32.284077;-136.284;13;0.115209758 248;32;-136.774;13;0.801878384 248;31.617052;-137.617;13;0.707412058 248;31.443096;-138;13;0.811911762 248;30.981203;-138.981;13;0.757353241 248;30.501614;-140;13;0.477851813 248;30.33359;-140.334;13;0.10376196 248;30;-140.996;13;0.166316015 248;29.663658;-141.664;13;0.581598927 248;29.494249;-142;13;0.574921311 248;29.043791;-143.044;13;0.509492843 248;28.631128;-144;13;0.457452727 248;28.502224;-144.502;13;0.184743293 248;28.117794;-146;13;0.792129546 248;28.139362;-146.139;13;0.97340463 248;28.170607;-146.341;13;0.237035215 248;28.29038;-148;13;0.164423526 248;28.519287;-148.519;13;0.466818691 248;29.171997;-150;13;0.574733085 248;30;-151.564;13;0.214480976 248;30.07461;-152;13;0.871266277 248;30.090034;-152.09;13;0.067422344 248;30.417248;-154;13;0.645801668 248;30.262951;-154.263;13;0.59995797 248;30.053164;-154.62;13;0.066670153 248;30;-154.713;13;0.556143008 248;29.532032;-155.532;13;0.236068496 248;29.264502;-156;13;0.040986839 248;28.647215;-156.647;13;0.022938833 248;28;-157.326;13;0.52229657 248;27.610577;-157.611;13;0.147762525 248;27.078041;-158;13;0.837244526 248;26.391788;-158.392;13;0.179522363 248;26;-158.615;13;0.636309416 248;24.911642;-158.912;13;0.534244486 248;24;-159.16;13;0.824950528 248;23.274055;-159.274;13;0.783370112 248;22;-159.475;13;0.487270465 248;21.535471;-159.535;13;0.187350331 248;20;-159.736;13;0.973037432 248;19.75771;-159.758;13;0.868534321 248;19.421535;-159.787;13;0.00394066 248;18;-159.997;13;0.249794512 248;17.99729;-159.997;13;0.98522255 248;17.932552;-160;13;0.401389975 248;16.077633;-160.078;13;0.950163898 248;16;-160.081;13;0.605409 248;14.563317;-160;13;0.551170819 248;14.12769;-159.96;13;0.135476772 248;14;-159.952;13;0.802768407 248;13.932935;-159.933;13;0.995499515 248;12;-159.371;13;0.241413085 248;10.977565;-158.978;13;0.890472718 248;10;-158.602;13;0.269841318 248;8.42472;-158;13;0.588508013 248;8;-157.838;13;0.525417914 248;7.742862;-157.743;13;0.547824295 248;6;-157.1;13;0.538145758 248;4.913648;-156.914;13;0.825890098 248;4;-156.757;13;0.288226956 248;2.818993;-156.819;13;0.237588971 248;2;-156.862;13;0.949698146 248;1.129608;-157.13;13;0.091875405 248;0;-157.477;13;0.423531154 248;70;-159.466;13;0.229988407 248;69.494156;-159.494;13;0.749283288 248;68;-159.578;13;0.249850267 248;66.41526;-158.415;13;0.031188542 248;66;-158.111;13;0.258798832 248;65.849327;-158;13;0.762413017 248;65.63575;-157.636;13;0.490075032 248;64.676643;-156;13;0.21256162 248;64.148232;-154.148;13;0.351822849 248;64.105934;-154;13;0.962566814 248;64.93985;-152.94;13;0.267793719 248;65.679146;-152;13;0.636518155 248;65.820412;-151.82;13;0.628780584 248;66;-151.592;13;0.870821675 248;67.212082;-151.212;13;0.800001614 248;68;-150.965;13;0.903527552 248;69.277473;-151.277;13;0.222567375 248;70;-151.454;13;0.379324395 248;70.475929;-152;13;0.052385153 248;72;-153.748;13;0.831020082 248;72.219833;-154;13;0.112290255 248;72.25721;-154.257;13;0.003137227 248;72.510468;-156;13;0.597141384 248;72.403862;-156.404;13;0.46224633 248;72;-157.934;13;0.411353157 248;71.96257;-157.963;13;0.187044423 248;71.913696;-158;13;0.165205271 248;70.830017;-158.83;13;0.25203568 ================================================ FILE: examples/data/input_data/jan_models/fixture_model_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 0,500,450,90,330,1,rock2 0,500,250,90,345,1,rock1 500,500,800,90,0,1,rock3 2000,500,400,90,55,1,fault ================================================ FILE: examples/data/input_data/jan_models/fixture_model_surfaces.csv ================================================ X,Y,Z,formation 0,0,800,rock3 0,500,800,rock3 0,1000,800,rock3 500,0,800,rock3 500,500,800,rock3 500,1000,800,rock3 1000,0,800,rock3 1000,500,800,rock3 1000,1000,800,rock3 1500,0,800,rock3 1500,500,800,rock3 1500,1000,800,rock3 2000,0,650,rock3 2000,500,650,rock3 2000,1000,650,rock3 0,0,450,rock2 0,500,450,rock2 0,1000,450,rock2 150,0,600,rock2 150,500,600,rock2 150,1000,600,rock2 300,0,750,rock2 300,500,750,rock2 300,1000,750,rock2 450,0,600,rock2 450,500,600,rock2 450,1000,600,rock2 600,0,450,rock2 600,500,450,rock2 600,1000,450,rock2 750,0,600,rock2 750,500,600,rock2 750,1000,600,rock2 850,0,800,rock2 850,500,800,rock2 850,1000,800,rock2 1500,0,800,rock2 1500,500,800,rock2 1500,1000,800,rock2 1600,0,600,rock2 1600,500,600,rock2 1600,1000,600,rock2 1750,0,450,rock2 1750,500,450,rock2 1750,1000,450,rock2 1850,0,550,rock2 1850,500,550,rock2 1850,1000,550,rock2 2200,0,550,rock2 2200,500,550,rock2 2200,1000,550,rock2 2300,0,650,rock2 2300,500,650,rock2 2300,1000,650,rock2 0,0,250,rock1 0,500,250,rock1 0,1000,250,rock1 150,0,400,rock1 150,500,400,rock1 150,1000,400,rock1 300,0,550,rock1 300,500,550,rock1 300,1000,550,rock1 450,0,400,rock1 450,500,400,rock1 450,1000,400,rock1 600,0,250,rock1 600,500,250,rock1 600,1000,250,rock1 750,0,350,rock1 750,500,350,rock1 750,1000,350,rock1 900,0,550,rock1 900,500,550,rock1 900,1000,550,rock1 1450,0,550,rock1 1450,500,550,rock1 1450,1000,550,rock1 1600,0,350,rock1 1600,500,350,rock1 1600,1000,350,rock1 1750,0,250,rock1 1750,500,250,rock1 1750,1000,250,rock1 1850,0,350,rock1 1850,500,350,rock1 1850,1000,350,rock1 2200,0,350,rock1 2200,500,350,rock1 2200,1000,350,rock1 2300,0,450,rock1 2300,500,450,rock1 2300,1000,450,rock1 1050,0,799,rock1 1050,500,799,rock1 1050,1000,799,rock1 1300,0,799,rock1 1300,500,799,rock1 1300,1000,799,rock1 2000,0,400,fault 2000,500,400,fault 2000,1000,400,fault ================================================ FILE: examples/data/input_data/jan_models/model1_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 500,500,600,90,0,1,rock2 500,500,400,90,0,1,rock1 ================================================ FILE: examples/data/input_data/jan_models/model1_surface_points.csv ================================================ X,Y,Z,formation 100,200,600,rock2 500,200,600,rock2 900,200,600,rock2 100,800,600,rock2 500,800,600,rock2 900,800,600,rock2 100,200,400,rock1 500,200,400,rock1 900,200,400,rock1 100,800,400,rock1 500,800,400,rock1 900,800,400,rock1 ================================================ FILE: examples/data/input_data/jan_models/model2_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 500,500,820,90,0,1,rock2 500,500,620,90,0,1,rock1 ================================================ FILE: examples/data/input_data/jan_models/model2_surface_points.csv ================================================ X,Y,Z,formation 0,100,200,rock1 0,500,200,rock1 0,900,200,rock1 400,100,600,rock1 400,500,600,rock1 400,900,600,rock1 200,100,400,rock1 200,500,400,rock1 200,900,400,rock1 800,100,400,rock1 800,500,400,rock1 800,900,400,rock1 600,100,600,rock1 600,500,600,rock1 600,900,600,rock1 1000,100,200,rock1 1000,500,200,rock1 1000,900,200,rock1 0,100,400,rock2 0,500,400,rock2 0,900,400,rock2 1000,100,400,rock2 1000,500,400,rock2 1000,900,400,rock2 400,100,800,rock2 400,500,800,rock2 400,900,800,rock2 200,100,600,rock2 200,500,600,rock2 200,900,600,rock2 600,100,800,rock2 600,500,800,rock2 600,900,800,rock2 800,100,600,rock2 800,500,600,rock2 800,900,600,rock2 ================================================ FILE: examples/data/input_data/jan_models/model3_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 200,500,780,90,185.73,1,rock1 200,500,220,90,354.27,1,rock1 ================================================ FILE: examples/data/input_data/jan_models/model3_surface_points.csv ================================================ X,Y,Z,formation 0,200,800,rock1 0,200,200,rock1 100,200,790,rock1 100,200,210,rock1 200,200,780,rock1 200,200,220,rock1 300,200,770,rock1 300,200,230,rock1 400,200,760,rock1 400,200,240,rock1 700,200,500,rock1 0,0,800,rock1 0,0,200,rock1 100,0,790,rock1 100,0,210,rock1 200,0,780,rock1 200,0,220,rock1 300,0,770,rock1 300,0,230,rock1 400,0,760,rock1 400,0,240,rock1 700,0,500,rock1 0,500,800,rock1 0,500,200,rock1 100,500,790,rock1 100,500,210,rock1 200,500,780,rock1 200,500,220,rock1 300,500,770,rock1 300,500,230,rock1 400,500,760,rock1 400,500,240,rock1 700,500,500,rock1 0,1000,800,rock1 0,1000,200,rock1 100,1000,790,rock1 100,1000,210,rock1 200,1000,780,rock1 200,1000,220,rock1 300,1000,770,rock1 300,1000,230,rock1 400,1000,760,rock1 400,1000,240,rock1 700,1000,500,rock1 700,800,500,rock1 0,800,800,rock1 0,800,200,rock1 100,800,790,rock1 100,800,210,rock1 200,800,780,rock1 200,800,220,rock1 300,800,770,rock1 300,800,230,rock1 400,800,760,rock1 400,800,240,rock1 0,200,600,rock2 0,200,400,rock2 100,200,590,rock2 100,200,410,rock2 200,200,580,rock2 200,200,420,rock2 300,200,570,rock2 300,200,430,rock2 400,200,560,rock2 400,200,440,rock2 0,0,600,rock2 0,0,400,rock2 100,0,590,rock2 100,0,410,rock2 200,0,580,rock2 200,0,420,rock2 300,0,570,rock2 300,0,430,rock2 400,0,560,rock2 400,0,440,rock2 0,500,600,rock2 0,500,400,rock2 100,500,590,rock2 100,500,410,rock2 200,500,580,rock2 200,500,420,rock2 300,500,570,rock2 300,500,430,rock2 400,500,560,rock2 400,500,440,rock2 0,1000,600,rock2 0,1000,400,rock2 100,1000,590,rock2 100,1000,410,rock2 200,1000,580,rock2 200,1000,420,rock2 300,1000,570,rock2 300,1000,430,rock2 400,1000,560,rock2 400,1000,440,rock2 0,800,600,rock2 0,800,400,rock2 100,800,590,rock2 100,800,410,rock2 200,800,580,rock2 200,800,420,rock2 300,800,570,rock2 300,800,430,rock2 400,800,560,rock2 400,800,440,rock2 ================================================ FILE: examples/data/input_data/jan_models/model4_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 500,500,625,90,8.54,1,rock2 500,200,625,90,8.54,1,rock2 500,800,625,90,8.54,1,rock2 500,500,375,90,351.46,1,rock1 500,200,375,90,351.46,1,rock1 500,800,375,90,351.46,1,rock1 ================================================ FILE: examples/data/input_data/jan_models/model4_surface_points.csv ================================================ X,Y,Z,formation 0,200,300,rock1 0,800,300,rock1 500,200,375,rock1 500,800,375,rock1 1000,200,450,rock1 1000,800,450,rock1 0,200,700,rock2 0,800,700,rock2 500,200,625,rock2 500,800,625,rock2 1000,200,550,rock2 1000,800,550,rock2 ================================================ FILE: examples/data/input_data/jan_models/model5_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 100,500,800,90,0,1,rock2 100,500,600,90,0,1,rock1 900,500,400,90,0,1,rock2 900,500,200,90,0,1,rock1 500,500,500,90,60,1,fault ================================================ FILE: examples/data/input_data/jan_models/model5_surface_points.csv ================================================ X,Y,Z,formation 0,200,600,rock1 0,500,600,rock1 0,800,600,rock1 200,200,600,rock1 200,500,600,rock1 200,800,600,rock1 800,200,200,rock1 800,500,200,rock1 800,800,200,rock1 1000,200,200,rock1 1000,500,200,rock1 1000,800,200,rock1 0,200,800,rock2 0,800,800,rock2 200,200,800,rock2 200,800,800,rock2 800,200,400,rock2 800,800,400,rock2 1000,200,400,rock2 1000,800,400,rock2 500,500,500,fault 450,500,600,fault 500,200,500,fault 450,200,600,fault 500,800,500,fault 450,800,600,fault ================================================ FILE: examples/data/input_data/jan_models/model6_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 100,500,700,90,315,1,rock2 900,500,700,90,45,1,rock2 100,500,500,90,315,1,rock1 900,500,500,90,45,1,rock1 500,500,701,90,0,1,rock3 ================================================ FILE: examples/data/input_data/jan_models/model6_surface_points.csv ================================================ X,Y,Z,formation 0,200,400,rock1 0,500,400,rock1 0,800,400,rock1 100,200,500,rock1 100,500,500,rock1 100,800,500,rock1 200,200,600,rock1 200,500,600,rock1 200,800,600,rock1 800,200,600,rock1 800,500,600,rock1 800,800,600,rock1 900,200,500,rock1 900,500,500,rock1 900,800,500,rock1 1000,200,400,rock1 1000,500,400,rock1 1000,800,400,rock1 0,200,600,rock2 0,500,600,rock2 0,800,600,rock2 1000,200,600,rock2 1000,500,600,rock2 1000,800,600,rock2 100,200,700,rock2 100,500,700,rock2 100,800,700,rock2 900,200,700,rock2 900,500,700,rock2 900,800,700,rock2 200,200,701,rock3 200,500,701,rock3 200,800,701,rock3 500,200,701,rock3 500,500,701,rock3 500,800,701,rock3 800,200,701,rock3 800,500,701,rock3 800,800,701,rock3 ================================================ FILE: examples/data/input_data/jan_models/model7_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 0,500,450,90,335,1,rock2 0,500,250,90,335,1,rock1 0,0,450,90,335,1,rock2 0,0,250,90,335,1,rock1 0,1000,450,90,335,1,rock2 0,1000,250,90,335,1,rock1 500,500,800,90,0,1,rock3 2000,500,400,90,55,1,fault ================================================ FILE: examples/data/input_data/jan_models/model7_surface_points.csv ================================================ X,Y,Z,formation 0,0,800,rock3 0,500,800,rock3 0,1000,800,rock3 500,0,800,rock3 500,500,800,rock3 500,1000,800,rock3 1000,0,800,rock3 1000,500,800,rock3 1000,1000,800,rock3 1500,0,800,rock3 1500,500,800,rock3 1500,1000,800,rock3 2000,0,650,rock3 2000,500,650,rock3 2000,1000,650,rock3 0,0,450,rock2 0,500,450,rock2 0,1000,450,rock2 150,0,600,rock2 150,500,600,rock2 150,1000,600,rock2 300,0,750,rock2 300,500,750,rock2 300,1000,750,rock2 450,0,600,rock2 450,500,600,rock2 450,1000,600,rock2 600,0,450,rock2 600,500,450,rock2 600,1000,450,rock2 750,0,600,rock2 750,500,600,rock2 750,1000,600,rock2 850,0,800,rock2 850,500,800,rock2 850,1000,800,rock2 1500,0,800,rock2 1500,500,800,rock2 1500,1000,800,rock2 1600,0,600,rock2 1600,500,600,rock2 1600,1000,600,rock2 1750,0,450,rock2 1750,500,450,rock2 1750,1000,450,rock2 1850,0,550,rock2 1850,500,550,rock2 1850,1000,550,rock2 2200,0,550,rock2 2200,500,550,rock2 2200,1000,550,rock2 2300,0,650,rock2 2300,500,650,rock2 2300,1000,650,rock2 0,0,250,rock1 0,500,250,rock1 0,1000,250,rock1 150,0,400,rock1 150,500,400,rock1 150,1000,400,rock1 300,0,550,rock1 300,500,550,rock1 300,1000,550,rock1 450,0,400,rock1 450,500,400,rock1 450,1000,400,rock1 600,0,250,rock1 600,500,250,rock1 600,1000,250,rock1 750,0,350,rock1 750,500,350,rock1 750,1000,350,rock1 900,0,550,rock1 900,500,550,rock1 900,1000,550,rock1 1450,0,550,rock1 1450,500,550,rock1 1450,1000,550,rock1 1600,0,350,rock1 1600,500,350,rock1 1600,1000,350,rock1 1750,0,250,rock1 1750,500,250,rock1 1750,1000,250,rock1 1850,0,350,rock1 1850,500,350,rock1 1850,1000,350,rock1 2200,0,350,rock1 2200,500,350,rock1 2200,1000,350,rock1 2300,0,450,rock1 2300,500,450,rock1 2300,1000,450,rock1 1050,0,799,rock1 1050,500,799,rock1 1050,1000,799,rock1 1300,0,799,rock1 1300,500,799,rock1 1300,1000,799,rock1 2000,0,400,fault 2000,500,400,fault 2000,1000,400,fault ================================================ FILE: examples/data/input_data/jan_models/tutorial_model_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 0,500,450,90,335,1,rock2 0,500,250,90,335,1,rock1 0,0,450,90,335,1,rock2 0,0,250,90,335,1,rock1 0,1000,450,90,335,1,rock2 0,1000,250,90,335,1,rock1 500,500,800,90,0,1,rock3 ================================================ FILE: examples/data/input_data/jan_models/tutorial_model_surface_points.csv ================================================ X,Y,Z,formation 0,0,800,rock3 0,500,800,rock3 0,1000,800,rock3 500,0,800,rock3 500,500,800,rock3 500,1000,800,rock3 1000,0,800,rock3 1000,500,800,rock3 1000,1000,800,rock3 1500,0,800,rock3 1500,500,800,rock3 1500,1000,800,rock3 2000,0,800,rock3 2000,500,800,rock3 2000,1000,800,rock3 0,0,450,rock2 0,500,450,rock2 0,1000,450,rock2 150,0,600,rock2 150,500,600,rock2 150,1000,600,rock2 300,0,750,rock2 300,500,750,rock2 300,1000,750,rock2 450,0,600,rock2 450,500,600,rock2 450,1000,600,rock2 600,0,450,rock2 600,500,450,rock2 600,1000,450,rock2 750,0,600,rock2 750,500,600,rock2 750,1000,600,rock2 850,0,800,rock2 850,500,800,rock2 850,1000,800,rock2 1500,0,800,rock2 1500,500,800,rock2 1500,1000,800,rock2 1600,0,600,rock2 1600,500,600,rock2 1600,1000,600,rock2 1750,0,450,rock2 1750,500,450,rock2 1750,1000,450,rock2 1850,0,550,rock2 1850,500,550,rock2 1850,1000,550,rock2 0,0,250,rock1 0,500,250,rock1 0,1000,250,rock1 150,0,400,rock1 150,500,400,rock1 150,1000,400,rock1 300,0,550,rock1 300,500,550,rock1 300,1000,550,rock1 450,0,400,rock1 450,500,400,rock1 450,1000,400,rock1 600,0,250,rock1 600,500,250,rock1 600,1000,250,rock1 750,0,350,rock1 750,500,350,rock1 750,1000,350,rock1 900,0,550,rock1 900,500,550,rock1 900,1000,550,rock1 1450,0,550,rock1 1450,500,550,rock1 1450,1000,550,rock1 1600,0,350,rock1 1600,500,350,rock1 1600,1000,350,rock1 1750,0,250,rock1 1750,500,250,rock1 1750,1000,250,rock1 1850,0,350,rock1 1850,500,350,rock1 1850,1000,350,rock1 1050,0,799,rock1 1050,500,799,rock1 1050,1000,799,rock1 1300,0,799,rock1 1300,500,799,rock1 1300,1000,799,rock1 ================================================ FILE: examples/data/input_data/lisa_models/foliations1.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 0,1000.0,1000.0,1500.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Sandstone,Strat_Series_1,1,1,False,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 1,1000.0,1000.0,1400.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Siltstone,Strat_Series_1,2,1,False,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 2,1000.0,1000.0,1100.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Shale,Strat_Series_1,3,1,False,3,"${\bf{x}}_{\beta \,{\bf{3}},0}$" 3,1000.0,1000.0,1000.0,0.6427876096875392,1.0000393593894367e-12,0.766044443119978,40.0,90.0,1.0,Sandstone2,Strat_Series_2,4,2,False,4,"${\bf{x}}_{\beta \,{\bf{4}},0}$" 4,1000.0,1000.0,500.0,0.6427876096875392,1.0000393593894367e-12,0.766044443119978,40.0,90.0,1.0,Siltstone2,Strat_Series_2,5,2,False,5,"${\bf{x}}_{\beta \,{\bf{5}},0}$" 5,1000.0,1000.0,100.0,0.6427876096875392,1.0000393593894367e-12,0.766044443119978,40.0,90.0,1.0,Shale2,Strat_Series_2,6,2,False,6,"${\bf{x}}_{\beta \,{\bf{6}},0}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations2.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 2,750.0,1000.0,1300.0,-0.8191520442879918,9.998495242106419e-13,0.573576436352046,55.0,270.0,1.0,Siltstone,Strat_Series,2,2,False,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 3,1250.0,1000.0,1300.0,0.8191520442899918,1.0000501585964528e-12,0.573576436352046,55.0,90.0,1.0,Siltstone,Strat_Series,2,2,False,2,"${\bf{x}}_{\beta \,{\bf{2}},1}$" 0,750.0,1000.0,500.0,-0.8191520442879918,9.998495242106419e-13,0.573576436352046,55.0,270.0,1.0,Schist,Strat_Series,5,2,False,5,"${\bf{x}}_{\beta \,{\bf{5}},0}$" 1,1250.0,1000.0,500.0,0.8191520442899918,1.0000501585964528e-12,0.573576436352046,55.0,90.0,1.0,Schist,Strat_Series,5,2,False,5,"${\bf{x}}_{\beta \,{\bf{5}},1}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations3.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 2,1000.0,1250.0,1500.0,0.31816239933811036,-0.4772448176609822,0.8191520442899918,35.0,146.31,1.0,Sandstone,Strat_Series,1,2,False,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 1,1000.0,1250.0,700.0,0.3181623993373182,-0.477244817659794,0.8191520442909918,34.99999999990011,146.31,1.0,Schist,Strat_Series,5,2,False,5,"${\bf{x}}_{\beta \,{\bf{5}},0}$" 0,1000.0000000000001,1249.9999999999982,10.00000000000001,0.31816239933811036,-0.4772448176609822,0.8191520442899918,35.0,146.31,1.0,Gneiss,Strat_Series,6,2,False,6,"${\bf{x}}_{\beta \,{\bf{6}},0}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations5.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 0,500.0,1000.0,864.602,-0.9486830155920029,-0.31622861338710945,1.999261954502598e-12,89.99999999994274,251.56500000003624,1.0,Main_Fault,Fault_Series,1,1,True,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 1,1000.0,1000.0,1500.0,0.40557978767430714,-0.40557978767030683,0.8191520442903204,34.99999999996717,134.99999999985872,1.0,Sandstone,Strat_Series,2,2,False,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 2,1000.0,1000.0,500.0,0.4055797876736288,-0.4055797876696291,0.8191520442909919,34.999999999900105,134.99999999985874,1.0,Schist,Strat_Series,6,2,False,6,"${\bf{x}}_{\beta \,{\bf{6}},0}$" 3,1000.0,1000.0,10.0,0.4055797876736288,-0.4055797876696291,0.8191520442909919,34.999999999900105,134.99999999985874,1.0,Gneiss,Strat_Series,7,2,False,7,"${\bf{x}}_{\beta \,{\bf{7}},0}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations6.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,annotations,formation_value 2,1000,1000,1500,1e-12,1e-12,1.000000000001,0,90,1,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\beta \,{\bf{2}},0}$",2 1,1000,1000,1000,1e-12,1e-12,1.000000000001,0,90,1,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\beta \,{\bf{3}},0}$",3 0,1000,1000,500,1e-12,1e-12,1.000000000001,0,90,1,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\beta \,{\bf{4}},0}$",4 ================================================ FILE: examples/data/input_data/lisa_models/foliations7.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 0,750.0,1000.0,500.0,0.9659258262900683,1.000059145898569e-12,0.2588190451035207,75.0,90.0,1.0,Fault_1,Fault_1,1,1,True,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 1,1250.0,1000.0,500.0,-0.9659258262880683,9.998225623042932e-13,0.2588190451035207,75.0,270.0,1.0,Fault_2,Fault_2,2,2,True,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 7,1000.0,1000.0,500.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Schist,Strat_Series,7,3,False,7,"${\bf{x}}_{\beta \,{\bf{7}},2}$" 8,250.0,500.0,700.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Schist,Strat_Series,7,3,False,7,"${\bf{x}}_{\beta \,{\bf{7}},1}$" 9,1750.0,500.0,700.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Schist,Strat_Series,7,3,False,7,"${\bf{x}}_{\beta \,{\bf{7}},0}$" 5,1000.0,1000.0,700.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone_2,Strat_Series,6,3,False,6,"${\bf{x}}_{\beta \,{\bf{6}},4}$" 6,250.0,500.0,900.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone_2,Strat_Series,6,3,False,6,"${\bf{x}}_{\beta \,{\bf{6}},3}$" 10,1750.0,500.0,900.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone_2,Strat_Series,6,3,False,6,"${\bf{x}}_{\beta \,{\bf{6}},2}$" 14,250.0,1500.0,900.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone_2,Strat_Series,6,3,False,6,"${\bf{x}}_{\beta \,{\bf{6}},1}$" 15,1750.0,1500.0,900.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone_2,Strat_Series,6,3,False,6,"${\bf{x}}_{\beta \,{\bf{6}},0}$" 3,1000.0,1000.0,1000.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Siltstone,Strat_Series,4,3,False,4,"${\bf{x}}_{\beta \,{\bf{4}},4}$" 4,250.0,500.0,1300.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Siltstone,Strat_Series,4,3,False,4,"${\bf{x}}_{\beta \,{\bf{4}},3}$" 11,1750.0,500.0,1300.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Siltstone,Strat_Series,4,3,False,4,"${\bf{x}}_{\beta \,{\bf{4}},2}$" 12,250.0,1500.0,1300.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Siltstone,Strat_Series,4,3,False,4,"${\bf{x}}_{\beta \,{\bf{4}},1}$" 13,1750.0,1500.0,1300.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Siltstone,Strat_Series,4,3,False,4,"${\bf{x}}_{\beta \,{\bf{4}},0}$" 18,250.0,1500.0,1500.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone,Strat_Series,3,3,False,3,"${\bf{x}}_{\beta \,{\bf{3}},3}$" 19,250.0,500.0,1500.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone,Strat_Series,3,3,False,3,"${\bf{x}}_{\beta \,{\bf{3}},2}$" 20,1750.0,500.0,1500.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone,Strat_Series,3,3,False,3,"${\bf{x}}_{\beta \,{\bf{3}},1}$" 21,1750.0,1500.0,1500.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Sandstone,Strat_Series,3,3,False,3,"${\bf{x}}_{\beta \,{\bf{3}},0}$" 16,250.0,1500.0,700.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Schist,Strat_Series,7,3,False,7,"${\bf{x}}_{\beta \,{\bf{7}},3}$" 17,1750.0,1500.0,700.0,1e-12,1e-12,1.000000000001,0.0,90.0,1.0,Schist,Strat_Series,7,3,False,7,"${\bf{x}}_{\beta \,{\bf{7}},4}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations8.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,formation_value,annotations 0,500.0,1000.0,864.602,-0.9486830155920029,-0.31622861338710945,1.999261954502598e-12,89.99999999994274,251.56500000003624,1.0,Main_Fault,Fault_Series,1,1,True,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 1,1500.0,1000.0,1000.0,0.5389855446963152,0.19617469496985063,0.8191520442903204,34.99999999996717,70.0,1.0,Sandstone,Strat_Series,2,2,False,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 4,250.0,1000.0,1100.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Sandstone,Strat_Series,2,2,False,2,"${\bf{x}}_{\beta \,{\bf{2}},1}$" 5,250.0,1000.0,800.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Shale,Strat_Series,4,2,False,4,"${\bf{x}}_{\beta \,{\bf{4}},0}$" 6,250.0,1000.0,500.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Sandstone_2,Strat_Series,5,2,False,5,"${\bf{x}}_{\beta \,{\bf{5}},0}$" 2,1500.0,1000.0,200.0,0.5389855446954142,0.19617469496952267,0.8191520442909919,34.999999999900105,70.0,1.0,Schist,Strat_Series,6,2,False,6,"${\bf{x}}_{\beta \,{\bf{6}},0}$" 7,250.0,1000.0,300.0,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,Schist,Strat_Series,6,2,False,6,"${\bf{x}}_{\beta \,{\bf{6}},1}$" 3,1500.0,1000.0,100.0,0.5389855446954142,0.19617469496952267,0.8191520442909919,34.999999999900105,70.0,1.0,Gneiss,Strat_Series,7,2,False,7,"${\bf{x}}_{\beta \,{\bf{7}},0}$" ================================================ FILE: examples/data/input_data/lisa_models/foliations9.csv ================================================ ,X,Y,Z,G_x,G_y,G_z,dip,azimuth,polarity,formation,series,formation_number,order_series,isFault,Unnamed: 0,formation_value,annotations 2,1000.0,1249.9999999999984,10.000000000000009,0.31816239933811036,-0.4772448176609822,0.8191520442899918,35.0,146.31,1.0,Gneiss,Default series,1,1,False,0,1,"${\bf{x}}_{\beta \,{\bf{1}},0}$" 0,1000.0,1250.0,1500.0,0.31816239933811036,-0.4772448176609822,0.8191520442899918,35.0,146.31,1.0,Sandstone,Default series,2,1,False,2,2,"${\bf{x}}_{\beta \,{\bf{2}},0}$" 1,1000.0,1250.0,700.0,0.31816239933731816,-0.4772448176597939,0.8191520442909919,34.999999999900105,146.31,1.0,Schist,Default series,4,1,False,1,4,"${\bf{x}}_{\beta \,{\bf{4}},0}$" ================================================ FILE: examples/data/input_data/lisa_models/interfaces1.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 0,500.0,1000.0,1500.0,Sandstone,Strat_Series_1,1,1,False,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",1 1,1500.0,1000.0,1500.0,Sandstone,Strat_Series_1,1,1,False,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",1 2,500.0,1000.0,1400.0,Siltstone,Strat_Series_1,2,1,False,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 3,1500.0,1000.0,1400.0,Siltstone,Strat_Series_1,2,1,False,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 4,500.0,1000.0,1100.0,Shale,Strat_Series_1,3,1,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 5,1500.0,1000.0,1100.0,Shale,Strat_Series_1,3,1,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 6,1000.0,500.0,1000.0,Sandstone2,Strat_Series_2,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 7,1000.0,1500.0,1000.0,Sandstone2,Strat_Series_2,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 8,1000.0,500.0,500.0,Siltstone2,Strat_Series_2,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",5 9,1000.0,1500.0,500.0,Siltstone2,Strat_Series_2,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",5 10,1000.0,500.0,100.0,Shale2,Strat_Series_2,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",6 11,1000.0,1500.0,100.0,Shale2,Strat_Series_2,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",6 ================================================ FILE: examples/data/input_data/lisa_models/interfaces2.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 2,1500.0,1000.0,1500.0,Sandstone,Strat_Series,1,2,False,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",1 3,500.0,1000.0,1500.0,Sandstone,Strat_Series,1,2,False,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",1 10,500.0,1000.0,1300.0,Siltstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 11,1500.0,1000.0,1300.0,Siltstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 8,1500.0,1000.0,1200.0,Shale,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 9,500.0,1000.0,1200.0,Shale,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 4,1500.0,1000.0,800.0,Sandstone_2,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 5,500.0,1000.0,800.0,Sandstone_2,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 6,1500.0,1000.0,500.0,Schist,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",5 7,500.0,1000.0,500.0,Schist,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",5 0,1500.0,1000.0,10.0,Gneiss,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",6 1,500.0,1000.0,10.0,Gneiss,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",6 ================================================ FILE: examples/data/input_data/lisa_models/interfaces3.csv ================================================ ,Unnamed: 0,X,Y,Z,annotations,formation,formation_number,formation_value,isFault,order_series,series 0,11.0,2000.0,2000.0,1500.0,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",Sandstone,1,1,False,2,Strat_Series 1,12.0,0.0,500.0,1500.0,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",Sandstone,1,1,False,2,Strat_Series 2,0.0,0.0,500.0,1400.0,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",Siltstone,2,2,False,2,Strat_Series 3,10.0,2000.0,2000.0,1400.0,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",Siltstone,2,2,False,2,Strat_Series 4,1.0,2000.0,2000.0,1150.0,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",Shale,3,3,False,2,Strat_Series 5,2.0,0.0,500.0,1150.0,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",Shale,3,3,False,2,Strat_Series 6,3.0,2000.0,2000.0,1000.0,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",Sandstone_2,4,4,False,2,Strat_Series 7,4.0,0.0,500.0,1000.0,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",Sandstone_2,4,4,False,2,Strat_Series 8,5.0,2000.0,2000.0,700.0,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",Schist,5,5,False,2,Strat_Series 9,6.0,0.0,500.0,700.0,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",Schist,5,5,False,2,Strat_Series 10,7.0,2000.0,2000.0,10.0,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",Gneiss,6,6,False,2,Strat_Series 11,8.0,0.0,500.0,10.0,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",Gneiss,6,6,False,2,Strat_Series ================================================ FILE: examples/data/input_data/lisa_models/interfaces5.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 0,600.0,1000.0,600.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",1 1,700.0,1000.0,900.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",1 2,800.0,1000.0,1200.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},2}$",1 3,900.0,1000.0,1500.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},3}$",1 4,500.0,1000.0,300.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},4}$",1 16,2000.0,2000.0,100.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{7}},0}$",7 14,0.0,0.0,100.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",6 13,2000.0,2000.0,500.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",6 12,0.0,0.0,400.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",5 11,2000.0,2000.0,800.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",5 8,2000.0,2000.0,1300.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 10,0.0,0.0,800.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 15,0.0,0.0,0.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{7}},1}$",7 7,0.0,0.0,900.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 6,0.0,0.0,1100.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 5,2000.0,2000.0,1500.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 9,2000.0,2000.0,1200.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 ================================================ FILE: examples/data/input_data/lisa_models/interfaces6.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 46,500.0,1000.0,1500.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 56,1500.0,1000.0,500.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},7}$",7 49,500.0,1000.0,800.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},6}$",5 50,1500.0,1000.0,800.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},5}$",5 51,1000.0,1000.0,600.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},4}$",5 52,500.0,1000.0,700.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},3}$",6 53,1500.0,1000.0,700.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},2}$",6 54,1000.0,1000.0,500.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",6 57,1000.0,1000.0,300.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},8}$",7 55,500.0,1000.0,500.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",7 15,500.0,1000.0,1200.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 12,1500.0,1000.0,1200.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 19,500.0,1000.0,1300.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},2}$",3 20,1500.0,1000.0,1300.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 21,1000.0,1000.0,1100.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 47,1500.0,1000.0,1500.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},2}$",2 27,1000.0,1000.0,1200.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 9,1000.0,1000.0,1000.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},2}$",4 ================================================ FILE: examples/data/input_data/lisa_models/interfaces7.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 0,750.0,1500.0,500.0,Fault_1,Fault_1,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",1 1,750.0,500.0,500.0,Fault_1,Fault_1,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",1 2,1250.0,1500.0,500.0,Fault_2,Fault_2,2,2,True,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 3,1250.0,1500.0,500.0,Fault_2,Fault_2,2,2,True,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 13,1000.0,1000.0,300.0,Gneiss,Strat_Series,8,3,False,"${\bf{x}}_{\alpha \,{\bf{8}},1}$",8 5,250.0,1000.0,500.0,Gneiss,Strat_Series,8,3,False,"${\bf{x}}_{\alpha \,{\bf{8}},0}$",8 8,250.0,1000.0,700.0,Schist,Strat_Series,7,3,False,"${\bf{x}}_{\alpha \,{\bf{7}},2}$",7 7,1750.0,1000.0,700.0,Schist,Strat_Series,7,3,False,"${\bf{x}}_{\alpha \,{\bf{7}},1}$",7 6,1000.0,1000.0,500.0,Schist,Strat_Series,7,3,False,"${\bf{x}}_{\alpha \,{\bf{7}},0}$",7 9,250.0,1000.0,900.0,Sandstone_2,Strat_Series,6,3,False,"${\bf{x}}_{\alpha \,{\bf{6}},2}$",6 10,1750.0,1000.0,900.0,Sandstone_2,Strat_Series,6,3,False,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",6 11,1000.0,1000.0,700.0,Sandstone_2,Strat_Series,6,3,False,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",6 12,1750.0,1000.0,1200.0,Shale,Strat_Series,5,3,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",5 4,1750.0,1000.0,500.0,Gneiss,Strat_Series,8,3,False,"${\bf{x}}_{\alpha \,{\bf{8}},2}$",8 14,250.0,1000.0,1200.0,Shale,Strat_Series,5,3,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",5 17,250.0,1000.0,1300.0,Siltstone,Strat_Series,4,3,False,"${\bf{x}}_{\alpha \,{\bf{4}},2}$",4 16,1750.0,1000.0,1300.0,Siltstone,Strat_Series,4,3,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 15,1000.0,1000.0,1100.0,Siltstone,Strat_Series,4,3,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 20,250.0,1000.0,1500.0,Sandstone,Strat_Series,3,3,False,"${\bf{x}}_{\alpha \,{\bf{3}},2}$",3 19,1000.0,1000.0,1200.0,Sandstone,Strat_Series,3,3,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 18,1750.0,1000.0,1500.0,Sandstone,Strat_Series,3,3,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 21,1000.0,1000.0,1000.0,Shale,Strat_Series,5,3,False,"${\bf{x}}_{\alpha \,{\bf{5}},2}$",5 ================================================ FILE: examples/data/input_data/lisa_models/interfaces8.csv ================================================ ,X,Y,Z,formation,series,formation_number,order_series,isFault,annotations,formation_value 1,700.0,1000.0,900.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",1 2,800.0,1000.0,1200.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",1 3,900.0,1000.0,1500.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},2}$",1 4,500.0,1000.0,300.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},3}$",1 0,600.0,1000.0,600.0,Main_Fault,Fault_Series,1,1,True,"${\bf{x}}_{\alpha \,{\bf{1}},4}$",1 22,250.0,500.0,1100.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",2 23,835.0,450.0,1100.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",2 24,250.0,1500.0,1100.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},2}$",2 25,1250.0,1000.0,1000.0,Sandstone,Strat_Series,2,2,False,"${\bf{x}}_{\alpha \,{\bf{2}},3}$",2 18,755.0,460.0,900.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",3 19,250.0,1500.0,900.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",3 20,1250.0,1000.0,800.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},2}$",3 21,250.0,500.0,900.0,Siltstone,Strat_Series,3,2,False,"${\bf{x}}_{\alpha \,{\bf{3}},3}$",3 16,250.0,500.0,800.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",4 15,1250.0,1000.0,700.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",4 26,715.0,505.0,800.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},2}$",4 13,250.0,1500.0,800.0,Shale,Strat_Series,4,2,False,"${\bf{x}}_{\alpha \,{\bf{4}},3}$",4 14,640.0,490.0,500.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",5 11,1250.0,1000.0,400.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",5 12,250.0,500.0,500.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},2}$",5 9,250.0,1500.0,500.0,Sandstone_2,Strat_Series,5,2,False,"${\bf{x}}_{\alpha \,{\bf{5}},3}$",5 10,250.0,1500.0,300.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",6 8,1250.0,1000.0,200.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",6 7,250.0,500.0,300.0,Schist,Strat_Series,6,2,False,"${\bf{x}}_{\alpha \,{\bf{6}},2}$",6 17,1250.0,1000.0,100.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{7}},0}$",7 6,250.0,500.0,200.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{7}},1}$",7 5,250.0,1500.0,200.0,Gneiss,Strat_Series,7,2,False,"${\bf{x}}_{\alpha \,{\bf{7}},2}$",7 ================================================ FILE: examples/data/input_data/lisa_models/interfaces9.csv ================================================ ,Unnamed: 0,Unnamed: 0.1,X,Y,Z,annotations,formation,formation_number,formation_value,isFault,order_series,series 10,10.0,7.0,2000.0,2000.0,10.0,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",Gneiss,1,1,False,1,Default series 11,11.0,8.0,0.0,500.0,10.0,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",Gneiss,1,1,False,1,Default series 0,0.0,11.0,2000.0,2000.0,1500.0,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",Sandstone,2,2,False,1,Default series 1,1.0,12.0,0.0,500.0,1500.0,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",Sandstone,2,2,False,1,Default series 6,6.0,3.0,2000.0,2000.0,1000.0,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",Sandstone_2,3,3,False,1,Default series 7,7.0,4.0,0.0,500.0,1000.0,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",Sandstone_2,3,3,False,1,Default series 8,8.0,5.0,2000.0,2000.0,700.0,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",Schist,4,4,False,1,Default series 9,9.0,6.0,0.0,500.0,700.0,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",Schist,4,4,False,1,Default series 4,4.0,1.0,2000.0,2000.0,1150.0,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",Shale,5,5,False,1,Default series 5,5.0,2.0,0.0,500.0,1150.0,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",Shale,5,5,False,1,Default series 2,2.0,0.0,0.0,500.0,1400.0,"${\bf{x}}_{\alpha \,{\bf{6}},0}$",Siltstone,6,6,False,1,Default series 3,3.0,10.0,2000.0,2000.0,1400.0,"${\bf{x}}_{\alpha \,{\bf{6}},1}$",Siltstone,6,6,False,1,Default series ================================================ FILE: examples/data/input_data/perth_basin/Paper_GU2F_sc_faults_topo_Foliations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 393936.142320,6693632.776940,957.702303,263.276747,1.193492,1,Permian 396918.892567,6693984.396839,977.204803,83.276747,0.349367,1,Permian 351487.758871,6688628.772226,-7385.646697,83.277000,6.546000,1,Permian 338518.168564,6650708.570891,-4542.306605,256.590252,1.789915,1,Permian 397464.032464,6663077.533819,959.378895,268.100891,1.432093,1,Permian 388231.346475,6662771.397837,-5909.347105,88.100891,1.548158,1,Permian 390067.013711,6693176.666808,-2027.085197,258.305884,56.113829,1,Darling 387480.312066,6692871.734884,-5468.217697,258.453840,50.172150,1,Darling 380685.471752,6692070.728810,-2475.219197,258.181256,59.136216,1,Urella_North 378225.542286,6691780.741356,-5604.015697,258.491356,45.884855,1,Urella_North 349524.174513,6688397.296146,-1722.315697,258.469633,48.978506,1,Eneabba_South 346943.915258,6688093.123680,-4278.195197,258.462867,40.562225,1,Eneabba_South 340944.288072,6687385.860875,-2356.005197,77.995123,62.486979,-1,Coomallo 342643.483167,6687586.169570,-5228.729697,78.277337,56.597000,-1,Coomallo 348362.594755,6688260.363945,-4800.701697,83.277000,7.496000,1,Lesueur 347339.390828,6688139.744103,-5803.145697,83.277000,12.095000,1,Woodada_Kockatea 352054.428028,6688695.573713,-3672.951697,83.277000,7.472000,1,Cattamarra 377146.267897,6662140.215356,-3767.430605,252.583876,73.779822,1,Hypo_fault_E 375633.492464,6661665.672702,-8051.546105,252.583876,66.705447,1,Hypo_fault_E 358317.030388,6656233.670235,-3868.630105,72.583876,74.666723,-1,Hypo_fault_W 359797.619749,6656698.116438,-8017.813105,72.583876,64.573130,-1,Hypo_fault_W 386644.134759,6662718.769315,-2733.176605,262.967799,59.896750,1,Urella_South 384322.099881,6662641.775640,-6850.435605,262.886991,61.379678,1,Urella_South 349566.870409,6653488.831804,-1894.695784,72.584000,14.036000,1,Cretaceous 393713.418971,6662953.171554,-1357.485252,88.101000,0.000000,1,Yarragadee 362273.437500,6691196.250000,265.802829,37.647360,89.720212,-1,Abrolhos_Transfer 382171.344000,6676036.000000,273.424125,216.987277,89.473746,1,Abrolhos_Transfer ================================================ FILE: examples/data/input_data/perth_basin/Paper_GU2F_sc_faults_topo_Points.csv ================================================ X,Y,Z,formation 383267.125849,6692375.065706,42.347303,Lesueur 385656.999410,6692656.794658,42.347303,Lesueur 388158.029281,6692951.627211,42.347303,Lesueur 390510.850409,6693228.988256,-88.233697,Lesueur 352976.841866,6688804.311969,-5833.794697,Lesueur 349411.679351,6653440.149908,-4324.030105,Lesueur 351841.686031,6654202.418911,-4392.337105,Lesueur 380356.701646,6662510.291576,-6567.699105,Lesueur 382545.931510,6662582.881723,-6806.655105,Lesueur 392541.609621,6693468.383207,928.448303,Permian 395330.675019,6693797.170673,986.956303,Permian 398507.110115,6694171.623005,967.453303,Permian 338267.783260,6687070.342554,-4782.514697,Permian 340255.613728,6687304.676873,-5079.046697,Permian 348501.431395,6688276.730627,-7154.775697,Permian 352571.944537,6688756.580866,-7836.879697,Permian 357602.562530,6689349.612546,-8273.556697,Permian 372576.271591,6691114.780137,-7525.440697,Permian 385092.242016,6692590.218538,-1668.921697,Permian 388037.178103,6692937.380735,-1743.054697,Permian 364190.685794,6658076.177701,-10068.796105,Permian 370581.834459,6660081.017671,-10125.561105,Permian 381550.826391,6662549.886180,-9355.525105,Permian 337765.192857,6650305.529894,-4569.541105,Permian 339365.910313,6650910.683888,-4515.072105,Permian 348604.615926,6653186.982113,-6537.306105,Permian 350975.088988,6653930.576010,-6662.921105,Permian 396667.948468,6663051.137388,939.465895,Permian 398260.116460,6663103.930249,979.291895,Permian 387143.811652,6662735.337525,-5879.938105,Permian 389318.881298,6662807.458150,-5938.756105,Permian 344027.770807,6687749.355569,-6023.503697,Woodada_Kockatea 350933.945695,6688563.486259,-7003.554697,Woodada_Kockatea 343600.199481,6687698.951555,-2875.825697,Yarragadee 344814.486275,6687842.097096,-2788.489697,Yarragadee 347069.591029,6688107.938900,-2846.713697,Yarragadee 353590.199732,6688876.617329,-3666.615697,Yarragadee 380367.581667,6662510.652334,-3808.317105,Yarragadee 383506.431648,6662614.729839,-4126.926105,Yarragadee 364082.361402,6658042.197413,-4505.867105,Yarragadee 371404.678673,6660339.135743,-4673.112105,Yarragadee 350920.928223,6653913.586316,-1610.873105,Yarragadee 353520.717446,6654729.114419,-1894.696105,Yarragadee 342049.687219,6651550.532280,-2478.249105,Yarragadee 343851.059886,6651980.003672,-2446.320105,Yarragadee 345590.316523,6652394.665770,-2605.963105,Yarragadee 388868.827634,6662792.535339,-830.809105,Yarragadee 391549.358494,6662881.415969,-958.524105,Yarragadee 394612.827902,6662982.994017,-990.453105,Yarragadee 353033.649508,6688811.008707,-5424.239697,Eneabba 341942.065605,6651524.873845,-4152.902105,Eneabba 342823.407616,6651734.997595,-4152.902105,Eneabba 337375.397545,6650010.823057,-1199.239105,Eneabba 338177.661298,6650617.378871,-1227.176105,Eneabba 353514.305255,6688867.670550,-4863.837697,Cattamarra 353994.961003,6688924.332392,-3972.289697,Cadda 358422.044112,6689446.216689,-737.241697,Cretaceous 386659.170996,6662719.267885,-349.138105,Cretaceous 362632.034534,6657587.244254,-303.620105,Cretaceous 367192.073609,6659017.683301,-940.838105,Cretaceous 373532.695890,6661006.673645,-713.260105,Cretaceous 346487.344000,6707224.000000,229.783830,Cretaceous 346724.219000,6709119.000000,236.946081,Cretaceous 350389.250000,6683986.000000,253.713420,Cretaceous 349437.156000,6693507.000000,238.379141,Cretaceous 345866.844000,6701996.500000,209.750695,Cretaceous 363848.313000,6642899.000000,248.562248,Cretaceous 362850.906000,6651604.000000,222.729354,Cretaceous 358589.188000,6662303.500000,280.211703,Cretaceous 353762.938000,6672419.500000,254.338465,Cretaceous 391199.876318,6693310.213703,-335.036697,Darling 388934.151104,6693043.119912,-3719.133697,Darling 386026.473028,6692700.349855,-7217.301697,Darling 393786.593975,6662955.597879,-2703.767105,Darling 391487.125000,6704623.000000,246.230082,Darling 381591.762732,6692177.566432,-954.276697,Urella_North 379779.180773,6691963.891188,-3996.161697,Urella_North 376671.903799,6691597.591524,-7211.869697,Urella_North 350677.949316,6688533.308264,-391.568697,Eneabba_South 348370.399711,6688261.284028,-3053.062697,Eneabba_South 345517.430806,6687924.963332,-5503.327697,Eneabba_South 347559.222614,6652864.079376,-2586.131105,Eneabba_South 354951.313000,6642333.000000,219.196929,Eneabba_South 353707.750000,6648758.000000,196.407131,Eneabba_South 340231.045846,6687301.780702,-983.011697,Coomallo 341657.530298,6687469.941049,-3728.998697,Coomallo 343629.436036,6687702.398090,-6728.460697,Coomallo 338862.633991,6650790.696066,-1174.500105,Coomallo 340922.351837,6651281.760412,-4585.943105,Coomallo 343668.643595,6651936.513183,-7762.114105,Coomallo 338001.531000,6703286.500000,151.117327,Coomallo 377661.255065,6662301.761725,-1912.105105,Hypo_fault_E 376631.280728,6661978.668988,-5622.756105,Hypo_fault_E 374635.704200,6661352.676416,-10480.336105,Hypo_fault_E 357769.856194,6656062.027115,-1777.172105,Hypo_fault_W 358864.204582,6656405.313355,-5960.088105,Hypo_fault_W 360731.034915,6656990.919521,-10075.538105,Hypo_fault_W 387790.456275,6662756.778868,-762.774105,Urella_South 385497.813244,6662680.759763,-4703.579105,Urella_South 383146.386518,6662602.791518,-8997.292105,Urella_South 352798.250000,6698505.500000,254.579992,Abrolhos_Transfer 371748.625000,6683887.000000,282.857478,Abrolhos_Transfer 392594.063000,6668185.000000,228.405954,Abrolhos_Transfer ================================================ FILE: examples/data/input_data/striplog_integration/alpha_strip.tops ================================================ top, comp lith 0, overburden 50, miguel 75, evan 100, brian 120, dieter ================================================ FILE: examples/data/input_data/striplog_integration/beta_strip.tops ================================================ top, comp lith 0, overburden 50, miguel 80, evan 100, brian 130, dieter ================================================ FILE: examples/data/input_data/striplog_integration/epsilon_strip.tops ================================================ top, comp lith 0, overburden 50, miguel 75, brian 110, dieter ================================================ FILE: examples/data/input_data/striplog_integration/gamma_strip.tops ================================================ top, comp lith 0, overburden 50, miguel 75, evan 100, brian 130, dieter ================================================ FILE: examples/data/input_data/tests/fault_relations_test_ori.csv ================================================ X,Y,Z,G_x,G_y,G_z,id,nugget,formation 350.0,500.0,-700.0,0.8949343616020251,5.4798925069145e-17,0.4461978131098087,26244822,0.01,fault1 550.0,500.0,-600.0,-0.8949343616015264,-1.6439677520734337e-16,0.44619781311080886,124053343,0.01,fault2 400.0,500.0,-625.0,0.0,0.0,1.0,563652887,0.01,rock4 150.0,500.0,-550.0,0.0,0.0,1.0,563652887,0.01,rock4 850.0,500.0,-525.0,0.0,0.0,1.0,563652887,0.01,rock4 400.0,500.0,-675.0,0.0,0.0,1.0,438217026,0.01,rock3 150.0,500.0,-600.0,0.0,0.0,1.0,438217026,0.01,rock3 850.0,500.0,-575.0,0.0,0.0,1.0,438217026,0.01,rock3 850.0,500.0,-625.0,0.0,0.0,1.0,317776925,0.01,rock2 150.0,500.0,-650.0,0.0,0.0,1.0,317776925,0.01,rock2 150.0,500.0,-700.0,0.0,0.0,1.0,267239155,0.01,rock1 850.0,500.0,-675.0,0.0,0.0,1.0,267239155,0.01,rock1 ================================================ FILE: examples/data/input_data/tests/fault_relations_test_surf.csv ================================================ X,Y,Z,id,nugget,formation 300.0,200.0,-600.0,26244822,2e-05,fault1 300.0,500.0,-600.0,26244822,2e-05,fault1 300.0,800.0,-600.0,26244822,2e-05,fault1 350.0,200.0,-700.0,26244822,2e-05,fault1 350.0,500.0,-700.0,26244822,2e-05,fault1 350.0,800.0,-700.0,26244822,2e-05,fault1 400.0,800.0,-800.0,26244822,2e-05,fault1 400.0,500.0,-800.0,26244822,2e-05,fault1 400.0,200.0,-800.0,26244822,2e-05,fault1 500.0,500.0,-700.0,124053343,2e-05,fault2 500.0,200.0,-700.0,124053343,2e-05,fault2 500.0,800.0,-700.0,124053343,2e-05,fault2 550.0,200.0,-600.0,124053343,2e-05,fault2 550.0,500.0,-600.0,124053343,2e-05,fault2 550.0,800.0,-600.0,124053343,2e-05,fault2 600.0,200.0,-500.0,124053343,2e-05,fault2 600.0,500.0,-500.0,124053343,2e-05,fault2 600.0,800.0,-500.0,124053343,2e-05,fault2 400.0,200.0,-625.0,563652887,2e-05,rock4 100.0,500.0,-550.0,563652887,2e-05,rock4 100.0,800.0,-550.0,563652887,2e-05,rock4 100.0,200.0,-550.0,563652887,2e-05,rock4 200.0,200.0,-550.0,563652887,2e-05,rock4 200.0,500.0,-550.0,563652887,2e-05,rock4 200.0,800.0,-550.0,563652887,2e-05,rock4 800.0,200.0,-525.0,563652887,2e-05,rock4 800.0,500.0,-525.0,563652887,2e-05,rock4 800.0,800.0,-525.0,563652887,2e-05,rock4 900.0,200.0,-525.0,563652887,2e-05,rock4 900.0,500.0,-525.0,563652887,2e-05,rock4 900.0,800.0,-525.0,563652887,2e-05,rock4 400.0,500.0,-625.0,563652887,2e-05,rock4 400.0,800.0,-625.0,563652887,2e-05,rock4 400.0,800.0,-675.0,438217026,2e-05,rock3 100.0,200.0,-600.0,438217026,2e-05,rock3 100.0,500.0,-600.0,438217026,2e-05,rock3 100.0,800.0,-600.0,438217026,2e-05,rock3 200.0,200.0,-600.0,438217026,2e-05,rock3 200.0,500.0,-600.0,438217026,2e-05,rock3 200.0,800.0,-600.0,438217026,2e-05,rock3 800.0,200.0,-575.0,438217026,2e-05,rock3 800.0,500.0,-575.0,438217026,2e-05,rock3 800.0,800.0,-575.0,438217026,2e-05,rock3 900.0,500.0,-575.0,438217026,2e-05,rock3 900.0,200.0,-575.0,438217026,2e-05,rock3 900.0,800.0,-575.0,438217026,2e-05,rock3 400.0,200.0,-675.0,438217026,2e-05,rock3 400.0,500.0,-675.0,438217026,2e-05,rock3 200.0,800.0,-650.0,317776925,2e-05,rock2 200.0,500.0,-650.0,317776925,2e-05,rock2 200.0,200.0,-650.0,317776925,2e-05,rock2 100.0,500.0,-650.0,317776925,2e-05,rock2 100.0,800.0,-650.0,317776925,2e-05,rock2 100.0,200.0,-650.0,317776925,2e-05,rock2 900.0,200.0,-625.0,317776925,2e-05,rock2 900.0,500.0,-625.0,317776925,2e-05,rock2 900.0,800.0,-625.0,317776925,2e-05,rock2 800.0,200.0,-625.0,317776925,2e-05,rock2 800.0,500.0,-625.0,317776925,2e-05,rock2 800.0,800.0,-625.0,317776925,2e-05,rock2 100.0,200.0,-700.0,267239155,2e-05,rock1 100.0,500.0,-700.0,267239155,2e-05,rock1 100.0,800.0,-700.0,267239155,2e-05,rock1 200.0,200.0,-700.0,267239155,2e-05,rock1 200.0,500.0,-700.0,267239155,2e-05,rock1 200.0,800.0,-700.0,267239155,2e-05,rock1 900.0,200.0,-675.0,267239155,2e-05,rock1 900.0,500.0,-675.0,267239155,2e-05,rock1 900.0,800.0,-675.0,267239155,2e-05,rock1 800.0,200.0,-675.0,267239155,2e-05,rock1 800.0,500.0,-675.0,267239155,2e-05,rock1 800.0,800.0,-675.0,267239155,2e-05,rock1 ================================================ FILE: examples/data/input_data/tut-ch1-4/tut_ch1-4_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series 0,200.0,50.0,-200.0,0.3126,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 1,500.0,50.0,-200.0,0.5001,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 2,800.0,50.0,-200.0,0.6876,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,seafloor,seafloor_series,1,1 4,700.0,50.0,-450.0,0.6251,0.5001,0.59385,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,right_series,2,2 3,900.0,50.0,-450.0,0.7501,0.5001,0.59385,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,right_series,2,2 6,700.0,50.0,-700.0,0.6251,0.5001,0.4376,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,right_series,3,2 5,900.0,50.0,-700.0,0.7501,0.5001,0.4376,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,right_series,3,2 7,300.0,50.0,-200.0,0.3751,0.5001,0.7501,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,onlap_surface,onlap_series,4,3 8,700.0,50.0,-1000.0,0.6251,0.5001,0.2501,1.000000000001,1.0000612323399569e-12,1.0000612323399569e-12,90.0,90.0,1.0,onlap_surface,onlap_series,4,3 9,550.0,50.0,-500.0,0.53135,0.5001,0.5626,0.766044443119978,1.0000469066937634e-12,0.6427876096875393,50.0,90.0,1.0,onlap_surface,onlap_series,4,3 10,100.0,50.0,-400.0,0.2501,0.5001,0.6251,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,left_series,5,4 11,450.0,50.0,-1000.0,0.46885,0.5001,0.2501,1.000000000001,2.3054614646942163e-12,1.0000612323399569e-12,90.0,89.9999999999252,1.0,rock3,left_series,5,4 12,300.0,50.0,-500.0,0.3751,0.5001,0.5626,0.766044443119978,1.0000469066937634e-12,0.6427876096875393,49.99999999992522,89.9999999999252,1.0,rock3,left_series,5,4 ================================================ FILE: examples/data/input_data/tut-ch1-4/tut_ch1-4_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series 0,200.0,0.0,-200.0,0.3126,0.46885,0.7501,seafloor,seafloor_series,6,1 1,200.0,100.0,-200.0,0.3126,0.53135,0.7501,seafloor,seafloor_series,6,1 2,500.0,0.0,-200.0,0.5001,0.46885,0.7501,seafloor,seafloor_series,6,1 3,500.0,100.0,-200.0,0.5001,0.53135,0.7501,seafloor,seafloor_series,6,1 4,800.0,0.0,-200.0,0.6876,0.46885,0.7501,seafloor,seafloor_series,6,1 5,800.0,100.0,-200.0,0.6876,0.53135,0.7501,seafloor,seafloor_series,6,1 7,700.0,0.0,-450.0,0.6251,0.46885,0.59385,rock1,right_series,4,2 6,700.0,100.0,-450.0,0.6251,0.53135,0.59385,rock1,right_series,4,2 8,900.0,0.0,-450.0,0.7501,0.46885,0.59385,rock1,right_series,4,2 9,900.0,100.0,-450.0,0.7501,0.53135,0.59385,rock1,right_series,4,2 13,700.0,0.0,-700.0,0.6251,0.46885,0.4376,rock2,right_series,5,2 12,700.0,100.0,-700.0,0.6251,0.53135,0.4376,rock2,right_series,5,2 11,900.0,0.0,-700.0,0.7501,0.46885,0.4376,rock2,right_series,5,2 10,900.0,100.0,-700.0,0.7501,0.53135,0.4376,rock2,right_series,5,2 14,300.0,0.0,-200.0,0.3751,0.46885,0.7501,onlap_surface,onlap_series,3,3 15,300.0,100.0,-200.0,0.3751,0.53135,0.7501,onlap_surface,onlap_series,3,3 16,700.0,0.0,-1000.0,0.6251,0.46885,0.2501,onlap_surface,onlap_series,3,3 17,700.0,100.0,-1000.0,0.6251,0.53135,0.2501,onlap_surface,onlap_series,3,3 18,550.0,0.0,-500.0,0.53135,0.46885,0.5626,onlap_surface,onlap_series,3,3 19,550.0,100.0,-500.0,0.53135,0.53135,0.5626,onlap_surface,onlap_series,3,3 20,100.0,0.0,-400.0,0.2501,0.46885,0.6251,rock3,left_series,2,4 21,100.0,100.0,-400.0,0.2501,0.53135,0.6251,rock3,left_series,2,4 22,450.0,0.0,-1000.0,0.46885,0.46885,0.2501,rock3,left_series,2,4 23,450.0,100.0,-1000.0,0.46885,0.53135,0.2501,rock3,left_series,2,4 24,300.0,0.0,-500.0,0.3751,0.46885,0.5626,rock3,left_series,2,4 25,300.0,100.0,-500.0,0.3751,0.53135,0.5626,rock3,left_series,2,4 ================================================ FILE: examples/data/input_data/tut-ch1-5/tut_ch1-5_orientations.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,G_x,G_y,G_z,dip,azimuth,polarity,surface,series,id,order_series 13,550.0,500.0,-600.0,0.53135,0.5001,0.53135,-0.8949343616010249,9.576199963080072e-18,0.4461978131108091,63.49999999993597,270.0,1.0,fault2,fault_series2,1,1 10,350.0,500.0,-700.0,0.40635,0.5001,0.46885,0.8949343616030251,1.0000547989250692e-12,0.4461978131108087,63.5,90.0,1.0,fault1,fault_series1,2,2 11,400.0,500.0,-625.0,0.4376,0.5001,0.515725,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 7,150.0,500.0,-550.0,0.28135,0.5001,0.5626,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 6,850.0,500.0,-525.0,0.71885,0.5001,0.578225,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock4,series1,3,3 12,400.0,500.0,-675.0,0.4376,0.5001,0.484475,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 5,150.0,500.0,-600.0,0.28135,0.5001,0.53135,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 4,850.0,500.0,-575.0,0.71885,0.5001,0.546975,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock3,series1,4,3 3,850.0,500.0,-625.0,0.71885,0.5001,0.515725,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 2,150.0,500.0,-650.0,0.28135,0.5001,0.5001,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock2,series1,5,3 0,150.0,500.0,-700.0,0.28135,0.5001,0.46885,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 1,850.0,500.0,-675.0,0.71885,0.5001,0.484475,1e-12,1e-12,1.000000000001,0.0,0.0,1.0,rock1,series1,6,3 ================================================ FILE: examples/data/input_data/tut-ch1-5/tut_ch1-5_points.csv ================================================ ,X,Y,Z,X_r,Y_r,Z_r,surface,series,id,order_series 71,500.0,500.0,-700.0,0.5001,0.5001,0.46885,fault2,fault_series2,3,1 66,500.0,200.0,-700.0,0.5001,0.3126,0.46885,fault2,fault_series2,3,1 72,500.0,800.0,-700.0,0.5001,0.6876,0.46885,fault2,fault_series2,3,1 73,550.0,200.0,-600.0,0.53135,0.3126,0.53135,fault2,fault_series2,3,1 74,550.0,500.0,-600.0,0.53135,0.5001,0.53135,fault2,fault_series2,3,1 75,550.0,800.0,-600.0,0.53135,0.6876,0.53135,fault2,fault_series2,3,1 76,600.0,200.0,-500.0,0.5626,0.3126,0.59385,fault2,fault_series2,3,1 77,600.0,500.0,-500.0,0.5626,0.5001,0.59385,fault2,fault_series2,3,1 78,600.0,800.0,-500.0,0.5626,0.6876,0.59385,fault2,fault_series2,3,1 57,300.0,200.0,-600.0,0.3751,0.3126,0.53135,fault1,fault_series1,2,2 58,300.0,500.0,-600.0,0.3751,0.5001,0.53135,fault1,fault_series1,2,2 59,300.0,800.0,-600.0,0.3751,0.6876,0.53135,fault1,fault_series1,2,2 62,350.0,200.0,-700.0,0.40635,0.3126,0.46885,fault1,fault_series1,2,2 61,350.0,500.0,-700.0,0.40635,0.5001,0.46885,fault1,fault_series1,2,2 63,350.0,800.0,-700.0,0.40635,0.6876,0.46885,fault1,fault_series1,2,2 64,400.0,800.0,-800.0,0.4376,0.6876,0.40635,fault1,fault_series1,2,2 65,400.0,500.0,-800.0,0.4376,0.5001,0.40635,fault1,fault_series1,2,2 60,400.0,200.0,-800.0,0.4376,0.3126,0.40635,fault1,fault_series1,2,2 79,400.0,200.0,-625.0,0.4376,0.3126,0.515725,rock4,series1,4,3 34,100.0,500.0,-550.0,0.2501,0.5001,0.5626,rock4,series1,4,3 35,100.0,800.0,-550.0,0.2501,0.6876,0.5626,rock4,series1,4,3 33,100.0,200.0,-550.0,0.2501,0.3126,0.5626,rock4,series1,4,3 36,200.0,200.0,-550.0,0.3126,0.3126,0.5626,rock4,series1,4,3 37,200.0,500.0,-550.0,0.3126,0.5001,0.5626,rock4,series1,4,3 38,200.0,800.0,-550.0,0.3126,0.6876,0.5626,rock4,series1,4,3 39,800.0,200.0,-525.0,0.6876,0.3126,0.578225,rock4,series1,4,3 40,800.0,500.0,-525.0,0.6876,0.5001,0.578225,rock4,series1,4,3 41,800.0,800.0,-525.0,0.6876,0.6876,0.578225,rock4,series1,4,3 42,900.0,200.0,-525.0,0.7501,0.3126,0.578225,rock4,series1,4,3 43,900.0,500.0,-525.0,0.7501,0.5001,0.578225,rock4,series1,4,3 44,900.0,800.0,-525.0,0.7501,0.6876,0.578225,rock4,series1,4,3 80,400.0,500.0,-625.0,0.4376,0.5001,0.515725,rock4,series1,4,3 81,400.0,800.0,-625.0,0.4376,0.6876,0.515725,rock4,series1,4,3 82,400.0,800.0,-675.0,0.4376,0.6876,0.484475,rock3,series1,5,3 25,100.0,200.0,-600.0,0.2501,0.3126,0.53135,rock3,series1,5,3 26,100.0,500.0,-600.0,0.2501,0.5001,0.53135,rock3,series1,5,3 24,100.0,800.0,-600.0,0.2501,0.6876,0.53135,rock3,series1,5,3 27,200.0,200.0,-600.0,0.3126,0.3126,0.53135,rock3,series1,5,3 28,200.0,500.0,-600.0,0.3126,0.5001,0.53135,rock3,series1,5,3 29,200.0,800.0,-600.0,0.3126,0.6876,0.53135,rock3,series1,5,3 30,800.0,200.0,-575.0,0.6876,0.3126,0.546975,rock3,series1,5,3 31,800.0,500.0,-575.0,0.6876,0.5001,0.546975,rock3,series1,5,3 32,800.0,800.0,-575.0,0.6876,0.6876,0.546975,rock3,series1,5,3 67,900.0,500.0,-575.0,0.7501,0.5001,0.546975,rock3,series1,5,3 68,900.0,200.0,-575.0,0.7501,0.3126,0.546975,rock3,series1,5,3 69,900.0,800.0,-575.0,0.7501,0.6876,0.546975,rock3,series1,5,3 83,400.0,200.0,-675.0,0.4376,0.3126,0.484475,rock3,series1,5,3 84,400.0,500.0,-675.0,0.4376,0.5001,0.484475,rock3,series1,5,3 17,200.0,800.0,-650.0,0.3126,0.6876,0.5001,rock2,series1,6,3 16,200.0,500.0,-650.0,0.3126,0.5001,0.5001,rock2,series1,6,3 15,200.0,200.0,-650.0,0.3126,0.3126,0.5001,rock2,series1,6,3 13,100.0,500.0,-650.0,0.2501,0.5001,0.5001,rock2,series1,6,3 14,100.0,800.0,-650.0,0.2501,0.6876,0.5001,rock2,series1,6,3 12,100.0,200.0,-650.0,0.2501,0.3126,0.5001,rock2,series1,6,3 18,900.0,200.0,-625.0,0.7501,0.3126,0.515725,rock2,series1,6,3 19,900.0,500.0,-625.0,0.7501,0.5001,0.515725,rock2,series1,6,3 20,900.0,800.0,-625.0,0.7501,0.6876,0.515725,rock2,series1,6,3 21,800.0,200.0,-625.0,0.6876,0.3126,0.515725,rock2,series1,6,3 22,800.0,500.0,-625.0,0.6876,0.5001,0.515725,rock2,series1,6,3 23,800.0,800.0,-625.0,0.6876,0.6876,0.515725,rock2,series1,6,3 0,100.0,200.0,-700.0,0.2501,0.3126,0.46885,rock1,series1,7,3 1,100.0,500.0,-700.0,0.2501,0.5001,0.46885,rock1,series1,7,3 2,100.0,800.0,-700.0,0.2501,0.6876,0.46885,rock1,series1,7,3 3,200.0,200.0,-700.0,0.3126,0.3126,0.46885,rock1,series1,7,3 4,200.0,500.0,-700.0,0.3126,0.5001,0.46885,rock1,series1,7,3 5,200.0,800.0,-700.0,0.3126,0.6876,0.46885,rock1,series1,7,3 6,900.0,200.0,-675.0,0.7501,0.3126,0.484475,rock1,series1,7,3 7,900.0,500.0,-675.0,0.7501,0.5001,0.484475,rock1,series1,7,3 8,900.0,800.0,-675.0,0.7501,0.6876,0.484475,rock1,series1,7,3 9,800.0,200.0,-675.0,0.6876,0.3126,0.484475,rock1,series1,7,3 10,800.0,500.0,-675.0,0.6876,0.5001,0.484475,rock1,series1,7,3 11,800.0,800.0,-675.0,0.6876,0.6876,0.484475,rock1,series1,7,3 ================================================ FILE: examples/data/input_data/tut-ch1-7/onelayer_interfaces.csv ================================================ X,Y,Z,formation 450000,79300,205,layer1 458000,79300,-402.,layer1 450760,70668,205,layer1 460000,70668,-402.,layer1 ================================================ FILE: examples/data/input_data/tut-ch1-7/onelayer_orient.csv ================================================ X,Y,Z,formation,azimuth,dip,polarity 450760,75484,205,layer1,0,0,1 455000,75484,-402,layer1,0,0,1 ================================================ FILE: examples/data/input_data/tut_SandStone/SandStone_Foliations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 739426.627684,6891935.451484,75.422691,220,70,1,SimpleBIF 717311.112372,6891940.971393,-1497.488309,90,60,1,SimpleBIF 723415.321182,6891939.447817,-5298.154309,10,20,1,SimpleMafic1 742907.686575,6891934.582632,-2786.869309,250,60,1,SimpleMafic1 712584.536312,6891942.15112,-582.769334,90.014,60,1,SimpleMafic1 724309.279198,6905712.031145,-3763.862995,90,50,1,SimpleMafic1 728653.933257,6905714.891064,-4196.807995,269.962,9.09,1,SimpleMafic1 732788.182361,6905717.612482,-1680.306995,269.962,60,1,SimpleMafic1 727261.874621,6877214.496202,-5666.992176,360,20,1,SimpleMafic1 718902.531298,6900478.748653,-1882.895297,83.123,20.726,1,SimpleMafic1 733335.732778,6903150.931884,-1538.629297,255.407,51.633,1,SimpleMafic1 730820.452963,6902599.428688,-3825.776297,258.709,21.801,1,SimpleMafic1 725461.656,6915002,510.686328,103.095,60,1,SimpleMafic1 726102.312,6917775.5,499.040304,0,-60,1,SimpleMafic1 727390.156,6913486.75,517.569243,71.561,-60,1,SimpleMafic1 743403.6875,6877878.25,454.749952,169.802194,80,1,EarlyGranite 738704.4065,6877046,458.14874,170.056246,80,1,EarlyGranite 735326.7815,6875283.75,452.966456,114.812185,80,1,EarlyGranite 734151.969,6874304.75,448.179887,206.518042,80,1,EarlyGranite 734200.938,6875724.5,461.985804,299.406115,80,1,EarlyGranite 735082.063,6879102.25,480.551436,276.153239,80,1,EarlyGranite 734592.563,6882039.25,487.287083,223.053093,80,1,EarlyGranite 732683.469,6882332.75,481.711952,161.600709,80,1,EarlyGranite 730627.5315,6880472.5,477.402658,120.986348,80,1,EarlyGranite 728767.4065,6878759.25,470.031623,165.980598,80,1,EarlyGranite 728571.594,6879934.25,472.536776,298.870347,80,1,EarlyGranite 729256.9065,6882724.5,471.722924,265.872737,80,1,EarlyGranite 727739.4375,6884242,474.258726,185.941204,80,1,EarlyGranite 724802.4065,6883312,473.707869,144.627207,80,1,EarlyGranite 722403.813,6880913.25,470.707065,123.702047,80,1,EarlyGranite 721229.0005,6880766.25,477.680894,255.876557,80,1,EarlyGranite 720690.563,6882822.25,489.909423,254.444427,80,1,EarlyGranite 718928.344,6883605.5,509.462245,176.274084,80,1,EarlyGranite 715991.2815,6882773.25,505.165864,152.654159,80,1,EarlyGranite 712907.3755,6880766.25,512.582136,142.596411,80,1,EarlyGranite 710459.844,6880521.5,511.839758,232.658556,80,1,EarlyGranite 709970.344,6882724.5,532.967915,283.997896,80,1,EarlyGranite 709089.2505,6883312,519.457428,153.495937,80,1,EarlyGranite 705858.5005,6880032.25,494.307044,127.40325,80,1,EarlyGranite 701844.5315,6875137.25,476.658525,131.656118,80,1,EarlyGranite 698466.9375,6871074.25,463.972201,127.377257,80,1,EarlyGranite ================================================ FILE: examples/data/input_data/tut_SandStone/SandStone_Points.csv ================================================ X,Y,Z,formation 735484.817806,6891936.435338,-1819.319309,SimpleMafic2 729854.915982,6891937.84053,-1432.263309,SimpleMafic2 724084.267161,6891939.280852,-4739.830309,SimpleMafic2 733521.625,6895282.5,521.55524,SimpleMafic2 721933.375,6884591.5,496.669295,SimpleMafic2 724251,6886909,484.550926,SimpleMafic2 727316.313,6886460.5,478.254423,SimpleMafic2 729858.25,6887133.5,484.259574,SimpleMafic2 732699.25,6885040,494.526481,SimpleMafic2 716849.5,6887358,508.981894,SimpleMafic2 719017.625,6892217.5,508.179387,SimpleMafic2 739179.440691,6891935.513181,-552.591309,SimpleBIF 735564.599804,6891936.415425,-2652.196309,SimpleBIF 730009.009977,6891937.802069,-2088.409309,SimpleBIF 718795.791326,6891940.600826,-2773.169309,SimpleBIF 724143.38616,6891939.266096,-5569.907309,SimpleBIF 723877.188,6899768.5,529.152169,SimpleBIF 732998.313,6898049,521.619609,SimpleBIF 743689.438,6891769,512.811278,SimpleBIF 712961.813,6882722.5,547.826016,SimpleBIF 716284.875,6891346.5,515.58686,SimpleBIF 718942.875,6897600.5,538.490136,SimpleBIF 722157.625,6882947,481.747055,SimpleBIF 723952,6885488.5,480.122832,SimpleBIF 728736.813,6885488.5,477.929009,SimpleBIF 738829.813,6878087,470.081431,SimpleBIF 715522.708428,6891941.417769,-2810.185309,SimpleMafic1 722100.017223,6891939.77611,-5640.110309,SimpleMafic1 728133.723035,6891938.27013,-8458.173309,SimpleMafic1 733022.378883,6891937.049949,-7358.592309,SimpleMafic1 737972.021729,6891935.814546,-5589.549309,SimpleMafic1 726443.009736,6905713.435698,-5023.656995,SimpleMafic1 727109.335202,6886862.614432,-6720.406176,SimpleMafic1 726266.236469,6901753.815655,-5708.065297,SimpleMafic1 732617.810926,6902964.017319,-3068.116297,SimpleMafic1 709728.25,6885850.5,532.936577,SimpleMafic1 714271.063,6897386,536.831254,SimpleMafic1 722693.188,6907492.5,555.452867,SimpleMafic1 725092.188,6913005,514.864987,SimpleMafic1 744692.688,6890291,496.019711,SimpleMafic1 738924.813,6900193.5,551.633725,SimpleMafic1 729430.813,6908717.5,517.178069,SimpleMafic1 726929.75,6916017,502.161614,SimpleMafic1 745312.75,6878221,452.733051,EarlyGranite 741494.625,6877535.5,460.20235,EarlyGranite 735914.188,6876556.5,456.482389,EarlyGranite 734739.375,6874011,446.031913,EarlyGranite 733564.563,6874598.5,452.620638,EarlyGranite 734837.313,6876850.5,469.89565,EarlyGranite 735326.813,6881354,492.347775,EarlyGranite 733858.313,6882724.5,486.360734,EarlyGranite 731508.625,6881941,476.162317,EarlyGranite 729746.438,6879004,468.440123,EarlyGranite 727788.375,6878514.5,465.162276,EarlyGranite 729354.813,6881354,469.466421,EarlyGranite 729159,6884095,480.639992,EarlyGranite 726319.875,6884389,472.411447,EarlyGranite 723284.938,6882235,475.413461,EarlyGranite 721522.688,6879591.5,471.253042,EarlyGranite 720935.313,6881941,492.156175,EarlyGranite 720445.813,6883703.5,498.30804,EarlyGranite 717410.875,6883507.5,507.584619,EarlyGranite 714571.688,6882039,506.534612,EarlyGranite 711243.063,6879493.5,505.437117,EarlyGranite 709676.625,6881549.5,515.202397,EarlyGranite 710264.063,6883899.5,524.055665,EarlyGranite 707914.438,6882724.5,507.245636,EarlyGranite 703802.563,6877340,483.052807,EarlyGranite 699886.5,6872934.5,470.146586,EarlyGranite 697047.375,6869214,456.299059,EarlyGranite ================================================ FILE: examples/data/input_data/tut_SandStone/Sst_grav_1000.xyz ================================================ 705000 6863000 1 -723.8629 706000 6863000 2 -725.2547 707000 6863000 3 -726.8271 708000 6863000 4 -726.4553 709000 6863000 5 -722.9324 710000 6863000 6 -719.4084 711000 6863000 7 -718.4475 712000 6863000 8 -718.8212 713000 6863000 9 -717.3098 714000 6863000 10 -713.2889 715000 6863000 11 -708.5842 716000 6863000 12 -704.3437 717000 6863000 13 -700.0275 718000 6863000 14 -694.9326 719000 6863000 15 -689.4221 720000 6863000 16 -685.2185 721000 6863000 17 -683.6333 722000 6863000 18 -683.5656 723000 6863000 19 -682.7458 724000 6863000 20 -680.5811 725000 6863000 21 -678.6658 726000 6863000 22 -678.0215 727000 6863000 23 -676.4469 728000 6863000 24 -670.7566 729000 6863000 25 -661.5299 730000 6863000 26 -653.5567 731000 6863000 27 -650.6743 732000 6863000 28 -650.3883 733000 6863000 29 -650.9796 734000 6863000 30 -651.0952 735000 6863000 31 -648.3242 736000 6863000 32 -641.7548 737000 6863000 33 -635.082 738000 6863000 34 -633.9037 739000 6863000 35 -637.3021 740000 6863000 36 -641.7147 741000 6863000 37 -645.5502 742000 6863000 38 -649.1839 743000 6863000 39 -651.5155 744000 6863000 40 -652.0624 745000 6863000 41 -652.033 746000 6863000 42 -653.8615 747000 6863000 43 -658.2811 705000 6864000 1 -729.8474 706000 6864000 2 -730.6081 707000 6864000 3 -731.2342 708000 6864000 4 -729.78 709000 6864000 5 -725.515 710000 6864000 6 -721.5048 711000 6864000 7 -721.0524 712000 6864000 8 -722.1835 713000 6864000 9 -720.5401 714000 6864000 10 -716.2643 715000 6864000 11 -711.5778 716000 6864000 12 -707.6698 717000 6864000 13 -703.8771 718000 6864000 14 -699.1996 719000 6864000 15 -693.6162 720000 6864000 16 -688.9047 721000 6864000 17 -686.7296 722000 6864000 18 -686.1223 723000 6864000 19 -685.5836 724000 6864000 20 -684.6586 725000 6864000 21 -683.4211 726000 6864000 22 -681.4984 727000 6864000 23 -678.3448 728000 6864000 24 -672.7161 729000 6864000 25 -665.1428 730000 6864000 26 -658.5569 731000 6864000 27 -655.0059 732000 6864000 28 -653.5521 733000 6864000 29 -653.5563 734000 6864000 30 -653.5522 735000 6864000 31 -650.9435 736000 6864000 32 -645.1258 737000 6864000 33 -639.261 738000 6864000 34 -636.4318 739000 6864000 35 -637.0764 740000 6864000 36 -640.7131 741000 6864000 37 -646.6425 742000 6864000 38 -652.3169 743000 6864000 39 -655.2731 744000 6864000 40 -655.9913 745000 6864000 41 -656.3199 746000 6864000 42 -658.0019 747000 6864000 43 -661.9051 705000 6865000 1 -735.1776 706000 6865000 2 -735.2943 707000 6865000 3 -734.9955 708000 6865000 4 -732.7813 709000 6865000 5 -728.0795 710000 6865000 6 -723.866 711000 6865000 7 -723.8947 712000 6865000 8 -725.5955 713000 6865000 9 -723.7209 714000 6865000 10 -719.0692 715000 6865000 11 -714.3048 716000 6865000 12 -710.819 717000 6865000 13 -707.759 718000 6865000 14 -703.7495 719000 6865000 15 -698.3737 720000 6865000 16 -693.4236 721000 6865000 17 -690.673 722000 6865000 18 -689.3309 723000 6865000 19 -688.4775 724000 6865000 20 -687.7656 725000 6865000 21 -686.2595 726000 6865000 22 -683.0327 727000 6865000 23 -678.7661 728000 6865000 24 -673.9252 729000 6865000 25 -668.8709 730000 6865000 26 -664.3306 731000 6865000 27 -660.5024 732000 6865000 28 -657.6382 733000 6865000 29 -656.1952 734000 6865000 30 -655.2681 735000 6865000 31 -652.5296 736000 6865000 32 -647.3307 737000 6865000 33 -642.2575 738000 6865000 34 -638.6219 739000 6865000 35 -637.0515 740000 6865000 36 -639.5684 741000 6865000 37 -646.9041 742000 6865000 38 -654.1202 743000 6865000 39 -657.5099 744000 6865000 40 -658.6378 745000 6865000 41 -659.8027 746000 6865000 42 -661.801 747000 6865000 43 -665.3403 705000 6866000 1 -739.6504 706000 6866000 2 -739.1899 707000 6866000 3 -738.1846 708000 6866000 4 -735.66 709000 6866000 5 -731.5015 710000 6866000 6 -728.1897 711000 6866000 7 -728.1157 712000 6866000 8 -729.1428 713000 6866000 9 -727.1031 714000 6866000 10 -722.2621 715000 6866000 11 -717.1272 716000 6866000 12 -713.7672 717000 6866000 13 -711.3845 718000 6866000 14 -708.2551 719000 6866000 15 -703.771 720000 6866000 16 -699.3611 721000 6866000 17 -696.1456 722000 6866000 18 -693.8103 723000 6866000 19 -691.933 724000 6866000 20 -690.0877 725000 6866000 21 -687.1922 726000 6866000 22 -682.7016 727000 6866000 23 -677.7503 728000 6866000 24 -673.9568 729000 6866000 25 -671.5008 730000 6866000 26 -669.1102 731000 6866000 27 -665.5934 732000 6866000 28 -661.7293 733000 6866000 29 -658.3696 734000 6866000 30 -655.3212 735000 6866000 31 -651.5746 736000 6866000 32 -646.8954 737000 6866000 33 -642.8697 738000 6866000 34 -640.4749 739000 6866000 35 -639.8943 740000 6866000 36 -642.0357 741000 6866000 37 -647.2793 742000 6866000 38 -652.5623 743000 6866000 39 -655.7138 744000 6866000 40 -657.8908 745000 6866000 41 -660.4846 746000 6866000 42 -663.599 747000 6866000 43 -667.4834 705000 6867000 1 -743.27 706000 6867000 2 -742.3435 707000 6867000 3 -740.8545 708000 6867000 4 -738.2505 709000 6867000 5 -734.939 710000 6867000 6 -732.8619 711000 6867000 7 -732.8603 712000 6867000 8 -733.2065 713000 6867000 9 -731.0715 714000 6867000 10 -725.9368 715000 6867000 11 -720.1178 716000 6867000 12 -716.6469 717000 6867000 13 -714.7747 718000 6867000 14 -712.467 719000 6867000 15 -709.1193 720000 6867000 16 -705.6784 721000 6867000 17 -702.4286 722000 6867000 18 -699.2365 723000 6867000 19 -696.0385 724000 6867000 20 -692.4525 725000 6867000 21 -687.653 726000 6867000 22 -681.6905 727000 6867000 23 -675.9991 728000 6867000 24 -673.0421 729000 6867000 25 -672.8461 730000 6867000 26 -672.4194 731000 6867000 27 -669.3245 732000 6867000 28 -664.7068 733000 6867000 29 -659.4589 734000 6867000 30 -653.8413 735000 6867000 31 -648.5748 736000 6867000 32 -644.5888 737000 6867000 33 -642.205 738000 6867000 34 -642.2599 739000 6867000 35 -644.392 740000 6867000 36 -646.6224 741000 6867000 37 -647.3414 742000 6867000 38 -648.0603 743000 6867000 39 -650.2123 744000 6867000 40 -653.7046 745000 6867000 41 -657.8735 746000 6867000 42 -662.5239 747000 6867000 43 -667.3595 705000 6868000 1 -746.1437 706000 6868000 2 -744.9362 707000 6868000 3 -743.0731 708000 6868000 4 -740.2125 709000 6868000 5 -737.3142 710000 6868000 6 -736.1534 711000 6868000 7 -736.7551 712000 6868000 8 -737.2551 713000 6868000 9 -735.4113 714000 6868000 10 -730.3822 715000 6868000 11 -724.2855 716000 6868000 12 -720.284 717000 6868000 13 -718.1212 718000 6868000 14 -716.054 719000 6868000 15 -713.5837 720000 6868000 16 -711.1713 721000 6868000 17 -708.6161 722000 6868000 18 -705.4636 723000 6868000 19 -701.1832 724000 6868000 20 -695.5107 725000 6868000 21 -688.5659 726000 6868000 22 -681.1393 727000 6868000 23 -674.9142 728000 6868000 24 -672.1929 729000 6868000 25 -672.7728 730000 6868000 26 -673.1794 731000 6868000 27 -670.6844 732000 6868000 28 -666.0043 733000 6868000 29 -659.6311 734000 6868000 30 -652.2498 735000 6868000 31 -645.974 736000 6868000 32 -642.3809 737000 6868000 33 -641.2592 738000 6868000 34 -643.0374 739000 6868000 35 -646.5942 740000 6868000 36 -648.3993 741000 6868000 37 -646.0201 742000 6868000 38 -643.1124 743000 6868000 39 -643.9417 744000 6868000 40 -647.7448 745000 6868000 41 -652.4603 746000 6868000 42 -657.8663 747000 6868000 43 -663.2643 705000 6869000 1 -748.5695 706000 6869000 2 -747.245 707000 6869000 3 -745.0706 708000 6869000 4 -741.6584 709000 6869000 5 -738.4399 710000 6869000 6 -737.7232 711000 6869000 7 -739.4814 712000 6869000 8 -740.9081 713000 6869000 9 -739.7539 714000 6869000 10 -735.424 715000 6869000 11 -729.6874 716000 6869000 12 -724.7477 717000 6869000 13 -721.3306 718000 6869000 14 -718.8414 719000 6869000 15 -716.789 720000 6869000 16 -715.2968 721000 6869000 17 -714.0759 722000 6869000 18 -711.9163 723000 6869000 19 -706.9794 724000 6869000 20 -699.0474 725000 6869000 21 -689.9049 726000 6869000 22 -681.1829 727000 6869000 23 -674.6178 728000 6869000 24 -671.6725 729000 6869000 25 -671.7305 730000 6869000 26 -671.8185 731000 6869000 27 -669.7419 732000 6869000 28 -665.4342 733000 6869000 29 -658.8151 734000 6869000 30 -650.8121 735000 6869000 31 -644.2858 736000 6869000 32 -640.9987 737000 6869000 33 -640.2739 738000 6869000 34 -642.4924 739000 6869000 35 -646.2803 740000 6869000 36 -647.6542 741000 6869000 37 -644.3536 742000 6869000 38 -640.5723 743000 6869000 39 -640.0993 744000 6869000 40 -642.435 745000 6869000 41 -645.9333 746000 6869000 42 -650.2281 747000 6869000 43 -654.4946 705000 6870000 1 -750.9945 706000 6870000 2 -749.4245 707000 6870000 3 -746.856 708000 6870000 4 -743.0251 709000 6870000 5 -739.4437 710000 6870000 6 -739.0991 711000 6870000 7 -742.1688 712000 6870000 8 -744.678 713000 6870000 9 -744.2037 714000 6870000 10 -740.2057 715000 6870000 11 -734.3273 716000 6870000 12 -728.2827 717000 6870000 13 -723.3759 718000 6870000 14 -720.2795 719000 6870000 15 -718.8377 720000 6870000 16 -718.511 721000 6870000 17 -718.6995 722000 6870000 18 -717.3859 723000 6870000 19 -711.8195 724000 6870000 20 -702.0381 725000 6870000 21 -691.0372 726000 6870000 22 -681.2697 727000 6870000 23 -674.4028 728000 6870000 24 -671.1432 729000 6870000 25 -670.5698 730000 6870000 26 -669.9548 731000 6870000 27 -667.5189 732000 6870000 28 -662.9973 733000 6870000 29 -656.6576 734000 6870000 30 -649.4879 735000 6870000 31 -643.7416 736000 6870000 32 -640.9612 737000 6870000 33 -640.0246 738000 6870000 34 -641.3194 739000 6870000 35 -643.7433 740000 6870000 36 -644.2726 741000 6870000 37 -641.5922 742000 6870000 38 -638.9683 743000 6870000 39 -638.3649 744000 6870000 40 -639.3925 745000 6870000 41 -641.2292 746000 6870000 42 -643.5736 747000 6870000 43 -646.0243 705000 6871000 1 -754.3669 706000 6871000 2 -751.8713 707000 6871000 3 -748.5646 708000 6871000 4 -745.0576 709000 6871000 5 -742.519 710000 6871000 6 -742.7988 711000 6871000 7 -745.9435 712000 6871000 8 -748.6387 713000 6871000 9 -748.3953 714000 6871000 10 -744.114 715000 6871000 11 -737.5428 716000 6871000 12 -730.3738 717000 6871000 13 -723.9728 718000 6871000 14 -720.2718 719000 6871000 15 -720.1609 720000 6871000 16 -721.729 721000 6871000 17 -722.9586 722000 6871000 18 -721.7369 723000 6871000 19 -715.3544 724000 6871000 20 -703.9875 725000 6871000 21 -691.4811 726000 6871000 22 -681.1443 727000 6871000 23 -674.3745 728000 6871000 24 -671.047 729000 6871000 25 -670.0239 730000 6871000 26 -668.6172 731000 6871000 27 -665.035 732000 6871000 28 -659.4924 733000 6871000 29 -653.516 734000 6871000 30 -648.4738 735000 6871000 31 -644.7825 736000 6871000 32 -642.4282 737000 6871000 33 -641.1547 738000 6871000 34 -640.5202 739000 6871000 35 -639.2214 740000 6871000 36 -637.3436 741000 6871000 37 -636.9272 742000 6871000 38 -636.9487 743000 6871000 39 -637.5737 744000 6871000 40 -638.8878 745000 6871000 41 -640.1475 746000 6871000 42 -640.8153 747000 6871000 43 -641.6686 705000 6872000 1 -758.8167 706000 6872000 2 -754.5789 707000 6872000 3 -750.0815 708000 6872000 4 -747.4048 709000 6872000 5 -747.1372 710000 6872000 6 -748.2502 711000 6872000 7 -749.8807 712000 6872000 8 -751.609 713000 6872000 9 -751.3218 714000 6872000 10 -746.8555 715000 6872000 11 -739.8886 716000 6872000 12 -731.9398 717000 6872000 13 -724.1589 718000 6872000 14 -719.6393 719000 6872000 15 -720.7021 720000 6872000 16 -724.1617 721000 6872000 17 -725.8776 722000 6872000 18 -724.2868 723000 6872000 19 -717.4488 724000 6872000 20 -704.8765 725000 6872000 21 -691.2409 726000 6872000 22 -681.0361 727000 6872000 23 -674.9259 728000 6872000 24 -671.7219 729000 6872000 25 -670.296 730000 6872000 26 -668.0718 731000 6872000 27 -662.9372 732000 6872000 28 -655.8574 733000 6872000 29 -649.4745 734000 6872000 30 -645.7734 735000 6872000 31 -643.9171 736000 6872000 32 -641.8557 737000 6872000 33 -641.0311 738000 6872000 34 -639.8704 739000 6872000 35 -636.4351 740000 6872000 36 -632.9855 741000 6872000 37 -633.6514 742000 6872000 38 -635.0123 743000 6872000 39 -636.7814 744000 6872000 40 -639.3104 745000 6872000 41 -641.0886 746000 6872000 42 -640.8064 747000 6872000 43 -640.1898 705000 6873000 1 -762.621 706000 6873000 2 -756.4051 707000 6873000 3 -750.249 708000 6873000 4 -747.9705 709000 6873000 5 -749.3344 710000 6873000 6 -750.9233 711000 6873000 7 -751.0689 712000 6873000 8 -751.4086 713000 6873000 9 -751.3752 714000 6873000 10 -748.2352 715000 6873000 11 -742.1465 716000 6873000 12 -734.0484 717000 6873000 13 -725.4124 718000 6873000 14 -719.5511 719000 6873000 15 -719.3914 720000 6873000 16 -722.6395 721000 6873000 17 -724.3807 722000 6873000 18 -723.1212 723000 6873000 19 -717.2155 724000 6873000 20 -705.2951 725000 6873000 21 -691.8326 726000 6873000 22 -682.2547 727000 6873000 23 -676.756 728000 6873000 24 -673.2594 729000 6873000 25 -670.7527 730000 6873000 26 -667.2935 731000 6873000 27 -660.8227 732000 6873000 28 -652.3724 733000 6873000 29 -643.9525 734000 6873000 30 -637.527 735000 6873000 31 -634.0397 736000 6873000 32 -632.8763 737000 6873000 33 -634.7797 738000 6873000 34 -636.1608 739000 6873000 35 -635.1838 740000 6873000 36 -633.7174 741000 6873000 37 -632.6359 742000 6873000 38 -632.429 743000 6873000 39 -634.345 744000 6873000 40 -637.9949 745000 6873000 41 -640.9311 746000 6873000 42 -641.3262 747000 6873000 43 -640.3883 705000 6874000 1 -765.0767 706000 6874000 2 -756.6422 707000 6874000 3 -748.2858 708000 6874000 4 -745.7524 709000 6874000 5 -748.0393 710000 6874000 6 -749.7598 711000 6874000 7 -748.6334 712000 6874000 8 -747.6771 713000 6874000 9 -748.7573 714000 6874000 10 -748.4407 715000 6874000 11 -744.3113 716000 6874000 12 -736.4689 717000 6874000 13 -727.0186 718000 6874000 14 -718.7116 719000 6874000 15 -714.2886 720000 6874000 16 -714.1138 721000 6874000 17 -716.3112 722000 6874000 18 -718.2043 723000 6874000 19 -715.7236 724000 6874000 20 -706.6182 725000 6874000 21 -695.0385 726000 6874000 22 -685.9135 727000 6874000 23 -679.924 728000 6874000 24 -675.1736 729000 6874000 25 -670.5717 730000 6874000 26 -665.0458 731000 6874000 27 -657.7646 732000 6874000 28 -648.4885 733000 6874000 29 -636.8715 734000 6874000 30 -623.4494 735000 6874000 31 -613.1222 736000 6874000 32 -613.0426 737000 6874000 33 -618.9307 738000 6874000 34 -623.4331 739000 6874000 35 -626.3979 740000 6874000 36 -629.1527 741000 6874000 37 -626.9345 742000 6874000 38 -625.4094 743000 6874000 39 -628.1941 744000 6874000 40 -633.6397 745000 6874000 41 -638.4834 746000 6874000 42 -641.168 747000 6874000 43 -641.2292 705000 6875000 1 -765.915 706000 6875000 2 -755.3193 707000 6875000 3 -744.6825 708000 6875000 4 -741.1729 709000 6875000 5 -743.7126 710000 6875000 6 -745.5424 711000 6875000 7 -743.6848 712000 6875000 8 -742.3932 713000 6875000 9 -745.3513 714000 6875000 10 -747.8348 715000 6875000 11 -745.5787 716000 6875000 12 -738.1436 717000 6875000 13 -727.7284 718000 6875000 14 -716.0977 719000 6875000 15 -706.2346 720000 6875000 16 -701.6417 721000 6875000 17 -704.6215 722000 6875000 18 -711.3538 723000 6875000 19 -713.8907 724000 6875000 20 -708.5167 725000 6875000 21 -699.2614 726000 6875000 22 -690.5131 727000 6875000 23 -683.4747 728000 6875000 24 -676.9595 729000 6875000 25 -670.0574 730000 6875000 26 -662.4966 731000 6875000 27 -654.4025 732000 6875000 28 -644.6611 733000 6875000 29 -631.2206 734000 6875000 30 -612.9143 735000 6875000 31 -595.161 736000 6875000 32 -589.5483 737000 6875000 33 -592.2914 738000 6875000 34 -594.8001 739000 6875000 35 -598.5159 740000 6875000 36 -605.7584 741000 6875000 37 -607.683 742000 6875000 38 -609.8196 743000 6875000 39 -616.9475 744000 6875000 40 -626.8718 745000 6875000 41 -635.2043 746000 6875000 42 -640.0708 747000 6875000 43 -640.9233 705000 6876000 1 -763.8593 706000 6876000 2 -752.1906 707000 6876000 3 -739.5229 708000 6876000 4 -734.4942 709000 6876000 5 -735.9134 710000 6876000 6 -737.4503 711000 6876000 7 -737.1162 712000 6876000 8 -738.2546 713000 6876000 9 -742.7445 714000 6876000 10 -745.9056 715000 6876000 11 -744.4197 716000 6876000 12 -737.8077 717000 6876000 13 -726.979 718000 6876000 14 -712.2833 719000 6876000 15 -697.7259 720000 6876000 16 -689.7587 721000 6876000 17 -693.4755 722000 6876000 18 -704.6205 723000 6876000 19 -712.0062 724000 6876000 20 -709.9301 725000 6876000 21 -702.4492 726000 6876000 22 -694.1149 727000 6876000 23 -686.1976 728000 6876000 24 -677.9119 729000 6876000 25 -668.9717 730000 6876000 26 -659.9307 731000 6876000 27 -650.865 732000 6876000 28 -641.1273 733000 6876000 29 -629.0336 734000 6876000 30 -612.1245 735000 6876000 31 -589.9833 736000 6876000 32 -566.2075 737000 6876000 33 -547.181 738000 6876000 34 -539.9272 739000 6876000 35 -545.7938 740000 6876000 36 -559.8768 741000 6876000 37 -572.6641 742000 6876000 38 -585.1865 743000 6876000 39 -600.3456 744000 6876000 40 -616.8339 745000 6876000 41 -630.0739 746000 6876000 42 -636.593 747000 6876000 43 -638.0156 705000 6877000 1 -760.9938 706000 6877000 2 -750.0757 707000 6877000 3 -736.3839 708000 6877000 4 -729.2498 709000 6877000 5 -727.7697 710000 6877000 6 -727.3471 711000 6877000 7 -728.1642 712000 6877000 8 -732.1544 713000 6877000 9 -738.2259 714000 6877000 10 -740.9307 715000 6877000 11 -739.6845 716000 6877000 12 -734.5138 717000 6877000 13 -724.3141 718000 6877000 14 -708.0356 719000 6877000 15 -690.1644 720000 6877000 16 -679.1544 721000 6877000 17 -683.6207 722000 6877000 18 -698.975 723000 6877000 19 -710.3654 724000 6877000 20 -710.1371 725000 6877000 21 -703.6078 726000 6877000 22 -695.8905 727000 6877000 23 -687.504 728000 6877000 24 -677.2716 729000 6877000 25 -665.7302 730000 6877000 26 -654.9361 731000 6877000 27 -645.2728 732000 6877000 28 -636.8306 733000 6877000 29 -628.3115 734000 6877000 30 -615.2715 735000 6877000 31 -589.3489 736000 6877000 32 -543.5229 737000 6877000 33 -493.6918 738000 6877000 34 -472.1274 739000 6877000 35 -483.4118 740000 6877000 36 -506.1511 741000 6877000 37 -530.019 742000 6877000 38 -553.7886 743000 6877000 39 -577.1554 744000 6877000 40 -599.6539 745000 6877000 41 -617.958 746000 6877000 42 -627.3019 747000 6877000 43 -631.2473 705000 6878000 1 -760.041 706000 6878000 2 -752.4149 707000 6878000 3 -740.142 708000 6878000 4 -729.8929 709000 6878000 5 -722.4659 710000 6878000 6 -716.9059 711000 6878000 7 -715.3697 712000 6878000 8 -719.4546 713000 6878000 9 -726.452 714000 6878000 10 -729.6035 715000 6878000 11 -730.0408 716000 6878000 12 -727.8317 717000 6878000 13 -719.6916 718000 6878000 14 -704.3815 719000 6878000 15 -686.0613 720000 6878000 16 -673.579 721000 6878000 17 -677.3593 722000 6878000 18 -693.4105 723000 6878000 19 -706.1245 724000 6878000 20 -707.3817 725000 6878000 21 -702.3537 726000 6878000 22 -695.96 727000 6878000 23 -687.4113 728000 6878000 24 -674.4683 729000 6878000 25 -658.46 730000 6878000 26 -644.1451 731000 6878000 27 -634.9198 732000 6878000 28 -630.2053 733000 6878000 29 -626.3477 734000 6878000 30 -615.777 735000 6878000 31 -586.168 736000 6878000 32 -528.4104 737000 6878000 33 -462.5975 738000 6878000 34 -428.7493 739000 6878000 35 -434.7803 740000 6878000 36 -457.453 741000 6878000 37 -486.607 742000 6878000 38 -516.6805 743000 6878000 39 -544.8112 744000 6878000 40 -570.6968 745000 6878000 41 -592.5761 746000 6878000 42 -608.5021 747000 6878000 43 -619.4861 705000 6879000 1 -761.5499 706000 6879000 2 -758.2407 707000 6879000 3 -748.4412 708000 6879000 4 -735.0132 709000 6879000 5 -719.9836 710000 6879000 6 -706.1659 711000 6879000 7 -697.496 712000 6879000 8 -697.3132 713000 6879000 9 -703.8947 714000 6879000 10 -710.2087 715000 6879000 11 -715.7787 716000 6879000 12 -719.2794 717000 6879000 13 -715.3047 718000 6879000 14 -703.0548 719000 6879000 15 -687.0052 720000 6879000 16 -675.238 721000 6879000 17 -675.7753 722000 6879000 18 -686.2953 723000 6879000 19 -696.5989 724000 6879000 20 -700.6578 725000 6879000 21 -699.1854 726000 6879000 22 -695.2432 727000 6879000 23 -686.7808 728000 6879000 24 -670.1856 729000 6879000 25 -647.2323 730000 6879000 26 -626.6733 731000 6879000 27 -618.6165 732000 6879000 28 -619.9717 733000 6879000 29 -621.5306 734000 6879000 30 -612.551 735000 6879000 31 -581.4032 736000 6879000 32 -522.7476 737000 6879000 33 -456.9023 738000 6879000 34 -416.4697 739000 6879000 35 -408.4697 740000 6879000 36 -421.6115 741000 6879000 37 -449.9644 742000 6879000 38 -479.8852 743000 6879000 39 -507.109 744000 6879000 40 -533.0636 745000 6879000 41 -556.476 746000 6879000 42 -582.2613 747000 6879000 43 -605.1993 705000 6880000 1 -762.3885 706000 6880000 2 -763.1755 707000 6880000 3 -756.2756 708000 6880000 4 -740.6771 709000 6880000 5 -718.2197 710000 6880000 6 -694.1479 711000 6880000 7 -674.4216 712000 6880000 8 -666.3671 713000 6880000 9 -672.7328 714000 6880000 10 -686.1899 715000 6880000 11 -700.3036 716000 6880000 12 -710.444 717000 6880000 13 -711.77 718000 6880000 14 -703.804 719000 6880000 15 -690.4592 720000 6880000 16 -678.0956 721000 6880000 17 -672.6925 722000 6880000 18 -674.8248 723000 6880000 19 -682.2812 724000 6880000 20 -691.4479 725000 6880000 21 -696.2656 726000 6880000 22 -695.1216 727000 6880000 23 -686.327 728000 6880000 24 -665.8631 729000 6880000 25 -635.1652 730000 6880000 26 -607.2206 731000 6880000 27 -599.2183 732000 6880000 28 -605.9048 733000 6880000 29 -612.6025 734000 6880000 30 -605.9815 735000 6880000 31 -576.5212 736000 6880000 32 -520.6978 737000 6880000 33 -459.7212 738000 6880000 34 -418.6508 739000 6880000 35 -401.444 740000 6880000 36 -404.9449 741000 6880000 37 -428.6561 742000 6880000 38 -451.8113 743000 6880000 39 -471.5599 744000 6880000 40 -494.2441 745000 6880000 41 -518.7529 746000 6880000 42 -554.6666 747000 6880000 43 -591.1487 705000 6881000 1 -759.331 706000 6881000 2 -764.1096 707000 6881000 3 -761.2294 708000 6881000 4 -745.1561 709000 6881000 5 -716.5279 710000 6881000 6 -681.7821 711000 6881000 7 -648.389 712000 6881000 8 -628.9767 713000 6881000 9 -635.3493 714000 6881000 10 -659.5925 715000 6881000 11 -684.0258 716000 6881000 12 -698.6898 717000 6881000 13 -704.9814 718000 6881000 14 -702.2535 719000 6881000 15 -693.1795 720000 6881000 16 -679.1617 721000 6881000 17 -664.0803 722000 6881000 18 -655.8232 723000 6881000 19 -661.0389 724000 6881000 20 -678.7153 725000 6881000 21 -692.2364 726000 6881000 22 -693.2578 727000 6881000 23 -683.6056 728000 6881000 24 -660.7368 729000 6881000 25 -625.5984 730000 6881000 26 -593.6649 731000 6881000 27 -581.7167 732000 6881000 28 -587.623 733000 6881000 29 -597.2539 734000 6881000 30 -592.157 735000 6881000 31 -564.5209 736000 6881000 32 -512.7764 737000 6881000 33 -459.8852 738000 6881000 34 -425.0306 739000 6881000 35 -408.5395 740000 6881000 36 -407.788 741000 6881000 37 -421.1189 742000 6881000 38 -431.3094 743000 6881000 39 -439.9743 744000 6881000 40 -457.8586 745000 6881000 41 -486.2432 746000 6881000 42 -530.2421 747000 6881000 43 -576.7837 705000 6882000 1 -753.8176 706000 6882000 2 -761.7925 707000 6882000 3 -763.9332 708000 6882000 4 -748.9162 709000 6882000 5 -715.9006 710000 6882000 6 -672.1656 711000 6882000 7 -624.9985 712000 6882000 8 -591.585 713000 6882000 9 -595.395 714000 6882000 10 -627.4072 715000 6882000 11 -658.5958 716000 6882000 12 -674.673 717000 6882000 13 -685.0602 718000 6882000 14 -687.6356 719000 6882000 15 -684.3735 720000 6882000 16 -670.1614 721000 6882000 17 -645.3784 722000 6882000 18 -627.835 723000 6882000 19 -631.2886 724000 6882000 20 -657.8654 725000 6882000 21 -679.7535 726000 6882000 22 -682.9102 727000 6882000 23 -674.6832 728000 6882000 24 -653.234 729000 6882000 25 -616.6478 730000 6882000 26 -582.7672 731000 6882000 27 -562.5724 732000 6882000 28 -559.3673 733000 6882000 29 -569.9522 734000 6882000 30 -567.3097 735000 6882000 31 -543.2602 736000 6882000 32 -497.5714 737000 6882000 33 -454.571 738000 6882000 34 -428.2187 739000 6882000 35 -415.455 740000 6882000 36 -410.9371 741000 6882000 37 -409.8752 742000 6882000 38 -406.8226 743000 6882000 39 -409.282 744000 6882000 40 -426.6725 745000 6882000 41 -459.9451 746000 6882000 42 -511.7028 747000 6882000 43 -566.3795 705000 6883000 1 -748.2269 706000 6883000 2 -756.8132 707000 6883000 3 -762.4204 708000 6883000 4 -750.076 709000 6883000 5 -716.4781 710000 6883000 6 -668.8607 711000 6883000 7 -614.1481 712000 6883000 8 -570.3984 713000 6883000 9 -562.3948 714000 6883000 10 -583.7123 715000 6883000 11 -609.2983 716000 6883000 12 -626.3181 717000 6883000 13 -639.9791 718000 6883000 14 -646.9275 719000 6883000 15 -646.8188 720000 6883000 16 -634.6096 721000 6883000 17 -610.5847 722000 6883000 18 -592.8131 723000 6883000 19 -596.1654 724000 6883000 20 -623.4698 725000 6883000 21 -648.7029 726000 6883000 22 -656.7833 727000 6883000 23 -654.7054 728000 6883000 24 -641.4546 729000 6883000 25 -606.6371 730000 6883000 26 -566.8949 731000 6883000 27 -535.1504 732000 6883000 28 -517.3696 733000 6883000 29 -525.5552 734000 6883000 30 -528.4261 735000 6883000 31 -512.4063 736000 6883000 32 -478.3553 737000 6883000 33 -445.1224 738000 6883000 34 -422.6751 739000 6883000 35 -408.4989 740000 6883000 36 -399.0294 741000 6883000 37 -390.0132 742000 6883000 38 -382.9073 743000 6883000 39 -386.7564 744000 6883000 40 -408.0875 745000 6883000 41 -446.2787 746000 6883000 42 -503.573 747000 6883000 43 -563.2668 705000 6884000 1 -742.6258 706000 6884000 2 -749.523 707000 6884000 3 -756.4178 708000 6884000 4 -747.9492 709000 6884000 5 -718.4492 710000 6884000 6 -672.8412 711000 6884000 7 -617.6673 712000 6884000 8 -568.6021 713000 6884000 9 -542.0935 714000 6884000 10 -537.1356 715000 6884000 11 -545.6413 716000 6884000 12 -562.4052 717000 6884000 13 -577.5117 718000 6884000 14 -587.3223 719000 6884000 15 -588.1257 720000 6884000 16 -578.9716 721000 6884000 17 -564.6756 722000 6884000 18 -553.479 723000 6884000 19 -557.3221 724000 6884000 20 -580.327 725000 6884000 21 -603.9573 726000 6884000 22 -615.4108 727000 6884000 23 -618.2803 728000 6884000 24 -615.3887 729000 6884000 25 -588.7186 730000 6884000 26 -541.3028 731000 6884000 27 -501.6441 732000 6884000 28 -477.5453 733000 6884000 29 -478.349 734000 6884000 30 -482.9331 735000 6884000 31 -475.0152 736000 6884000 32 -453.5399 737000 6884000 33 -429.3206 738000 6884000 34 -407.7904 739000 6884000 35 -388.2278 740000 6884000 36 -373.3095 741000 6884000 37 -366.6251 742000 6884000 38 -368.1217 743000 6884000 39 -379.6996 744000 6884000 40 -405.5162 745000 6884000 41 -448.1903 746000 6884000 42 -506.6763 747000 6884000 43 -566.5563 705000 6885000 1 -736.75 706000 6885000 2 -741.4056 707000 6885000 3 -748.5677 708000 6885000 4 -744.3896 709000 6885000 5 -722.0917 710000 6885000 6 -682.0337 711000 6885000 7 -628.296 712000 6885000 8 -574.4423 713000 6885000 9 -532.0338 714000 6885000 10 -505.4328 715000 6885000 11 -497.8382 716000 6885000 12 -508.0046 717000 6885000 13 -520.8041 718000 6885000 14 -531.8828 719000 6885000 15 -533.0125 720000 6885000 16 -526.6519 721000 6885000 17 -521.7437 722000 6885000 18 -516.9501 723000 6885000 19 -520.0192 724000 6885000 20 -537.4373 725000 6885000 21 -556.548 726000 6885000 22 -566.0923 727000 6885000 23 -566.1736 728000 6885000 24 -563.4062 729000 6885000 25 -543.9395 730000 6885000 26 -502.1642 731000 6885000 27 -465.3436 732000 6885000 28 -443.3148 733000 6885000 29 -438.3644 734000 6885000 30 -440.6096 735000 6885000 31 -436.4632 736000 6885000 32 -423.0532 737000 6885000 33 -405.3701 738000 6885000 34 -385.5156 739000 6885000 35 -363.8161 740000 6885000 36 -347.8412 741000 6885000 37 -347.0492 742000 6885000 38 -359.8062 743000 6885000 39 -380.3509 744000 6885000 40 -410.0252 745000 6885000 41 -455.5496 746000 6885000 42 -513.6635 747000 6885000 43 -571.4428 705000 6886000 1 -736.1649 706000 6886000 2 -736.6365 707000 6886000 3 -741.2521 708000 6886000 4 -740.2818 709000 6886000 5 -726.0593 710000 6886000 6 -692.3773 711000 6886000 7 -639.1216 712000 6886000 8 -579.9037 713000 6886000 9 -527.5802 714000 6886000 10 -489.8077 715000 6886000 11 -472.5688 716000 6886000 12 -475.5984 717000 6886000 13 -486.9527 718000 6886000 14 -498.902 719000 6886000 15 -499.951 720000 6886000 16 -494.6645 721000 6886000 17 -493.1988 722000 6886000 18 -491.7839 723000 6886000 19 -493.0748 724000 6886000 20 -502.1018 725000 6886000 21 -514.0677 726000 6886000 22 -518.5162 727000 6886000 23 -512.6927 728000 6886000 24 -504.8912 729000 6886000 25 -488.5819 730000 6886000 26 -459.0838 731000 6886000 27 -431.9957 732000 6886000 28 -415.1469 733000 6886000 29 -407.8189 734000 6886000 30 -405.1169 735000 6886000 31 -399.7648 736000 6886000 32 -389.1935 737000 6886000 33 -374.9701 738000 6886000 34 -358.3294 739000 6886000 35 -341.2512 740000 6886000 36 -330.5741 741000 6886000 37 -333.5554 742000 6886000 38 -350.7322 743000 6886000 39 -377.5211 744000 6886000 40 -412.9602 745000 6886000 41 -461.5829 746000 6886000 42 -519.9556 747000 6886000 43 -575.5966 705000 6887000 1 -741.0441 706000 6887000 2 -735.9132 707000 6887000 3 -735.4784 708000 6887000 4 -735.7447 709000 6887000 5 -728.4033 710000 6887000 6 -700.327 711000 6887000 7 -646.4716 712000 6887000 8 -582.2631 713000 6887000 9 -524.7065 714000 6887000 10 -482.719 715000 6887000 11 -460.9957 716000 6887000 12 -460.3629 717000 6887000 13 -471.3401 718000 6887000 14 -483.86 719000 6887000 15 -484.3904 720000 6887000 16 -478.9699 721000 6887000 17 -477.6367 722000 6887000 18 -475.3954 723000 6887000 19 -471.4279 724000 6887000 20 -473.0879 725000 6887000 21 -479.9287 726000 6887000 22 -478.301 727000 6887000 23 -465.0894 728000 6887000 24 -453.2337 729000 6887000 25 -439.183 730000 6887000 26 -419.6025 731000 6887000 27 -402.6699 732000 6887000 28 -391.789 733000 6887000 29 -383.6115 734000 6887000 30 -375.237 735000 6887000 31 -366.16 736000 6887000 32 -355.4667 737000 6887000 33 -343.2252 738000 6887000 34 -330.7425 739000 6887000 35 -320.6939 740000 6887000 36 -317.2534 741000 6887000 37 -322.8514 742000 6887000 38 -339.7384 743000 6887000 39 -370.861 744000 6887000 40 -415.8036 745000 6887000 41 -468.959 746000 6887000 42 -527.7982 747000 6887000 43 -581.0529 705000 6888000 1 -746.0883 706000 6888000 2 -735.7146 707000 6888000 3 -729.6849 708000 6888000 4 -729.6115 709000 6888000 5 -726.9998 710000 6888000 6 -703.1713 711000 6888000 7 -649.3457 712000 6888000 8 -581.8063 713000 6888000 9 -522.2242 714000 6888000 10 -480.0982 715000 6888000 11 -456.6905 716000 6888000 12 -451.959 717000 6888000 13 -459.1847 718000 6888000 14 -469.3524 719000 6888000 15 -470.5497 720000 6888000 16 -466.168 721000 6888000 17 -465.8682 722000 6888000 18 -461.5335 723000 6888000 19 -449.9863 724000 6888000 20 -445.8073 725000 6888000 21 -448.903 726000 6888000 22 -443.2126 727000 6888000 23 -425.7929 728000 6888000 24 -411.6887 729000 6888000 25 -399.3151 730000 6888000 26 -386.4494 731000 6888000 27 -377.3762 732000 6888000 28 -371.1815 733000 6888000 29 -361.6748 734000 6888000 30 -348.0102 735000 6888000 31 -335.2703 736000 6888000 32 -324.2034 737000 6888000 33 -313.6884 738000 6888000 34 -305.1215 739000 6888000 35 -301.2089 740000 6888000 36 -304.5821 741000 6888000 37 -316.0584 742000 6888000 38 -338.6225 743000 6888000 39 -376.9432 744000 6888000 40 -429.9913 745000 6888000 41 -486.7816 746000 6888000 42 -541.8386 747000 6888000 43 -587.1686 705000 6889000 1 -750.3484 706000 6889000 2 -734.7048 707000 6889000 3 -722.1926 708000 6889000 4 -721.1226 709000 6889000 5 -723.6509 710000 6889000 6 -704.6424 711000 6889000 7 -650.5051 712000 6889000 8 -580.0803 713000 6889000 9 -520.2193 714000 6889000 10 -480.0486 715000 6889000 11 -456.021 716000 6889000 12 -445.7519 717000 6889000 13 -447.1492 718000 6889000 14 -455.0296 719000 6889000 15 -457.8226 720000 6889000 16 -454.2974 721000 6889000 17 -454.5417 722000 6889000 18 -450.5639 723000 6889000 19 -435.1855 724000 6889000 20 -422.622 725000 6889000 21 -417.5167 726000 6889000 22 -409.863 727000 6889000 23 -395.0352 728000 6889000 24 -380.0712 729000 6889000 25 -367.7372 730000 6889000 26 -359.1242 731000 6889000 27 -355.4793 732000 6889000 28 -352.1968 733000 6889000 29 -340.8312 734000 6889000 30 -323.2512 735000 6889000 31 -308.2857 736000 6889000 32 -297.6907 737000 6889000 33 -288.8623 738000 6889000 34 -283.3548 739000 6889000 35 -284.1377 740000 6889000 36 -293.469 741000 6889000 37 -313.8056 742000 6889000 38 -348.1608 743000 6889000 39 -397.1601 744000 6889000 40 -456.6643 745000 6889000 41 -515.876 746000 6889000 42 -562.4945 747000 6889000 43 -593.42 705000 6890000 1 -753.7894 706000 6890000 2 -733.7056 707000 6890000 3 -715.3792 708000 6890000 4 -712.6119 709000 6890000 5 -718.9236 710000 6890000 6 -704.6556 711000 6890000 7 -651.6267 712000 6890000 8 -580.6121 713000 6890000 9 -521.2042 714000 6890000 10 -482.3196 715000 6890000 11 -456.8488 716000 6890000 12 -439.9577 717000 6890000 13 -434.7486 718000 6890000 14 -441.8504 719000 6890000 15 -446.8011 720000 6890000 16 -443.509 721000 6890000 17 -441.0279 722000 6890000 18 -435.5248 723000 6890000 19 -418.444 724000 6890000 20 -399.4756 725000 6890000 21 -387.2655 726000 6890000 22 -378.5879 727000 6890000 23 -366.9512 728000 6890000 24 -352.2925 729000 6890000 25 -339.672 730000 6890000 26 -333.4167 731000 6890000 27 -333.3399 732000 6890000 28 -332.4493 733000 6890000 29 -321.7969 734000 6890000 30 -304.2296 735000 6890000 31 -289.2118 736000 6890000 32 -279.2176 737000 6890000 33 -271.7461 738000 6890000 34 -268.5978 739000 6890000 35 -272.8557 740000 6890000 36 -286.7969 741000 6890000 37 -314.9592 742000 6890000 38 -359.8727 743000 6890000 39 -418.6184 744000 6890000 40 -484.8153 745000 6890000 41 -546.5396 746000 6890000 42 -584.4149 747000 6890000 43 -599.5886 705000 6891000 1 -755.5894 706000 6891000 2 -734.2714 707000 6891000 3 -714.2563 708000 6891000 4 -708.6474 709000 6891000 5 -712.4388 710000 6891000 6 -699.4402 711000 6891000 7 -652.8139 712000 6891000 8 -587.1854 713000 6891000 9 -528.3522 714000 6891000 10 -488.0027 715000 6891000 11 -459.9958 716000 6891000 12 -436.1425 717000 6891000 13 -422.4582 718000 6891000 14 -425.8073 719000 6891000 15 -430.0667 720000 6891000 16 -426.7077 721000 6891000 17 -421.0709 722000 6891000 18 -411.7652 723000 6891000 19 -395.0398 724000 6891000 20 -375.89 725000 6891000 21 -361.1575 726000 6891000 22 -351.1771 727000 6891000 23 -339.9179 728000 6891000 24 -325.2382 729000 6891000 25 -311.8586 730000 6891000 26 -306.8261 731000 6891000 27 -310.318 732000 6891000 28 -312.5624 733000 6891000 29 -305.5406 734000 6891000 30 -291.6378 735000 6891000 31 -278.7609 736000 6891000 32 -269.8215 737000 6891000 33 -264.5481 738000 6891000 34 -264.3513 739000 6891000 35 -270.9506 740000 6891000 36 -287.585 741000 6891000 37 -319.7881 742000 6891000 38 -368.2501 743000 6891000 39 -431.442 744000 6891000 40 -504.476 745000 6891000 41 -568.6085 746000 6891000 42 -601.1666 747000 6891000 43 -605.2297 705000 6892000 1 -758.5295 706000 6892000 2 -737.7301 707000 6892000 3 -717.6856 708000 6892000 4 -708.834 709000 6892000 5 -708.1837 710000 6892000 6 -696.2411 711000 6892000 7 -658.213 712000 6892000 8 -599.508 713000 6892000 9 -539.7326 714000 6892000 10 -497.0103 715000 6892000 11 -467.7604 716000 6892000 12 -438.2431 717000 6892000 13 -414.2237 718000 6892000 14 -408.8746 719000 6892000 15 -410.0806 720000 6892000 16 -406.6569 721000 6892000 17 -399.1258 722000 6892000 18 -387.1014 723000 6892000 19 -371.6872 724000 6892000 20 -355.1693 725000 6892000 21 -340.5204 726000 6892000 22 -328.8761 727000 6892000 23 -316.9166 728000 6892000 24 -301.8515 729000 6892000 25 -287.3063 730000 6892000 26 -283.0304 731000 6892000 27 -290.662 732000 6892000 28 -296.7216 733000 6892000 29 -293.2137 734000 6892000 30 -282.8144 735000 6892000 31 -272.7036 736000 6892000 32 -266.1236 737000 6892000 33 -264.5959 738000 6892000 34 -268.9244 739000 6892000 35 -278.6927 740000 6892000 36 -298.3139 741000 6892000 37 -333.3999 742000 6892000 38 -381.9025 743000 6892000 39 -444.3254 744000 6892000 40 -519.3377 745000 6892000 41 -582.2943 746000 6892000 42 -610.6711 747000 6892000 43 -608.3334 705000 6893000 1 -763.6896 706000 6893000 2 -744.2531 707000 6893000 3 -724.4937 708000 6893000 4 -712.0322 709000 6893000 5 -706.2461 710000 6893000 6 -696.2421 711000 6893000 7 -670.4063 712000 6893000 8 -622.0526 713000 6893000 9 -558.6788 714000 6893000 10 -509.1989 715000 6893000 11 -476.3383 716000 6893000 12 -443.5109 717000 6893000 13 -413.0331 718000 6893000 14 -398.9089 719000 6893000 15 -395.0957 720000 6893000 16 -390.2974 721000 6893000 17 -381.5916 722000 6893000 18 -368.7235 723000 6893000 19 -353.9605 724000 6893000 20 -338.5937 725000 6893000 21 -323.6271 726000 6893000 22 -310.3815 727000 6893000 23 -298.1512 728000 6893000 24 -284.869 729000 6893000 25 -272.6578 730000 6893000 26 -269.9818 731000 6893000 27 -278.7012 732000 6893000 28 -286.1496 733000 6893000 29 -284.4048 734000 6893000 30 -275.874 735000 6893000 31 -267.7193 736000 6893000 32 -264.2545 737000 6893000 33 -267.5629 738000 6893000 34 -278.0106 739000 6893000 35 -294.5612 740000 6893000 36 -320.9746 741000 6893000 37 -361.6427 742000 6893000 38 -412.7931 743000 6893000 39 -471.7571 744000 6893000 40 -537.1901 745000 6893000 41 -589.3693 746000 6893000 42 -611.3378 747000 6893000 43 -605.3818 705000 6894000 1 -769.7299 706000 6894000 2 -751.7577 707000 6894000 3 -731.6323 708000 6894000 4 -715.2292 709000 6894000 5 -703.7269 710000 6894000 6 -694.9357 711000 6894000 7 -685.9761 712000 6894000 8 -657.4186 713000 6894000 9 -595.069 714000 6894000 10 -531.732 715000 6894000 11 -486.1815 716000 6894000 12 -449.096 717000 6894000 13 -417.5574 718000 6894000 14 -398.0706 719000 6894000 15 -388.5538 720000 6894000 16 -381.0529 721000 6894000 17 -371.0712 722000 6894000 18 -358.3919 723000 6894000 19 -343.1651 724000 6894000 20 -326.3704 725000 6894000 21 -309.525 726000 6894000 22 -294.286 727000 6894000 23 -282.423 728000 6894000 24 -273.1559 729000 6894000 25 -265.8788 730000 6894000 26 -265.644 731000 6894000 27 -273.303 732000 6894000 28 -280.4622 733000 6894000 29 -278.8526 734000 6894000 30 -270.7543 735000 6894000 31 -263.8623 736000 6894000 32 -263.9767 737000 6894000 33 -273.2168 738000 6894000 34 -291.2555 739000 6894000 35 -316.8808 740000 6894000 36 -352.3661 741000 6894000 37 -401.0014 742000 6894000 38 -456.5014 743000 6894000 39 -509.5727 744000 6894000 40 -559.0276 745000 6894000 41 -594.7224 746000 6894000 42 -606.2371 747000 6894000 43 -595.2564 705000 6895000 1 -774.059 706000 6895000 2 -758.0603 707000 6895000 3 -738.3275 708000 6895000 4 -718.951 709000 6895000 5 -702.3328 710000 6895000 6 -692.1635 711000 6895000 7 -692.0568 712000 6895000 8 -680.6645 713000 6895000 9 -630.5134 714000 6895000 10 -562.1225 715000 6895000 11 -504.1284 716000 6895000 12 -460.8139 717000 6895000 13 -427.0729 718000 6895000 14 -402.9328 719000 6895000 15 -387.4224 720000 6895000 16 -376.1349 721000 6895000 17 -364.7643 722000 6895000 18 -352.5388 723000 6895000 19 -336.4744 724000 6895000 20 -317.1134 725000 6895000 21 -297.3427 726000 6895000 22 -279.3479 727000 6895000 23 -267.0811 728000 6895000 24 -261.3883 729000 6895000 25 -258.5598 730000 6895000 26 -260.6723 731000 6895000 27 -268.1881 732000 6895000 28 -275.7785 733000 6895000 29 -274.9466 734000 6895000 30 -268.2689 735000 6895000 31 -263.8403 736000 6895000 32 -268.3966 737000 6895000 33 -284.1858 738000 6895000 34 -310.2184 739000 6895000 35 -344.4514 740000 6895000 36 -387.6365 741000 6895000 37 -442.205 742000 6895000 38 -499.7203 743000 6895000 39 -545.8993 744000 6895000 40 -580.3893 745000 6895000 41 -600.0263 746000 6895000 42 -599.791 747000 6895000 43 -583.2619 705000 6896000 1 -775.7528 706000 6896000 2 -762.4843 707000 6896000 3 -744.923 708000 6896000 4 -724.3445 709000 6896000 5 -702.8986 710000 6896000 6 -687.6819 711000 6896000 7 -686.4044 712000 6896000 8 -683.7318 713000 6896000 9 -648.6497 714000 6896000 10 -587.4675 715000 6896000 11 -526.5322 716000 6896000 12 -479.2788 717000 6896000 13 -442.3962 718000 6896000 14 -412.3017 719000 6896000 15 -388.2873 720000 6896000 16 -371.082 721000 6896000 17 -359.42 722000 6896000 18 -348.377 723000 6896000 19 -331.7643 724000 6896000 20 -309.7986 725000 6896000 21 -286.9282 726000 6896000 22 -265.968 727000 6896000 23 -251.0303 728000 6896000 24 -246.0542 729000 6896000 25 -246.464 730000 6896000 26 -250.8627 731000 6896000 27 -259.6046 732000 6896000 28 -268.2632 733000 6896000 29 -271.0511 734000 6896000 30 -269.5236 735000 6896000 31 -270.3232 736000 6896000 32 -280.2003 737000 6896000 33 -302.1555 738000 6896000 34 -335.5317 739000 6896000 35 -376.8434 740000 6896000 36 -424.6426 741000 6896000 37 -479.7158 742000 6896000 38 -534.3527 743000 6896000 39 -574.8229 744000 6896000 40 -598.1163 745000 6896000 41 -604.6541 746000 6896000 42 -594.3217 747000 6896000 43 -573.17 705000 6897000 1 -776.2068 706000 6897000 2 -765.5167 707000 6897000 3 -751.0015 708000 6897000 4 -730.9739 709000 6897000 5 -705.3629 710000 6897000 6 -683.2637 711000 6897000 7 -678.8533 712000 6897000 8 -681.9785 713000 6897000 9 -659.5885 714000 6897000 10 -608.2853 715000 6897000 11 -550.4096 716000 6897000 12 -502.363 717000 6897000 13 -462.5179 718000 6897000 14 -426.5469 719000 6897000 15 -394.0149 720000 6897000 16 -370.2835 721000 6897000 17 -358.1543 722000 6897000 18 -347.9353 723000 6897000 19 -330.3664 724000 6897000 20 -306.1546 725000 6897000 21 -281.3749 726000 6897000 22 -259.3169 727000 6897000 23 -242.0557 728000 6897000 24 -235.5639 729000 6897000 25 -236.1741 730000 6897000 26 -241.3892 731000 6897000 27 -252.2954 732000 6897000 28 -263.114 733000 6897000 29 -271.1443 734000 6897000 30 -276.6333 735000 6897000 31 -283.7101 736000 6897000 32 -299.0275 737000 6897000 33 -326.6279 738000 6897000 34 -366.7845 739000 6897000 35 -413.615 740000 6897000 36 -462.3161 741000 6897000 37 -513.5315 742000 6897000 38 -562.5803 743000 6897000 39 -597.2653 744000 6897000 40 -611.9238 745000 6897000 41 -609.5883 746000 6897000 42 -592.6423 747000 6897000 43 -568.4026 705000 6898000 1 -776.0328 706000 6898000 2 -766.8432 707000 6898000 3 -754.8585 708000 6898000 4 -737.1212 709000 6898000 5 -710.6739 710000 6898000 6 -683.2192 711000 6898000 7 -673.6822 712000 6898000 8 -677.1313 713000 6898000 9 -665.1923 714000 6898000 10 -628.6254 715000 6898000 11 -580.5936 716000 6898000 12 -530.9074 717000 6898000 13 -484.8691 718000 6898000 14 -445.3963 719000 6898000 15 -411.4417 720000 6898000 16 -385.2642 721000 6898000 17 -367.9658 722000 6898000 18 -353.0005 723000 6898000 19 -333.3923 724000 6898000 20 -309.4915 725000 6898000 21 -286.2424 726000 6898000 22 -266.4265 727000 6898000 23 -251.011 728000 6898000 24 -242.0003 729000 6898000 25 -238.599 730000 6898000 26 -242.4914 731000 6898000 27 -255.4278 732000 6898000 28 -269.3606 733000 6898000 29 -281.7705 734000 6898000 30 -292.7725 735000 6898000 31 -305.4603 736000 6898000 32 -325.5329 737000 6898000 33 -357.7714 738000 6898000 34 -404.153 739000 6898000 35 -455.9435 740000 6898000 36 -503.269 741000 6898000 37 -545.7905 742000 6898000 38 -584.3758 743000 6898000 39 -610.7548 744000 6898000 40 -619.6182 745000 6898000 41 -614.2628 746000 6898000 42 -597.4153 747000 6898000 43 -576.3438 705000 6899000 1 -776.1414 706000 6899000 2 -767.6662 707000 6899000 3 -757.2437 708000 6899000 4 -741.5555 709000 6899000 5 -716.8783 710000 6899000 6 -688.3458 711000 6899000 7 -671.8351 712000 6899000 8 -672.0271 713000 6899000 9 -669.256 714000 6899000 10 -649.5103 715000 6899000 11 -615.6085 716000 6899000 12 -563.4984 717000 6899000 13 -509.3999 718000 6899000 14 -469.1221 719000 6899000 15 -438.5556 720000 6899000 16 -412.3453 721000 6899000 17 -386.6917 722000 6899000 18 -361.159 723000 6899000 19 -339.3062 724000 6899000 20 -320.0599 725000 6899000 21 -301.321 726000 6899000 22 -283.1071 727000 6899000 23 -270.8376 728000 6899000 24 -260.7482 729000 6899000 25 -253.9438 730000 6899000 26 -257.1629 731000 6899000 27 -271.4655 732000 6899000 28 -288.8335 733000 6899000 29 -303.5448 734000 6899000 30 -317.469 735000 6899000 31 -335.2996 736000 6899000 32 -360.1498 737000 6899000 33 -395.7527 738000 6899000 34 -446.4896 739000 6899000 35 -501.531 740000 6899000 36 -545.6655 741000 6899000 37 -575.8182 742000 6899000 38 -599.4439 743000 6899000 39 -615.2538 744000 6899000 40 -621.3937 745000 6899000 41 -617.9689 746000 6899000 42 -606.8922 747000 6899000 43 -594.7026 705000 6900000 1 -777.4224 706000 6900000 2 -769.9462 707000 6900000 3 -760.3835 708000 6900000 4 -745.2499 709000 6900000 5 -723.4526 710000 6900000 6 -697.2866 711000 6900000 7 -675.5865 712000 6900000 8 -671.6854 713000 6900000 9 -675.1704 714000 6900000 10 -668.275 715000 6900000 11 -647.8076 716000 6900000 12 -597.3036 717000 6900000 13 -539.5531 718000 6900000 14 -499.8518 719000 6900000 15 -471.5834 720000 6900000 16 -445.2801 721000 6900000 17 -413.8222 722000 6900000 18 -380.3062 723000 6900000 19 -354.4907 724000 6900000 20 -333.578 725000 6900000 21 -314.3491 726000 6900000 22 -295.8646 727000 6900000 23 -286.4351 728000 6900000 24 -278.6873 729000 6900000 25 -272.4437 730000 6900000 26 -277.0641 731000 6900000 27 -293.2478 732000 6900000 28 -313.2709 733000 6900000 29 -329.5197 734000 6900000 30 -346.1466 735000 6900000 31 -370.4175 736000 6900000 32 -402.8352 737000 6900000 33 -442.6594 738000 6900000 34 -492.2521 739000 6900000 35 -542.4113 740000 6900000 36 -579.1764 741000 6900000 37 -598.5265 742000 6900000 38 -609.5616 743000 6900000 39 -616.3501 744000 6900000 40 -621.0588 745000 6900000 41 -621.0521 746000 6900000 42 -616.7823 747000 6900000 43 -613.1161 705000 6901000 1 -778.1379 706000 6901000 2 -771.9238 707000 6901000 3 -763.8069 708000 6901000 4 -751.0319 709000 6901000 5 -733.4429 710000 6901000 6 -710.795 711000 6901000 7 -687.9707 712000 6901000 8 -678.8239 713000 6901000 9 -681.3095 714000 6901000 10 -680.7953 715000 6901000 11 -668.7612 716000 6901000 12 -628.6536 717000 6901000 13 -578.4456 718000 6901000 14 -538.858 719000 6901000 15 -507.0678 720000 6901000 16 -477.9792 721000 6901000 17 -446.8509 722000 6901000 18 -414.0268 723000 6901000 19 -382.8842 724000 6901000 20 -349.6505 725000 6901000 21 -321.1036 726000 6901000 22 -301.2054 727000 6901000 23 -293.7191 728000 6901000 24 -290.2306 729000 6901000 25 -287.8761 730000 6901000 26 -295.4781 731000 6901000 27 -314.7491 732000 6901000 28 -336.7248 733000 6901000 29 -354.0902 734000 6901000 30 -374.1733 735000 6901000 31 -407.1473 736000 6901000 32 -451.3653 737000 6901000 33 -496.8652 738000 6901000 34 -538.7261 739000 6901000 35 -574.7849 740000 6901000 36 -600.3319 741000 6901000 37 -613.2524 742000 6901000 38 -618.1885 743000 6901000 39 -619.9747 744000 6901000 40 -622.3892 745000 6901000 41 -623.7399 746000 6901000 42 -623.7455 747000 6901000 43 -624.9174 705000 6902000 1 -778.0754 706000 6902000 2 -772.7811 707000 6902000 3 -766.5669 708000 6902000 4 -757.0671 709000 6902000 5 -743.5063 710000 6902000 6 -724.7568 711000 6902000 7 -702.75 712000 6902000 8 -688.2579 713000 6902000 9 -685.3362 714000 6902000 10 -686.5201 715000 6902000 11 -680.3033 716000 6902000 12 -654.2493 717000 6902000 13 -617.8743 718000 6902000 14 -580.8924 719000 6902000 15 -543.5831 720000 6902000 16 -509.1367 721000 6902000 17 -480.2406 722000 6902000 18 -451.8629 723000 6902000 19 -417.559 724000 6902000 20 -376.7885 725000 6902000 21 -342.1442 726000 6902000 22 -320.1546 727000 6902000 23 -312.7342 728000 6902000 24 -308.0745 729000 6902000 25 -304.9809 730000 6902000 26 -313.8137 731000 6902000 27 -336.3925 732000 6902000 28 -360.85 733000 6902000 29 -378.3667 734000 6902000 30 -400.7498 735000 6902000 31 -443.3786 736000 6902000 32 -500.5686 737000 6902000 33 -548.4073 738000 6902000 34 -579.0537 739000 6902000 35 -599.8057 740000 6902000 36 -614.7887 741000 6902000 37 -623.5325 742000 6902000 38 -626.4327 743000 6902000 39 -626.0802 744000 6902000 40 -625.1495 745000 6902000 41 -625.4212 746000 6902000 42 -627.0845 747000 6902000 43 -630.3699 705000 6903000 1 -778.1332 706000 6903000 2 -773.306 707000 6903000 3 -768.4669 708000 6903000 4 -761.3943 709000 6903000 5 -750.4407 710000 6903000 6 -734.4082 711000 6903000 7 -714.0475 712000 6903000 8 -696.4037 713000 6903000 9 -688.1675 714000 6903000 10 -687.3842 715000 6903000 11 -684.4595 716000 6903000 12 -672.3409 717000 6903000 13 -651.762 718000 6903000 14 -621.79 719000 6903000 15 -582.7269 720000 6903000 16 -544.5002 721000 6903000 17 -514.9276 722000 6903000 18 -487.0091 723000 6903000 19 -451.887 724000 6903000 20 -411.5623 725000 6903000 21 -377.2899 726000 6903000 22 -354.0973 727000 6903000 23 -344.1541 728000 6903000 24 -335.2704 729000 6903000 25 -329.212 730000 6903000 26 -337.1389 731000 6903000 27 -359.2726 732000 6903000 28 -384.6938 733000 6903000 29 -405.0573 734000 6903000 30 -432.0563 735000 6903000 31 -483.1539 736000 6903000 32 -545.9446 737000 6903000 33 -585.6354 738000 6903000 34 -605.3915 739000 6903000 35 -617.0718 740000 6903000 36 -625.8333 741000 6903000 37 -631.4859 742000 6903000 38 -633.0786 743000 6903000 39 -630.9753 744000 6903000 40 -626.667 745000 6903000 41 -625.1128 746000 6903000 42 -627.9127 747000 6903000 43 -632.9771 705000 6904000 1 -777.386 706000 6904000 2 -772.8628 707000 6904000 3 -769.07 708000 6904000 4 -763.9391 709000 6904000 5 -755.2548 710000 6904000 6 -741.6342 711000 6904000 7 -723.2244 712000 6904000 8 -704.8118 713000 6904000 9 -692.5875 714000 6904000 10 -687.3907 715000 6904000 11 -685.0801 716000 6904000 12 -684.1858 717000 6904000 13 -678.786 718000 6904000 14 -659.0414 719000 6904000 15 -623.7553 720000 6904000 16 -586.067 721000 6904000 17 -553.2886 722000 6904000 18 -520.2827 723000 6904000 19 -483.533 724000 6904000 20 -445.2901 725000 6904000 21 -411.2472 726000 6904000 22 -387.709 727000 6904000 23 -375.1649 728000 6904000 24 -364.9692 729000 6904000 25 -359.2577 730000 6904000 26 -366.5754 731000 6904000 27 -386.5157 732000 6904000 28 -411.9777 733000 6904000 29 -441.2776 734000 6904000 30 -480.5313 735000 6904000 31 -534.2814 736000 6904000 32 -584.5436 737000 6904000 33 -607.1053 738000 6904000 34 -618.1309 739000 6904000 35 -627.0403 740000 6904000 36 -633.9052 741000 6904000 37 -637.5262 742000 6904000 38 -638.2237 743000 6904000 39 -634.8887 744000 6904000 40 -627.3361 745000 6904000 41 -624.2423 746000 6904000 42 -629.0316 747000 6904000 43 -635.7922 705000 6905000 1 -774.4816 706000 6905000 2 -770.4477 707000 6905000 3 -768.0563 708000 6905000 4 -765.0648 709000 6905000 5 -758.8474 710000 6905000 6 -747.8514 711000 6905000 7 -731.6822 712000 6905000 8 -713.6526 713000 6905000 9 -698.842 714000 6905000 10 -689.6208 715000 6905000 11 -686.4561 716000 6905000 12 -691.3615 717000 6905000 13 -695.9168 718000 6905000 14 -686.7081 719000 6905000 15 -660.3492 720000 6905000 16 -628.2939 721000 6905000 17 -596.2604 722000 6905000 18 -560.9413 723000 6905000 19 -521.6583 724000 6905000 20 -481.3663 725000 6905000 21 -444.3788 726000 6905000 22 -418.0856 727000 6905000 23 -403.175 728000 6905000 24 -393.7268 729000 6905000 25 -390.8697 730000 6905000 26 -400.3629 731000 6905000 27 -422.003 732000 6905000 28 -450.4706 733000 6905000 29 -488.6223 734000 6905000 30 -537.075 735000 6905000 31 -585.1427 736000 6905000 32 -614.3085 737000 6905000 33 -622.2064 738000 6905000 34 -626.5955 739000 6905000 35 -633.425 740000 6905000 36 -639.4 741000 6905000 37 -641.6063 742000 6905000 38 -642.0189 743000 6905000 39 -639.1829 744000 6905000 40 -631.0168 745000 6905000 41 -628.156 746000 6905000 42 -635.1871 747000 6905000 43 -642.3609 705000 6906000 1 -769.2407 706000 6906000 2 -765.9749 707000 6906000 3 -765.6598 708000 6906000 4 -765.1884 709000 6906000 5 -761.5701 710000 6906000 6 -753.3408 711000 6906000 7 -739.7748 712000 6906000 8 -722.9935 713000 6906000 9 -706.8936 714000 6906000 10 -694.5732 715000 6906000 11 -689.5246 716000 6906000 12 -695.1341 717000 6906000 13 -703.4748 718000 6906000 14 -702.9111 719000 6906000 15 -689.3903 720000 6906000 16 -668.2379 721000 6906000 17 -641.92 722000 6906000 18 -609.1287 723000 6906000 19 -567.6189 724000 6906000 20 -520.7101 725000 6906000 21 -477.371 726000 6906000 22 -445.9419 727000 6906000 23 -428.7811 728000 6906000 24 -421.3133 729000 6906000 25 -423.0623 730000 6906000 26 -437.9799 731000 6906000 27 -467.3541 732000 6906000 28 -503.457 733000 6906000 29 -542.3038 734000 6906000 30 -582.8282 735000 6906000 31 -616.7444 736000 6906000 32 -632.3708 737000 6906000 33 -634.3307 738000 6906000 34 -635.3553 739000 6906000 35 -639.4951 740000 6906000 36 -643.3322 741000 6906000 37 -643.9037 742000 6906000 38 -643.5975 743000 6906000 39 -642.693 744000 6906000 40 -639.4073 745000 6906000 41 -639.6909 746000 6906000 42 -646.599 747000 6906000 43 -652.5981 705000 6907000 1 -763.3392 706000 6907000 2 -760.7721 707000 6907000 3 -762.6313 708000 6907000 4 -764.6119 709000 6907000 5 -763.4959 710000 6907000 6 -758.2297 711000 6907000 7 -747.5806 712000 6907000 8 -732.7204 713000 6907000 9 -716.3677 714000 6907000 10 -701.3807 715000 6907000 11 -692.9572 716000 6907000 12 -696.9407 717000 6907000 13 -706.5456 718000 6907000 14 -712.1939 719000 6907000 15 -710.1605 720000 6907000 16 -701.1615 721000 6907000 17 -682.6146 722000 6907000 18 -654.4728 723000 6907000 19 -611.7907 724000 6907000 20 -557.6207 725000 6907000 21 -506.8686 726000 6907000 22 -470.0706 727000 6907000 23 -451.8752 728000 6907000 24 -448.6096 729000 6907000 25 -457.8008 730000 6907000 26 -480.4175 731000 6907000 27 -517.4866 732000 6907000 28 -558.1868 733000 6907000 29 -590.4014 734000 6907000 30 -614.1273 735000 6907000 31 -632.2706 736000 6907000 32 -640.9973 737000 6907000 33 -641.9583 738000 6907000 34 -642.1368 739000 6907000 35 -644.4461 740000 6907000 36 -646.0709 741000 6907000 37 -644.6423 742000 6907000 38 -643.2859 743000 6907000 39 -644.4572 744000 6907000 40 -646.8234 745000 6907000 41 -650.5685 746000 6907000 42 -656.0433 747000 6907000 43 -661.079 705000 6908000 1 -759.7402 706000 6908000 2 -757.1274 707000 6908000 3 -759.7776 708000 6908000 4 -763.1099 709000 6908000 5 -763.983 710000 6908000 6 -761.4848 711000 6908000 7 -754.2822 712000 6908000 8 -742.5049 713000 6908000 9 -727.3672 714000 6908000 10 -711.0689 715000 6908000 11 -699.5543 716000 6908000 12 -699.8994 717000 6908000 13 -707.3971 718000 6908000 14 -715.2269 719000 6908000 15 -720.1711 720000 6908000 16 -719.7236 721000 6908000 17 -709.1079 722000 6908000 18 -685.9202 723000 6908000 19 -644.0412 724000 6908000 20 -586.6362 725000 6908000 21 -530.7133 726000 6908000 22 -489.434 727000 6908000 23 -470.72 728000 6908000 24 -474.8091 729000 6908000 25 -497.2515 730000 6908000 26 -529.9908 731000 6908000 27 -566.2992 732000 6908000 28 -599.0749 733000 6908000 29 -621.0679 734000 6908000 30 -632.7683 735000 6908000 31 -640.4904 736000 6908000 32 -645.2806 737000 6908000 33 -646.0961 738000 6908000 34 -645.8002 739000 6908000 35 -646.431 740000 6908000 36 -646.4139 741000 6908000 37 -644.3117 742000 6908000 38 -643.1854 743000 6908000 39 -646.0289 744000 6908000 40 -651.5601 745000 6908000 41 -657.4271 746000 6908000 42 -662.7588 747000 6908000 43 -668.1602 705000 6909000 1 -759.7986 706000 6909000 2 -756.247 707000 6909000 3 -757.7604 708000 6909000 4 -760.8569 709000 6909000 5 -762.9073 710000 6909000 6 -762.709 711000 6909000 7 -759.335 712000 6909000 8 -751.9804 713000 6909000 9 -739.7786 714000 6909000 10 -723.9004 715000 6909000 11 -710.5474 716000 6909000 12 -706.3577 717000 6909000 13 -708.6025 718000 6909000 14 -714.4199 719000 6909000 15 -721.8651 720000 6909000 16 -725.7315 721000 6909000 17 -722.01 722000 6909000 18 -704.8294 723000 6909000 19 -665.6561 724000 6909000 20 -607.8742 725000 6909000 21 -549.2833 726000 6909000 22 -505.3354 727000 6909000 23 -486.1646 728000 6909000 24 -498.9606 729000 6909000 25 -538.0799 730000 6909000 26 -581.3269 731000 6909000 27 -609.942 732000 6909000 28 -627.1808 733000 6909000 29 -638.0408 734000 6909000 30 -643.9374 735000 6909000 31 -646.9566 736000 6909000 32 -648.9959 737000 6909000 33 -649.1388 738000 6909000 34 -647.4918 739000 6909000 35 -645.4199 740000 6909000 36 -644.0217 741000 6909000 37 -644.0255 742000 6909000 38 -645.4924 743000 6909000 39 -649.3932 744000 6909000 40 -655.0865 745000 6909000 41 -661.477 746000 6909000 42 -668.4027 747000 6909000 43 -675.5839 705000 6910000 1 -762.0343 706000 6910000 2 -757.1146 707000 6910000 3 -756.6089 708000 6910000 4 -758.5727 709000 6910000 5 -761.1663 710000 6910000 6 -762.885 711000 6910000 7 -762.8876 712000 6910000 8 -759.8763 713000 6910000 9 -751.502 714000 6910000 10 -737.8624 715000 6910000 11 -724.9535 716000 6910000 12 -717.457 717000 6910000 13 -714.3893 718000 6910000 14 -716.3757 719000 6910000 15 -723.0464 720000 6910000 16 -728.1182 721000 6910000 17 -728.872 722000 6910000 18 -717.3379 723000 6910000 19 -682.225 724000 6910000 20 -626.0471 725000 6910000 21 -567.7846 726000 6910000 22 -524.4022 727000 6910000 23 -506.3515 728000 6910000 24 -524.9136 729000 6910000 25 -574.0405 730000 6910000 26 -622.3079 731000 6910000 27 -643.5914 732000 6910000 28 -648.5961 733000 6910000 29 -650.6846 734000 6910000 30 -652.5571 735000 6910000 31 -652.7131 736000 6910000 32 -652.3135 737000 6910000 33 -651.1127 738000 6910000 34 -648.4026 739000 6910000 35 -645.1262 740000 6910000 36 -643.7283 741000 6910000 37 -646.0273 742000 6910000 38 -649.9622 743000 6910000 39 -654.6826 744000 6910000 40 -660.0717 745000 6910000 41 -666.4505 746000 6910000 42 -674.2485 747000 6910000 43 -682.4724 705000 6911000 1 -764.9401 706000 6911000 2 -758.6859 707000 6911000 3 -755.8604 708000 6911000 4 -756.262 709000 6911000 5 -759.2563 710000 6911000 6 -762.6635 711000 6911000 7 -764.6628 712000 6911000 8 -763.888 713000 6911000 9 -758.8356 714000 6911000 10 -749.7145 715000 6911000 11 -740.2831 716000 6911000 12 -732.5356 717000 6911000 13 -727.3787 718000 6911000 14 -726.1553 719000 6911000 15 -728.8169 720000 6911000 16 -732.3405 721000 6911000 17 -734.0986 722000 6911000 18 -725.6024 723000 6911000 19 -695.1693 724000 6911000 20 -644.327 725000 6911000 21 -590.8884 726000 6911000 22 -552.1425 727000 6911000 23 -538.5587 728000 6911000 24 -557.7487 729000 6911000 25 -602.6457 730000 6911000 26 -645.1745 731000 6911000 27 -663.4403 732000 6911000 28 -665.0798 733000 6911000 29 -662.6335 734000 6911000 30 -660.4995 735000 6911000 31 -657.753 736000 6911000 32 -654.6624 737000 6911000 33 -651.6199 738000 6911000 34 -648.9451 739000 6911000 35 -647.2621 740000 6911000 36 -647.7188 741000 6911000 37 -650.9785 742000 6911000 38 -655.8721 743000 6911000 39 -661.2848 744000 6911000 40 -667.0524 745000 6911000 41 -673.525 746000 6911000 42 -680.8044 747000 6911000 43 -688.5858 705000 6912000 1 -767.0073 706000 6912000 2 -759.9927 707000 6912000 3 -755.4185 708000 6912000 4 -754.2757 709000 6912000 5 -757.2462 710000 6912000 6 -761.6245 711000 6912000 7 -764.4636 712000 6912000 8 -764.496 713000 6912000 9 -761.8965 714000 6912000 10 -757.5464 715000 6912000 11 -752.5644 716000 6912000 12 -746.7952 717000 6912000 13 -741.9539 718000 6912000 14 -738.5677 719000 6912000 15 -736.3184 720000 6912000 16 -736.8618 721000 6912000 17 -738.4202 722000 6912000 18 -733.0433 723000 6912000 19 -708.5278 724000 6912000 20 -664.7603 725000 6912000 21 -618.3605 726000 6912000 22 -586.6124 727000 6912000 23 -577.2291 728000 6912000 24 -593.188 729000 6912000 25 -627.9825 730000 6912000 26 -660.6388 731000 6912000 27 -675.3406 732000 6912000 28 -676.1163 733000 6912000 29 -671.7856 734000 6912000 30 -666.7997 735000 6912000 31 -661.5368 736000 6912000 32 -655.9908 737000 6912000 33 -651.3325 738000 6912000 34 -649.3342 739000 6912000 35 -650.2393 740000 6912000 36 -653.0657 741000 6912000 37 -656.8472 742000 6912000 38 -662.011 743000 6912000 39 -668.1411 744000 6912000 40 -674.772 745000 6912000 41 -681.4981 746000 6912000 42 -687.9326 747000 6912000 43 -694.6293 705000 6913000 1 -767.3026 706000 6913000 2 -760.6863 707000 6913000 3 -755.778 708000 6913000 4 -753.5569 709000 6913000 5 -755.1658 710000 6913000 6 -758.9396 711000 6913000 7 -762.2669 712000 6913000 8 -763.5866 713000 6913000 9 -763.0341 714000 6913000 10 -761.2902 715000 6913000 11 -758.7726 716000 6913000 12 -755.4054 717000 6913000 13 -751.4366 718000 6913000 14 -746.2589 719000 6913000 15 -740.5228 720000 6913000 16 -738.2009 721000 6913000 17 -740.2667 722000 6913000 18 -739.5185 723000 6913000 19 -722.8034 724000 6913000 20 -688.4122 725000 6913000 21 -651.3428 726000 6913000 22 -626.5822 727000 6913000 23 -619.3707 728000 6913000 24 -629.5979 729000 6913000 25 -652.3929 730000 6913000 26 -673.866 731000 6913000 27 -683.3787 732000 6913000 28 -682.7136 733000 6913000 29 -677.2291 734000 6913000 30 -670.3965 735000 6913000 31 -663.3367 736000 6913000 32 -656.3887 737000 6913000 33 -651.0817 738000 6913000 34 -649.6895 739000 6913000 35 -652.1736 740000 6913000 36 -656.6078 741000 6913000 37 -661.4277 742000 6913000 38 -667.3689 743000 6913000 39 -674.4293 744000 6913000 40 -682.0163 745000 6913000 41 -689.1976 746000 6913000 42 -695.3354 747000 6913000 43 -701.4442 705000 6914000 1 -766.2286 706000 6914000 2 -760.6554 707000 6914000 3 -756.249 708000 6914000 4 -753.1471 709000 6914000 5 -752.7766 710000 6914000 6 -755.3228 711000 6914000 7 -759.1209 712000 6914000 8 -761.9673 713000 6914000 9 -762.9871 714000 6914000 10 -762.2465 715000 6914000 11 -760.6177 716000 6914000 12 -759.2847 717000 6914000 13 -756.68 718000 6914000 14 -750.378 719000 6914000 15 -742.0964 720000 6914000 16 -737.0046 721000 6914000 17 -740.0645 722000 6914000 18 -743.9828 723000 6914000 19 -735.4737 724000 6914000 20 -713.1089 725000 6914000 21 -687.8484 726000 6914000 22 -668.802 727000 6914000 23 -661.8043 728000 6914000 24 -665.4906 729000 6914000 25 -675.2615 730000 6914000 26 -684.9995 731000 6914000 27 -688.974 732000 6914000 28 -686.5041 733000 6914000 29 -679.897 734000 6914000 30 -671.694 735000 6914000 31 -663.5221 736000 6914000 32 -656.2584 737000 6914000 33 -651.1382 738000 6914000 34 -650.1824 739000 6914000 35 -653.1572 740000 6914000 36 -658.2562 741000 6914000 37 -664.3982 742000 6914000 38 -671.5559 743000 6914000 39 -679.6738 744000 6914000 40 -688.2629 745000 6914000 41 -696.1443 746000 6914000 42 -702.4662 747000 6914000 43 -708.4297 705000 6915000 1 -764.4474 706000 6915000 2 -759.6501 707000 6915000 3 -755.7032 708000 6915000 4 -751.9369 709000 6915000 5 -750.0691 710000 6915000 6 -751.6992 711000 6915000 7 -755.9747 712000 6915000 8 -760.062 713000 6915000 9 -762.1905 714000 6915000 10 -762.0507 715000 6915000 11 -760.9535 716000 6915000 12 -760.8739 717000 6915000 13 -759.675 718000 6915000 14 -753.9897 719000 6915000 15 -745.7452 720000 6915000 16 -740.0521 721000 6915000 17 -743.1487 722000 6915000 18 -748.8833 723000 6915000 19 -746.11 724000 6915000 20 -733.7101 725000 6915000 21 -718.1369 726000 6915000 22 -703.6594 727000 6915000 23 -695.7745 728000 6915000 24 -694.0238 729000 6915000 25 -694.4894 730000 6915000 26 -695.2759 731000 6915000 27 -694.0699 732000 6915000 28 -688.9129 733000 6915000 29 -680.7733 734000 6915000 30 -671.8056 735000 6915000 31 -663.3995 736000 6915000 32 -656.4855 737000 6915000 33 -651.8461 738000 6915000 34 -651.3327 739000 6915000 35 -654.658 740000 6915000 36 -660.0853 741000 6915000 37 -666.8846 742000 6915000 38 -674.7746 743000 6915000 39 -683.6384 744000 6915000 40 -693.0806 745000 6915000 41 -701.7731 746000 6915000 42 -708.5604 747000 6915000 43 -714.6157 705000 6916000 1 -762.3834 706000 6916000 2 -757.5883 707000 6916000 3 -753.6032 708000 6916000 4 -749.6884 709000 6916000 5 -747.3455 710000 6916000 6 -748.682 711000 6916000 7 -753.4164 712000 6916000 8 -758.3638 713000 6916000 9 -761.1966 714000 6916000 10 -761.7722 715000 6916000 11 -761.4498 716000 6916000 12 -761.7597 717000 6916000 13 -761.4285 718000 6916000 14 -758.3922 719000 6916000 15 -753.9926 720000 6916000 16 -751.3932 721000 6916000 17 -752.9733 722000 6916000 18 -755.72 723000 6916000 19 -754.358 724000 6916000 20 -747.7178 725000 6916000 21 -737.6421 726000 6916000 22 -726.231 727000 6916000 23 -717.2537 728000 6916000 24 -712.3225 729000 6916000 25 -709.8517 730000 6916000 26 -706.9613 731000 6916000 27 -700.913 732000 6916000 28 -691.402 733000 6916000 29 -680.9793 734000 6916000 30 -671.9666 735000 6916000 31 -664.3184 736000 6916000 32 -658.1201 737000 6916000 33 -654.3078 738000 6916000 34 -654.3087 739000 6916000 35 -657.7015 740000 6916000 36 -663.0634 741000 6916000 37 -669.693 742000 6916000 38 -677.3807 743000 6916000 39 -686.2385 744000 6916000 40 -695.8612 745000 6916000 41 -705.0101 746000 6916000 42 -712.808 747000 6916000 43 -719.6113 705000 6917000 1 -760.3417 706000 6917000 2 -755.2325 707000 6917000 3 -751.1998 708000 6917000 4 -747.4017 709000 6917000 5 -744.9501 710000 6917000 6 -746.311 711000 6917000 7 -751.6283 712000 6917000 8 -757.2437 713000 6917000 9 -760.4487 714000 6917000 10 -761.5113 715000 6917000 11 -761.728 716000 6917000 12 -762.2581 717000 6917000 13 -762.8689 718000 6917000 14 -762.9016 719000 6917000 15 -763.095 720000 6917000 16 -764.1849 721000 6917000 17 -764.5453 722000 6917000 18 -763.6134 723000 6917000 19 -761.634 724000 6917000 20 -757.9543 725000 6917000 21 -750.8506 726000 6917000 22 -740.8328 727000 6917000 23 -730.6425 728000 6917000 24 -724.1342 729000 6917000 25 -721.9149 730000 6917000 26 -718.7313 731000 6917000 27 -708.8109 732000 6917000 28 -694.6555 733000 6917000 29 -681.6818 734000 6917000 30 -672.5624 735000 6917000 31 -665.7743 736000 6917000 32 -660.4478 737000 6917000 33 -657.8058 738000 6917000 34 -658.6522 739000 6917000 35 -662.1631 740000 6917000 36 -667.308 741000 6917000 37 -673.3193 742000 6917000 38 -680.0735 743000 6917000 39 -688.3214 744000 6917000 40 -697.6783 745000 6917000 41 -706.7908 746000 6917000 42 -715.3328 747000 6917000 43 -723.0515 705000 6918000 1 -758.6549 706000 6918000 2 -753.231 707000 6918000 3 -749.3943 708000 6918000 4 -746.1266 709000 6918000 5 -744.1031 710000 6918000 6 -745.5084 711000 6918000 7 -750.6842 712000 6918000 8 -756.278 713000 6918000 9 -759.6838 714000 6918000 10 -761.1682 715000 6918000 11 -761.7519 716000 6918000 12 -762.3949 717000 6918000 13 -763.6887 718000 6918000 14 -765.9335 719000 6918000 15 -769.2157 720000 6918000 16 -772.5667 721000 6918000 17 -773.0508 722000 6918000 18 -771.0844 723000 6918000 19 -769.2431 724000 6918000 20 -767.3386 725000 6918000 21 -762.0023 726000 6918000 22 -752.1813 727000 6918000 23 -740.597 728000 6918000 24 -732.538 729000 6918000 25 -729.5506 730000 6918000 26 -725.7021 731000 6918000 27 -714.4568 732000 6918000 28 -698.5851 733000 6918000 29 -683.8997 734000 6918000 30 -673.362 735000 6918000 31 -666.1897 736000 6918000 32 -661.9693 737000 6918000 33 -661.0303 738000 6918000 34 -663.2548 739000 6918000 35 -667.5356 740000 6918000 36 -672.8239 741000 6918000 37 -678.2655 742000 6918000 38 -683.9874 743000 6918000 39 -691.2403 744000 6918000 40 -699.8343 745000 6918000 41 -708.2643 746000 6918000 42 -716.1929 747000 6918000 43 -723.7334 705000 6919000 1 -757.5653 706000 6919000 2 -751.8751 707000 6919000 3 -748.3391 708000 6919000 4 -745.9901 709000 6919000 5 -744.9988 710000 6919000 6 -746.4084 711000 6919000 7 -750.3162 712000 6919000 8 -755.0933 713000 6919000 9 -758.7018 714000 6919000 10 -760.8302 715000 6919000 11 -761.8212 716000 6919000 12 -762.334 717000 6919000 13 -763.621 718000 6919000 14 -766.8731 719000 6919000 15 -771.5101 720000 6919000 16 -775.7756 721000 6919000 17 -777.3168 722000 6919000 18 -776.6489 723000 6919000 19 -776.2729 724000 6919000 20 -776.1157 725000 6919000 21 -772.3029 726000 6919000 22 -761.7607 727000 6919000 23 -747.8734 728000 6919000 24 -737.6563 729000 6919000 25 -732.9479 730000 6919000 26 -728.1496 731000 6919000 27 -717.2498 732000 6919000 28 -702.0577 733000 6919000 29 -686.8478 734000 6919000 30 -674.3875 735000 6919000 31 -666.087 736000 6919000 32 -663.1381 737000 6919000 33 -664.2819 738000 6919000 34 -668.1211 739000 6919000 35 -673.5192 740000 6919000 36 -679.23 741000 6919000 37 -684.3668 742000 6919000 38 -689.514 743000 6919000 39 -695.4346 744000 6919000 40 -702.1896 745000 6919000 41 -708.9894 746000 6919000 42 -714.999 747000 6919000 43 -721.0521 705000 6920000 1 -757.5566 706000 6920000 2 -751.3958 707000 6920000 3 -747.7479 708000 6920000 4 -745.8771 709000 6920000 5 -745.445 710000 6920000 6 -746.6634 711000 6920000 7 -749.4533 712000 6920000 8 -753.6791 713000 6920000 9 -757.7184 714000 6920000 10 -760.8231 715000 6920000 11 -762.4685 716000 6920000 12 -762.756 717000 6920000 13 -763.4686 718000 6920000 14 -766.626 719000 6920000 15 -771.288 720000 6920000 16 -775.8076 721000 6920000 17 -778.4244 722000 6920000 18 -779.3897 723000 6920000 19 -780.6889 724000 6920000 20 -782.2001 725000 6920000 21 -779.5485 726000 6920000 22 -767.94 727000 6920000 23 -751.4808 728000 6920000 24 -739.0508 729000 6920000 25 -733.0463 730000 6920000 26 -727.9127 731000 6920000 27 -717.7729 732000 6920000 28 -703.8691 733000 6920000 29 -689.2506 734000 6920000 30 -676.277 735000 6920000 31 -667.809 736000 6920000 32 -666.2302 737000 6920000 33 -669.153 738000 6920000 34 -674.0124 739000 6920000 35 -679.7504 740000 6920000 36 -685.2858 741000 6920000 37 -689.9091 742000 6920000 38 -694.3382 743000 6920000 39 -698.6326 744000 6920000 40 -702.9117 745000 6920000 41 -707.5975 746000 6920000 42 -712.2003 747000 6920000 43 -717.6503 705000 6921000 1 -758.5811 706000 6921000 2 -751.5885 707000 6921000 3 -746.9034 708000 6921000 4 -744.2359 709000 6921000 5 -743.079 710000 6921000 6 -743.9869 711000 6921000 7 -747.1246 712000 6921000 8 -751.7886 713000 6921000 9 -756.7208 714000 6921000 10 -761.3176 715000 6921000 11 -764.1173 716000 6921000 12 -764.6115 717000 6921000 13 -764.9344 718000 6921000 14 -766.9529 719000 6921000 15 -770.1426 720000 6921000 16 -773.9406 721000 6921000 17 -777.3318 722000 6921000 18 -779.8139 723000 6921000 19 -782.3281 724000 6921000 20 -784.1947 725000 6921000 21 -781.0966 726000 6921000 22 -769.0463 727000 6921000 23 -751.8715 728000 6921000 24 -738.3018 729000 6921000 25 -731.1255 730000 6921000 26 -725.4031 731000 6921000 27 -716.027 732000 6921000 28 -703.6454 733000 6921000 29 -690.7455 734000 6921000 30 -679.585 735000 6921000 31 -672.9574 736000 6921000 32 -672.7221 737000 6921000 33 -676.5602 738000 6921000 34 -681.2599 739000 6921000 35 -685.7277 740000 6921000 36 -689.8344 741000 6921000 37 -693.4621 742000 6921000 38 -696.8314 743000 6921000 39 -699.4907 744000 6921000 40 -701.3844 745000 6921000 41 -703.9783 746000 6921000 42 -708.8459 747000 6921000 43 -715.6724 705000 6922000 1 -760.1052 706000 6922000 2 -752.3426 707000 6922000 3 -746.274 708000 6922000 4 -742.2076 709000 6922000 5 -739.7655 710000 6922000 6 -740.3357 711000 6922000 7 -744.687 712000 6922000 8 -750.2047 713000 6922000 9 -755.9604 714000 6922000 10 -762.0057 715000 6922000 11 -766.1908 716000 6922000 12 -767.4791 717000 6922000 13 -767.9644 718000 6922000 14 -768.5987 719000 6922000 15 -769.5157 720000 6922000 16 -771.7931 721000 6922000 17 -775.2857 722000 6922000 18 -778.6476 723000 6922000 19 -781.673 724000 6922000 20 -783.1879 725000 6922000 21 -779.1859 726000 6922000 22 -766.9482 727000 6922000 23 -749.8137 728000 6922000 24 -735.8831 729000 6922000 25 -728.3967 730000 6922000 26 -722.2971 731000 6922000 27 -713.175 732000 6922000 28 -701.9391 733000 6922000 29 -691.3204 734000 6922000 30 -683.4493 735000 6922000 31 -679.8955 736000 6922000 32 -681.3233 737000 6922000 33 -685.4213 738000 6922000 34 -688.8874 739000 6922000 35 -690.9515 740000 6922000 36 -692.9058 741000 6922000 37 -695.203 742000 6922000 38 -697.6368 743000 6922000 39 -699.3188 744000 6922000 40 -699.682 745000 6922000 41 -700.6651 746000 6922000 42 -706.556 747000 6922000 43 -715.397 705000 6923000 1 -762.2321 706000 6923000 2 -754.0822 707000 6923000 3 -747.2339 708000 6923000 4 -742.6303 709000 6923000 5 -740.2744 710000 6923000 6 -740.9746 711000 6923000 7 -745.1907 712000 6923000 8 -750.5456 713000 6923000 9 -756.1562 714000 6923000 10 -762.159 715000 6923000 11 -767.1764 716000 6923000 12 -770.1157 717000 6923000 13 -771.5829 718000 6923000 14 -771.4774 719000 6923000 15 -770.5928 720000 6923000 16 -771.1338 721000 6923000 17 -773.7713 722000 6923000 18 -777.0161 723000 6923000 19 -779.7498 724000 6923000 20 -780.7849 725000 6923000 21 -776.5667 726000 6923000 22 -764.473 727000 6923000 23 -747.6494 728000 6923000 24 -733.9427 729000 6923000 25 -726.6909 730000 6923000 26 -720.3141 731000 6923000 27 -710.2191 732000 6923000 28 -698.5966 733000 6923000 29 -690.1546 734000 6923000 30 -687.1779 735000 6923000 31 -688.0842 736000 6923000 32 -690.7286 737000 6923000 33 -693.3961 738000 6923000 34 -694.5921 739000 6923000 35 -694.4304 740000 6923000 36 -694.6166 741000 6923000 37 -695.5718 742000 6923000 38 -697.2948 743000 6923000 39 -699.2834 744000 6923000 40 -700.5276 745000 6923000 41 -701.5059 746000 6923000 42 -707.4746 747000 6923000 43 -717.0187 705000 6924000 1 -765.0118 706000 6924000 2 -756.7327 707000 6924000 3 -749.7191 708000 6924000 4 -745.5918 709000 6924000 5 -744.502 710000 6924000 6 -745.7166 711000 6924000 7 -748.6788 712000 6924000 8 -752.8541 713000 6924000 9 -757.4493 714000 6924000 10 -762.3555 715000 6924000 11 -767.5084 716000 6924000 12 -772.3364 717000 6924000 13 -775.2513 718000 6924000 14 -774.8707 719000 6924000 15 -772.8035 720000 6924000 16 -771.8884 721000 6924000 17 -773.4606 722000 6924000 18 -776.0396 723000 6924000 19 -777.5264 724000 6924000 20 -777.2172 725000 6924000 21 -773.1204 726000 6924000 22 -761.9052 727000 6924000 23 -746.6603 728000 6924000 24 -734.2645 729000 6924000 25 -726.6985 730000 6924000 26 -719.4081 731000 6924000 27 -707.0879 732000 6924000 28 -693.5281 733000 6924000 29 -686.8452 734000 6924000 30 -690.1424 735000 6924000 31 -696.7037 736000 6924000 32 -699.6616 737000 6924000 33 -699.0118 738000 6924000 34 -697.145 739000 6924000 35 -695.4871 740000 6924000 36 -694.7473 741000 6924000 37 -694.7552 742000 6924000 38 -695.9758 743000 6924000 39 -699.0056 744000 6924000 40 -702.7961 745000 6924000 41 -705.4647 746000 6924000 42 -710.562 747000 6924000 43 -719.1268 705000 6925000 1 -767.8219 706000 6925000 2 -759.5692 707000 6925000 3 -752.6683 708000 6925000 4 -749.2583 709000 6925000 5 -749.3412 710000 6925000 6 -750.9264 711000 6925000 7 -752.7565 712000 6925000 8 -755.7755 713000 6925000 9 -759.6516 714000 6925000 10 -763.9501 715000 6925000 11 -768.9762 716000 6925000 12 -774.4587 717000 6925000 13 -777.9168 718000 6925000 14 -777.6345 719000 6925000 15 -775.4675 720000 6925000 16 -774.1235 721000 6925000 17 -775.0115 722000 6925000 18 -776.2987 723000 6925000 19 -774.9085 724000 6925000 20 -771.0778 725000 6925000 21 -765.3741 726000 6925000 22 -755.7853 727000 6925000 23 -744.1657 728000 6925000 24 -734.14 729000 6925000 25 -725.7789 730000 6925000 26 -716.2687 731000 6925000 27 -702.291 732000 6925000 28 -688.6339 733000 6925000 29 -684.1331 734000 6925000 30 -691.6371 735000 6925000 31 -701.6655 736000 6925000 32 -705.2039 737000 6925000 33 -702.6452 738000 6925000 34 -698.3013 739000 6925000 35 -694.7473 740000 6925000 36 -692.9161 741000 6925000 37 -693.1425 742000 6925000 38 -695.1215 743000 6925000 39 -699.3538 744000 6925000 40 -704.8959 745000 6925000 41 -708.43 746000 6925000 42 -711.7782 747000 6925000 43 -718.046 ================================================ FILE: examples/data/input_data/tut_SandStone/Sst_grav_2000.xyz ================================================ 706000 6864000 1 -730.6081 708000 6864000 2 -729.78 710000 6864000 3 -721.5048 712000 6864000 4 -722.1835 714000 6864000 5 -716.2643 716000 6864000 6 -707.6698 718000 6864000 7 -699.1996 720000 6864000 8 -688.9047 722000 6864000 9 -686.1223 724000 6864000 10 -684.6586 726000 6864000 11 -681.4984 728000 6864000 12 -672.7161 730000 6864000 13 -658.5569 732000 6864000 14 -653.5521 734000 6864000 15 -653.5522 736000 6864000 16 -645.1258 738000 6864000 17 -636.4318 740000 6864000 18 -640.7131 742000 6864000 19 -652.3169 744000 6864000 20 -655.9913 746000 6864000 21 -658.0019 706000 6866000 1 -739.1899 708000 6866000 2 -735.66 710000 6866000 3 -728.1897 712000 6866000 4 -729.1428 714000 6866000 5 -722.2621 716000 6866000 6 -713.7672 718000 6866000 7 -708.2551 720000 6866000 8 -699.3611 722000 6866000 9 -693.8103 724000 6866000 10 -690.0877 726000 6866000 11 -682.7016 728000 6866000 12 -673.9568 730000 6866000 13 -669.1102 732000 6866000 14 -661.7293 734000 6866000 15 -655.3212 736000 6866000 16 -646.8954 738000 6866000 17 -640.4749 740000 6866000 18 -642.0357 742000 6866000 19 -652.5623 744000 6866000 20 -657.8908 746000 6866000 21 -663.599 706000 6868000 1 -744.9362 708000 6868000 2 -740.2125 710000 6868000 3 -736.1534 712000 6868000 4 -737.2551 714000 6868000 5 -730.3822 716000 6868000 6 -720.284 718000 6868000 7 -716.054 720000 6868000 8 -711.1713 722000 6868000 9 -705.4636 724000 6868000 10 -695.5107 726000 6868000 11 -681.1393 728000 6868000 12 -672.1929 730000 6868000 13 -673.1794 732000 6868000 14 -666.0043 734000 6868000 15 -652.2498 736000 6868000 16 -642.3809 738000 6868000 17 -643.0374 740000 6868000 18 -648.3993 742000 6868000 19 -643.1124 744000 6868000 20 -647.7448 746000 6868000 21 -657.8663 706000 6870000 1 -749.4245 708000 6870000 2 -743.0251 710000 6870000 3 -739.0991 712000 6870000 4 -744.678 714000 6870000 5 -740.2057 716000 6870000 6 -728.2827 718000 6870000 7 -720.2795 720000 6870000 8 -718.511 722000 6870000 9 -717.3859 724000 6870000 10 -702.0381 726000 6870000 11 -681.2697 728000 6870000 12 -671.1432 730000 6870000 13 -669.9548 732000 6870000 14 -662.9973 734000 6870000 15 -649.4879 736000 6870000 16 -640.9612 738000 6870000 17 -641.3194 740000 6870000 18 -644.2726 742000 6870000 19 -638.9683 744000 6870000 20 -639.3925 746000 6870000 21 -643.5736 706000 6872000 1 -754.5789 708000 6872000 2 -747.4048 710000 6872000 3 -748.2502 712000 6872000 4 -751.609 714000 6872000 5 -746.8555 716000 6872000 6 -731.9398 718000 6872000 7 -719.6393 720000 6872000 8 -724.1617 722000 6872000 9 -724.2868 724000 6872000 10 -704.8765 726000 6872000 11 -681.0361 728000 6872000 12 -671.7219 730000 6872000 13 -668.0718 732000 6872000 14 -655.8574 734000 6872000 15 -645.7734 736000 6872000 16 -641.8557 738000 6872000 17 -639.8704 740000 6872000 18 -632.9855 742000 6872000 19 -635.0123 744000 6872000 20 -639.3104 746000 6872000 21 -640.8064 706000 6874000 1 -756.6422 708000 6874000 2 -745.7524 710000 6874000 3 -749.7598 712000 6874000 4 -747.6771 714000 6874000 5 -748.4407 716000 6874000 6 -736.4689 718000 6874000 7 -718.7116 720000 6874000 8 -714.1138 722000 6874000 9 -718.2043 724000 6874000 10 -706.6182 726000 6874000 11 -685.9135 728000 6874000 12 -675.1736 730000 6874000 13 -665.0458 732000 6874000 14 -648.4885 734000 6874000 15 -623.4494 736000 6874000 16 -613.0426 738000 6874000 17 -623.4331 740000 6874000 18 -629.1527 742000 6874000 19 -625.4094 744000 6874000 20 -633.6397 746000 6874000 21 -641.168 706000 6876000 1 -752.1906 708000 6876000 2 -734.4942 710000 6876000 3 -737.4503 712000 6876000 4 -738.2546 714000 6876000 5 -745.9056 716000 6876000 6 -737.8077 718000 6876000 7 -712.2833 720000 6876000 8 -689.7587 722000 6876000 9 -704.6205 724000 6876000 10 -709.9301 726000 6876000 11 -694.1149 728000 6876000 12 -677.9119 730000 6876000 13 -659.9307 732000 6876000 14 -641.1273 734000 6876000 15 -612.1245 736000 6876000 16 -566.2075 738000 6876000 17 -539.9272 740000 6876000 18 -559.8768 742000 6876000 19 -585.1865 744000 6876000 20 -616.8339 746000 6876000 21 -636.593 706000 6878000 1 -752.4149 708000 6878000 2 -729.8929 710000 6878000 3 -716.9059 712000 6878000 4 -719.4546 714000 6878000 5 -729.6035 716000 6878000 6 -727.8317 718000 6878000 7 -704.3815 720000 6878000 8 -673.579 722000 6878000 9 -693.4105 724000 6878000 10 -707.3817 726000 6878000 11 -695.96 728000 6878000 12 -674.4683 730000 6878000 13 -644.1451 732000 6878000 14 -630.2053 734000 6878000 15 -615.777 736000 6878000 16 -528.4104 738000 6878000 17 -428.7493 740000 6878000 18 -457.453 742000 6878000 19 -516.6805 744000 6878000 20 -570.6968 746000 6878000 21 -608.5021 706000 6880000 1 -763.1755 708000 6880000 2 -740.6771 710000 6880000 3 -694.1479 712000 6880000 4 -666.3671 714000 6880000 5 -686.1899 716000 6880000 6 -710.444 718000 6880000 7 -703.804 720000 6880000 8 -678.0956 722000 6880000 9 -674.8248 724000 6880000 10 -691.4479 726000 6880000 11 -695.1216 728000 6880000 12 -665.8631 730000 6880000 13 -607.2206 732000 6880000 14 -605.9048 734000 6880000 15 -605.9815 736000 6880000 16 -520.6978 738000 6880000 17 -418.6508 740000 6880000 18 -404.9449 742000 6880000 19 -451.8113 744000 6880000 20 -494.2441 746000 6880000 21 -554.6666 706000 6882000 1 -761.7925 708000 6882000 2 -748.9162 710000 6882000 3 -672.1656 712000 6882000 4 -591.585 714000 6882000 5 -627.4072 716000 6882000 6 -674.673 718000 6882000 7 -687.6356 720000 6882000 8 -670.1614 722000 6882000 9 -627.835 724000 6882000 10 -657.8654 726000 6882000 11 -682.9102 728000 6882000 12 -653.234 730000 6882000 13 -582.7672 732000 6882000 14 -559.3673 734000 6882000 15 -567.3097 736000 6882000 16 -497.5714 738000 6882000 17 -428.2187 740000 6882000 18 -410.9371 742000 6882000 19 -406.8226 744000 6882000 20 -426.6725 746000 6882000 21 -511.7028 706000 6884000 1 -749.523 708000 6884000 2 -747.9492 710000 6884000 3 -672.8412 712000 6884000 4 -568.6021 714000 6884000 5 -537.1356 716000 6884000 6 -562.4052 718000 6884000 7 -587.3223 720000 6884000 8 -578.9716 722000 6884000 9 -553.479 724000 6884000 10 -580.327 726000 6884000 11 -615.4108 728000 6884000 12 -615.3887 730000 6884000 13 -541.3028 732000 6884000 14 -477.5453 734000 6884000 15 -482.9331 736000 6884000 16 -453.5399 738000 6884000 17 -407.7904 740000 6884000 18 -373.3095 742000 6884000 19 -368.1217 744000 6884000 20 -405.5162 746000 6884000 21 -506.6763 706000 6886000 1 -736.6365 708000 6886000 2 -740.2818 710000 6886000 3 -692.3773 712000 6886000 4 -579.9037 714000 6886000 5 -489.8077 716000 6886000 6 -475.5984 718000 6886000 7 -498.902 720000 6886000 8 -494.6645 722000 6886000 9 -491.7839 724000 6886000 10 -502.1018 726000 6886000 11 -518.5162 728000 6886000 12 -504.8912 730000 6886000 13 -459.0838 732000 6886000 14 -415.1469 734000 6886000 15 -405.1169 736000 6886000 16 -389.1935 738000 6886000 17 -358.3294 740000 6886000 18 -330.5741 742000 6886000 19 -350.7322 744000 6886000 20 -412.9602 746000 6886000 21 -519.9556 706000 6888000 1 -735.7146 708000 6888000 2 -729.6115 710000 6888000 3 -703.1713 712000 6888000 4 -581.8063 714000 6888000 5 -480.0982 716000 6888000 6 -451.959 718000 6888000 7 -469.3524 720000 6888000 8 -466.168 722000 6888000 9 -461.5335 724000 6888000 10 -445.8073 726000 6888000 11 -443.2126 728000 6888000 12 -411.6887 730000 6888000 13 -386.4494 732000 6888000 14 -371.1815 734000 6888000 15 -348.0102 736000 6888000 16 -324.2034 738000 6888000 17 -305.1215 740000 6888000 18 -304.5821 742000 6888000 19 -338.6225 744000 6888000 20 -429.9913 746000 6888000 21 -541.8386 706000 6890000 1 -733.7056 708000 6890000 2 -712.6119 710000 6890000 3 -704.6556 712000 6890000 4 -580.6121 714000 6890000 5 -482.3196 716000 6890000 6 -439.9577 718000 6890000 7 -441.8504 720000 6890000 8 -443.509 722000 6890000 9 -435.5248 724000 6890000 10 -399.4756 726000 6890000 11 -378.5879 728000 6890000 12 -352.2925 730000 6890000 13 -333.4167 732000 6890000 14 -332.4493 734000 6890000 15 -304.2296 736000 6890000 16 -279.2176 738000 6890000 17 -268.5978 740000 6890000 18 -286.7969 742000 6890000 19 -359.8727 744000 6890000 20 -484.8153 746000 6890000 21 -584.4149 706000 6892000 1 -737.7301 708000 6892000 2 -708.834 710000 6892000 3 -696.2411 712000 6892000 4 -599.508 714000 6892000 5 -497.0103 716000 6892000 6 -438.2431 718000 6892000 7 -408.8746 720000 6892000 8 -406.6569 722000 6892000 9 -387.1014 724000 6892000 10 -355.1693 726000 6892000 11 -328.8761 728000 6892000 12 -301.8515 730000 6892000 13 -283.0304 732000 6892000 14 -296.7216 734000 6892000 15 -282.8144 736000 6892000 16 -266.1236 738000 6892000 17 -268.9244 740000 6892000 18 -298.3139 742000 6892000 19 -381.9025 744000 6892000 20 -519.3377 746000 6892000 21 -610.6711 706000 6894000 1 -751.7577 708000 6894000 2 -715.2292 710000 6894000 3 -694.9357 712000 6894000 4 -657.4186 714000 6894000 5 -531.732 716000 6894000 6 -449.096 718000 6894000 7 -398.0706 720000 6894000 8 -381.0529 722000 6894000 9 -358.3919 724000 6894000 10 -326.3704 726000 6894000 11 -294.286 728000 6894000 12 -273.1559 730000 6894000 13 -265.644 732000 6894000 14 -280.4622 734000 6894000 15 -270.7543 736000 6894000 16 -263.9767 738000 6894000 17 -291.2555 740000 6894000 18 -352.3661 742000 6894000 19 -456.5014 744000 6894000 20 -559.0276 746000 6894000 21 -606.2371 706000 6896000 1 -762.4843 708000 6896000 2 -724.3445 710000 6896000 3 -687.6819 712000 6896000 4 -683.7318 714000 6896000 5 -587.4675 716000 6896000 6 -479.2788 718000 6896000 7 -412.3017 720000 6896000 8 -371.082 722000 6896000 9 -348.377 724000 6896000 10 -309.7986 726000 6896000 11 -265.968 728000 6896000 12 -246.0542 730000 6896000 13 -250.8627 732000 6896000 14 -268.2632 734000 6896000 15 -269.5236 736000 6896000 16 -280.2003 738000 6896000 17 -335.5317 740000 6896000 18 -424.6426 742000 6896000 19 -534.3527 744000 6896000 20 -598.1163 746000 6896000 21 -594.3217 706000 6898000 1 -766.8432 708000 6898000 2 -737.1212 710000 6898000 3 -683.2192 712000 6898000 4 -677.1313 714000 6898000 5 -628.6254 716000 6898000 6 -530.9074 718000 6898000 7 -445.3963 720000 6898000 8 -385.2642 722000 6898000 9 -353.0005 724000 6898000 10 -309.4915 726000 6898000 11 -266.4265 728000 6898000 12 -242.0003 730000 6898000 13 -242.4914 732000 6898000 14 -269.3606 734000 6898000 15 -292.7725 736000 6898000 16 -325.5329 738000 6898000 17 -404.153 740000 6898000 18 -503.269 742000 6898000 19 -584.3758 744000 6898000 20 -619.6182 746000 6898000 21 -597.4153 706000 6900000 1 -769.9462 708000 6900000 2 -745.2499 710000 6900000 3 -697.2866 712000 6900000 4 -671.6854 714000 6900000 5 -668.275 716000 6900000 6 -597.3036 718000 6900000 7 -499.8518 720000 6900000 8 -445.2801 722000 6900000 9 -380.3062 724000 6900000 10 -333.578 726000 6900000 11 -295.8646 728000 6900000 12 -278.6873 730000 6900000 13 -277.0641 732000 6900000 14 -313.2709 734000 6900000 15 -346.1466 736000 6900000 16 -402.8352 738000 6900000 17 -492.2521 740000 6900000 18 -579.1764 742000 6900000 19 -609.5616 744000 6900000 20 -621.0588 746000 6900000 21 -616.7823 706000 6902000 1 -772.7811 708000 6902000 2 -757.0671 710000 6902000 3 -724.7568 712000 6902000 4 -688.2579 714000 6902000 5 -686.5201 716000 6902000 6 -654.2493 718000 6902000 7 -580.8924 720000 6902000 8 -509.1367 722000 6902000 9 -451.8629 724000 6902000 10 -376.7885 726000 6902000 11 -320.1546 728000 6902000 12 -308.0745 730000 6902000 13 -313.8137 732000 6902000 14 -360.85 734000 6902000 15 -400.7498 736000 6902000 16 -500.5686 738000 6902000 17 -579.0537 740000 6902000 18 -614.7887 742000 6902000 19 -626.4327 744000 6902000 20 -625.1495 746000 6902000 21 -627.0845 706000 6904000 1 -772.8628 708000 6904000 2 -763.9391 710000 6904000 3 -741.6342 712000 6904000 4 -704.8118 714000 6904000 5 -687.3907 716000 6904000 6 -684.1858 718000 6904000 7 -659.0414 720000 6904000 8 -586.067 722000 6904000 9 -520.2827 724000 6904000 10 -445.2901 726000 6904000 11 -387.709 728000 6904000 12 -364.9692 730000 6904000 13 -366.5754 732000 6904000 14 -411.9777 734000 6904000 15 -480.5313 736000 6904000 16 -584.5436 738000 6904000 17 -618.1309 740000 6904000 18 -633.9052 742000 6904000 19 -638.2237 744000 6904000 20 -627.3361 746000 6904000 21 -629.0316 706000 6906000 1 -765.9749 708000 6906000 2 -765.1884 710000 6906000 3 -753.3408 712000 6906000 4 -722.9935 714000 6906000 5 -694.5732 716000 6906000 6 -695.1341 718000 6906000 7 -702.9111 720000 6906000 8 -668.2379 722000 6906000 9 -609.1287 724000 6906000 10 -520.7101 726000 6906000 11 -445.9419 728000 6906000 12 -421.3133 730000 6906000 13 -437.9799 732000 6906000 14 -503.457 734000 6906000 15 -582.8282 736000 6906000 16 -632.3708 738000 6906000 17 -635.3553 740000 6906000 18 -643.3322 742000 6906000 19 -643.5975 744000 6906000 20 -639.4073 746000 6906000 21 -646.599 706000 6908000 1 -757.1274 708000 6908000 2 -763.1099 710000 6908000 3 -761.4848 712000 6908000 4 -742.5049 714000 6908000 5 -711.0689 716000 6908000 6 -699.8994 718000 6908000 7 -715.2269 720000 6908000 8 -719.7236 722000 6908000 9 -685.9202 724000 6908000 10 -586.6362 726000 6908000 11 -489.434 728000 6908000 12 -474.8091 730000 6908000 13 -529.9908 732000 6908000 14 -599.0749 734000 6908000 15 -632.7683 736000 6908000 16 -645.2806 738000 6908000 17 -645.8002 740000 6908000 18 -646.4139 742000 6908000 19 -643.1854 744000 6908000 20 -651.5601 746000 6908000 21 -662.7588 706000 6910000 1 -757.1146 708000 6910000 2 -758.5727 710000 6910000 3 -762.885 712000 6910000 4 -759.8763 714000 6910000 5 -737.8624 716000 6910000 6 -717.457 718000 6910000 7 -716.3757 720000 6910000 8 -728.1182 722000 6910000 9 -717.3379 724000 6910000 10 -626.0471 726000 6910000 11 -524.4022 728000 6910000 12 -524.9136 730000 6910000 13 -622.3079 732000 6910000 14 -648.5961 734000 6910000 15 -652.5571 736000 6910000 16 -652.3135 738000 6910000 17 -648.4026 740000 6910000 18 -643.7283 742000 6910000 19 -649.9622 744000 6910000 20 -660.0717 746000 6910000 21 -674.2485 706000 6912000 1 -759.9927 708000 6912000 2 -754.2757 710000 6912000 3 -761.6245 712000 6912000 4 -764.496 714000 6912000 5 -757.5464 716000 6912000 6 -746.7952 718000 6912000 7 -738.5677 720000 6912000 8 -736.8618 722000 6912000 9 -733.0433 724000 6912000 10 -664.7603 726000 6912000 11 -586.6124 728000 6912000 12 -593.188 730000 6912000 13 -660.6388 732000 6912000 14 -676.1163 734000 6912000 15 -666.7997 736000 6912000 16 -655.9908 738000 6912000 17 -649.3342 740000 6912000 18 -653.0657 742000 6912000 19 -662.011 744000 6912000 20 -674.772 746000 6912000 21 -687.9326 706000 6914000 1 -760.6554 708000 6914000 2 -753.1471 710000 6914000 3 -755.3228 712000 6914000 4 -761.9673 714000 6914000 5 -762.2465 716000 6914000 6 -759.2847 718000 6914000 7 -750.378 720000 6914000 8 -737.0046 722000 6914000 9 -743.9828 724000 6914000 10 -713.1089 726000 6914000 11 -668.802 728000 6914000 12 -665.4906 730000 6914000 13 -684.9995 732000 6914000 14 -686.5041 734000 6914000 15 -671.694 736000 6914000 16 -656.2584 738000 6914000 17 -650.1824 740000 6914000 18 -658.2562 742000 6914000 19 -671.5559 744000 6914000 20 -688.2629 746000 6914000 21 -702.4662 706000 6916000 1 -757.5883 708000 6916000 2 -749.6884 710000 6916000 3 -748.682 712000 6916000 4 -758.3638 714000 6916000 5 -761.7722 716000 6916000 6 -761.7597 718000 6916000 7 -758.3922 720000 6916000 8 -751.3932 722000 6916000 9 -755.72 724000 6916000 10 -747.7178 726000 6916000 11 -726.231 728000 6916000 12 -712.3225 730000 6916000 13 -706.9613 732000 6916000 14 -691.402 734000 6916000 15 -671.9666 736000 6916000 16 -658.1201 738000 6916000 17 -654.3087 740000 6916000 18 -663.0634 742000 6916000 19 -677.3807 744000 6916000 20 -695.8612 746000 6916000 21 -712.808 706000 6918000 1 -753.231 708000 6918000 2 -746.1266 710000 6918000 3 -745.5084 712000 6918000 4 -756.278 714000 6918000 5 -761.1682 716000 6918000 6 -762.3949 718000 6918000 7 -765.9335 720000 6918000 8 -772.5667 722000 6918000 9 -771.0844 724000 6918000 10 -767.3386 726000 6918000 11 -752.1813 728000 6918000 12 -732.538 730000 6918000 13 -725.7021 732000 6918000 14 -698.5851 734000 6918000 15 -673.362 736000 6918000 16 -661.9693 738000 6918000 17 -663.2548 740000 6918000 18 -672.8239 742000 6918000 19 -683.9874 744000 6918000 20 -699.8343 746000 6918000 21 -716.1929 706000 6920000 1 -751.3958 708000 6920000 2 -745.8771 710000 6920000 3 -746.6634 712000 6920000 4 -753.6791 714000 6920000 5 -760.8231 716000 6920000 6 -762.756 718000 6920000 7 -766.626 720000 6920000 8 -775.8076 722000 6920000 9 -779.3897 724000 6920000 10 -782.2001 726000 6920000 11 -767.94 728000 6920000 12 -739.0508 730000 6920000 13 -727.9127 732000 6920000 14 -703.8691 734000 6920000 15 -676.277 736000 6920000 16 -666.2302 738000 6920000 17 -674.0124 740000 6920000 18 -685.2858 742000 6920000 19 -694.3382 744000 6920000 20 -702.9117 746000 6920000 21 -712.2003 706000 6922000 1 -752.3426 708000 6922000 2 -742.2076 710000 6922000 3 -740.3357 712000 6922000 4 -750.2047 714000 6922000 5 -762.0057 716000 6922000 6 -767.4791 718000 6922000 7 -768.5987 720000 6922000 8 -771.7931 722000 6922000 9 -778.6476 724000 6922000 10 -783.1879 726000 6922000 11 -766.9482 728000 6922000 12 -735.8831 730000 6922000 13 -722.2971 732000 6922000 14 -701.9391 734000 6922000 15 -683.4493 736000 6922000 16 -681.3233 738000 6922000 17 -688.8874 740000 6922000 18 -692.9058 742000 6922000 19 -697.6368 744000 6922000 20 -699.682 746000 6922000 21 -706.556 706000 6924000 1 -756.7327 708000 6924000 2 -745.5918 710000 6924000 3 -745.7166 712000 6924000 4 -752.8541 714000 6924000 5 -762.3555 716000 6924000 6 -772.3364 718000 6924000 7 -774.8707 720000 6924000 8 -771.8884 722000 6924000 9 -776.0396 724000 6924000 10 -777.2172 726000 6924000 11 -761.9052 728000 6924000 12 -734.2645 730000 6924000 13 -719.4081 732000 6924000 14 -693.5281 734000 6924000 15 -690.1424 736000 6924000 16 -699.6616 738000 6924000 17 -697.145 740000 6924000 18 -694.7473 742000 6924000 19 -695.9758 744000 6924000 20 -702.7961 746000 6924000 21 -710.562 ================================================ FILE: examples/data/input_data/tut_SandStone/Sst_grav_500.xyz ================================================ 705000 6863000 1 -723.8629 705500 6863000 2 -724.3991 706000 6863000 3 -725.2547 706500 6863000 4 -726.1422 707000 6863000 5 -726.8271 707500 6863000 6 -727.0561 708000 6863000 7 -726.4553 708500 6863000 8 -724.9368 709000 6863000 9 -722.9324 709500 6863000 10 -720.9554 710000 6863000 11 -719.4084 710500 6863000 12 -718.5712 711000 6863000 13 -718.4475 711500 6863000 14 -718.7009 712000 6863000 15 -718.8212 712500 6863000 16 -718.4246 713000 6863000 17 -717.3098 713500 6863000 18 -715.514 714000 6863000 19 -713.2889 714500 6863000 20 -710.9114 715000 6863000 21 -708.5842 715500 6863000 22 -706.4133 716000 6863000 23 -704.3437 716500 6863000 24 -702.2527 717000 6863000 25 -700.0275 717500 6863000 26 -697.5915 718000 6863000 27 -694.9326 718500 6863000 28 -692.1396 719000 6863000 29 -689.4221 719500 6863000 30 -687.0392 720000 6863000 31 -685.2185 720500 6863000 32 -684.11 721000 6863000 33 -683.6333 721500 6863000 34 -683.547 722000 6863000 35 -683.5656 722500 6863000 36 -683.3813 723000 6863000 37 -682.7458 723500 6863000 38 -681.7429 724000 6863000 39 -680.5811 724500 6863000 40 -679.4879 725000 6863000 41 -678.6658 725500 6863000 42 -678.2338 726000 6863000 43 -678.0215 726500 6863000 44 -677.5732 727000 6863000 45 -676.4469 727500 6863000 46 -674.2368 728000 6863000 47 -670.7566 728500 6863000 48 -666.3262 729000 6863000 49 -661.5299 729500 6863000 50 -656.9976 730000 6863000 51 -653.5567 730500 6863000 52 -651.5858 731000 6863000 53 -650.6743 731500 6863000 54 -650.3621 732000 6863000 55 -650.3883 732500 6863000 56 -650.6312 733000 6863000 57 -650.9796 733500 6863000 58 -651.2386 734000 6863000 59 -651.0952 734500 6863000 60 -650.2305 735000 6863000 61 -648.3242 735500 6863000 62 -645.3602 736000 6863000 63 -641.7548 736500 6863000 64 -638.1195 737000 6863000 65 -635.082 737500 6863000 66 -633.6429 738000 6863000 67 -633.9037 738500 6863000 68 -635.282 739000 6863000 69 -637.3021 739500 6863000 70 -639.568 740000 6863000 71 -641.7147 740500 6863000 72 -643.649 741000 6863000 73 -645.5502 741500 6863000 74 -647.4488 742000 6863000 75 -649.1839 742500 6863000 76 -650.5781 743000 6863000 77 -651.5155 743500 6863000 78 -651.973 744000 6863000 79 -652.0624 744500 6863000 80 -651.978 745000 6863000 81 -652.033 745500 6863000 82 -652.5824 746000 6863000 83 -653.8615 746500 6863000 84 -655.808 747000 6863000 85 -658.2811 705000 6863500 1 -726.8855 705500 6863500 2 -727.301 706000 6863500 3 -727.9894 706500 6863500 4 -728.684 707000 6863500 5 -729.135 707500 6863500 6 -729.0869 708000 6863500 7 -728.2167 708500 6863500 8 -726.4989 709000 6863500 9 -724.3211 709500 6863500 10 -722.1889 710000 6863500 11 -720.5562 710500 6863500 12 -719.7637 711000 6863500 13 -719.8088 711500 6863500 14 -720.2727 712000 6863500 15 -720.5214 712500 6863500 16 -720.1333 713000 6863500 17 -718.9665 713500 6863500 18 -717.1168 714000 6863500 19 -714.8449 714500 6863500 20 -712.4444 715000 6863500 21 -710.1369 715500 6863500 22 -708.0185 716000 6863500 23 -706.0217 716500 6863500 24 -704.0304 717000 6863500 25 -701.9234 717500 6863500 26 -699.5995 718000 6863500 27 -697.0148 718500 6863500 28 -694.2416 719000 6863500 29 -691.4844 719500 6863500 30 -689.007 720000 6863500 31 -687.0513 720500 6863500 32 -685.7936 721000 6863500 33 -685.1697 721500 6863500 34 -684.9388 722000 6863500 35 -684.8486 722500 6863500 36 -684.6653 723000 6863500 37 -684.2075 723500 6863500 38 -683.5085 724000 6863500 39 -682.6978 724500 6863500 40 -681.899 725000 6863500 41 -681.1794 725500 6863500 42 -680.5537 726000 6863500 43 -679.9322 726500 6863500 44 -679.0344 727000 6863500 45 -677.5607 727500 6863500 46 -675.1953 728000 6863500 47 -671.7963 728500 6863500 48 -667.6246 729000 6863500 49 -663.1849 729500 6863500 50 -659.0172 730000 6863500 51 -655.74 730500 6863500 52 -653.6882 731000 6863500 53 -652.5718 731500 6863500 54 -652.0241 732000 6863500 55 -651.8484 732500 6863500 56 -651.9685 733000 6863500 57 -652.2772 733500 6863500 58 -652.5416 734000 6863500 59 -652.4091 734500 6863500 60 -651.5586 735000 6863500 61 -649.7108 735500 6863500 62 -646.8649 736000 6863500 63 -643.425 736500 6863500 64 -639.9672 737000 6863500 65 -637.06 737500 6863500 66 -635.361 738000 6863500 67 -635.0773 738500 6863500 68 -635.8248 739000 6863500 69 -637.2952 739500 6863500 70 -639.2421 740000 6863500 71 -641.4594 740500 6863500 72 -643.8115 741000 6863500 73 -646.269 741500 6863500 74 -648.6807 742000 6863500 75 -650.8017 742500 6863500 76 -652.4042 743000 6863500 77 -653.4127 743500 6863500 78 -653.8921 744000 6863500 79 -654.0172 744500 6863500 80 -653.9969 745000 6863500 81 -654.1074 745500 6863500 82 -654.6473 746000 6863500 83 -655.8284 746500 6863500 84 -657.6448 747000 6863500 85 -660.0121 705000 6864000 1 -729.8474 705500 6864000 2 -730.1301 706000 6864000 3 -730.6081 706500 6864000 4 -731.0544 707000 6864000 5 -731.2342 707500 6864000 6 -730.9036 708000 6864000 7 -729.78 708500 6864000 8 -727.8658 709000 6864000 9 -725.515 709500 6864000 10 -723.2252 710000 6864000 11 -721.5048 710500 6864000 12 -720.7812 711000 6864000 13 -721.0524 711500 6864000 14 -721.783 712000 6864000 15 -722.1835 712500 6864000 16 -721.7913 713000 6864000 17 -720.5401 713500 6864000 18 -718.6021 714000 6864000 19 -716.2643 714500 6864000 20 -713.8419 715000 6864000 21 -711.5778 715500 6864000 22 -709.5494 716000 6864000 23 -707.6698 716500 6864000 24 -705.8233 717000 6864000 25 -703.8771 717500 6864000 26 -701.6978 718000 6864000 27 -699.1996 718500 6864000 28 -696.437 719000 6864000 29 -693.6162 719500 6864000 30 -691.0159 720000 6864000 31 -688.9047 720500 6864000 32 -687.4959 721000 6864000 33 -686.7296 721500 6864000 34 -686.3472 722000 6864000 35 -686.1223 722500 6864000 36 -685.8995 723000 6864000 37 -685.5836 723500 6864000 38 -685.1595 724000 6864000 39 -684.6586 724500 6864000 40 -684.0973 725000 6864000 41 -683.4211 725500 6864000 42 -682.559 726000 6864000 43 -681.4984 726500 6864000 44 -680.1425 727000 6864000 45 -678.3448 727500 6864000 46 -675.8983 728000 6864000 47 -672.7161 728500 6864000 48 -669.0038 729000 6864000 49 -665.1428 729500 6864000 50 -661.525 730000 6864000 51 -658.5569 730500 6864000 52 -656.4324 731000 6864000 53 -655.0059 731500 6864000 54 -654.0801 732000 6864000 55 -653.5521 732500 6864000 56 -653.4083 733000 6864000 57 -653.5563 733500 6864000 58 -653.7308 734000 6864000 59 -653.5522 734500 6864000 60 -652.7068 735000 6864000 61 -650.9435 735500 6864000 62 -648.2884 736000 6864000 63 -645.1258 736500 6864000 64 -641.9711 737000 6864000 65 -639.261 737500 6864000 66 -637.3713 738000 6864000 67 -636.4318 738500 6864000 68 -636.367 739000 6864000 69 -637.0764 739500 6864000 70 -638.522 740000 6864000 71 -640.7131 740500 6864000 72 -643.5144 741000 6864000 73 -646.6425 741500 6864000 74 -649.7013 742000 6864000 75 -652.3169 742500 6864000 76 -654.1836 743000 6864000 77 -655.2731 743500 6864000 78 -655.7891 744000 6864000 79 -655.9913 744500 6864000 80 -656.097 745000 6864000 81 -656.3199 745500 6864000 82 -656.8932 746000 6864000 83 -658.0019 746500 6864000 84 -659.683 747000 6864000 85 -661.9051 705000 6864500 1 -732.6191 705500 6864500 2 -732.7758 706000 6864500 3 -733.0461 706500 6864500 4 -733.251 707000 6864500 5 -733.183 707500 6864500 6 -732.6193 708000 6864500 7 -731.2868 708500 6864500 8 -729.2026 709000 6864500 9 -726.7038 709500 6864500 10 -724.2817 710000 6864500 11 -722.4886 710500 6864500 12 -721.8414 711000 6864500 13 -722.3444 711500 6864500 14 -723.3368 712000 6864500 15 -723.8801 712500 6864500 16 -723.4725 713000 6864500 17 -722.117 713500 6864500 18 -720.0652 714000 6864500 19 -717.638 714500 6864500 20 -715.177 715000 6864500 21 -712.9421 715500 6864500 22 -711.011 716000 6864500 23 -709.2698 716500 6864500 24 -707.5967 717000 6864500 25 -705.8427 717500 6864500 26 -703.8416 718000 6864500 27 -701.4647 718500 6864500 28 -698.7477 719000 6864500 29 -695.8994 719500 6864500 30 -693.2142 720000 6864500 31 -690.9781 720500 6864500 32 -689.4306 721000 6864500 33 -688.5146 721500 6864500 34 -687.9641 722000 6864500 35 -687.5734 722500 6864500 36 -687.2515 723000 6864500 37 -686.9754 723500 6864500 38 -686.6929 724000 6864500 39 -686.3487 724500 6864500 40 -685.8746 725000 6864500 41 -685.1351 725500 6864500 42 -684.0074 726000 6864500 43 -682.5381 726500 6864500 44 -680.7872 727000 6864500 45 -678.7459 727500 6864500 46 -676.3133 728000 6864500 47 -673.4508 728500 6864500 48 -670.3007 729000 6864500 49 -667.1115 729500 6864500 50 -664.1214 730000 6864500 51 -661.5267 730500 6864500 52 -659.4092 731000 6864500 53 -657.7339 731500 6864500 54 -656.4395 732000 6864500 55 -655.5101 732500 6864500 56 -655.0043 733000 6864500 57 -654.8682 733500 6864500 58 -654.8361 734000 6864500 59 -654.533 734500 6864500 60 -653.6516 735000 6864500 61 -651.9435 735500 6864500 62 -649.4385 736000 6864500 63 -646.5126 736500 6864500 64 -643.6198 737000 6864500 65 -641.0958 737500 6864500 66 -639.0798 738000 6864500 67 -637.6363 738500 6864500 68 -636.8734 739000 6864500 69 -636.8665 739500 6864500 70 -637.7889 740000 6864500 71 -639.8961 740500 6864500 72 -643.072 741000 6864500 73 -646.7992 741500 6864500 74 -650.4479 742000 6864500 75 -653.5167 742500 6864500 76 -655.6121 743000 6864500 77 -656.7595 743500 6864500 78 -657.3173 744000 6864500 79 -657.6356 744500 6864500 80 -657.925 745000 6864500 81 -658.3157 745500 6864500 82 -658.9775 746000 6864500 83 -660.0721 746500 6864500 84 -661.6575 747000 6864500 85 -663.7313 705000 6865000 1 -735.1776 705500 6865000 2 -735.2134 706000 6865000 3 -735.2943 706500 6865000 4 -735.2802 707000 6865000 5 -734.9955 707500 6865000 6 -734.2459 708000 6865000 7 -732.7813 708500 6865000 8 -730.6171 709000 6865000 9 -728.0795 709500 6865000 10 -725.6465 710000 6865000 11 -723.866 710500 6865000 12 -723.2756 711000 6865000 13 -723.8947 711500 6865000 14 -724.9994 712000 6865000 15 -725.5955 712500 6865000 16 -725.1576 713000 6865000 17 -723.7209 713500 6865000 18 -721.5781 714000 6865000 19 -719.0692 714500 6865000 20 -716.5512 715000 6865000 21 -714.3048 715500 6865000 22 -712.4372 716000 6865000 23 -710.819 716500 6865000 24 -709.316 717000 6865000 25 -707.759 717500 6865000 26 -705.9572 718000 6865000 27 -703.7495 718500 6865000 28 -701.1536 719000 6865000 29 -698.3737 719500 6865000 30 -695.7069 720000 6865000 31 -693.4236 720500 6865000 32 -691.7581 721000 6865000 33 -690.673 721500 6865000 34 -689.923 722000 6865000 35 -689.3309 722500 6865000 36 -688.8441 723000 6865000 37 -688.4775 723500 6865000 38 -688.1561 724000 6865000 39 -687.7656 724500 6865000 40 -687.1865 725000 6865000 41 -686.2595 725500 6865000 42 -684.8488 726000 6865000 43 -683.0327 726500 6865000 44 -680.9711 727000 6865000 45 -678.7661 727500 6865000 46 -676.4163 728000 6865000 47 -673.9252 728500 6865000 48 -671.3716 729000 6865000 49 -668.8709 729500 6865000 50 -666.5116 730000 6865000 51 -664.3306 730500 6865000 52 -662.3179 731000 6865000 53 -660.5024 731500 6865000 54 -658.9261 732000 6865000 55 -657.6382 732500 6865000 56 -656.73 733000 6865000 57 -656.1952 733500 6865000 58 -655.8167 734000 6865000 59 -655.2681 734500 6865000 60 -654.2584 735000 6865000 61 -652.5296 735500 6865000 62 -650.0981 736000 6865000 63 -647.3307 736500 6865000 64 -644.6329 737000 6865000 65 -642.2575 737500 6865000 66 -640.2634 738000 6865000 67 -638.6219 738500 6865000 68 -637.4959 739000 6865000 69 -637.0515 739500 6865000 70 -637.5972 740000 6865000 71 -639.5684 740500 6865000 72 -642.8926 741000 6865000 73 -646.9041 741500 6865000 74 -650.8328 742000 6865000 75 -654.1202 742500 6865000 76 -656.3246 743000 6865000 77 -657.5099 743500 6865000 78 -658.1455 744000 6865000 79 -658.6378 744500 6865000 80 -659.1755 745000 6865000 81 -659.8027 745500 6865000 82 -660.631 746000 6865000 83 -661.801 746500 6865000 84 -663.3702 747000 6865000 85 -665.3403 705000 6865500 1 -737.5212 705500 6865500 2 -737.4342 706000 6865500 3 -737.3406 706500 6865500 4 -737.1304 707000 6865500 5 -736.6577 707500 6865500 6 -735.7617 708000 6865500 7 -734.2411 708500 6865500 8 -732.1215 709000 6865500 9 -729.7133 709500 6865500 10 -727.4553 710000 6865500 11 -725.8336 710500 6865500 12 -725.2853 711000 6865500 13 -725.8374 711500 6865500 14 -726.8196 712000 6865500 15 -727.3221 712500 6865500 16 -726.8367 713000 6865500 17 -725.3646 713500 6865500 18 -723.1775 714000 6865500 19 -720.6107 714500 6865500 20 -718.0179 715000 6865500 21 -715.7023 715500 6865500 22 -713.8436 716000 6865500 23 -712.317 716500 6865500 24 -710.9681 717000 6865500 25 -709.6026 717500 6865500 26 -708.0109 718000 6865500 27 -706.018 718500 6865500 28 -703.625 719000 6865500 29 -701.024 719500 6865500 30 -698.4926 720000 6865500 31 -696.2621 720500 6865500 32 -694.5158 721000 6865500 33 -693.2444 721500 6865500 34 -692.2606 722000 6865500 35 -691.4262 722500 6865500 36 -690.7111 723000 6865500 37 -690.1309 723500 6865500 38 -689.6003 724000 6865500 39 -688.9754 724500 6865500 40 -688.1151 725000 6865500 41 -686.8765 725500 6865500 42 -685.1548 726000 6865500 43 -683.0378 726500 6865500 44 -680.7296 727000 6865500 45 -678.4142 727500 6865500 46 -676.1861 728000 6865500 47 -674.0938 728500 6865500 48 -672.1508 729000 6865500 49 -670.3408 729500 6865500 50 -668.6127 730000 6865500 51 -666.8656 730500 6865500 52 -665.0262 731000 6865500 53 -663.1589 731500 6865500 54 -661.3732 732000 6865500 55 -659.7682 732500 6865500 56 -658.4385 733000 6865500 57 -657.4059 733500 6865500 58 -656.5244 734000 6865500 59 -655.5597 734500 6865500 60 -654.2745 735000 6865500 61 -652.444 735500 6865500 62 -650.0639 736000 6865500 63 -647.4559 736500 6865500 64 -644.9688 737000 6865500 65 -642.7947 737500 6865500 66 -641.0004 738000 6865500 67 -639.5251 738500 6865500 68 -638.4841 739000 6865500 69 -638.037 739500 6865500 70 -638.4773 740000 6865500 71 -640.2437 740500 6865500 72 -643.3198 741000 6865500 73 -647.0573 741500 6865500 74 -650.7243 742000 6865500 75 -653.8254 742500 6865500 76 -655.9604 743000 6865500 77 -657.1927 743500 6865500 78 -657.9939 744000 6865500 79 -658.7497 744500 6865500 80 -659.612 745000 6865500 81 -660.5613 745500 6865500 82 -661.6575 746000 6865500 83 -663.0171 746500 6865500 84 -664.6807 747000 6865500 85 -666.6281 705000 6866000 1 -739.6504 705500 6866000 2 -739.4402 706000 6866000 3 -739.1899 706500 6866000 4 -738.811 707000 6866000 5 -738.1846 707500 6866000 6 -737.1826 708000 6866000 7 -735.66 708500 6866000 8 -733.6697 709000 6866000 9 -731.5015 709500 6866000 10 -729.5422 710000 6866000 11 -728.1897 710500 6866000 12 -727.7214 711000 6866000 13 -728.1157 711500 6866000 14 -728.8372 712000 6866000 15 -729.1428 712500 6866000 16 -728.5867 713000 6866000 17 -727.1031 713500 6866000 18 -724.8908 714000 6866000 19 -722.2621 714500 6866000 20 -719.5661 715000 6866000 21 -717.1272 715500 6866000 22 -715.2258 716000 6866000 23 -713.7672 716500 6866000 24 -712.562 717000 6866000 25 -711.3845 717500 6866000 26 -710.0089 718000 6866000 27 -708.2551 718500 6866000 28 -706.1175 719000 6866000 29 -703.771 719500 6866000 30 -701.4597 720000 6866000 31 -699.3611 720500 6866000 32 -697.5897 721000 6866000 33 -696.1456 721500 6866000 34 -694.9163 722000 6866000 35 -693.8103 722500 6866000 36 -692.8127 723000 6866000 37 -691.933 723500 6866000 38 -691.0756 724000 6866000 39 -690.0877 724500 6866000 40 -688.8304 725000 6866000 41 -687.1922 725500 6866000 42 -685.1175 726000 6866000 43 -682.7016 726500 6866000 44 -680.1652 727000 6866000 45 -677.7503 727500 6866000 46 -675.6482 728000 6866000 47 -673.9568 728500 6866000 48 -672.6234 729000 6866000 49 -671.5008 729500 6866000 50 -670.4087 730000 6866000 51 -669.1102 730500 6866000 52 -667.4728 731000 6866000 53 -665.5934 731500 6866000 54 -663.6353 732000 6866000 55 -661.7293 732500 6866000 56 -659.964 733000 6866000 57 -658.3696 733500 6866000 58 -656.8671 734000 6866000 59 -655.3212 734500 6866000 60 -653.5941 735000 6866000 61 -651.5746 735500 6866000 62 -649.2681 736000 6866000 63 -646.8954 736500 6866000 64 -644.7114 737000 6866000 65 -642.8697 737500 6866000 66 -641.4719 738000 6866000 67 -640.4749 738500 6866000 68 -639.9233 739000 6866000 69 -639.8943 739500 6866000 70 -640.5303 740000 6866000 71 -642.0357 740500 6866000 72 -644.4282 741000 6866000 73 -647.2793 741500 6866000 74 -650.0991 742000 6866000 75 -652.5623 742500 6866000 76 -654.4217 743000 6866000 77 -655.7138 743500 6866000 78 -656.7788 744000 6866000 79 -657.8908 744500 6866000 80 -659.1422 745000 6866000 81 -660.4846 745500 6866000 82 -661.9404 746000 6866000 83 -663.599 746500 6866000 84 -665.4694 747000 6866000 85 -667.4834 705000 6866500 1 -741.565 705500 6866500 2 -741.2386 706000 6866500 3 -740.8523 706500 6866500 4 -740.3333 707000 6866500 5 -739.5844 707500 6866500 6 -738.5104 708000 6866500 7 -737.0164 708500 6866500 8 -735.1872 709000 6866500 9 -733.2953 709500 6866500 10 -731.6705 710000 6866500 11 -730.6102 710500 6866500 12 -730.2546 711000 6866500 13 -730.5181 711500 6866500 14 -730.9978 712000 6866500 15 -731.1199 712500 6866500 16 -730.4998 713000 6866500 17 -729.004 713500 6866500 18 -726.7506 714000 6866500 19 -724.0264 714500 6866500 20 -721.1828 715000 6866500 21 -718.5751 715500 6866500 22 -716.5938 716000 6866500 23 -715.188 716500 6866500 24 -714.113 717000 6866500 25 -713.1082 717500 6866500 26 -711.9384 718000 6866500 27 -710.4258 718500 6866500 28 -708.5629 719000 6866500 29 -706.508 719500 6866500 30 -704.4655 720000 6866500 31 -702.5516 720500 6866500 32 -700.8134 721000 6866500 33 -699.2467 721500 6866500 34 -697.8004 722000 6866500 35 -696.4236 722500 6866500 36 -695.1156 723000 6866500 37 -693.8878 723500 6866500 38 -692.6382 724000 6866500 39 -691.2139 724500 6866500 40 -689.4932 725000 6866500 41 -687.4031 725500 6866500 42 -684.936 726000 6866500 43 -682.198 726500 6866500 44 -679.421 727000 6866500 45 -676.8864 727500 6866500 46 -674.8853 728000 6866500 47 -673.5667 728500 6866500 48 -672.8103 729000 6866500 49 -672.3426 729500 6866500 50 -671.8643 730000 6866500 51 -671.0065 730500 6866500 52 -669.5716 731000 6866500 53 -667.6939 731500 6866500 54 -665.5873 732000 6866500 55 -663.403 732500 6866500 56 -661.2142 733000 6866500 57 -659.0467 733500 6866500 58 -656.8795 734000 6866500 59 -654.6797 734500 6866500 60 -652.4303 735000 6866500 61 -650.1614 735500 6866500 62 -647.9282 736000 6866500 63 -645.8409 736500 6866500 64 -644.0342 737000 6866500 65 -642.6224 737500 6866500 66 -641.7645 738000 6866500 67 -641.4314 738500 6866500 68 -641.5956 739000 6866500 69 -642.209 739500 6866500 70 -643.1906 740000 6866500 71 -644.4243 740500 6866500 72 -645.8731 741000 6866500 73 -647.4478 741500 6866500 74 -649.0338 742000 6866500 75 -650.549 742500 6866500 76 -651.9521 743000 6866500 77 -653.2725 743500 6866500 78 -654.6396 744000 6866500 79 -656.1489 744500 6866500 80 -657.8152 745000 6866500 81 -659.5729 745500 6866500 82 -661.4338 746000 6866500 83 -663.4609 746500 6866500 84 -665.6243 747000 6866500 85 -667.7808 705000 6867000 1 -743.27 705500 6867000 2 -742.8435 706000 6867000 3 -742.3435 706500 6867000 4 -741.7078 707000 6867000 5 -740.8545 707500 6867000 6 -739.7168 708000 6867000 7 -738.2505 708500 6867000 8 -736.5714 709000 6867000 9 -734.939 709500 6867000 10 -733.6323 710000 6867000 11 -732.8619 710500 6867000 12 -732.6511 711000 6867000 13 -732.8603 711500 6867000 14 -733.1908 712000 6867000 15 -733.2065 712500 6867000 16 -732.5649 713000 6867000 17 -731.0715 713500 6867000 18 -728.7733 714000 6867000 19 -725.9368 714500 6867000 20 -722.9217 715000 6867000 21 -720.1178 715500 6867000 22 -718.0287 716000 6867000 23 -716.6469 716500 6867000 24 -715.6592 717000 6867000 25 -714.7747 717500 6867000 26 -713.7647 718000 6867000 27 -712.467 718500 6867000 28 -710.8723 719000 6867000 29 -709.1193 719500 6867000 30 -707.3682 720000 6867000 31 -705.6784 720500 6867000 32 -704.0368 721000 6867000 33 -702.4286 721500 6867000 34 -700.8368 722000 6867000 35 -699.2365 722500 6867000 36 -697.6313 723000 6867000 37 -696.0385 723500 6867000 38 -694.3594 724000 6867000 39 -692.4525 724500 6867000 40 -690.2267 725000 6867000 41 -687.653 725500 6867000 42 -684.7668 726000 6867000 43 -681.6905 726500 6867000 44 -678.6661 727000 6867000 45 -675.9991 727500 6867000 46 -674.0592 728000 6867000 47 -673.0421 728500 6867000 48 -672.7653 729000 6867000 49 -672.8461 729500 6867000 50 -672.8888 730000 6867000 51 -672.4194 730500 6867000 52 -671.1766 731000 6867000 53 -669.3245 731500 6867000 54 -667.1154 732000 6867000 55 -664.7068 732500 6867000 56 -662.1507 733000 6867000 57 -659.4589 733500 6867000 58 -656.6656 734000 6867000 59 -653.8413 734500 6867000 60 -651.0918 735000 6867000 61 -648.5748 735500 6867000 62 -646.4014 736000 6867000 63 -644.5888 736500 6867000 64 -643.1639 737000 6867000 65 -642.205 737500 6867000 66 -641.9119 738000 6867000 67 -642.2599 738500 6867000 68 -643.15 739000 6867000 69 -644.392 739500 6867000 70 -645.684 740000 6867000 71 -646.6224 740500 6867000 72 -647.1049 741000 6867000 73 -647.3414 741500 6867000 74 -647.5958 742000 6867000 75 -648.0603 742500 6867000 76 -648.922 743000 6867000 77 -650.2123 743500 6867000 78 -651.8403 744000 6867000 79 -653.7046 744500 6867000 80 -655.739 745000 6867000 81 -657.8735 745500 6867000 82 -660.1199 746000 6867000 83 -662.5239 746500 6867000 84 -665.0148 747000 6867000 85 -667.3595 705000 6867500 1 -744.7861 705500 6867500 2 -744.2829 706000 6867500 3 -743.6928 706500 6867500 4 -742.9589 707000 6867500 5 -742.0073 707500 6867500 6 -740.7913 708000 6867500 7 -739.3182 708500 6867500 8 -737.7399 709000 6867500 9 -736.3082 709500 6867500 10 -735.2642 710000 6867500 11 -734.7586 710500 6867500 12 -734.7285 711000 6867500 13 -734.9835 711500 6867500 14 -735.2863 712000 6867500 15 -735.2922 712500 6867500 16 -734.6876 713000 6867500 17 -733.238 713500 6867500 18 -730.9395 714000 6867500 19 -728.0416 714500 6867500 20 -724.9118 715000 6867500 21 -721.9515 715500 6867500 22 -719.7255 716000 6867500 23 -718.2877 716500 6867500 24 -717.2898 717000 6867500 25 -716.4274 717500 6867500 26 -715.4896 718000 6867500 27 -714.3444 718500 6867500 28 -712.9795 719000 6867500 29 -711.5061 719500 6867500 30 -710.0394 720000 6867500 31 -708.597 720500 6867500 32 -707.1231 721000 6867500 33 -705.5858 721500 6867500 34 -703.97 722000 6867500 35 -702.2515 722500 6867500 36 -700.4101 723000 6867500 37 -698.4536 723500 6867500 38 -696.3097 724000 6867500 39 -693.8745 724500 6867500 40 -691.1069 725000 6867500 41 -688.0289 725500 6867500 42 -684.7168 726000 6867500 43 -681.3132 726500 6867500 44 -678.0721 727000 6867500 45 -675.302 727500 6867500 46 -673.3823 728000 6867500 47 -672.5453 728500 6867500 48 -672.5638 729000 6867500 49 -672.9861 729500 6867500 50 -673.3611 730000 6867500 51 -673.1755 730500 6867500 52 -672.1196 731000 6867500 53 -670.3521 731500 6867500 54 -668.1276 732000 6867500 55 -665.5901 732500 6867500 56 -662.7642 733000 6867500 57 -659.6506 733500 6867500 58 -656.3383 734000 6867500 59 -653.0042 734500 6867500 60 -649.855 735000 6867500 61 -647.1283 735500 6867500 62 -644.9843 736000 6867500 63 -643.3883 736500 6867500 64 -642.2932 737000 6867500 65 -641.7388 737500 6867500 66 -641.9285 738000 6867500 67 -642.8234 738500 6867500 68 -644.2503 739000 6867500 69 -645.8969 739500 6867500 70 -647.3355 740000 6867500 71 -648.0116 740500 6867500 72 -647.7128 741000 6867500 73 -646.8304 741500 6867500 74 -645.9169 742000 6867500 75 -645.4164 742500 6867500 76 -645.7366 743000 6867500 77 -646.929 743500 6867500 78 -648.7084 744000 6867500 79 -650.7973 744500 6867500 80 -653.0656 745000 6867500 81 -655.4622 745500 6867500 82 -657.9978 746000 6867500 83 -660.6998 746500 6867500 84 -663.4616 747000 6867500 85 -665.9809 705000 6868000 1 -746.1437 705500 6868000 2 -745.5916 706000 6868000 3 -744.9362 706500 6868000 4 -744.1214 707000 6868000 5 -743.0731 707500 6868000 6 -741.7537 708000 6868000 7 -740.2125 708500 6868000 8 -738.6474 709000 6868000 9 -737.3142 709500 6868000 10 -736.4415 710000 6868000 11 -736.1534 710500 6868000 12 -736.3406 711000 6868000 13 -736.7551 711500 6868000 14 -737.1622 712000 6868000 15 -737.2551 712500 6868000 16 -736.7491 713000 6868000 17 -735.4113 713500 6868000 18 -733.2118 714000 6868000 19 -730.3822 714500 6868000 20 -727.2826 715000 6868000 21 -724.2855 715500 6868000 22 -721.9147 716000 6868000 23 -720.284 716500 6868000 24 -719.1082 717000 6868000 25 -718.1212 717500 6868000 26 -717.1425 718000 6868000 27 -716.054 718500 6868000 28 -714.8402 719000 6868000 29 -713.5837 719500 6868000 30 -712.3615 720000 6868000 31 -711.1713 720500 6868000 32 -709.9426 721000 6868000 33 -708.6161 721500 6868000 34 -707.1443 722000 6868000 35 -705.4636 722500 6868000 36 -703.4918 723000 6868000 37 -701.1832 723500 6868000 38 -698.5299 724000 6868000 39 -695.5107 724500 6868000 40 -692.1627 725000 6868000 41 -688.5659 725500 6868000 42 -684.8372 726000 6868000 43 -681.1393 726500 6868000 44 -677.7393 727000 6868000 45 -674.9142 727500 6868000 46 -672.9961 728000 6868000 47 -672.1929 728500 6868000 48 -672.272 729000 6868000 49 -672.7728 729500 6868000 50 -673.2369 730000 6868000 51 -673.1794 730500 6868000 52 -672.2956 731000 6868000 53 -670.6844 731500 6868000 54 -668.5517 732000 6868000 55 -666.0043 732500 6868000 56 -663.0326 733000 6868000 57 -659.6311 733500 6868000 58 -655.9413 734000 6868000 59 -652.2498 734500 6868000 60 -648.8354 735000 6868000 61 -645.974 735500 6868000 62 -643.8376 736000 6868000 63 -642.3809 736500 6868000 64 -641.5165 737000 6868000 65 -641.2592 737500 6868000 66 -641.7889 738000 6868000 67 -643.0374 738500 6868000 68 -644.7718 739000 6868000 69 -646.5942 739500 6868000 70 -647.9852 740000 6868000 71 -648.3993 740500 6868000 72 -647.6099 741000 6868000 73 -646.0201 741500 6868000 74 -644.3175 742000 6868000 75 -643.1124 742500 6868000 76 -642.9584 743000 6868000 77 -643.9417 743500 6868000 78 -645.6647 744000 6868000 79 -647.7448 744500 6868000 80 -650.0125 745000 6868000 81 -652.4603 745500 6868000 82 -655.0817 746000 6868000 83 -657.8663 746500 6868000 84 -660.6898 747000 6868000 85 -663.2643 705000 6868500 1 -747.3911 705500 6868500 2 -746.8135 706000 6868500 3 -746.1145 706500 6868500 4 -745.2339 707000 6868500 5 -744.0908 707500 6868500 6 -742.645 708000 6868500 7 -740.9765 708500 6868500 8 -739.3331 709000 6868500 9 -737.9902 709500 6868500 10 -737.1976 710000 6868500 11 -737.0878 710500 6868500 12 -737.5303 711000 6868500 13 -738.2075 711500 6868500 14 -738.8344 712000 6868500 15 -739.1003 712500 6868500 16 -738.746 713000 6868500 17 -737.5691 713500 6868500 18 -735.5443 714000 6868500 19 -732.8806 714500 6868500 20 -729.9072 715000 6868500 21 -726.9722 715500 6868500 22 -724.4586 716000 6868500 23 -722.5272 716500 6868500 24 -721.0358 717000 6868500 25 -719.8027 717500 6868500 26 -718.6868 718000 6868500 27 -717.5762 718500 6868500 28 -716.4425 719000 6868500 29 -715.3437 719500 6868500 30 -714.3297 720000 6868500 31 -713.3879 720500 6868500 32 -712.4598 721000 6868500 33 -711.4547 721500 6868500 34 -710.2631 722000 6868500 35 -708.7435 722500 6868500 36 -706.7374 723000 6868500 37 -704.1027 723500 6868500 38 -700.9166 724000 6868500 39 -697.282 724500 6868500 40 -693.3348 725000 6868500 41 -689.2187 725500 6868500 42 -685.089 726000 6868500 43 -681.1232 726500 6868500 44 -677.5962 727000 6868500 45 -674.7307 727500 6868500 46 -672.7953 728000 6868500 47 -671.934 728500 6868500 48 -671.9173 729000 6868500 49 -672.3179 729500 6868500 50 -672.7043 730000 6868500 51 -672.6453 730500 6868500 52 -671.8771 731000 6868500 53 -670.4328 731500 6868500 54 -668.4398 732000 6868500 55 -665.9579 732500 6868500 56 -662.9406 733000 6868500 57 -659.376 733500 6868500 58 -655.4482 734000 6868500 59 -651.5345 734500 6868500 60 -647.9631 735000 6868500 61 -645.0394 735500 6868500 62 -642.9334 736000 6868500 63 -641.5768 736500 6868500 64 -640.8517 737000 6868500 65 -640.7526 737500 6868500 66 -641.4665 738000 6868500 67 -642.905 738500 6868500 68 -644.7931 739000 6868500 69 -646.6826 739500 6868500 70 -648.0187 740000 6868500 71 -648.234 740500 6868500 72 -647.1522 741000 6868500 73 -645.2034 741500 6868500 74 -643.1298 742000 6868500 75 -641.5521 742500 6868500 76 -641.0192 743000 6868500 77 -641.6585 743500 6868500 78 -643.0784 744000 6868500 79 -644.8847 744500 6868500 80 -646.9091 745000 6868500 81 -649.1663 745500 6868500 82 -651.6266 746000 6868500 83 -654.2134 746500 6868500 84 -656.8068 747000 6868500 85 -659.2375 705000 6869000 1 -748.5695 705500 6869000 2 -747.976 706000 6869000 3 -747.245 706500 6869000 4 -746.3065 707000 6869000 5 -745.0706 707500 6869000 6 -743.4883 708000 6869000 7 -741.6584 708500 6869000 8 -739.8736 709000 6869000 9 -738.4399 709500 6869000 10 -737.6631 710000 6869000 11 -737.7232 710500 6869000 12 -738.4654 711000 6869000 13 -739.4814 711500 6869000 14 -740.4068 712000 6869000 15 -740.9081 712500 6869000 16 -740.7484 713000 6869000 17 -739.7539 713500 6869000 18 -737.9146 714000 6869000 19 -735.424 714500 6869000 20 -732.5814 715000 6869000 21 -729.6874 715500 6869000 22 -727.0231 716000 6869000 23 -724.7477 716500 6869000 24 -722.8752 717000 6869000 25 -721.3306 717500 6869000 26 -720.0213 718000 6869000 27 -718.8414 718500 6869000 28 -717.7496 719000 6869000 29 -716.789 719500 6869000 30 -715.9774 720000 6869000 31 -715.2968 720500 6869000 32 -714.7034 721000 6869000 33 -714.0759 721500 6869000 34 -713.2247 722000 6869000 35 -711.9163 722500 6869000 36 -709.9075 723000 6869000 37 -706.9794 723500 6869000 38 -703.2805 724000 6869000 39 -699.0474 724500 6869000 40 -694.5193 725000 6869000 41 -689.9049 725500 6869000 42 -685.3965 726000 6869000 43 -681.1829 726500 6869000 44 -677.5347 727000 6869000 45 -674.6178 727500 6869000 46 -672.6333 728000 6869000 47 -671.6725 728500 6869000 48 -671.5032 729000 6869000 49 -671.7305 729500 6869000 50 -671.9601 730000 6869000 51 -671.8185 730500 6869000 52 -671.0838 731000 6869000 53 -669.7419 731500 6869000 54 -667.8506 732000 6869000 55 -665.4342 732500 6869000 56 -662.4285 733000 6869000 57 -658.8151 733500 6869000 58 -654.805 734000 6869000 59 -650.8121 734500 6869000 60 -647.1937 735000 6869000 61 -644.2858 735500 6869000 62 -642.2584 736000 6869000 63 -640.9987 736500 6869000 64 -640.3433 737000 6869000 65 -640.2739 737500 6869000 66 -641.0144 738000 6869000 67 -642.4924 738500 6869000 68 -644.4027 739000 6869000 69 -646.2803 739500 6869000 70 -647.5598 740000 6869000 71 -647.6542 740500 6869000 72 -646.4218 741000 6869000 73 -644.3536 741500 6869000 74 -642.2151 742000 6869000 75 -640.5723 742500 6869000 76 -639.8351 743000 6869000 77 -640.0993 743500 6869000 78 -641.0745 744000 6869000 79 -642.435 744500 6869000 80 -644.0391 745000 6869000 81 -645.9333 745500 6869000 82 -648.0468 746000 6869000 83 -650.2281 746500 6869000 84 -652.38 747000 6869000 85 -654.4946 705000 6869500 1 -749.7357 705500 6869500 2 -749.1127 706000 6869500 3 -748.3368 706500 6869500 4 -747.3267 707000 6869500 5 -745.9949 707500 6869500 6 -744.2883 708000 6869500 7 -742.312 708500 6869500 8 -740.3817 709000 6869500 9 -738.8322 709500 6869500 10 -738.0464 710000 6869500 11 -738.2841 710500 6869500 12 -739.3561 711000 6869500 13 -740.7433 711500 6869500 14 -741.9947 712000 6869500 15 -742.7534 712500 6869500 16 -742.7999 713000 6869500 17 -741.9756 713500 6869500 18 -740.2791 714000 6869500 19 -737.8982 714500 6869500 20 -735.1119 715000 6869500 21 -732.1901 715500 6869500 22 -729.3351 716000 6869500 23 -726.71 716500 6869500 24 -724.4381 717000 6869500 25 -722.5509 717500 6869500 26 -721.0172 718000 6869500 27 -719.7599 718500 6869500 28 -718.7284 719000 6869500 29 -717.9361 719500 6869500 30 -717.3557 720000 6869500 31 -716.9592 720500 6869500 32 -716.7175 721000 6869500 33 -716.4697 721500 6869500 34 -715.9406 722000 6869500 35 -714.8157 722500 6869500 36 -712.7854 723000 6869500 37 -709.5898 723500 6869500 38 -705.4354 724000 6869500 39 -700.6645 724500 6869500 40 -695.6068 725000 6869500 41 -690.5359 725500 6869500 42 -685.6832 726000 6869500 43 -681.2468 726500 6869500 44 -677.4857 727000 6869500 45 -674.5087 727500 6869500 46 -672.4608 728000 6869500 47 -671.3916 728500 6869500 48 -671.0704 729000 6869500 49 -671.1127 729500 6869500 50 -671.1551 730000 6869500 51 -670.8723 730500 6869500 52 -670.0773 731000 6869500 53 -668.7264 731500 6869500 54 -666.8356 732000 6869500 55 -664.4195 732500 6869500 56 -661.442 733000 6869500 57 -657.897 733500 6869500 58 -653.9891 734000 6869500 59 -650.1019 734500 6869500 60 -646.5879 735000 6869500 61 -643.799 735500 6869500 62 -641.9085 736000 6869500 63 -640.7503 736500 6869500 64 -640.1128 737000 6869500 65 -639.9677 737500 6869500 66 -640.5792 738000 6869500 67 -641.9133 738500 6869500 68 -643.6511 739000 6869500 69 -645.342 739500 6869500 70 -646.4662 740000 6869500 71 -646.454 740500 6869500 72 -645.2004 741000 6869500 73 -643.2357 741500 6869500 74 -641.2816 742000 6869500 75 -639.7919 742500 6869500 76 -639.0374 743000 6869500 77 -639.0583 743500 6869500 78 -639.6468 744000 6869500 79 -640.5645 744500 6869500 80 -641.7095 745000 6869500 81 -643.1583 745500 6869500 82 -644.819 746000 6869500 83 -646.4943 746500 6869500 84 -648.1229 747000 6869500 85 -649.8501 705000 6870000 1 -750.9945 705500 6870000 2 -750.2965 706000 6870000 3 -749.4245 706500 6870000 4 -748.298 707000 6870000 5 -746.856 707500 6870000 6 -745.0648 708000 6870000 7 -743.0251 708500 6870000 8 -741.0379 709000 6870000 9 -739.4437 709500 6870000 10 -738.6841 710000 6870000 11 -739.0991 710500 6870000 12 -740.4645 711000 6870000 13 -742.1688 711500 6870000 14 -743.6967 712000 6870000 15 -744.678 712500 6870000 16 -744.9021 713000 6870000 17 -744.2037 713500 6870000 18 -742.575 714000 6870000 19 -740.2057 714500 6870000 20 -737.3721 715000 6870000 21 -734.3273 715500 6870000 22 -731.2455 716000 6870000 23 -728.2827 716500 6870000 24 -725.6191 717000 6870000 25 -723.3759 717500 6870000 26 -721.5983 718000 6870000 27 -720.2795 718500 6870000 28 -719.3724 719000 6870000 29 -718.8377 719500 6870000 30 -718.5724 720000 6870000 31 -718.511 720500 6870000 32 -718.6184 721000 6870000 33 -718.6995 721500 6870000 34 -718.408 722000 6870000 35 -717.3859 722500 6870000 36 -715.2645 723000 6870000 37 -711.8195 723500 6870000 38 -707.2749 724000 6870000 39 -702.0381 724500 6870000 40 -696.5125 725000 6870000 41 -691.0372 725500 6870000 42 -685.887 726000 6870000 43 -681.2697 726500 6870000 44 -677.4241 727000 6870000 45 -674.4028 727500 6870000 46 -672.301 728000 6870000 47 -671.1432 728500 6870000 48 -670.6955 729000 6870000 49 -670.5698 729500 6870000 50 -670.422 730000 6870000 51 -669.9548 730500 6870000 52 -669.0043 731000 6870000 53 -667.5189 731500 6870000 54 -665.5046 732000 6870000 55 -662.9973 732500 6870000 56 -660.033 733000 6870000 57 -656.6576 733500 6870000 58 -653.0452 734000 6870000 59 -649.4879 734500 6870000 60 -646.2832 735000 6870000 61 -643.7416 735500 6870000 62 -642.0303 736000 6870000 63 -640.9612 736500 6870000 64 -640.306 737000 6870000 65 -640.0246 737500 6870000 66 -640.364 738000 6870000 67 -641.3194 738500 6870000 68 -642.5784 739000 6870000 69 -643.7433 739500 6870000 70 -644.4412 740000 6870000 71 -644.2726 740500 6870000 72 -643.1702 741000 6870000 73 -641.5922 741500 6870000 74 -640.0878 742000 6870000 75 -638.9683 742500 6870000 76 -638.3911 743000 6870000 77 -638.3649 743500 6870000 78 -638.7527 744000 6870000 79 -639.3925 744500 6870000 80 -640.1963 745000 6870000 81 -641.2292 745500 6870000 82 -642.4169 746000 6870000 83 -643.5736 746500 6870000 84 -644.6952 747000 6870000 85 -646.0243 705000 6870500 1 -752.4981 705500 6870500 2 -751.6418 706000 6870500 3 -750.5826 706500 6870500 4 -749.2704 707000 6870500 5 -747.6968 707500 6870500 6 -745.8792 708000 6870500 7 -743.9199 708500 6870500 8 -742.0648 709000 6870500 9 -740.6168 709500 6870500 10 -739.9882 710000 6870500 11 -740.5422 710500 6870500 12 -742.053 711000 6870500 13 -743.8992 711500 6870500 14 -745.5598 712000 6870500 15 -746.6683 712500 6870500 16 -747.006 713000 6870500 17 -746.3737 713500 6870500 18 -744.736 714000 6870500 19 -742.2883 714500 6870500 20 -739.3222 715000 6870500 21 -736.0904 715500 6870500 22 -732.7559 716000 6870500 23 -729.47 716500 6870500 24 -726.4277 717000 6870500 25 -723.8198 717500 6870500 26 -721.7851 718000 6870500 27 -720.4266 718500 6870500 28 -719.7258 719000 6870500 29 -719.5706 719500 6870500 30 -719.7448 720000 6870500 31 -720.0985 720500 6870500 32 -720.5447 721000 6870500 33 -720.8668 721500 6870500 34 -720.7001 722000 6870500 35 -719.6916 722500 6870500 36 -717.4324 723000 6870500 37 -713.7157 723500 6870500 38 -708.8049 724000 6870500 39 -703.1433 724500 6870500 40 -697.1941 725000 6870500 41 -691.361 725500 6870500 42 -685.9697 726000 6870500 43 -681.2349 726500 6870500 44 -677.3638 727000 6870500 45 -674.3461 727500 6870500 46 -672.2285 728000 6870500 47 -671.0107 728500 6870500 48 -670.4613 729000 6870500 49 -670.1913 729500 6870500 50 -669.8628 730000 6870500 51 -669.1819 730500 6870500 52 -667.992 731000 6870500 53 -666.254 731500 6870500 54 -663.9984 732000 6870500 55 -661.314 732500 6870500 56 -658.3322 733000 6870500 57 -655.184 733500 6870500 58 -652.0151 734000 6870500 59 -648.9984 734500 6870500 60 -646.3187 735000 6870500 61 -644.1606 735500 6870500 62 -642.6401 736000 6870500 63 -641.6195 736500 6870500 64 -640.9203 737000 6870500 65 -640.4969 737500 6870500 66 -640.4813 738000 6870500 67 -640.8433 738500 6870500 68 -641.303 739000 6870500 69 -641.5651 739500 6870500 70 -641.4752 740000 6870500 71 -641.0391 740500 6870500 72 -640.2745 741000 6870500 73 -639.3798 741500 6870500 74 -638.5701 742000 6870500 75 -638.0009 742500 6870500 76 -637.7737 743000 6870500 77 -637.9033 743500 6870500 78 -638.3126 744000 6870500 79 -638.8893 744500 6870500 80 -639.5503 745000 6870500 81 -640.2797 745500 6870500 82 -641.0398 746000 6870500 83 -641.7237 746500 6870500 84 -642.4052 747000 6870500 85 -643.3632 705000 6871000 1 -754.3669 705500 6871000 2 -753.2387 706000 6871000 3 -751.8713 706500 6871000 4 -750.29 707000 6871000 5 -748.5646 707500 6871000 6 -746.7793 708000 6871000 7 -745.0576 708500 6871000 8 -743.5682 709000 6871000 9 -742.519 709500 6871000 10 -742.1757 710000 6871000 11 -742.7988 710500 6871000 12 -744.2199 711000 6871000 13 -745.9435 711500 6871000 14 -747.5311 712000 6871000 15 -748.6387 712500 6871000 16 -749.0153 713000 6871000 17 -748.3953 713500 6871000 18 -746.6944 714000 6871000 19 -744.114 714500 6871000 20 -740.9748 715000 6871000 21 -737.5428 715500 6871000 22 -733.9636 716000 6871000 23 -730.3738 716500 6871000 24 -726.9613 717000 6871000 25 -723.9728 717500 6871000 26 -721.6603 718000 6871000 27 -720.2718 718500 6871000 28 -719.8376 719000 6871000 29 -720.1609 719500 6871000 30 -720.8818 720000 6871000 31 -721.729 720500 6871000 32 -722.4976 721000 6871000 33 -722.9586 721500 6871000 34 -722.8057 722000 6871000 35 -721.7369 722500 6871000 36 -719.3446 723000 6871000 37 -715.3544 723500 6871000 38 -710.0715 724000 6871000 39 -703.9875 724500 6871000 40 -697.6323 725000 6871000 41 -691.4811 725500 6871000 42 -685.9148 726000 6871000 43 -681.1443 726500 6871000 44 -677.3267 727000 6871000 45 -674.3745 727500 6871000 46 -672.2927 728000 6871000 47 -671.047 728500 6871000 48 -670.4171 729000 6871000 49 -670.0239 729500 6871000 50 -669.5275 730000 6871000 51 -668.6172 730500 6871000 52 -667.1228 731000 6871000 53 -665.035 731500 6871000 54 -662.437 732000 6871000 55 -659.4924 732500 6871000 56 -656.4432 733000 6871000 57 -653.516 733500 6871000 58 -650.8397 734000 6871000 59 -648.4738 734500 6871000 60 -646.4579 735000 6871000 61 -644.7825 735500 6871000 62 -643.4461 736000 6871000 63 -642.4282 736500 6871000 64 -641.6782 737000 6871000 65 -641.1547 737500 6871000 66 -640.813 738000 6871000 67 -640.5202 738500 6871000 68 -640.0414 739000 6871000 69 -639.2214 739500 6871000 70 -638.1521 740000 6871000 71 -637.3436 740500 6871000 72 -637.0011 741000 6871000 73 -636.9272 741500 6871000 74 -636.9055 742000 6871000 75 -636.9487 742500 6871000 76 -637.1528 743000 6871000 77 -637.5737 743500 6871000 78 -638.1814 744000 6871000 79 -638.8878 744500 6871000 80 -639.5806 745000 6871000 81 -640.1475 745500 6871000 82 -640.5554 746000 6871000 83 -640.8153 746500 6871000 84 -641.0905 747000 6871000 85 -641.6686 705000 6871500 1 -756.5594 705500 6871500 2 -755.051 706000 6871500 3 -753.2557 706500 6871500 4 -751.3191 707000 6871500 5 -749.4113 707500 6871500 6 -747.6949 708000 6871500 7 -746.3188 708500 6871500 8 -745.3639 709000 6871500 9 -744.8953 709500 6871500 10 -744.9644 710000 6871500 11 -745.6058 710500 6871500 12 -746.7298 711000 6871500 13 -748.0857 711500 6871500 14 -749.4069 712000 6871500 15 -750.3969 712500 6871500 16 -750.7562 713000 6871500 17 -750.1274 713500 6871500 18 -748.3571 714000 6871500 19 -745.6505 714500 6871500 20 -742.3615 715000 6871500 21 -738.7701 715500 6871500 22 -734.993 716000 6871500 23 -731.1371 716500 6871500 24 -727.375 717000 6871500 25 -723.9977 717500 6871500 26 -721.3795 718000 6871500 27 -719.9334 718500 6871500 28 -719.7558 719000 6871500 29 -720.5659 719500 6871500 30 -721.8528 720000 6871500 31 -723.2006 720500 6871500 32 -724.2532 721000 6871500 33 -724.7617 721500 6871500 34 -724.5391 722000 6871500 35 -723.3773 722500 6871500 36 -720.8904 723000 6871500 37 -716.6679 723500 6871500 38 -711.0438 724000 6871500 39 -704.5655 724500 6871500 40 -697.8325 725000 6871500 41 -691.4042 725500 6871500 42 -685.7383 726000 6871500 43 -681.0346 726500 6871500 44 -677.3578 727000 6871500 45 -674.5302 727500 6871500 46 -672.5189 728000 6871500 47 -671.2712 728500 6871500 48 -670.5765 729000 6871500 49 -670.0723 729500 6871500 50 -669.4177 730000 6871500 51 -668.2693 730500 6871500 52 -666.4291 731000 6871500 53 -663.9263 731500 6871500 54 -660.9156 732000 6871500 55 -657.6394 732500 6871500 56 -654.4385 733000 6871500 57 -651.6295 733500 6871500 58 -649.348 734000 6871500 59 -647.5682 734500 6871500 60 -646.2029 735000 6871500 61 -645.0026 735500 6871500 62 -643.8253 736000 6871500 63 -642.7961 736500 6871500 64 -642.0491 737000 6871500 65 -641.5458 737500 6871500 66 -641.048 738000 6871500 67 -640.2792 738500 6871500 68 -639.0481 739000 6871500 69 -637.3453 739500 6871500 70 -635.4686 740000 6871500 71 -634.3066 740500 6871500 72 -634.2792 741000 6871500 73 -634.8425 741500 6871500 74 -635.421 742000 6871500 75 -635.9376 742500 6871500 76 -636.5167 743000 6871500 77 -637.2625 743500 6871500 78 -638.1699 744000 6871500 79 -639.1443 744500 6871500 80 -640.0166 745000 6871500 81 -640.5497 745500 6871500 82 -640.7061 746000 6871500 83 -640.6077 746500 6871500 84 -640.497 747000 6871500 85 -640.6716 705000 6872000 1 -758.8167 705500 6872000 2 -756.878 706000 6872000 3 -754.5789 706500 6872000 4 -752.2176 707000 6872000 5 -750.0815 707500 6872000 6 -748.4187 708000 6872000 7 -747.4048 708500 6872000 8 -747.0121 709000 6872000 9 -747.1372 709500 6872000 10 -747.6111 710000 6872000 11 -748.2502 710500 6872000 12 -749.0049 711000 6872000 13 -749.8807 711500 6872000 14 -750.8193 712000 6872000 15 -751.609 712500 6872000 16 -751.9219 713000 6872000 17 -751.3218 713500 6872000 18 -749.5707 714000 6872000 19 -746.8555 714500 6872000 20 -743.5355 715000 6872000 21 -739.8886 715500 6872000 22 -735.9955 716000 6872000 23 -731.9398 716500 6872000 24 -727.8854 717000 6872000 25 -724.1589 717500 6872000 26 -721.2279 718000 6872000 27 -719.6393 718500 6872000 28 -719.5699 719000 6872000 29 -720.7021 719500 6872000 30 -722.418 720000 6872000 31 -724.1617 720500 6872000 32 -725.405 721000 6872000 33 -725.8776 721500 6872000 34 -725.5386 722000 6872000 35 -724.2868 722500 6872000 36 -721.7748 723000 6872000 37 -717.4488 723500 6872000 38 -711.6232 724000 6872000 39 -704.8765 724500 6872000 40 -697.8643 725000 6872000 41 -691.2409 725500 6872000 42 -685.5693 726000 6872000 43 -681.0361 726500 6872000 44 -677.5835 727000 6872000 45 -674.9259 727500 6872000 46 -672.9902 728000 6872000 47 -671.7219 728500 6872000 48 -670.9357 729000 6872000 49 -670.296 729500 6872000 50 -669.4681 730000 6872000 51 -668.0718 730500 6872000 52 -665.8699 731000 6872000 53 -662.9372 731500 6872000 54 -659.5009 732000 6872000 55 -655.8574 732500 6872000 56 -652.3915 733000 6872000 57 -649.4745 733500 6872000 58 -647.2762 734000 6872000 59 -645.7734 734500 6872000 60 -644.8001 735000 6872000 61 -643.9171 735500 6872000 62 -642.8397 736000 6872000 63 -641.8557 736500 6872000 64 -641.2709 737000 6872000 65 -641.0311 737500 6872000 66 -640.7018 738000 6872000 67 -639.8704 738500 6872000 68 -638.4078 739000 6872000 69 -636.4351 739500 6872000 70 -634.3283 740000 6872000 71 -632.9855 740500 6872000 72 -632.9752 741000 6872000 73 -633.6514 741500 6872000 74 -634.3564 742000 6872000 75 -635.0123 742500 6872000 76 -635.7781 743000 6872000 77 -636.7814 743500 6872000 78 -638.0038 744000 6872000 79 -639.3104 744500 6872000 80 -640.4595 745000 6872000 81 -641.0886 745500 6872000 82 -641.1376 746000 6872000 83 -640.8064 746500 6872000 84 -640.3902 747000 6872000 85 -640.1898 705000 6872500 1 -760.8854 705500 6872500 2 -758.5078 706000 6872500 3 -755.6708 706500 6872500 4 -752.833 707000 6872500 5 -750.4084 707500 6872500 6 -748.7398 708000 6872500 7 -748.0209 708500 6872500 8 -748.1008 709000 6872500 9 -748.7062 709500 6872500 10 -749.4951 710000 6872500 11 -750.1175 710500 6872500 12 -750.5391 711000 6872500 13 -750.9451 711500 6872500 14 -751.4599 712000 6872500 15 -751.9943 712500 6872500 16 -752.2485 713000 6872500 17 -751.7649 713500 6872500 18 -750.2178 714000 6872500 19 -747.7183 714500 6872500 20 -744.5666 715000 6872500 21 -741.0038 715500 6872500 22 -737.0853 716000 6872500 23 -732.9068 716500 6872500 24 -728.6429 717000 6872500 25 -724.644 717500 6872500 26 -721.4161 718000 6872500 27 -719.5494 718500 6872500 28 -719.3044 719000 6872500 29 -720.4146 719500 6872500 30 -722.2512 720000 6872500 31 -724.1664 720500 6872500 32 -725.4828 721000 6872500 33 -725.8965 721500 6872500 34 -725.4852 722000 6872500 35 -724.2286 722500 6872500 36 -721.8019 723000 6872500 37 -717.5975 723500 6872500 38 -711.8199 724000 6872500 39 -705.0431 724500 6872500 40 -697.9443 725000 6872500 41 -691.2621 725500 6872500 42 -685.6729 726000 6872500 43 -681.3614 726500 6872500 44 -678.1487 727000 6872500 45 -675.653 727500 6872500 46 -673.7598 728000 6872500 47 -672.4067 728500 6872500 48 -671.439 729000 6872500 49 -670.5761 729500 6872500 50 -669.5066 730000 6872500 51 -667.8339 730500 6872500 52 -665.2832 731000 6872500 53 -661.9632 731500 6872500 54 -658.1487 732000 6872500 55 -654.1442 732500 6872500 56 -650.2955 733000 6872500 57 -646.9634 733500 6872500 58 -644.3643 734000 6872500 59 -642.5734 734500 6872500 60 -641.4494 735000 6872500 61 -640.5588 735500 6872500 62 -639.5461 736000 6872500 63 -638.7867 736500 6872500 64 -638.6418 737000 6872500 65 -638.9785 737500 6872500 66 -639.1876 738000 6872500 67 -638.754 738500 6872500 68 -637.6391 739000 6872500 69 -636.0681 739500 6872500 70 -634.4011 740000 6872500 71 -633.1853 740500 6872500 72 -632.9196 741000 6872500 73 -633.1687 741500 6872500 74 -633.5182 742000 6872500 75 -633.9809 742500 6872500 76 -634.7376 743000 6872500 77 -635.8984 743500 6872500 78 -637.3928 744000 6872500 79 -639.0175 744500 6872500 80 -640.4712 745000 6872500 81 -641.3165 745500 6872500 82 -641.4581 746000 6872500 83 -641.1113 746500 6872500 84 -640.5706 747000 6872500 85 -640.1169 705000 6873000 1 -762.621 705500 6873000 2 -759.8061 706000 6873000 3 -756.4051 706500 6873000 4 -753.0361 707000 6873000 5 -750.249 707500 6873000 6 -748.4914 708000 6873000 7 -747.9705 708500 6873000 8 -748.3953 709000 6873000 9 -749.3344 709500 6873000 10 -750.3224 710000 6873000 11 -750.9233 710500 6873000 12 -751.0794 711000 6873000 13 -751.0689 711500 6873000 14 -751.1558 712000 6873000 15 -751.4086 712500 6873000 16 -751.6254 713000 6873000 17 -751.3752 713500 6873000 18 -750.2568 714000 6873000 19 -748.2352 714500 6873000 20 -745.4778 715000 6873000 21 -742.1465 715500 6873000 22 -738.2855 716000 6873000 23 -734.0484 716500 6873000 24 -729.6393 717000 6873000 25 -725.4124 717500 6873000 26 -721.8686 718000 6873000 27 -719.5511 718500 6873000 28 -718.7692 719000 6873000 29 -719.3914 719500 6873000 30 -720.8912 720000 6873000 31 -722.6395 720500 6873000 32 -723.9184 721000 6873000 33 -724.3807 721500 6873000 34 -724.1213 722000 6873000 35 -723.1212 722500 6873000 36 -721.0134 723000 6873000 37 -717.2155 723500 6873000 38 -711.7954 724000 6873000 39 -705.2951 724500 6873000 40 -698.3839 725000 6873000 41 -691.8326 725500 6873000 42 -686.3872 726000 6873000 43 -682.2547 726500 6873000 44 -679.1896 727000 6873000 45 -676.756 727500 6873000 46 -674.8075 728000 6873000 47 -673.2594 728500 6873000 48 -671.9806 729000 6873000 49 -670.7527 729500 6873000 50 -669.3064 730000 6873000 51 -667.2935 730500 6873000 52 -664.433 731000 6873000 53 -660.8227 731500 6873000 54 -656.7188 732000 6873000 55 -652.3724 732500 6873000 56 -648.0275 733000 6873000 57 -643.9525 733500 6873000 58 -640.3751 734000 6873000 59 -637.527 734500 6873000 60 -635.4373 735000 6873000 61 -634.0397 735500 6873000 62 -633.0963 736000 6873000 63 -632.8763 736500 6873000 64 -633.5424 737000 6873000 65 -634.7797 737500 6873000 66 -635.8372 738000 6873000 67 -636.1608 738500 6873000 68 -635.8359 739000 6873000 69 -635.1838 739500 6873000 70 -634.4544 740000 6873000 71 -633.7174 740500 6873000 72 -633.1187 741000 6873000 73 -632.6359 741500 6873000 74 -632.3459 742000 6873000 75 -632.429 742500 6873000 76 -633.076 743000 6873000 77 -634.345 743500 6873000 78 -636.0805 744000 6873000 79 -637.9949 744500 6873000 80 -639.7477 745000 6873000 81 -640.9311 745500 6873000 82 -641.4072 746000 6873000 83 -641.3262 746500 6873000 84 -640.9114 747000 6873000 85 -640.3883 705000 6873500 1 -764.005 705500 6873500 2 -760.7298 706000 6873500 3 -756.7205 706500 6873500 4 -752.7531 707000 6873500 5 -749.5254 707500 6873500 6 -747.6022 708000 6873500 7 -747.1975 708500 6873500 8 -747.8791 709000 6873500 9 -749.0674 709500 6873500 10 -750.1844 710000 6873500 11 -750.7368 710500 6873500 12 -750.6508 711000 6873500 13 -750.2541 711500 6873500 14 -749.9186 712000 6873500 15 -749.909 712500 6873500 16 -750.1702 713000 6873500 17 -750.2955 713500 6873500 18 -749.7947 714000 6873500 19 -748.4519 714500 6873500 20 -746.2599 715000 6873500 21 -743.2761 715500 6873500 22 -739.5356 716000 6873500 23 -735.2792 716500 6873500 24 -730.7438 717000 6873500 25 -726.2684 717500 6873500 26 -722.3107 718000 6873500 27 -719.3445 718500 6873500 28 -717.681 719000 6873500 29 -717.3515 719500 6873500 30 -718.02 720000 6873500 31 -719.2162 720500 6873500 32 -720.3715 721000 6873500 33 -721.1089 721500 6873500 34 -721.384 722000 6873500 35 -721.042 722500 6873500 36 -719.6258 723000 6873500 37 -716.5354 723500 6873500 38 -711.76 724000 6873500 39 -705.82 724500 6873500 40 -699.368 725000 6873500 41 -693.1499 725500 6873500 42 -687.8854 726000 6873500 43 -683.8234 726500 6873500 44 -680.7408 727000 6873500 45 -678.2139 727500 6873500 46 -676.0715 728000 6873500 47 -674.2014 728500 6873500 48 -672.4797 729000 6873500 49 -670.738 729500 6873500 50 -668.767 730000 6873500 51 -666.3132 730500 6873500 52 -663.183 731000 6873500 53 -659.4004 731500 6873500 54 -655.1188 732000 6873500 55 -650.4679 732500 6873500 56 -645.5447 733000 6873500 57 -640.4745 733500 6873500 58 -635.4435 734000 6873500 59 -630.8115 734500 6873500 60 -626.9294 735000 6873500 61 -624.3934 735500 6873500 62 -623.4602 736000 6873500 63 -624.0349 736500 6873500 64 -625.7839 737000 6873500 65 -628.1067 737500 6873500 66 -630.1187 738000 6873500 67 -631.3036 738500 6873500 68 -631.9299 739000 6873500 69 -632.4485 739500 6873500 70 -632.9474 740000 6873500 71 -632.9545 740500 6873500 72 -632.1608 741000 6873500 73 -630.9594 741500 6873500 74 -630.0367 742000 6873500 75 -629.7786 742500 6873500 76 -630.3886 743000 6873500 77 -631.8535 743500 6873500 78 -633.9089 744000 6873500 79 -636.1749 744500 6873500 80 -638.2782 745000 6873500 81 -639.9138 745500 6873500 82 -640.9318 746000 6873500 83 -641.3513 746500 6873500 84 -641.2693 747000 6873500 85 -640.8374 705000 6874000 1 -765.0767 705500 6874000 2 -761.3064 706000 6874000 3 -756.6422 706500 6874000 4 -752.0214 707000 6874000 5 -748.2858 707500 6874000 6 -746.1162 708000 6874000 7 -745.7524 708500 6874000 8 -746.6323 709000 6874000 9 -748.0393 709500 6874000 10 -749.2738 710000 6874000 11 -749.7598 710500 6874000 12 -749.4157 711000 6874000 13 -748.6334 711500 6874000 14 -747.8923 712000 6874000 15 -747.6771 712500 6874000 16 -748.1056 713000 6874000 17 -748.7573 713500 6874000 18 -749.0035 714000 6874000 19 -748.4407 714500 6874000 20 -746.8915 715000 6874000 21 -744.3113 715500 6874000 22 -740.7269 716000 6874000 23 -736.4689 716500 6874000 24 -731.7975 717000 6874000 25 -727.0186 717500 6874000 26 -722.5211 718000 6874000 27 -718.7116 718500 6874000 28 -715.9058 719000 6874000 29 -714.2886 719500 6874000 30 -713.7615 720000 6874000 31 -714.1138 720500 6874000 32 -715.0796 721000 6874000 33 -716.3112 721500 6874000 34 -717.4922 722000 6874000 35 -718.2043 722500 6874000 36 -717.8369 723000 6874000 37 -715.7236 723500 6874000 38 -711.8119 724000 6874000 39 -706.6182 724500 6874000 40 -700.7937 725000 6874000 41 -695.0385 725500 6874000 42 -689.9893 726000 6874000 43 -685.9135 726500 6874000 44 -682.6783 727000 6874000 45 -679.924 727500 6874000 46 -677.4688 728000 6874000 47 -675.1736 728500 6874000 48 -672.9168 729000 6874000 49 -670.5717 729500 6874000 50 -667.9947 730000 6874000 51 -665.0458 730500 6874000 52 -661.6507 731000 6874000 53 -657.7646 731500 6874000 54 -653.3854 732000 6874000 55 -648.4885 732500 6874000 56 -642.9991 733000 6874000 57 -636.8715 733500 6874000 58 -630.2042 734000 6874000 59 -623.4494 734500 6874000 60 -617.3116 735000 6874000 61 -613.1222 735500 6874000 62 -611.856 736000 6874000 63 -613.0426 736500 6874000 64 -615.7021 737000 6874000 65 -618.9307 737500 6874000 66 -621.6642 738000 6874000 67 -623.4331 738500 6874000 68 -624.7928 739000 6874000 69 -626.3979 739500 6874000 70 -628.1931 740000 6874000 71 -629.1527 740500 6874000 72 -628.5087 741000 6874000 73 -626.9345 741500 6874000 74 -625.7097 742000 6874000 75 -625.4094 742500 6874000 76 -626.2643 743000 6874000 77 -628.1941 743500 6874000 78 -630.8132 744000 6874000 79 -633.6397 744500 6874000 80 -636.2698 745000 6874000 81 -638.4834 745500 6874000 82 -640.1534 746000 6874000 83 -641.168 746500 6874000 84 -641.5003 747000 6874000 85 -641.2292 705000 6874500 1 -765.7789 705500 6874500 2 -761.5137 706000 6874500 3 -756.2001 706500 6874500 4 -750.9338 707000 6874500 5 -746.6699 707500 6874500 6 -744.175 708000 6874500 7 -743.7383 708500 6874500 8 -744.715 709000 6874500 9 -746.2891 709500 6874500 10 -747.6411 710000 6874500 11 -748.0726 710500 6874500 12 -747.4932 711000 6874500 13 -746.3834 711500 6874500 14 -745.3312 712000 6874500 15 -745.0212 712500 6874500 16 -745.7408 713000 6874500 17 -747.0132 713500 6874500 18 -748.0363 714000 6874500 19 -748.2407 714500 6874500 20 -747.316 715000 6874500 21 -745.136 715500 6874500 22 -741.7203 716000 6874500 23 -737.4734 716500 6874500 24 -732.6581 717000 6874500 25 -727.5306 717500 6874500 26 -722.3939 718000 6874500 27 -717.6075 718500 6874500 28 -713.5178 719000 6874500 29 -710.4601 719500 6874500 30 -708.5939 720000 6874500 31 -708.0075 720500 6874500 32 -708.7646 721000 6874500 33 -710.5932 721500 6874500 34 -712.8813 722000 6874500 35 -714.8867 722500 6874500 36 -715.8028 723000 6874500 37 -714.8412 723500 6874500 38 -711.9303 724000 6874500 39 -707.5684 724500 6874500 40 -702.4301 725000 6874500 41 -697.1691 725500 6874500 42 -692.3469 726000 6874500 43 -688.2322 726500 6874500 44 -684.7857 727000 6874500 45 -681.7312 727500 6874500 46 -678.8923 728000 6874500 47 -676.1169 728500 6874500 48 -673.2916 729000 6874500 49 -670.3295 729500 6874500 50 -667.1522 730000 6874500 51 -663.7186 730500 6874500 52 -660.0554 731000 6874500 53 -656.0667 731500 6874500 54 -651.6128 732000 6874500 55 -646.5353 732500 6874500 56 -640.6162 733000 6874500 57 -633.652 733500 6874500 58 -625.6371 734000 6874500 59 -616.9902 734500 6874500 60 -608.6885 735000 6874500 61 -602.5756 735500 6874500 62 -600.3066 736000 6874500 63 -601.1883 736500 6874500 64 -603.8336 737000 6874500 65 -607.1765 737500 6874500 66 -609.9556 738000 6874500 67 -611.6624 738500 6874500 68 -613.2027 739000 6874500 69 -615.4993 739500 6874500 70 -618.4116 740000 6874500 71 -620.5074 740500 6874500 72 -620.5942 741000 6874500 73 -619.4103 741500 6874500 74 -618.5825 742000 6874500 75 -618.8223 742500 6874500 76 -620.4077 743000 6874500 77 -623.2298 743500 6874500 78 -626.7952 744000 6874500 79 -630.5229 744500 6874500 80 -633.9563 745000 6874500 81 -636.8873 745500 6874500 82 -639.2158 746000 6874500 83 -640.7657 746500 6874500 84 -641.4538 747000 6874500 85 -641.3216 705000 6875000 1 -765.915 705500 6875000 2 -761.2118 706000 6875000 3 -755.3193 706500 6875000 4 -749.4548 707000 6875000 5 -744.6825 707500 6875000 6 -741.806 708000 6875000 7 -741.1729 708500 6875000 8 -742.1015 709000 6875000 9 -743.7126 709500 6875000 10 -745.1183 710000 6875000 11 -745.5424 710500 6875000 12 -744.8891 711000 6875000 13 -743.6848 711500 6875000 14 -742.5987 712000 6875000 15 -742.3932 712500 6875000 16 -743.4927 713000 6875000 17 -745.3513 713500 6875000 18 -747.0236 714000 6875000 19 -747.8348 714500 6875000 20 -747.4108 715000 6875000 21 -745.5787 715500 6875000 22 -742.3444 716000 6875000 23 -738.1436 716500 6875000 24 -733.2105 717000 6875000 25 -727.7284 717500 6875000 26 -721.9112 718000 6875000 27 -716.0977 718500 6875000 28 -710.7065 719000 6875000 29 -706.2346 719500 6875000 30 -703.0932 720000 6875000 31 -701.6417 720500 6875000 32 -702.2139 721000 6875000 33 -704.6215 721500 6875000 34 -708.0157 722000 6875000 35 -711.3538 722500 6875000 36 -713.624 723000 6875000 37 -713.8907 723500 6875000 38 -712.0331 724000 6875000 39 -708.5167 724500 6875000 40 -704.0513 725000 6875000 41 -699.2614 725500 6875000 42 -694.6582 726000 6875000 43 -690.5131 726500 6875000 44 -686.8516 727000 6875000 45 -683.4747 727500 6875000 46 -680.2256 728000 6875000 47 -676.9595 728500 6875000 48 -673.5849 729000 6875000 49 -670.0574 729500 6875000 50 -666.3585 730000 6875000 51 -662.4966 730500 6875000 52 -658.5471 731000 6875000 53 -654.4025 731500 6875000 54 -649.8505 732000 6875000 55 -644.6611 732500 6875000 56 -638.5502 733000 6875000 57 -631.2206 733500 6875000 58 -622.5751 734000 6875000 59 -612.9143 734500 6875000 60 -603.2239 735000 6875000 61 -595.161 735500 6875000 62 -590.7078 736000 6875000 63 -589.5483 736500 6875000 64 -590.3875 737000 6875000 65 -592.2914 737500 6875000 66 -593.9757 738000 6875000 67 -594.8001 738500 6875000 68 -595.9449 739000 6875000 69 -598.5159 739500 6875000 70 -602.3018 740000 6875000 71 -605.7584 740500 6875000 72 -607.3741 741000 6875000 73 -607.683 741500 6875000 74 -608.243 742000 6875000 75 -609.8196 742500 6875000 76 -612.7474 743000 6875000 77 -616.9475 743500 6875000 78 -621.8724 744000 6875000 79 -626.8718 744500 6875000 80 -631.4221 745000 6875000 81 -635.2043 745500 6875000 82 -638.1321 746000 6875000 83 -640.0708 746500 6875000 84 -640.9854 747000 6875000 85 -640.9233 705000 6875500 1 -765.1998 705500 6875500 2 -760.2047 706000 6875500 3 -753.8889 706500 6875500 4 -747.5019 707000 6875500 5 -742.1996 707500 6875500 6 -738.9026 708000 6875500 7 -737.9766 708500 6875500 8 -738.6848 709000 6875500 9 -740.1135 709500 6875500 10 -741.4287 710000 6875500 11 -741.9132 710500 6875500 12 -741.474 711000 6875500 13 -740.6163 711500 6875500 14 -739.9987 712000 6875500 15 -740.2476 712500 6875500 16 -741.7606 713000 6875500 17 -744.0047 713500 6875500 18 -746.0027 714000 6875500 19 -747.0957 714500 6875500 20 -746.9403 715000 6875500 21 -745.3681 715500 6875500 22 -742.3501 716000 6875500 23 -738.2788 716500 6875500 24 -733.3165 717000 6875500 25 -727.5419 717500 6875500 26 -721.0786 718000 6875500 27 -714.2761 718500 6875500 28 -707.6716 719000 6875500 29 -701.9362 719500 6875500 30 -697.7089 720000 6875500 31 -695.5598 720500 6875500 32 -695.9915 721000 6875500 33 -698.8911 721500 6875500 34 -703.2756 722000 6875500 35 -707.8669 722500 6875500 36 -711.4388 723000 6875500 37 -712.9039 723500 6875500 38 -712.0591 724000 6875500 39 -709.3215 724500 6875500 40 -705.4484 725000 6875500 41 -701.0632 725500 6875500 42 -696.6607 726000 6875500 43 -692.5135 726500 6875500 44 -688.6716 727000 6875500 45 -684.9894 727500 6875500 46 -681.3328 728000 6875500 47 -677.5851 728500 6875500 48 -673.6931 729000 6875500 49 -669.6647 729500 6875500 50 -665.5333 730000 6875500 51 -661.3333 730500 6875500 52 -657.0924 731000 6875500 53 -652.7382 731500 6875500 54 -648.0801 732000 6875500 55 -642.8905 732500 6875500 56 -636.8893 733000 6875500 57 -629.7693 733500 6875500 58 -621.3157 734000 6875500 59 -611.6123 734500 6875500 60 -601.3308 735000 6875500 61 -591.5587 735500 6875500 62 -583.695 736000 6875500 63 -578.1057 736500 6875500 64 -574.4231 737000 6875500 65 -572.3843 737500 6875500 66 -571.361 738000 6875500 67 -570.7415 738500 6875500 68 -571.5656 739000 6875500 69 -574.6691 739500 6875500 70 -579.5407 740000 6875500 71 -584.7095 740500 6875500 72 -588.6873 741000 6875500 73 -591.6074 741500 6875500 74 -594.6134 742000 6875500 75 -598.4007 742500 6875500 76 -603.2977 743000 6875500 77 -609.2875 743500 6875500 78 -615.8746 744000 6875500 79 -622.4224 744500 6875500 80 -628.3474 745000 6875500 81 -633.1157 745500 6875500 82 -636.593 746000 6875500 83 -638.7954 746500 6875500 84 -639.8461 747000 6875500 85 -639.847 705000 6876000 1 -763.8593 705500 6876000 2 -758.7505 706000 6876000 3 -752.1906 706500 6876000 4 -745.3663 707000 6876000 5 -739.5229 707500 6876000 6 -735.7653 708000 6876000 7 -734.4942 708500 6876000 8 -734.8568 709000 6876000 9 -735.9134 709500 6876000 10 -736.9495 710000 6876000 11 -737.4503 710500 6876000 12 -737.3647 711000 6876000 13 -737.1162 711500 6876000 14 -737.2484 712000 6876000 15 -738.2546 712500 6876000 16 -740.2642 713000 6876000 17 -742.7445 713500 6876000 18 -744.8044 714000 6876000 19 -745.9056 714500 6876000 20 -745.813 715000 6876000 21 -744.4197 715500 6876000 22 -741.655 716000 6876000 23 -737.8077 716500 6876000 24 -732.9324 717000 6876000 25 -726.979 717500 6876000 26 -719.972 718000 6876000 27 -712.2833 718500 6876000 28 -704.5912 719000 6876000 29 -697.7259 719500 6876000 30 -692.5265 720000 6876000 31 -689.7587 720500 6876000 32 -690.0958 721000 6876000 33 -693.4755 721500 6876000 34 -698.8113 722000 6876000 35 -704.6205 722500 6876000 36 -709.4487 723000 6876000 37 -712.0062 723500 6876000 38 -712.0236 724000 6876000 39 -709.9301 724500 6876000 40 -706.5161 725000 6876000 41 -702.4492 725500 6876000 42 -698.2266 726000 6876000 43 -694.1149 726500 6876000 44 -690.147 727000 6876000 45 -686.1976 727500 6876000 46 -682.147 728000 6876000 47 -677.9119 728500 6876000 48 -673.4954 729000 6876000 49 -668.9717 729500 6876000 50 -664.4357 730000 6876000 51 -659.9307 730500 6876000 52 -655.4204 731000 6876000 53 -650.865 731500 6876000 54 -646.1602 732000 6876000 55 -641.1273 732500 6876000 56 -635.5188 733000 6876000 57 -629.0336 733500 6876000 58 -621.3283 734000 6876000 59 -612.1245 734500 6876000 60 -601.5903 735000 6876000 61 -589.9833 735500 6876000 62 -577.9285 736000 6876000 63 -566.2075 736500 6876000 64 -555.6744 737000 6876000 65 -547.181 737500 6876000 66 -541.9714 738000 6876000 67 -539.9272 738500 6876000 68 -541.2493 739000 6876000 69 -545.7938 739500 6876000 70 -552.5068 740000 6876000 71 -559.8768 740500 6876000 72 -566.6332 741000 6876000 73 -572.6641 741500 6876000 74 -578.6748 742000 6876000 75 -585.1865 742500 6876000 76 -592.4099 743000 6876000 77 -600.3456 743500 6876000 78 -608.6599 744000 6876000 79 -616.8339 744500 6876000 80 -624.2377 745000 6876000 81 -630.0739 745500 6876000 82 -634.1195 746000 6876000 83 -636.593 746500 6876000 84 -637.8281 747000 6876000 85 -638.0156 705000 6876500 1 -762.3191 705500 6876500 2 -757.3102 706000 6876500 3 -750.7224 706500 6876500 4 -743.6182 707000 6876500 5 -737.2895 707500 6876500 6 -733.0462 708000 6876500 7 -731.3305 708500 6876500 8 -731.1697 709000 6876500 9 -731.6323 709500 6876500 10 -732.1716 710000 6876500 11 -732.5089 710500 6876500 12 -732.6846 711000 6876500 13 -733.0244 711500 6876500 14 -733.9455 712000 6876500 15 -735.7413 712500 6876500 16 -738.3264 713000 6876500 17 -741.0249 713500 6876500 18 -743.0247 714000 6876500 19 -743.9824 714500 6876500 20 -743.8469 715000 6876500 21 -742.5964 715500 6876500 22 -740.1331 716000 6876500 23 -736.6047 716500 6876500 24 -731.9354 717000 6876500 25 -725.9471 717500 6876500 26 -718.5669 718000 6876500 27 -710.184 718500 6876500 28 -701.587 719000 6876500 29 -693.7247 719500 6876500 30 -687.6021 720000 6876500 31 -684.1941 720500 6876500 32 -684.431 721000 6876500 33 -688.3297 721500 6876500 34 -694.6499 722000 6876500 35 -701.6776 722500 6876500 36 -707.7247 723000 6876500 37 -711.2371 723500 6876500 38 -711.9106 724000 6876500 39 -710.2624 724500 6876500 40 -707.1541 725000 6876500 41 -703.3205 725500 6876500 42 -699.2698 726000 6876500 43 -695.2454 726500 6876500 44 -691.2178 727000 6876500 45 -687.0431 727500 6876500 46 -682.6011 728000 6876500 47 -677.84 728500 6876500 48 -672.8332 729000 6876500 49 -667.7476 729500 6876500 50 -662.7592 730000 6876500 51 -657.9415 730500 6876500 52 -653.1846 731000 6876500 53 -648.4928 731500 6876500 54 -643.8655 732000 6876500 55 -639.1797 732500 6876500 56 -634.2184 733000 6876500 57 -628.6773 733500 6876500 58 -622.0527 734000 6876500 59 -613.6503 734500 6876500 60 -603.0388 735000 6876500 61 -589.5692 735500 6876500 62 -572.9605 736000 6876500 63 -554.3405 736500 6876500 64 -535.7982 737000 6876500 65 -519.4982 737500 6876500 66 -508.8849 738000 6876500 67 -505.2299 738500 6876500 68 -507.6305 739000 6876500 69 -514.2628 739500 6876500 70 -523.2644 740000 6876500 71 -533.0947 740500 6876500 72 -542.693 741000 6876500 73 -551.848 741500 6876500 74 -560.9544 742000 6876500 75 -570.309 742500 6876500 76 -579.9415 743000 6876500 77 -589.7966 743500 6876500 78 -599.7563 744000 6876500 79 -609.498 744500 6876500 80 -618.3808 745000 6876500 81 -625.3389 745500 6876500 82 -630.054 746000 6876500 83 -632.9597 746500 6876500 84 -634.5986 747000 6876500 85 -635.2278 705000 6877000 1 -760.9938 705500 6877000 2 -756.3818 706000 6877000 3 -750.0757 706500 6877000 4 -742.9985 707000 6877000 5 -736.3839 707500 6877000 6 -731.6337 708000 6877000 7 -729.2498 708500 6877000 8 -728.2413 709000 6877000 9 -727.7697 709500 6877000 10 -727.4857 710000 6877000 11 -727.3471 710500 6877000 12 -727.4898 711000 6877000 13 -728.1642 711500 6877000 14 -729.6739 712000 6877000 15 -732.1544 712500 6877000 16 -735.2852 713000 6877000 17 -738.2259 713500 6877000 18 -740.1521 714000 6877000 19 -740.9307 714500 6877000 20 -740.7448 715000 6877000 21 -739.6845 715500 6877000 22 -737.6168 716000 6877000 23 -734.5138 716500 6877000 24 -730.1672 717000 6877000 25 -724.3141 717500 6877000 26 -716.8091 718000 6877000 27 -708.0356 718500 6877000 28 -698.8177 719000 6877000 29 -690.1644 719500 6877000 30 -683.2103 720000 6877000 31 -679.1544 720500 6877000 32 -679.2442 721000 6877000 33 -683.6207 721500 6877000 34 -690.8535 722000 6877000 35 -698.975 722500 6877000 36 -706.0832 723000 6877000 37 -710.3654 723500 6877000 38 -711.4967 724000 6877000 39 -710.1371 724500 6877000 40 -707.241 725000 6877000 41 -703.6078 725500 6877000 42 -699.7565 726000 6877000 43 -695.8905 726500 6877000 44 -691.8732 727000 6877000 45 -687.504 727500 6877000 46 -682.6454 728000 6877000 47 -677.2716 728500 6877000 48 -671.5366 729000 6877000 49 -665.7302 729500 6877000 50 -660.1418 730000 6877000 51 -654.9361 730500 6877000 52 -649.9664 731000 6877000 53 -645.2728 731500 6877000 54 -640.9299 732000 6877000 55 -636.8306 732500 6877000 56 -632.7405 733000 6877000 57 -628.3115 733500 6877000 58 -622.854 734000 6877000 59 -615.2715 734500 6877000 60 -604.5743 735000 6877000 61 -589.3489 735500 6877000 62 -568.5566 736000 6877000 63 -543.5229 736500 6877000 64 -517.4174 737000 6877000 65 -493.6918 737500 6877000 66 -477.7217 738000 6877000 67 -472.1274 738500 6877000 68 -475.1615 739000 6877000 69 -483.4118 739500 6877000 70 -494.2744 740000 6877000 71 -506.1511 740500 6877000 72 -518.1489 741000 6877000 73 -530.019 741500 6877000 74 -541.8842 742000 6877000 75 -553.7886 742500 6877000 76 -565.5865 743000 6877000 77 -577.1554 743500 6877000 78 -588.5538 744000 6877000 79 -599.6539 744500 6877000 80 -609.8524 745000 6877000 81 -617.958 745500 6877000 82 -623.5824 746000 6877000 83 -627.3019 746500 6877000 84 -629.7718 747000 6877000 85 -631.2473 705000 6877500 1 -760.1796 705500 6877500 2 -756.3053 706000 6877500 3 -750.6395 706500 6877500 4 -743.9722 707000 6877500 5 -737.3914 707500 6877500 6 -732.1389 708000 6877500 7 -728.7811 708500 6877500 8 -726.5028 709000 6877500 9 -724.6782 709500 6877500 10 -723.1652 710000 6877500 11 -722.1224 710500 6877500 12 -721.7773 711000 6877500 13 -722.3381 711500 6877500 14 -724.0347 712000 6877500 15 -726.8981 712500 6877500 16 -730.425 713000 6877500 17 -733.6105 713500 6877500 18 -735.5485 714000 6877500 19 -736.2774 714500 6877500 20 -736.2032 715000 6877500 21 -735.5222 715500 6877500 22 -734.039 716000 6877500 23 -731.5269 716500 6877500 24 -727.6531 717000 6877500 25 -722.1179 717500 6877500 26 -714.7836 718000 6877500 27 -706.0033 718500 6877500 28 -696.5499 719000 6877500 29 -687.4528 719500 6877500 30 -679.9214 720000 6877500 31 -675.3413 720500 6877500 32 -675.2047 721000 6877500 33 -679.7966 721500 6877500 34 -687.5497 722000 6877500 35 -696.3099 722500 6877500 36 -704.0667 723000 6877500 37 -708.861 723500 6877500 38 -710.3381 724000 6877500 39 -709.2635 724500 6877500 40 -706.6406 725000 6877500 41 -703.2791 725500 6877500 42 -699.7122 726000 6877500 43 -696.0967 726500 6877500 44 -692.1542 727000 6877500 45 -687.6006 727500 6877500 46 -682.2651 728000 6877500 47 -676.1408 728500 6877500 48 -669.4639 729000 6877500 49 -662.6725 729500 6877500 50 -656.2119 730000 6877500 51 -650.4438 730500 6877500 52 -645.3084 731000 6877500 53 -640.8384 731500 6877500 54 -637.0954 732000 6877500 55 -633.8942 732500 6877500 56 -630.8877 733000 6877500 57 -627.6072 733500 6877500 58 -623.1555 734000 6877500 59 -616.1062 734500 6877500 60 -605.087 735000 6877500 61 -588.3284 735500 6877500 62 -564.4108 736000 6877500 63 -534.7401 736500 6877500 64 -503.1877 737000 6877500 65 -474.1626 737500 6877500 66 -453.8426 738000 6877500 67 -445.7985 738500 6877500 68 -448.0416 739000 6877500 69 -456.3322 739500 6877500 70 -467.7047 740000 6877500 71 -480.5765 740500 6877500 72 -494.1284 741000 6877500 73 -507.9801 741500 6877500 74 -521.9165 742000 6877500 75 -535.732 742500 6877500 76 -549.1868 743000 6877500 77 -562.0978 743500 6877500 78 -574.603 744000 6877500 79 -586.6855 744500 6877500 80 -597.8418 745000 6877500 81 -607.0689 745500 6877500 82 -613.9921 746000 6877500 83 -619.1458 746500 6877500 84 -623.0823 747000 6877500 85 -625.9416 705000 6878000 1 -760.041 705500 6878000 2 -757.1769 706000 6878000 3 -752.4149 706500 6878000 4 -746.4387 707000 6878000 5 -740.142 707500 6878000 6 -734.4524 708000 6878000 7 -729.8929 708500 6878000 8 -726.0051 709000 6878000 9 -722.4659 709500 6878000 10 -719.3293 710000 6878000 11 -716.9059 710500 6878000 12 -715.5135 711000 6878000 13 -715.3697 711500 6878000 14 -716.6854 712000 6878000 15 -719.4546 712500 6878000 16 -723.062 713000 6878000 17 -726.452 713500 6878000 18 -728.6019 714000 6878000 19 -729.6035 714500 6878000 20 -729.9921 715000 6878000 21 -730.0408 715500 6878000 22 -729.4699 716000 6878000 23 -727.8317 716500 6878000 24 -724.6755 717000 6878000 25 -719.6916 717500 6878000 26 -712.8054 718000 6878000 27 -704.3815 718500 6878000 28 -695.1368 719000 6878000 29 -686.0613 719500 6878000 30 -678.394 720000 6878000 31 -673.579 720500 6878000 32 -673.1002 721000 6878000 33 -677.3593 721500 6878000 34 -684.8431 722000 6878000 35 -693.4105 722500 6878000 36 -701.125 723000 6878000 37 -706.1245 723500 6878000 38 -707.9726 724000 6878000 39 -707.3817 724500 6878000 40 -705.2598 725000 6878000 41 -702.3537 725500 6878000 42 -699.2135 726000 6878000 43 -695.96 726500 6878000 44 -692.1534 727000 6878000 45 -687.4113 727500 6878000 46 -681.5157 728000 6878000 47 -674.4683 728500 6878000 48 -666.5821 729000 6878000 49 -658.46 729500 6878000 50 -650.7595 730000 6878000 51 -644.1451 730500 6878000 52 -638.8831 731000 6878000 53 -634.9198 731500 6878000 54 -632.1579 732000 6878000 55 -630.2053 732500 6878000 56 -628.4969 733000 6878000 57 -626.3477 733500 6878000 58 -622.6594 734000 6878000 59 -615.777 734500 6878000 60 -604.196 735000 6878000 61 -586.168 735500 6878000 62 -560.4387 736000 6878000 63 -528.4104 736500 6878000 64 -494.2142 737000 6878000 65 -462.5975 737500 6878000 66 -439.6889 738000 6878000 67 -428.7493 738500 6878000 68 -428.4554 739000 6878000 69 -434.7803 739500 6878000 70 -444.924 740000 6878000 71 -457.453 740500 6878000 72 -471.5779 741000 6878000 73 -486.607 741500 6878000 74 -501.7966 742000 6878000 75 -516.6805 742500 6878000 76 -531.0463 743000 6878000 77 -544.8112 743500 6878000 78 -558.0459 744000 6878000 79 -570.6968 744500 6878000 80 -582.3646 745000 6878000 81 -592.5761 745500 6878000 82 -601.207 746000 6878000 83 -608.5021 746500 6878000 84 -614.637 747000 6878000 85 -619.4861 705000 6878500 1 -760.5768 705500 6878500 2 -758.8587 706000 6878500 3 -755.1093 706500 6878500 4 -749.9515 707000 6878500 5 -744.0341 707500 6878500 6 -737.9712 708000 6878500 7 -732.141 708500 6878500 8 -726.481 709000 6878500 9 -720.9931 709500 6878500 10 -715.9099 710000 6878500 11 -711.6487 710500 6878500 12 -708.6263 711000 6878500 13 -707.1386 711500 6878500 14 -707.4592 712000 6878500 15 -709.6127 712500 6878500 16 -712.9656 713000 6878500 17 -716.4823 713500 6878500 18 -719.1119 714000 6878500 19 -720.8196 714500 6878500 20 -722.1312 715000 6878500 21 -723.3513 715500 6878500 22 -724.0886 716000 6878500 23 -723.6639 716500 6878500 24 -721.519 717000 6878500 25 -717.352 717500 6878500 26 -711.1655 718000 6878500 27 -703.3713 718500 6878500 28 -694.6794 719000 6878500 29 -686.0171 719500 6878500 30 -678.6302 720000 6878500 31 -673.8748 720500 6878500 32 -672.9816 721000 6878500 33 -676.3008 721500 6878500 34 -682.6455 722000 6878500 35 -690.1566 722500 6878500 36 -697.0905 723000 6878500 37 -701.9637 723500 6878500 38 -704.272 724000 6878500 39 -704.4511 724500 6878500 40 -703.1288 725000 6878500 41 -700.916 725500 6878500 42 -698.3781 726000 6878500 43 -695.6109 726500 6878500 44 -692.0063 727000 6878500 45 -687.0795 727500 6878500 46 -680.5488 728000 6878500 47 -672.4043 728500 6878500 48 -663.0313 729000 6878500 49 -653.2149 729500 6878500 50 -643.8853 730000 6878500 51 -636.1051 730500 6878500 52 -630.6786 731000 6878500 53 -627.4674 731500 6878500 54 -626.0204 732000 6878500 55 -625.6105 732500 6878500 56 -625.384 733000 6878500 57 -624.3856 733500 6878500 58 -621.3411 734000 6878500 59 -614.5067 734500 6878500 60 -602.4471 735000 6878500 61 -583.6019 735500 6878500 62 -557.1207 736000 6878500 63 -524.5132 736500 6878500 64 -489.781 737000 6878500 65 -457.5672 737500 6878500 66 -433.3827 738000 6878500 67 -419.7578 738500 6878500 68 -415.9376 739000 6878500 69 -418.9182 739500 6878500 70 -426.4709 740000 6878500 71 -437.5109 740500 6878500 72 -451.3513 741000 6878500 73 -466.8513 741500 6878500 74 -482.5388 742000 6878500 75 -497.6595 742500 6878500 76 -512.1376 743000 6878500 77 -526.1197 743500 6878500 78 -539.6324 744000 6878500 79 -552.4822 744500 6878500 80 -564.3381 745000 6878500 81 -575.3722 745500 6878500 82 -585.9477 746000 6878500 83 -595.9518 746500 6878500 84 -604.9396 747000 6878500 85 -612.3754 705000 6879000 1 -761.5499 705500 6879000 2 -760.9766 706000 6879000 3 -758.2407 706500 6879000 4 -753.922 707000 6879000 5 -748.4412 707500 6879000 6 -742.0613 708000 6879000 7 -735.0132 708500 6879000 8 -727.5567 709000 6879000 9 -719.9836 709500 6879000 10 -712.6841 710000 6879000 11 -706.1659 710500 6879000 12 -700.9546 711000 6879000 13 -697.496 711500 6879000 14 -696.225 712000 6879000 15 -697.3132 712500 6879000 16 -700.1954 713000 6879000 17 -703.8947 713500 6879000 18 -707.3129 714000 6879000 19 -710.2087 714500 6879000 20 -712.9412 715000 6879000 21 -715.7787 715500 6879000 22 -718.1891 716000 6879000 23 -719.2794 716500 6879000 24 -718.412 717000 6879000 25 -715.3047 717500 6879000 26 -710.0281 718000 6879000 27 -703.0548 718500 6879000 28 -695.1044 719000 6879000 29 -687.0052 719500 6879000 30 -679.9652 720000 6879000 31 -675.238 720500 6879000 32 -673.7706 721000 6879000 33 -675.7753 721500 6879000 34 -680.4089 722000 6879000 35 -686.2953 722500 6879000 36 -692.0648 723000 6879000 37 -696.5989 723500 6879000 38 -699.4442 724000 6879000 39 -700.6578 724500 6879000 40 -700.4513 725000 6879000 41 -699.1854 725500 6879000 42 -697.4225 726000 6879000 43 -695.2432 726500 6879000 44 -691.8856 727000 6879000 45 -686.7808 727500 6879000 46 -679.5692 728000 6879000 47 -670.1856 728500 6879000 48 -659.0745 729000 6879000 49 -647.2323 729500 6879000 50 -635.9009 730000 6879000 51 -626.6733 730500 6879000 52 -620.9487 731000 6879000 53 -618.6165 731500 6879000 54 -618.6758 732000 6879000 55 -619.9717 732500 6879000 56 -621.3293 733000 6879000 57 -621.5306 733500 6879000 58 -619.1691 734000 6879000 59 -612.551 734500 6879000 60 -600.4167 735000 6879000 61 -581.4032 735500 6879000 62 -554.9519 736000 6879000 63 -522.7476 736500 6879000 64 -488.621 737000 6879000 65 -456.9023 737500 6879000 66 -432.2523 738000 6879000 67 -416.4697 738500 6879000 68 -409.198 739000 6879000 69 -408.4697 739500 6879000 70 -412.7733 740000 6879000 71 -421.6115 740500 6879000 72 -434.5729 741000 6879000 73 -449.9644 741500 6879000 74 -465.41 742000 6879000 75 -479.8852 742500 6879000 76 -493.6051 743000 6879000 77 -507.109 743500 6879000 78 -520.4009 744000 6879000 79 -533.0636 744500 6879000 80 -544.7535 745000 6879000 81 -556.476 745500 6879000 82 -569.1563 746000 6879000 83 -582.2613 746500 6879000 84 -594.6284 747000 6879000 85 -605.1993 705000 6879500 1 -762.3618 705500 6879500 2 -762.8543 706000 6879500 3 -761.1191 706500 6879500 4 -757.6591 707000 6879500 5 -752.6754 707500 6879500 6 -746.0936 708000 6879500 7 -737.9733 708500 6879500 8 -728.8058 709000 6879500 9 -719.1136 709500 6879500 10 -709.4176 710000 6879500 11 -700.3195 710500 6879500 12 -692.4723 711000 6879500 13 -686.5213 711500 6879500 14 -683.1503 712000 6879500 15 -682.8158 712500 6879500 16 -685.1241 713000 6879500 17 -689.209 713500 6879500 18 -693.8584 714000 6879500 19 -698.5016 714500 6879500 20 -703.1719 715000 6879500 21 -707.963 715500 6879500 22 -712.1973 716000 6879500 23 -714.8994 716500 6879500 24 -715.4319 717000 6879500 25 -713.5472 717500 6879500 26 -709.344 718000 6879500 27 -703.3117 718500 6879500 28 -696.1599 719000 6879500 29 -688.5857 719500 6879500 30 -681.7359 720000 6879500 31 -676.7743 720500 6879500 32 -674.4009 721000 6879500 33 -674.7484 721500 6879500 34 -677.3419 722000 6879500 35 -681.3296 722500 6879500 36 -685.8251 723000 6879500 37 -690.124 723500 6879500 38 -693.7317 724000 6879500 39 -696.3135 724500 6879500 40 -697.6076 725000 6879500 41 -697.5865 725500 6879500 42 -696.7073 726000 6879500 43 -695.092 726500 6879500 44 -691.9156 727000 6879500 45 -686.593 727500 6879500 46 -678.6805 728000 6879500 47 -668.0107 728500 6879500 48 -655.0579 729000 6879500 49 -641.034 729500 6879500 50 -627.5222 730000 6879500 51 -616.6555 730500 6879500 52 -610.4714 731000 6879500 53 -608.9376 731500 6879500 54 -610.4306 732000 6879500 55 -613.3701 732500 6879500 56 -616.2754 733000 6879500 57 -617.6686 733500 6879500 58 -616.0528 734000 6879500 59 -609.8674 734500 6879500 60 -598.0556 735000 6879500 61 -579.3718 735500 6879500 62 -553.3794 736000 6879500 63 -521.9417 736500 6879500 64 -488.8735 737000 6879500 65 -458.1721 737500 6879500 66 -433.6796 738000 6879500 67 -416.5684 738500 6879500 68 -406.6667 739000 6879500 69 -402.7596 739500 6879500 70 -403.9833 740000 6879500 71 -410.4876 740500 6879500 72 -422.2553 741000 6879500 73 -437.0244 741500 6879500 74 -451.482 742000 6879500 75 -464.4263 742500 6879500 76 -476.489 743000 6879500 77 -488.742 743500 6879500 78 -501.2752 744000 6879500 79 -513.4662 744500 6879500 80 -524.8843 745000 6879500 81 -537.2178 745500 6879500 82 -551.9858 746000 6879500 83 -568.2842 746500 6879500 84 -584.2271 747000 6879500 85 -598.2368 705000 6880000 1 -762.3885 705500 6880000 2 -763.8607 706000 6880000 3 -763.1755 706500 6880000 4 -760.6533 707000 6880000 5 -756.2756 707500 6880000 6 -749.6547 708000 6880000 7 -740.6771 708500 6880000 8 -729.971 709000 6880000 9 -718.2197 709500 6880000 10 -706.0477 710000 6880000 11 -694.1479 710500 6880000 12 -683.3131 711000 6880000 13 -674.4216 711500 6880000 14 -668.4788 712000 6880000 15 -666.3671 712500 6880000 16 -668.0143 713000 6880000 17 -672.7328 713500 6880000 18 -679.1467 714000 6880000 19 -686.1899 714500 6880000 20 -693.3516 715000 6880000 21 -700.3036 715500 6880000 22 -706.2648 716000 6880000 23 -710.444 716500 6880000 24 -712.3468 717000 6880000 25 -711.77 717500 6880000 26 -708.7781 718000 6880000 27 -703.804 718500 6880000 28 -697.5076 719000 6880000 29 -690.4592 719500 6880000 30 -683.6362 720000 6880000 31 -678.0956 720500 6880000 32 -674.3875 721000 6880000 33 -672.6925 721500 6880000 34 -672.9321 722000 6880000 35 -674.8248 722500 6880000 36 -678.0327 723000 6880000 37 -682.2812 723500 6880000 38 -687.0125 724000 6880000 39 -691.4479 724500 6880000 40 -694.7194 725000 6880000 41 -696.2656 725500 6880000 42 -696.319 726000 6880000 43 -695.1216 726500 6880000 44 -691.9545 727000 6880000 45 -686.327 727500 6880000 46 -677.7264 728000 6880000 47 -665.8631 728500 6880000 48 -651.2101 729000 6880000 49 -635.1652 729500 6880000 50 -619.6498 730000 6880000 51 -607.2206 730500 6880000 52 -600.3792 731000 6880000 53 -599.2183 731500 6880000 54 -601.6873 732000 6880000 55 -605.9048 732500 6880000 56 -610.1387 733000 6880000 57 -612.6025 733500 6880000 58 -611.6779 734000 6880000 59 -605.9815 734500 6880000 60 -594.6484 735000 6880000 61 -576.5212 735500 6880000 62 -551.1855 736000 6880000 63 -520.6978 736500 6880000 64 -488.9692 737000 6880000 65 -459.7212 737500 6880000 66 -436.0545 738000 6880000 67 -418.6508 738500 6880000 68 -407.3656 739000 6880000 69 -401.444 739500 6880000 70 -400.4521 740000 6880000 71 -404.9449 740500 6880000 72 -415.2343 741000 6880000 73 -428.6561 741500 6880000 74 -441.252 742000 6880000 75 -451.8113 742500 6880000 76 -461.3659 743000 6880000 77 -471.5599 743500 6880000 78 -482.7259 744000 6880000 79 -494.2441 744500 6880000 80 -505.6198 745000 6880000 81 -518.7529 745500 6880000 82 -535.4904 746000 6880000 83 -554.6666 746500 6880000 84 -573.8719 747000 6880000 85 -591.1487 705000 6880500 1 -761.3199 705500 6880500 2 -763.6838 706000 6880500 3 -764.1432 706500 6880500 4 -762.7055 707000 6880500 5 -759.08 707500 6880500 6 -752.6312 708000 6880500 7 -743.034 708500 6880500 8 -730.9967 709000 6880500 9 -717.3118 709500 6880500 10 -702.6754 710000 6880500 11 -687.8508 710500 6880500 12 -673.7599 711000 6880500 13 -661.5281 711500 6880500 14 -652.5381 712000 6880500 15 -648.2498 712500 6880500 16 -649.1212 713000 6880500 17 -654.6789 713500 6880500 18 -663.3094 714000 6880500 19 -673.3064 714500 6880500 20 -683.4079 715000 6880500 21 -692.5941 715500 6880500 22 -700.0021 716000 6880500 23 -705.3732 716500 6880500 24 -708.5171 717000 6880500 25 -709.2734 717500 6880500 26 -707.5988 718000 6880500 27 -703.837 718500 6880500 28 -698.5795 719000 6880500 29 -692.2889 719500 6880500 30 -685.5167 720000 6880500 31 -679.0625 720500 6880500 32 -673.4901 721000 6880500 33 -669.2733 721500 6880500 34 -666.8216 722000 6880500 35 -666.4158 722500 6880500 36 -668.3046 723000 6880500 37 -672.7098 723500 6880500 38 -678.9608 724000 6880500 39 -685.7454 724500 6880500 40 -691.4182 725000 6880500 41 -694.7513 725500 6880500 42 -695.733 726000 6880500 43 -694.7959 726500 6880500 44 -691.4949 727000 6880500 45 -685.5119 727500 6880500 46 -676.3121 728000 6880500 47 -663.5251 728500 6880500 48 -647.595 729000 6880500 49 -630.0418 729500 6880500 50 -613.0961 730000 6880500 51 -599.5095 730500 6880500 52 -591.7947 731000 6880500 53 -590.1527 731500 6880500 54 -592.6798 732000 6880500 55 -597.4846 732500 6880500 56 -602.6616 733000 6880500 57 -605.971 733500 6880500 58 -605.5632 734000 6880500 59 -600.2353 734500 6880500 60 -589.3087 735000 6880500 61 -571.7335 735500 6880500 62 -547.1555 736000 6880500 63 -517.8243 736500 6880500 64 -487.777 737000 6880500 65 -460.4887 737500 6880500 66 -438.4001 738000 6880500 67 -421.7856 738500 6880500 68 -410.4738 739000 6880500 69 -403.9252 739500 6880500 70 -401.8702 740000 6880500 71 -404.8254 740500 6880500 72 -413.1637 741000 6880500 73 -424.1959 741500 6880500 74 -433.9519 742000 6880500 75 -441.424 742500 6880500 76 -447.9311 743000 6880500 77 -455.5122 743500 6880500 78 -464.8786 744000 6880500 79 -475.6342 744500 6880500 80 -487.4106 745000 6880500 81 -501.7649 745500 6880500 82 -520.3301 746000 6880500 83 -541.8723 746500 6880500 84 -563.7576 747000 6880500 85 -583.7993 705000 6881000 1 -759.331 705500 6881000 2 -762.4482 706000 6881000 3 -764.1096 706500 6881000 4 -763.9121 707000 6881000 5 -761.2294 707500 6881000 6 -755.1739 708000 6881000 7 -745.1561 708500 6881000 8 -731.9786 709000 6881000 9 -716.5279 709500 6881000 10 -699.5346 710000 6881000 11 -681.7821 710500 6881000 12 -664.2809 711000 6881000 13 -648.389 711500 6881000 14 -635.8911 712000 6881000 15 -628.9767 712500 6881000 16 -628.878 713000 6881000 17 -635.3493 713500 6881000 18 -646.4025 714000 6881000 19 -659.5925 714500 6881000 20 -672.7507 715000 6881000 21 -684.0258 715500 6881000 22 -692.4778 716000 6881000 23 -698.6898 716500 6881000 24 -702.9062 717000 6881000 25 -704.9814 717500 6881000 26 -704.6741 718000 6881000 27 -702.2535 718500 6881000 28 -698.3077 719000 6881000 29 -693.1795 719500 6881000 30 -686.7417 720000 6881000 31 -679.1617 720500 6881000 32 -671.2468 721000 6881000 33 -664.0803 721500 6881000 34 -658.6728 722000 6881000 35 -655.8232 722500 6881000 36 -656.3397 723000 6881000 37 -661.0389 723500 6881000 38 -669.1545 724000 6881000 39 -678.7153 724500 6881000 40 -687.0797 725000 6881000 41 -692.2364 725500 6881000 42 -694.0353 726000 6881000 43 -693.2578 726500 6881000 44 -689.826 727000 6881000 45 -683.6056 727500 6881000 46 -674.0482 728000 6881000 47 -660.7368 728500 6881000 48 -644.0626 729000 6881000 49 -625.5984 729500 6881000 50 -607.8323 730000 6881000 51 -593.6649 730500 6881000 52 -584.8541 731000 6881000 53 -581.7167 731500 6881000 54 -583.1042 732000 6881000 55 -587.623 732500 6881000 56 -593.3101 733000 6881000 57 -597.2539 733500 6881000 58 -597.2106 734000 6881000 59 -592.157 734500 6881000 60 -581.5881 735000 6881000 61 -564.5209 735500 6881000 62 -540.7529 736000 6881000 63 -512.7764 736500 6881000 64 -484.7613 737000 6881000 65 -459.8852 737500 6881000 66 -440.0061 738000 6881000 67 -425.0306 738500 6881000 68 -414.7124 739000 6881000 69 -408.5395 739500 6881000 70 -406.1693 740000 6881000 71 -407.788 740500 6881000 72 -413.5392 741000 6881000 73 -421.1189 741500 6881000 74 -427.2437 742000 6881000 75 -431.3094 742500 6881000 76 -434.8319 743000 6881000 77 -439.9743 743500 6881000 78 -447.7033 744000 6881000 79 -457.8586 744500 6881000 80 -470.3105 745000 6881000 81 -486.2432 745500 6881000 82 -506.6493 746000 6881000 83 -530.2421 746500 6881000 84 -554.3893 747000 6881000 85 -576.7837 705000 6881500 1 -756.7407 705500 6881500 2 -760.4445 706000 6881500 3 -763.2818 706500 6881500 4 -764.4255 707000 6881500 5 -762.8763 707500 6881500 6 -757.4296 708000 6881500 7 -747.1528 708500 6881500 8 -733.0215 709000 6881500 9 -716.0322 709500 6881500 10 -696.9118 710000 6881500 11 -676.3962 710500 6881500 12 -655.5209 711000 6881500 13 -635.8287 711500 6881500 14 -619.4907 712000 6881500 15 -609.5104 712500 6881500 16 -608.1066 713000 6881500 17 -615.2629 713500 6881500 18 -628.4831 714000 6881500 19 -644.5589 714500 6881500 20 -660.4119 715000 6881500 21 -673.312 715500 6881500 22 -682.3182 716000 6881500 23 -689.0167 716500 6881500 24 -694.1306 717000 6881500 25 -697.4729 717500 6881500 26 -698.519 718000 6881500 27 -697.4711 718500 6881500 28 -695.0107 719000 6881500 29 -691.348 719500 6881500 30 -685.5939 720000 6881500 31 -676.9538 720500 6881500 32 -666.5786 721000 6881500 33 -656.4119 721500 6881500 34 -648.1071 722000 6881500 35 -642.9008 722500 6881500 36 -642.0856 723000 6881500 37 -647.125 723500 6881500 38 -657.2268 724000 6881500 39 -669.6994 724500 6881500 40 -680.8014 725000 6881500 41 -687.7076 725500 6881500 42 -690.2141 726000 6881500 43 -689.6206 726500 6881500 44 -686.2664 727000 6881500 45 -680.1636 727500 6881500 46 -670.7052 728000 6881500 47 -657.355 728500 6881500 48 -640.373 729000 6881500 49 -621.2971 729500 6881500 50 -602.9894 730000 6881500 51 -588.4756 730500 6881500 52 -578.4504 731000 6881500 53 -572.9285 731500 6881500 54 -571.9803 732000 6881500 55 -575.3203 732500 6881500 56 -581.132 733000 6881500 57 -585.6273 733500 6881500 58 -585.9905 734000 6881500 59 -581.3649 734500 6881500 60 -571.3677 735000 6881500 61 -555.0173 735500 6881500 62 -532.2325 736000 6881500 63 -505.8076 736500 6881500 64 -480.0684 737000 6881500 65 -457.8165 737500 6881500 66 -440.4258 738000 6881500 67 -427.4426 738500 6881500 68 -418.5219 739000 6881500 69 -413.0685 739500 6881500 70 -410.5031 740000 6881500 71 -410.5996 740500 6881500 72 -413.2016 741000 6881500 73 -416.7055 741500 6881500 74 -418.9168 742000 6881500 75 -419.7699 742500 6881500 76 -420.879 743000 6881500 77 -424.4179 743500 6881500 78 -431.2716 744000 6881500 79 -441.3183 744500 6881500 80 -454.5896 745000 6881500 81 -472.1402 745500 6881500 82 -494.4376 746000 6881500 83 -520.0386 746500 6881500 84 -546.295 747000 6881500 85 -570.8075 705000 6882000 1 -753.8176 705500 6882000 2 -757.9052 706000 6882000 3 -761.7925 706500 6882000 4 -764.2573 707000 6882000 5 -763.9332 707500 6882000 6 -759.2688 708000 6882000 7 -748.9162 708500 6882000 8 -734.0881 709000 6882000 9 -715.9006 709500 6882000 10 -695.0469 710000 6882000 11 -672.1656 710500 6882000 12 -648.2627 711000 6882000 13 -624.9985 711500 6882000 14 -604.8696 712000 6882000 15 -591.585 712500 6882000 16 -588.3504 713000 6882000 17 -595.395 713500 6882000 18 -609.6873 714000 6882000 19 -627.4072 714500 6882000 20 -644.8592 715000 6882000 21 -658.5958 715500 6882000 22 -667.7191 716000 6882000 23 -674.673 716500 6882000 24 -680.5472 717000 6882000 25 -685.0602 717500 6882000 26 -687.3854 718000 6882000 27 -687.6356 718500 6882000 28 -686.6116 719000 6882000 29 -684.3735 719500 6882000 30 -679.4734 720000 6882000 31 -670.1614 720500 6882000 32 -657.8799 721000 6882000 33 -645.3784 721500 6882000 34 -634.8455 722000 6882000 35 -627.835 722500 6882000 36 -625.9907 723000 6882000 37 -631.2886 723500 6882000 38 -643.004 724000 6882000 39 -657.8654 724500 6882000 40 -671.2745 725000 6882000 41 -679.7535 725500 6882000 42 -683.0367 726000 6882000 43 -682.9102 726500 6882000 44 -680.0884 727000 6882000 45 -674.6832 727500 6882000 46 -665.9917 728000 6882000 47 -653.234 728500 6882000 48 -636.3268 729000 6882000 49 -616.6478 729500 6882000 50 -597.6699 730000 6882000 51 -582.7672 730500 6882000 52 -571.2324 731000 6882000 53 -562.5724 731500 6882000 54 -558.1577 732000 6882000 55 -559.3673 732500 6882000 56 -564.8618 733000 6882000 57 -569.9522 733500 6882000 58 -571.0491 734000 6882000 59 -567.3097 734500 6882000 60 -558.3677 735000 6882000 61 -543.2602 735500 6882000 62 -522.0224 736000 6882000 63 -497.5714 736500 6882000 64 -474.2762 737000 6882000 65 -454.571 737500 6882000 66 -439.4641 738000 6882000 67 -428.2187 738500 6882000 68 -420.4338 739000 6882000 69 -415.455 739500 6882000 70 -412.4983 740000 6882000 71 -410.9371 740500 6882000 72 -410.3402 741000 6882000 73 -409.8752 741500 6882000 74 -408.5581 742000 6882000 75 -406.8226 742500 6882000 76 -406.3613 743000 6882000 77 -409.282 743500 6882000 78 -416.1741 744000 6882000 79 -426.6725 744500 6882000 80 -440.8842 745000 6882000 81 -459.9451 745500 6882000 82 -484.1021 746000 6882000 83 -511.7028 746500 6882000 84 -539.9674 747000 6882000 85 -566.3795 705000 6882500 1 -750.8972 705500 6882500 2 -755.046 706000 6882500 3 -759.6527 706500 6882500 4 -763.1744 707000 6882500 5 -763.9497 707500 6882500 6 -760.1084 708000 6882500 7 -750.0377 708500 6882500 8 -734.9412 709000 6882500 9 -716.077 709500 6882500 10 -694.0956 710000 6882500 11 -669.5532 710500 6882500 12 -643.4188 711000 6882500 13 -617.4077 711500 6882500 14 -594.2255 712000 6882500 15 -577.8572 712500 6882500 16 -572.0383 713000 6882500 17 -577.2663 713500 6882500 18 -590.2914 714000 6882500 19 -607.1064 714500 6882500 20 -624.0402 715000 6882500 21 -637.5192 715500 6882500 22 -646.5934 716000 6882500 23 -653.8748 716500 6882500 24 -660.4614 717000 6882500 25 -665.9969 717500 6882500 26 -669.4908 718000 6882500 27 -670.8992 718500 6882500 28 -671.0073 719000 6882500 29 -669.6885 719500 6882500 30 -665.5189 720000 6882500 31 -656.2797 720500 6882500 32 -643.4412 721000 6882500 33 -630.124 721500 6882500 34 -618.7546 722000 6882500 35 -611.0631 722500 6882500 36 -608.8435 723000 6882500 37 -614.1802 723500 6882500 38 -626.4963 724000 6882500 39 -642.3743 724500 6882500 40 -657.0649 725000 6882500 41 -666.7961 725500 6882500 42 -671.2106 726000 6882500 43 -672.1077 726500 6882500 44 -670.4425 727000 6882500 45 -666.4555 727500 6882500 46 -659.3912 728000 6882500 47 -648.1202 728500 6882500 48 -631.9055 729000 6882500 49 -611.6468 729500 6882500 50 -591.525 730000 6882500 51 -575.7027 730500 6882500 52 -562.2385 731000 6882500 53 -549.892 731500 6882500 54 -541.173 732000 6882500 55 -539.2812 732500 6882500 56 -543.7863 733000 6882500 57 -549.4401 733500 6882500 58 -551.7211 734000 6882500 59 -549.4821 734500 6882500 60 -542.1993 735000 6882500 61 -529.0383 735500 6882500 62 -510.247 736000 6882500 63 -488.5095 736500 6882500 64 -467.868 737000 6882500 65 -450.4177 737500 6882500 66 -436.9802 738000 6882500 67 -426.7309 738500 6882500 68 -419.3004 739000 6882500 69 -414.1149 739500 6882500 70 -410.3957 740000 6882500 71 -407.293 740500 6882500 72 -404.1998 741000 6882500 73 -400.8016 741500 6882500 74 -397.1226 742000 6882500 75 -393.9282 742500 6882500 76 -392.9373 743000 6882500 77 -396.1102 743500 6882500 78 -403.7455 744000 6882500 79 -415.1555 744500 6882500 80 -430.4498 745000 6882500 81 -450.8657 745500 6882500 82 -476.6523 746000 6882500 83 -505.9837 746500 6882500 84 -535.9227 747000 6882500 85 -563.8408 705000 6883000 1 -748.2269 705500 6883000 2 -752.0195 706000 6883000 3 -756.8132 706500 6883000 4 -760.8876 707000 6883000 5 -762.4204 707500 6883000 6 -759.4203 708000 6883000 7 -750.076 708500 6883000 8 -735.3312 709000 6883000 9 -716.4781 709500 6883000 10 -694.1371 710000 6883000 11 -668.8607 710500 6883000 12 -641.6179 711000 6883000 13 -614.1481 711500 6883000 14 -589.1603 712000 6883000 15 -570.3984 712500 6883000 16 -561.2185 713000 6883000 17 -562.3948 713500 6883000 18 -571.0599 714000 6883000 19 -583.7123 714500 6883000 20 -597.3437 715000 6883000 21 -609.2983 715500 6883000 22 -618.4001 716000 6883000 23 -626.3181 716500 6883000 24 -633.6399 717000 6883000 25 -639.9791 717500 6883000 26 -644.4812 718000 6883000 27 -646.9275 718500 6883000 28 -647.7942 719000 6883000 29 -646.8188 719500 6883000 30 -642.9286 720000 6883000 31 -634.6096 720500 6883000 32 -622.8799 721000 6883000 33 -610.5847 721500 6883000 34 -599.9816 722000 6883000 35 -592.8131 722500 6883000 36 -590.9139 723000 6883000 37 -596.1654 723500 6883000 38 -608.0433 724000 6883000 39 -623.4698 724500 6883000 40 -638.1704 725000 6883000 41 -648.7029 725500 6883000 42 -654.452 726000 6883000 43 -656.7833 726500 6883000 44 -656.7098 727000 6883000 45 -654.7054 727500 6883000 46 -650.1166 728000 6883000 47 -641.4546 728500 6883000 48 -627.0112 729000 6883000 49 -606.6371 729500 6883000 50 -584.7785 730000 6883000 51 -566.8949 730500 6883000 52 -550.9344 731000 6883000 53 -535.1504 731500 6883000 54 -522.5598 732000 6883000 55 -517.3696 732500 6883000 56 -520.0092 733000 6883000 57 -525.5552 733500 6883000 58 -528.9507 734000 6883000 59 -528.4261 734500 6883000 60 -523.162 735000 6883000 61 -512.4063 735500 6883000 62 -496.7195 736000 6883000 63 -478.3553 736500 6883000 64 -460.5557 737000 6883000 65 -445.1224 737500 6883000 66 -432.7097 738000 6883000 67 -422.6751 738500 6883000 68 -414.7185 739000 6883000 69 -408.4989 739500 6883000 70 -403.4912 740000 6883000 71 -399.0294 740500 6883000 72 -394.5441 741000 6883000 73 -390.0132 741500 6883000 74 -385.8596 742000 6883000 75 -382.9073 742500 6883000 76 -382.6362 743000 6883000 77 -386.7564 743500 6883000 78 -395.4996 744000 6883000 79 -408.0875 744500 6883000 80 -424.6492 745000 6883000 81 -446.2787 745500 6883000 82 -473.1888 746000 6883000 83 -503.573 746500 6883000 84 -534.486 747000 6883000 85 -563.2668 705000 6883500 1 -745.5788 705500 6883500 2 -748.7629 706000 6883500 3 -753.4156 706500 6883500 4 -757.7266 707000 6883500 5 -759.7424 707500 6883500 6 -757.5208 708000 6883500 7 -749.2494 708500 6883500 8 -735.4127 709000 6883500 9 -717.2171 709500 6883500 10 -695.2214 710000 6883500 11 -669.9921 710500 6883500 12 -642.5218 711000 6883500 13 -614.5352 711500 6883500 14 -588.5579 712000 6883500 15 -567.9256 712500 6883500 16 -555.0851 713000 6883500 17 -550.8223 713500 6883500 18 -553.1364 714000 6883500 19 -559.5216 714500 6883500 20 -567.9339 715000 6883500 21 -577.1859 715500 6883500 22 -586.1394 716000 6883500 23 -594.7023 716500 6883500 24 -602.637 717000 6883500 25 -609.5062 717500 6883500 26 -614.7773 718000 6883500 27 -618.1196 718500 6883500 28 -619.5304 719000 6883500 29 -618.6032 719500 6883500 30 -614.8388 720000 6883500 31 -607.8239 720500 6883500 32 -598.2711 721000 6883500 33 -588.1979 721500 6883500 34 -579.3751 722000 6883500 35 -573.4031 722500 6883500 36 -572.0652 723000 6883500 37 -577.1234 723500 6883500 38 -588.1146 724000 6883500 39 -602.4362 724500 6883500 40 -616.4535 725000 6883500 41 -627.2534 725500 6883500 42 -634.0523 726000 6883500 43 -637.6454 726500 6883500 44 -638.9814 727000 6883500 45 -638.8806 727500 6883500 46 -636.9795 728000 6883500 47 -631.5529 728500 6883500 48 -619.8625 729000 6883500 49 -600.293 729500 6883500 50 -576.6959 730000 6883500 51 -555.7603 730500 6883500 52 -537.1025 731000 6883500 53 -519.0736 731500 6883500 54 -504.3282 732000 6883500 55 -496.6372 732500 6883500 56 -496.993 733000 6883500 57 -501.3486 733500 6883500 58 -505.0408 734000 6883500 59 -505.7683 734500 6883500 60 -502.393 735000 6883500 61 -494.1711 735500 6883500 62 -481.6583 736000 6883500 63 -466.7137 736500 6883500 64 -451.7379 737000 6883500 65 -438.1848 737500 6883500 66 -426.5264 738000 6883500 67 -416.2769 738500 6883500 68 -407.2697 739000 6883500 69 -399.4926 739500 6883500 70 -392.8262 740000 6883500 71 -387.1315 740500 6883500 72 -382.2781 741000 6883500 73 -378.3214 741500 6883500 74 -375.5117 742000 6883500 75 -374.3922 742500 6883500 76 -375.9901 743000 6883500 77 -381.5524 743500 6883500 78 -391.45 744000 6883500 79 -405.2239 744500 6883500 80 -423.081 745000 6883500 81 -445.8338 745500 6883500 82 -473.3744 746000 6883500 83 -504.1045 746500 6883500 84 -535.295 747000 6883500 85 -564.3358 705000 6884000 1 -742.6258 705500 6884000 2 -745.1173 706000 6884000 3 -749.523 706500 6884000 4 -753.9504 707000 6884000 5 -756.4178 707500 6884000 6 -754.9846 708000 6884000 7 -747.9492 708500 6884000 8 -735.442 709000 6884000 9 -718.4492 709500 6884000 10 -697.416 710000 6884000 11 -672.8412 710500 6884000 12 -645.7009 711000 6884000 13 -617.6673 711500 6884000 14 -591.0575 712000 6884000 15 -568.6021 712500 6884000 16 -552.0752 713000 6884000 17 -542.0935 713500 6884000 18 -537.588 714000 6884000 19 -537.1356 714500 6884000 20 -539.8257 715000 6884000 21 -545.6413 715500 6884000 22 -553.7772 716000 6884000 23 -562.4052 716500 6884000 24 -570.4796 717000 6884000 25 -577.5117 717500 6884000 26 -583.2745 718000 6884000 27 -587.3223 718500 6884000 28 -589.1309 719000 6884000 29 -588.1257 719500 6884000 30 -584.5363 720000 6884000 31 -578.9716 720500 6884000 32 -572.0184 721000 6884000 33 -564.6756 721500 6884000 34 -558.0524 722000 6884000 35 -553.479 722500 6884000 36 -552.6361 723000 6884000 37 -557.3221 723500 6884000 38 -567.2832 724000 6884000 39 -580.327 724500 6884000 40 -593.3705 725000 6884000 41 -603.9573 725500 6884000 42 -611.1884 726000 6884000 43 -615.4108 726500 6884000 44 -617.3715 727000 6884000 45 -618.2803 727500 6884000 46 -618.1899 728000 6884000 47 -615.3887 728500 6884000 48 -606.5177 729000 6884000 49 -588.7186 729500 6884000 50 -564.7187 730000 6884000 51 -541.3028 730500 6884000 52 -520.5244 731000 6884000 53 -501.6441 731500 6884000 54 -486.449 732000 6884000 55 -477.5453 732500 6884000 56 -475.7483 733000 6884000 57 -478.349 733500 6884000 58 -481.5944 734000 6884000 59 -482.9331 734500 6884000 60 -480.9848 735000 6884000 61 -475.0152 735500 6884000 62 -465.4102 736000 6884000 63 -453.5399 736500 6884000 64 -441.1341 737000 6884000 65 -429.3206 737500 6884000 66 -418.3619 738000 6884000 67 -407.7904 738500 6884000 68 -397.6247 739000 6884000 69 -388.2278 739500 6884000 70 -379.9572 740000 6884000 71 -373.3095 740500 6884000 72 -368.8257 741000 6884000 73 -366.6251 741500 6884000 74 -366.3768 742000 6884000 75 -368.1217 742500 6884000 76 -372.336 743000 6884000 77 -379.6996 743500 6884000 78 -390.7032 744000 6884000 79 -405.5162 744500 6884000 80 -424.5109 745000 6884000 81 -448.1903 745500 6884000 82 -476.0543 746000 6884000 83 -506.6763 746500 6884000 84 -537.6755 747000 6884000 85 -566.5563 705000 6884500 1 -739.462 705500 6884500 2 -741.2416 706000 6884500 3 -745.3466 706500 6884500 4 -749.7864 707000 6884500 5 -752.6071 707500 6884500 6 -751.9872 708000 6884500 7 -746.3015 708500 6884500 8 -735.4858 709000 6884500 9 -720.1323 709500 6884500 10 -700.5427 710000 6884500 11 -677.0423 710500 6884500 12 -650.5124 711000 6884500 13 -622.5856 711500 6884500 14 -595.3851 712000 6884500 15 -571.1583 712500 6884500 16 -551.1542 713000 6884500 17 -535.9771 713500 6884500 18 -525.3618 714000 6884500 19 -518.854 714500 6884500 20 -516.3569 715000 6884500 21 -518.5516 715500 6884500 22 -524.9734 716000 6884500 23 -532.7261 716500 6884500 24 -540.2496 717000 6884500 25 -547.0193 717500 6884500 26 -553.0192 718000 6884500 27 -557.6085 718500 6884500 28 -559.7038 719000 6884500 29 -558.5977 719500 6884500 30 -555.1777 720000 6884500 31 -551.0014 720500 6884500 32 -546.569 721000 6884500 33 -541.9149 721500 6884500 34 -537.4571 722000 6884500 35 -534.1899 722500 6884500 36 -533.6702 723000 6884500 37 -537.794 723500 6884500 38 -546.6205 724000 6884500 39 -558.2855 724500 6884500 40 -570.1309 725000 6884500 41 -580.0439 725500 6884500 42 -587.0372 726000 6884500 43 -591.1138 726500 6884500 44 -592.7194 727000 6884500 45 -593.364 727500 6884500 46 -593.5504 728000 6884500 47 -591.819 728500 6884500 48 -584.8584 729000 6884500 49 -569.348 729500 6884500 50 -546.7582 730000 6884500 51 -523.0576 730500 6884500 52 -501.8017 731000 6884500 53 -483.4253 731500 6884500 54 -468.8961 732000 6884500 55 -459.6968 732500 6884500 56 -456.3316 733000 6884500 57 -457.1799 733500 6884500 58 -459.5719 734000 6884500 59 -460.999 734500 6884500 60 -459.9264 735000 6884500 61 -455.6359 735500 6884500 62 -448.315 736000 6884500 63 -438.9193 736500 6884500 64 -428.6774 737000 6884500 65 -418.4046 737500 6884500 66 -408.1667 738000 6884500 67 -397.473 738500 6884500 68 -386.5042 739000 6884500 69 -375.978 739500 6884500 70 -366.6833 740000 6884500 71 -359.6477 740500 6884500 72 -355.9969 741000 6884500 73 -355.9627 741500 6884500 74 -358.6313 742000 6884500 75 -363.5217 742500 6884500 76 -370.5314 743000 6884500 77 -379.7835 743500 6884500 78 -391.8548 744000 6884500 79 -407.5553 744500 6884500 80 -427.4566 745000 6884500 81 -451.814 745500 6884500 82 -479.8243 746000 6884500 83 -510.1493 746500 6884500 84 -540.7039 747000 6884500 85 -569.1346 705000 6885000 1 -736.75 705500 6885000 2 -737.7686 706000 6885000 3 -741.4056 706500 6885000 4 -745.6242 707000 6885000 5 -748.5677 707500 6885000 6 -748.6537 708000 6885000 7 -744.3896 708500 6885000 8 -735.4976 709000 6885000 9 -722.0917 709500 6885000 10 -704.248 710000 6885000 11 -682.0337 710500 6885000 12 -656.1791 711000 6885000 13 -628.296 711500 6885000 14 -600.3989 712000 6885000 15 -574.4423 712500 6885000 16 -551.4346 713000 6885000 17 -532.0338 713500 6885000 18 -516.6209 714000 6885000 19 -505.4328 714500 6885000 20 -498.9926 715000 6885000 21 -497.8382 715500 6885000 22 -501.8819 716000 6885000 23 -508.0046 716500 6885000 24 -514.5073 717000 6885000 25 -520.8041 717500 6885000 26 -526.8948 718000 6885000 27 -531.8828 718500 6885000 28 -534.176 719000 6885000 29 -533.0125 719500 6885000 30 -529.7625 720000 6885000 31 -526.6519 720500 6885000 32 -524.2007 721000 6885000 33 -521.7437 721500 6885000 34 -519.1113 722000 6885000 35 -516.9501 722500 6885000 36 -516.6401 723000 6885000 37 -520.0192 723500 6885000 38 -527.4531 724000 6885000 39 -537.4373 724500 6885000 40 -547.7433 725000 6885000 41 -556.548 725500 6885000 42 -562.7657 726000 6885000 43 -566.0923 726500 6885000 44 -566.6832 727000 6885000 45 -566.1736 727500 6885000 46 -565.4462 728000 6885000 47 -563.4062 728500 6885000 48 -557.2353 729000 6885000 49 -543.9395 729500 6885000 50 -524.0768 730000 6885000 51 -502.1642 730500 6885000 52 -482.1742 731000 6885000 53 -465.3436 731500 6885000 54 -452.1756 732000 6885000 55 -443.3148 732500 6885000 56 -438.9978 733000 6885000 57 -438.3644 733500 6885000 58 -439.6425 734000 6885000 59 -440.6096 734500 6885000 60 -439.7767 735000 6885000 61 -436.4632 735500 6885000 62 -430.6853 736000 6885000 63 -423.0532 736500 6885000 64 -414.4268 737000 6885000 65 -405.3701 737500 6885000 66 -395.8835 738000 6885000 67 -385.5156 738500 6885000 68 -374.5002 739000 6885000 69 -363.8161 739500 6885000 70 -354.514 740000 6885000 71 -347.8412 740500 6885000 72 -345.2108 741000 6885000 73 -347.0492 741500 6885000 74 -352.188 742000 6885000 75 -359.8062 742500 6885000 76 -369.3204 743000 6885000 77 -380.3509 743500 6885000 78 -393.5062 744000 6885000 79 -410.0252 744500 6885000 80 -430.6781 745000 6885000 81 -455.5496 745500 6885000 82 -483.6545 746000 6885000 83 -513.6635 746500 6885000 84 -543.6641 747000 6885000 85 -571.4428 705000 6885500 1 -735.4846 705500 6885500 2 -735.5795 706000 6885500 3 -738.3807 706500 6885500 4 -741.9714 707000 6885500 5 -744.7004 707500 6885500 6 -745.2582 708000 6885500 7 -742.3503 708500 6885500 8 -735.4435 709000 6885500 9 -724.1215 709500 6885500 10 -708.153 710000 6885500 11 -687.2755 710500 6885500 12 -662.009 711000 6885500 13 -633.9695 711500 6885500 14 -605.1735 712000 6885500 15 -577.5129 712500 6885500 16 -552.0204 713000 6885500 17 -529.4688 713500 6885500 18 -510.637 714000 6885500 19 -496.1633 714500 6885500 20 -486.7464 715000 6885500 21 -482.9652 715500 6885500 22 -484.6699 716000 6885500 23 -489.1219 716500 6885500 24 -494.727 717000 6885500 25 -500.7542 717500 6885500 26 -506.97 718000 6885500 27 -512.2203 718500 6885500 28 -514.5985 719000 6885500 29 -513.438 719500 6885500 30 -510.3687 720000 6885500 31 -507.825 720500 6885500 32 -506.489 721000 6885500 33 -505.4358 721500 6885500 34 -504.1066 722000 6885500 35 -502.8096 722500 6885500 36 -502.6627 723000 6885500 37 -505.1522 723500 6885500 38 -510.7978 724000 6885500 39 -518.634 724500 6885500 40 -526.9919 725000 6885500 41 -534.3338 725500 6885500 42 -539.4111 726000 6885500 43 -541.5973 726500 6885500 44 -540.8807 727000 6885500 45 -538.9096 727500 6885500 46 -536.7547 728000 6885500 47 -533.7188 728500 6885500 48 -527.6259 729000 6885500 49 -516.1478 729500 6885500 50 -499.3969 730000 6885500 51 -480.4766 730500 6885500 52 -462.867 731000 6885500 53 -448.1415 731500 6885500 54 -436.6393 732000 6885500 55 -428.5198 732500 6885500 56 -423.8411 733000 6885500 57 -422.0446 733500 6885500 58 -422.0171 734000 6885500 59 -422.0215 734500 6885500 60 -420.8057 735000 6885500 61 -417.7732 735500 6885500 62 -412.8319 736000 6885500 63 -406.3217 736500 6885500 64 -398.7963 737000 6885500 65 -390.6524 737500 6885500 66 -381.8559 738000 6885500 67 -372.2402 738500 6885500 68 -362.0254 739000 6885500 69 -352.2257 739500 6885500 70 -343.9459 740000 6885500 71 -338.4041 740500 6885500 72 -336.8145 741000 6885500 73 -339.8274 741500 6885500 74 -346.4678 742000 6885500 75 -355.8694 742500 6885500 76 -367.2518 743000 6885500 77 -379.9246 743500 6885500 78 -394.3996 744000 6885500 79 -411.9492 744500 6885500 80 -433.4279 745000 6885500 81 -458.8001 745500 6885500 82 -487.0731 746000 6885500 83 -516.8861 746500 6885500 84 -546.3842 747000 6885500 85 -573.4711 705000 6886000 1 -736.1649 705500 6886000 2 -735.1297 706000 6886000 3 -736.6365 706500 6886000 4 -739.1196 707000 6886000 5 -741.2521 707500 6886000 6 -742.0082 708000 6886000 7 -740.2818 708500 6886000 8 -735.255 709000 6886000 9 -726.0593 709500 6886000 10 -711.978 710000 6886000 11 -692.3773 710500 6886000 12 -667.5424 711000 6886000 13 -639.1216 711500 6886000 14 -609.2452 712000 6886000 15 -579.9037 712500 6886000 16 -552.3727 713000 6886000 17 -527.5802 713500 6886000 18 -506.4646 714000 6886000 19 -489.8077 714500 6886000 20 -478.3286 715000 6886000 21 -472.5688 715500 6886000 22 -472.4162 716000 6886000 23 -475.5984 716500 6886000 24 -480.7473 717000 6886000 25 -486.9527 717500 6886000 26 -493.4964 718000 6886000 27 -498.902 718500 6886000 28 -501.2056 719000 6886000 29 -499.951 719500 6886000 30 -497.0719 720000 6886000 31 -494.6645 720500 6886000 32 -493.6252 721000 6886000 33 -493.1988 721500 6886000 34 -492.5935 722000 6886000 35 -491.7839 722500 6886000 36 -491.5957 723000 6886000 37 -493.0748 723500 6886000 38 -496.6704 724000 6886000 39 -502.1018 724500 6886000 40 -508.3379 725000 6886000 41 -514.0677 725500 6886000 42 -517.7839 726000 6886000 43 -518.5162 726500 6886000 44 -516.2347 727000 6886000 45 -512.6927 727500 6886000 46 -509.0416 728000 6886000 47 -504.8912 728500 6886000 48 -498.6169 729000 6886000 49 -488.5819 729500 6886000 50 -474.7273 730000 6886000 51 -459.0838 730500 6886000 52 -444.3562 731000 6886000 53 -431.9957 731500 6886000 54 -422.2855 732000 6886000 55 -415.1469 732500 6886000 56 -410.4821 733000 6886000 57 -407.8189 733500 6886000 58 -406.4117 734000 6886000 59 -405.1169 734500 6886000 60 -403.0558 735000 6886000 61 -399.7648 735500 6886000 62 -395.0938 736000 6886000 63 -389.1935 736500 6886000 64 -382.3963 737000 6886000 65 -374.9701 737500 6886000 66 -366.9384 738000 6886000 67 -358.3294 738500 6886000 68 -349.4767 739000 6886000 69 -341.2512 739500 6886000 70 -334.6243 740000 6886000 71 -330.5741 740500 6886000 72 -330.0185 741000 6886000 73 -333.5554 741500 6886000 74 -340.6667 742000 6886000 75 -350.7322 742500 6886000 76 -363.2261 743000 6886000 77 -377.5211 743500 6886000 78 -393.8253 744000 6886000 79 -412.9602 744500 6886000 80 -435.5713 745000 6886000 81 -461.5829 745500 6886000 82 -490.1629 746000 6886000 83 -519.9556 746500 6886000 84 -549.0944 747000 6886000 85 -575.5966 705000 6886500 1 -738.3612 705500 6886500 2 -736.1248 706000 6886500 3 -736.0288 706500 6886500 4 -737.0432 707000 6886500 5 -738.2496 707500 6886500 6 -738.9211 708000 6886500 7 -738.1298 708500 6886500 8 -734.7896 709000 6886500 9 -727.6173 709500 6886500 10 -715.3472 710000 6886500 11 -696.9086 710500 6886500 12 -672.3302 711000 6886500 13 -643.3579 711500 6886500 14 -612.3301 712000 6886500 15 -581.4721 712500 6886500 16 -552.3466 713000 6886500 17 -526.0587 713500 6886500 18 -503.5497 714000 6886500 19 -485.5647 714500 6886500 20 -472.7048 715000 6886500 21 -465.6376 715500 6886500 22 -464.2822 716000 6886500 23 -466.6781 716500 6886500 24 -471.5966 717000 6886500 25 -478.0535 717500 6886500 26 -484.9956 718000 6886500 27 -490.5515 718500 6886500 28 -492.681 719000 6886500 29 -491.2322 719500 6886500 30 -488.31 720000 6886500 31 -485.8559 720500 6886500 32 -484.7244 721000 6886500 33 -484.4755 721500 6886500 34 -484.0755 722000 6886500 35 -483.1257 722500 6886500 36 -482.257 723000 6886500 37 -482.3798 723500 6886500 38 -483.9893 724000 6886500 39 -487.3288 724500 6886500 40 -491.836 725000 6886500 41 -496.187 725500 6886500 42 -498.5072 726000 6886500 43 -497.5142 726500 6886500 44 -493.334 727000 6886500 45 -488.0398 727500 6886500 46 -483.0108 728000 6886500 47 -477.9758 728500 6886500 48 -471.6328 729000 6886500 49 -462.7802 729500 6886500 50 -451.3499 730000 6886500 51 -438.6856 730500 6886500 52 -426.8138 731000 6886500 53 -416.8764 731500 6886500 54 -409.0317 732000 6886500 55 -403.0351 732500 6886500 56 -398.5952 733000 6886500 57 -395.2355 733500 6886500 58 -392.4584 734000 6886500 59 -389.6982 734500 6886500 60 -386.5089 735000 6886500 61 -382.5985 735500 6886500 62 -377.7982 736000 6886500 63 -372.1335 736500 6886500 64 -365.7952 737000 6886500 65 -358.9837 737500 6886500 66 -351.7905 738000 6886500 67 -344.3882 738500 6886500 68 -337.153 739000 6886500 69 -330.8116 739500 6886500 70 -326.1192 740000 6886500 71 -323.7323 740500 6886500 72 -324.1309 741000 6886500 73 -327.8527 741500 6886500 74 -334.7974 742000 6886500 75 -344.7522 742500 6886500 76 -357.7194 743000 6886500 77 -373.6559 743500 6886500 78 -392.3474 744000 6886500 79 -413.7012 744500 6886500 80 -437.7821 745000 6886500 81 -464.5623 745500 6886500 82 -493.5353 746000 6886500 83 -523.3807 746500 6886500 84 -552.2056 747000 6886500 85 -578.1384 705000 6887000 1 -741.0441 705500 6887000 2 -737.6454 706000 6887000 3 -735.9132 706500 6887000 4 -735.3547 707000 6887000 5 -735.4784 707500 6887000 6 -735.857 708000 6887000 7 -735.7447 708500 6887000 8 -733.8151 709000 6887000 9 -728.4033 709500 6887000 10 -717.7239 710000 6887000 11 -700.327 710500 6887000 12 -675.9681 711000 6887000 13 -646.4716 711500 6887000 14 -614.4 712000 6887000 15 -582.2631 712500 6887000 16 -551.9442 713000 6887000 17 -524.7065 713500 6887000 18 -501.426 714000 6887000 19 -482.719 714500 6887000 20 -469.0421 715000 6887000 21 -460.9957 715500 6887000 22 -458.6922 716000 6887000 23 -460.3629 716500 6887000 24 -464.9228 717000 6887000 25 -471.3401 717500 6887000 26 -478.3196 718000 6887000 27 -483.86 718500 6887000 28 -485.9057 719000 6887000 29 -484.3904 719500 6887000 30 -481.4878 720000 6887000 31 -478.9699 720500 6887000 32 -477.7742 721000 6887000 33 -477.6367 721500 6887000 34 -477.1187 722000 6887000 35 -475.3954 722500 6887000 36 -473.0719 723000 6887000 37 -471.4279 723500 6887000 38 -471.2484 724000 6887000 39 -473.0879 724500 6887000 40 -476.5068 725000 6887000 41 -479.9287 725500 6887000 42 -481.04 726000 6887000 43 -478.301 726500 6887000 44 -472.1276 727000 6887000 45 -465.0894 727500 6887000 46 -458.8661 728000 6887000 47 -453.2337 728500 6887000 48 -446.9913 729000 6887000 49 -439.183 729500 6887000 50 -429.7381 730000 6887000 51 -419.6025 730500 6887000 52 -410.3047 731000 6887000 53 -402.6699 731500 6887000 54 -396.6462 732000 6887000 55 -391.789 732500 6887000 56 -387.6175 733000 6887000 57 -383.6115 733500 6887000 58 -379.4958 734000 6887000 59 -375.237 734500 6887000 60 -370.8268 735000 6887000 61 -366.16 735500 6887000 62 -361.0634 736000 6887000 63 -355.4667 736500 6887000 64 -349.4672 737000 6887000 65 -343.2252 737500 6887000 66 -336.9054 738000 6887000 67 -330.7425 738500 6887000 68 -325.138 739000 6887000 69 -320.6939 739500 6887000 70 -317.9464 740000 6887000 71 -317.2534 740500 6887000 72 -318.7521 741000 6887000 73 -322.8514 741500 6887000 74 -329.7847 742000 6887000 75 -339.7384 742500 6887000 76 -353.2586 743000 6887000 77 -370.861 743500 6887000 78 -392.0552 744000 6887000 79 -415.8036 744500 6887000 80 -441.4514 745000 6887000 81 -468.959 745500 6887000 82 -498.1582 746000 6887000 83 -527.7982 746500 6887000 84 -556.0009 747000 6887000 85 -581.0529 705000 6887500 1 -743.6907 705500 6887500 2 -739.1967 706000 6887500 3 -735.8917 706500 6887500 4 -733.7578 707000 6887500 5 -732.7177 707500 6887500 6 -732.6368 708000 6887500 7 -732.9546 708500 6887500 8 -732.1288 709000 6887500 9 -728.1373 709500 6887500 10 -718.7647 710000 6887500 11 -702.2817 710500 6887500 12 -678.2145 711000 6887500 13 -648.3673 711500 6887500 14 -615.465 712000 6887500 15 -582.3201 712500 6887500 16 -551.168 713000 6887500 17 -523.4376 713500 6887500 18 -499.9061 714000 6887500 19 -480.9931 714500 6887500 20 -466.9698 715000 6887500 21 -458.1826 715500 6887500 22 -454.9514 716000 6887500 23 -455.6797 716500 6887500 24 -459.4383 717000 6887500 25 -465.209 717500 6887500 26 -471.6452 718000 6887500 27 -476.8608 718500 6887500 28 -478.9431 719000 6887500 29 -477.6628 719500 6887500 30 -474.9828 720000 6887500 31 -472.6314 720500 6887500 32 -471.593 721000 6887500 33 -471.6563 721500 6887500 34 -470.9207 722000 6887500 35 -468.0855 722500 6887500 36 -463.8438 723000 6887500 37 -460.1235 723500 6887500 38 -458.3408 724000 6887500 39 -459.0609 724500 6887500 40 -461.7083 725000 6887500 41 -464.4195 725500 6887500 42 -464.5597 726000 6887500 43 -460.3991 726500 6887500 44 -452.6343 727000 6887500 45 -444.2138 727500 6887500 46 -437.0819 728000 6887500 47 -431.0478 728500 6887500 48 -424.9617 729000 6887500 49 -418.0201 729500 6887500 50 -410.1768 730000 6887500 51 -402.1401 730500 6887500 52 -395.063 731000 6887500 53 -389.4798 731500 6887500 54 -385.091 732000 6887500 55 -381.2153 732500 6887500 56 -377.2062 733000 6887500 57 -372.5189 733500 6887500 58 -367.1079 734000 6887500 59 -361.402 734500 6887500 60 -355.796 735000 6887500 61 -350.3779 735500 6887500 62 -344.9722 736000 6887500 63 -339.4136 736500 6887500 64 -333.7214 737000 6887500 65 -328.029 737500 6887500 66 -322.5636 738000 6887500 67 -317.5899 738500 6887500 68 -313.5029 739000 6887500 69 -310.8052 739500 6887500 70 -309.8747 740000 6887500 71 -310.8823 740500 6887500 72 -313.764 741000 6887500 73 -318.8602 741500 6887500 74 -326.6117 742000 6887500 75 -337.4609 742500 6887500 76 -352.182 743000 6887500 77 -371.5794 743500 6887500 78 -395.0441 744000 6887500 79 -420.9332 744500 6887500 80 -448.0607 745000 6887500 81 -476.1158 745500 6887500 82 -505.082 746000 6887500 83 -533.8389 746500 6887500 84 -560.6622 747000 6887500 85 -584.1107 705000 6888000 1 -746.0883 705500 6888000 2 -740.55 706000 6888000 3 -735.7146 706500 6888000 4 -731.9822 707000 6888000 5 -729.6849 707500 6888000 6 -729.0127 708000 6888000 7 -729.6115 708500 6888000 8 -729.7346 709000 6888000 9 -726.9998 709500 6888000 10 -718.8304 710000 6888000 11 -703.1713 710500 6888000 12 -679.4332 711000 6888000 13 -649.3457 711500 6888000 14 -615.7612 712000 6888000 15 -581.8063 712500 6888000 16 -550.0942 713000 6888000 17 -522.2242 713500 6888000 18 -498.8382 714000 6888000 19 -480.0982 714500 6888000 20 -466.0422 715000 6888000 21 -456.6905 715500 6888000 22 -452.4446 716000 6888000 23 -451.959 716500 6888000 24 -454.5109 717000 6888000 25 -459.1847 717500 6888000 26 -464.6987 718000 6888000 27 -469.3524 718500 6888000 28 -471.4741 719000 6888000 29 -470.5497 719500 6888000 30 -468.1783 720000 6888000 31 -466.168 720500 6888000 32 -465.4939 721000 6888000 33 -465.8682 721500 6888000 34 -465.1272 722000 6888000 35 -461.5335 722500 6888000 36 -455.7266 723000 6888000 37 -449.9863 723500 6888000 38 -446.4753 724000 6888000 39 -445.8073 724500 6888000 40 -447.2582 725000 6888000 41 -448.903 725500 6888000 42 -448.1571 726000 6888000 43 -443.2126 726500 6888000 44 -434.8177 727000 6888000 45 -425.7929 727500 6888000 46 -418.0911 728000 6888000 47 -411.6887 728500 6888000 48 -405.6299 729000 6888000 49 -399.3151 729500 6888000 50 -392.7402 730000 6888000 51 -386.4494 730500 6888000 52 -381.2397 731000 6888000 53 -377.3762 731500 6888000 54 -374.3326 732000 6888000 55 -371.1815 732500 6888000 56 -367.118 733000 6888000 57 -361.6748 733500 6888000 58 -355.039 734000 6888000 59 -348.0102 734500 6888000 60 -341.3261 735000 6888000 61 -335.2703 735500 6888000 62 -329.6559 736000 6888000 63 -324.2034 736500 6888000 64 -318.8452 737000 6888000 65 -313.6884 737500 6888000 66 -309.0169 738000 6888000 67 -305.1215 738500 6888000 68 -302.3783 739000 6888000 69 -301.2089 739500 6888000 70 -301.9075 740000 6888000 71 -304.5821 740500 6888000 72 -309.1879 741000 6888000 73 -316.0584 741500 6888000 74 -325.7049 742000 6888000 75 -338.6225 742500 6888000 76 -355.4893 743000 6888000 77 -376.9432 743500 6888000 78 -402.3654 744000 6888000 79 -429.9913 744500 6888000 80 -458.3849 745000 6888000 81 -486.7816 745500 6888000 82 -514.8857 746000 6888000 83 -541.8386 746500 6888000 84 -566.2738 747000 6888000 85 -587.1686 705000 6888500 1 -748.2779 705500 6888500 2 -741.6956 706000 6888500 3 -735.2982 706500 6888500 4 -729.8698 707000 6888500 5 -726.1572 707500 6888500 6 -724.7689 708000 6888500 7 -725.6313 708500 6888500 8 -726.7726 709000 6888500 9 -725.4185 709500 6888500 10 -718.6075 710000 6888500 11 -703.817 710500 6888500 12 -680.3386 711000 6888500 13 -649.933 711500 6888500 14 -615.6498 712000 6888500 15 -580.9597 712500 6888500 16 -548.8586 713000 6888500 17 -521.0992 713500 6888500 18 -498.1365 714000 6888500 19 -479.8169 714500 6888500 20 -465.8904 715000 6888500 21 -456.0758 715500 6888500 22 -450.6774 716000 6888500 23 -448.7443 716500 6888500 24 -449.8108 717000 6888500 25 -453.1724 717500 6888500 26 -457.7286 718000 6888500 27 -461.9401 718500 6888500 28 -464.2102 719000 6888500 29 -463.6853 719500 6888500 30 -461.5486 720000 6888500 31 -459.8427 720500 6888500 32 -459.5398 721000 6888500 33 -460.1271 721500 6888500 34 -459.5539 722000 6888500 35 -455.8935 722500 6888500 36 -449.3129 723000 6888500 37 -442.0215 723500 6888500 38 -436.5496 724000 6888500 39 -433.8268 724500 6888500 40 -433.2525 725000 6888500 41 -433.1681 725500 6888500 42 -431.4235 726000 6888500 43 -426.3518 726500 6888500 44 -418.3683 727000 6888500 45 -409.6821 727500 6888500 46 -401.7738 728000 6888500 47 -394.9568 728500 6888500 48 -388.714 729000 6888500 49 -382.7562 729500 6888500 50 -377.1463 730000 6888500 51 -372.298 730500 6888500 52 -368.6519 731000 6888500 53 -366.1964 731500 6888500 54 -364.2273 732000 6888500 55 -361.5877 732500 6888500 56 -357.2958 733000 6888500 57 -351.0629 733500 6888500 58 -343.3251 734000 6888500 59 -335.1631 734500 6888500 60 -327.5902 735000 6888500 61 -321.0782 735500 6888500 62 -315.4053 736000 6888500 63 -310.1571 736500 6888500 64 -305.1671 737000 6888500 65 -300.517 737500 6888500 66 -296.5487 738000 6888500 67 -293.5984 738500 6888500 68 -292.0273 739000 6888500 69 -292.1884 739500 6888500 70 -294.3502 740000 6888500 71 -298.651 740500 6888500 72 -305.1998 741000 6888500 73 -314.4171 741500 6888500 74 -326.7432 742000 6888500 75 -342.555 742500 6888500 76 -362.2552 743000 6888500 77 -386.0367 743500 6888500 78 -413.2481 744000 6888500 79 -442.3548 744500 6888500 80 -471.8541 745000 6888500 81 -500.4223 745500 6888500 82 -527.2288 746000 6888500 83 -551.5977 746500 6888500 84 -572.7675 747000 6888500 85 -590.2762 705000 6889000 1 -750.3484 705500 6889000 2 -742.7141 706000 6889000 3 -734.7048 706500 6889000 4 -727.4753 707000 6889000 5 -722.1926 707500 6889000 6 -719.9697 708000 6889000 7 -721.1226 708500 6889000 8 -723.4189 709000 6889000 9 -723.6509 709500 6889000 10 -718.4364 710000 6889000 11 -704.6424 710500 6889000 12 -681.3536 711000 6889000 13 -650.5051 711500 6889000 14 -615.4698 712000 6889000 15 -580.0803 712500 6889000 16 -547.7042 713000 6889000 17 -520.2193 713500 6889000 18 -497.8375 714000 6889000 19 -480.0486 714500 6889000 20 -466.296 715000 6889000 21 -456.021 715500 6889000 22 -449.3266 716000 6889000 23 -445.7519 716500 6889000 24 -445.1521 717000 6889000 25 -447.1492 717500 6889000 26 -450.9196 718000 6889000 27 -455.0296 718500 6889000 28 -457.7551 719000 6889000 29 -457.8226 719500 6889000 30 -455.9474 720000 6889000 31 -454.2974 720500 6889000 32 -454.0257 721000 6889000 33 -454.5417 721500 6889000 34 -454.0066 722000 6889000 35 -450.5639 722500 6889000 36 -443.6963 723000 6889000 37 -435.1855 723500 6889000 38 -427.7508 724000 6889000 39 -422.622 724500 6889000 40 -419.5938 725000 6889000 41 -417.5167 725500 6889000 42 -414.7374 726000 6889000 43 -409.863 726500 6889000 44 -402.8635 727000 6889000 45 -395.0352 727500 6889000 46 -387.265 728000 6889000 47 -380.0712 728500 6889000 48 -373.5359 729000 6889000 49 -367.7372 729500 6889000 50 -362.8299 730000 6889000 51 -359.1242 730500 6889000 52 -356.7658 731000 6889000 53 -355.4793 731500 6889000 54 -354.4056 732000 6889000 55 -352.1968 732500 6889000 56 -347.7126 733000 6889000 57 -340.8312 733500 6889000 58 -332.2451 734000 6889000 59 -323.2512 734500 6889000 60 -315.0521 735000 6889000 61 -308.2857 735500 6889000 62 -302.6804 736000 6889000 63 -297.6907 736500 6889000 64 -293.0635 737000 6889000 65 -288.8623 737500 6889000 66 -285.4915 738000 6889000 67 -283.3548 738500 6889000 68 -282.8117 739000 6889000 69 -284.1377 739500 6889000 70 -287.608 740000 6889000 71 -293.469 740500 6889000 72 -302.0173 741000 6889000 73 -313.8056 741500 6889000 74 -329.1331 742000 6889000 75 -348.1608 742500 6889000 76 -370.9317 743000 6889000 77 -397.1601 743500 6889000 78 -426.1493 744000 6889000 79 -456.6643 744500 6889000 80 -487.2024 745000 6889000 81 -515.876 745500 6889000 82 -541.1388 746000 6889000 83 -562.4945 746500 6889000 84 -579.8632 747000 6889000 85 -593.42 705000 6889500 1 -752.2693 705500 6889500 2 -743.6382 706000 6889500 3 -734.0938 706500 6889500 4 -725.1235 707000 6889500 5 -718.2728 707500 6889500 6 -715.1511 708000 6889500 7 -716.5156 708500 6889500 8 -719.8807 709000 6889500 9 -721.6024 709500 6889500 10 -717.9704 710000 6889500 11 -705.2858 710500 6889500 12 -682.269 711000 6889500 13 -651.123 711500 6889500 14 -615.554 712000 6889500 15 -579.6844 712500 6889500 16 -547.1696 713000 6889500 17 -520.0032 713500 6889500 18 -498.1669 714000 6889500 19 -480.8217 714500 6889500 20 -467.1342 715000 6889500 21 -456.2962 715500 6889500 22 -448.1978 716000 6889500 23 -442.8184 716500 6889500 24 -440.4119 717000 6889500 25 -441.0378 717500 6889500 26 -444.2241 718000 6889500 27 -448.5352 718500 6889500 28 -451.9126 719000 6889500 29 -452.6506 719500 6889500 30 -451.1299 720000 6889500 31 -449.3323 720500 6889500 32 -448.5977 721000 6889500 33 -448.5439 721500 6889500 34 -447.6885 722000 6889500 35 -444.3111 722500 6889500 36 -437.2593 723000 6889500 37 -427.8023 723500 6889500 38 -418.6601 724000 6889500 39 -411.3133 724500 6889500 40 -405.9919 725000 6889500 41 -402.1107 725500 6889500 42 -398.4858 726000 6889500 43 -393.9124 726500 6889500 44 -387.9099 727000 6889500 45 -380.9974 727500 6889500 46 -373.5076 728000 6889500 47 -366.0807 728500 6889500 48 -359.2974 729000 6889500 49 -353.5696 729500 6889500 50 -349.162 730000 6889500 51 -346.3302 730500 6889500 52 -344.9928 731000 6889500 53 -344.6576 731500 6889500 54 -344.3383 732000 6889500 55 -342.5876 732500 6889500 56 -338.1617 733000 6889500 57 -331.0547 733500 6889500 58 -322.1259 734000 6889500 59 -312.794 734500 6889500 60 -304.327 735000 6889500 61 -297.4832 735500 6889500 62 -291.987 736000 6889500 63 -287.2276 736500 6889500 64 -282.9108 737000 6889500 65 -279.0934 737500 6889500 66 -276.232 738000 6889500 67 -274.7988 738500 6889500 68 -275.1525 739000 6889500 69 -277.4848 739500 6889500 70 -282.0947 740000 6889500 71 -289.3633 740500 6889500 72 -299.7797 741000 6889500 73 -314.0187 741500 6889500 74 -332.2193 742000 6889500 75 -354.3113 742500 6889500 76 -380.0095 743000 6889500 77 -408.629 743500 6889500 78 -439.4239 744000 6889500 79 -471.4014 744500 6889500 80 -503.0127 745000 6889500 81 -531.8148 745500 6889500 82 -555.5255 746000 6889500 83 -573.7618 746500 6889500 84 -587.163 747000 6889500 85 -596.5323 705000 6890000 1 -753.7894 705500 6890000 2 -744.3882 706000 6890000 3 -733.7056 706500 6890000 4 -723.4438 707000 6890000 5 -715.3792 707500 6890000 6 -711.3977 708000 6890000 7 -712.6119 708500 6890000 8 -716.4191 709000 6890000 9 -718.9236 709500 6890000 10 -716.3054 710000 6890000 11 -704.6556 710500 6890000 12 -682.3342 711000 6890000 13 -651.6267 711500 6890000 14 -616.3267 712000 6890000 15 -580.6121 712500 6890000 16 -548.1965 713000 6890000 17 -521.2042 713500 6890000 18 -499.5775 714000 6890000 19 -482.3196 714500 6890000 20 -468.412 715000 6890000 21 -456.8488 715500 6890000 22 -447.2787 716000 6890000 23 -439.9577 716500 6890000 24 -435.5843 717000 6890000 25 -434.7486 717500 6890000 26 -437.3556 718000 6890000 27 -441.8504 718500 6890000 28 -445.6547 719000 6890000 29 -446.8011 719500 6890000 30 -445.5055 720000 6890000 31 -443.509 720500 6890000 32 -442.0571 721000 6890000 33 -441.0279 721500 6890000 34 -439.3162 722000 6890000 35 -435.5248 722500 6890000 36 -428.3342 723000 6890000 37 -418.444 723500 6890000 38 -408.3265 724000 6890000 39 -399.4756 724500 6890000 40 -392.4774 725000 6890000 41 -387.2655 725500 6890000 42 -383.0136 726000 6890000 43 -378.5879 726500 6890000 44 -373.2271 727000 6890000 45 -366.9512 727500 6890000 46 -359.7805 728000 6890000 47 -352.2925 728500 6890000 48 -345.3727 729000 6890000 49 -339.672 729500 6890000 50 -335.5938 730000 6890000 51 -333.4167 730500 6890000 52 -332.8964 731000 6890000 53 -333.3399 731500 6890000 54 -333.6587 732000 6890000 55 -332.4493 732500 6890000 56 -328.4958 733000 6890000 57 -321.7969 733500 6890000 58 -313.2491 734000 6890000 59 -304.2296 734500 6890000 60 -295.9641 735000 6890000 61 -289.2118 735500 6890000 62 -283.8101 736000 6890000 63 -279.2176 736500 6890000 64 -275.1754 737000 6890000 65 -271.7461 737500 6890000 66 -269.3933 738000 6890000 67 -268.5978 738500 6890000 68 -269.7082 739000 6890000 69 -272.8557 739500 6890000 70 -278.3825 740000 6890000 71 -286.7969 740500 6890000 72 -298.7404 741000 6890000 73 -314.9592 741500 6890000 74 -335.4187 742000 6890000 75 -359.8727 742500 6890000 76 -387.8873 743000 6890000 77 -418.6184 743500 6890000 78 -451.2503 744000 6890000 79 -484.8153 744500 6890000 80 -517.5484 745000 6890000 81 -546.5396 745500 6890000 82 -568.9756 746000 6890000 83 -584.4149 746500 6890000 84 -594.1793 747000 6890000 85 -599.5886 705000 6890500 1 -754.7719 705500 6890500 2 -744.9421 706000 6890500 3 -733.7266 706500 6890500 4 -722.8536 707000 6890500 5 -714.1437 707500 6890500 6 -709.4523 708000 6890500 7 -710.016 708500 6890500 8 -713.365 709000 6890500 9 -715.6508 709500 6890500 10 -713.205 710000 6890500 11 -702.3481 710500 6890500 12 -681.2932 711000 6890500 13 -652.025 711500 6890500 14 -618.0133 712000 6890500 15 -583.1998 712500 6890500 16 -551.1606 713000 6890500 17 -524.1106 713500 6890500 18 -502.2558 714000 6890500 19 -484.7001 714500 6890500 20 -470.3142 715000 6890500 21 -457.9254 715500 6890500 22 -446.9044 716000 6890500 23 -437.5255 716500 6890500 24 -430.9752 717000 6890500 25 -428.4088 717500 6890500 26 -430.0704 718000 6890500 27 -434.3319 718500 6890500 28 -438.0962 719000 6890500 29 -439.2614 719500 6890500 30 -438.0609 720000 6890500 31 -435.9005 720500 6890500 32 -433.7827 721000 6890500 33 -431.6966 721500 6890500 34 -428.8959 722000 6890500 35 -424.2755 722500 6890500 36 -416.9413 723000 6890500 37 -407.1852 723500 6890500 38 -396.9248 724000 6890500 39 -387.4608 724500 6890500 40 -379.5476 725000 6890500 41 -373.4807 725500 6890500 42 -368.7365 726000 6890500 43 -364.2487 726500 6890500 44 -359.1184 727000 6890500 45 -353.0645 727500 6890500 46 -346.0512 728000 6890500 47 -338.5478 728500 6890500 48 -331.503 729000 6890500 49 -325.7215 729500 6890500 50 -321.8057 730000 6890500 51 -320.1833 730500 6890500 52 -320.4684 731000 6890500 53 -321.726 731500 6890500 54 -322.747 732000 6890500 55 -322.2015 732500 6890500 56 -319.0351 733000 6890500 57 -313.2156 733500 6890500 58 -305.5614 734000 6890500 59 -297.311 734500 6890500 60 -289.6324 735000 6890500 61 -283.1788 735500 6890500 62 -277.9374 736000 6890500 63 -273.5515 736500 6890500 64 -269.8687 737000 6890500 65 -266.9749 737500 6890500 66 -265.2758 738000 6890500 67 -265.1317 738500 6890500 68 -266.8704 739000 6890500 69 -270.6491 739500 6890500 70 -276.8549 740000 6890500 71 -286.118 740500 6890500 72 -299.1672 741000 6890500 73 -316.7218 741500 6890500 74 -338.5413 742000 6890500 75 -364.2869 742500 6890500 76 -393.6604 743000 6890500 77 -426.0407 743500 6890500 78 -460.5116 744000 6890500 79 -495.7682 744500 6890500 80 -529.6096 745000 6890500 81 -558.7988 745500 6890500 82 -580.3533 746000 6890500 83 -593.6326 746500 6890500 84 -600.4879 747000 6890500 85 -602.5652 705000 6891000 1 -755.5894 705500 6891000 2 -745.5767 706000 6891000 3 -734.2714 706500 6891000 4 -723.2495 707000 6891000 5 -714.2563 707500 6891000 6 -709.015 708000 6891000 7 -708.6474 708500 6891000 8 -710.9717 709000 6891000 9 -712.4388 709500 6891000 10 -709.6861 710000 6891000 11 -699.4402 710500 6891000 12 -680.0021 711000 6891000 13 -652.8139 711500 6891000 14 -620.7148 712000 6891000 15 -587.1854 712500 6891000 16 -555.6332 713000 6891000 17 -528.3522 713500 6891000 18 -506.0068 714000 6891000 19 -488.0027 714500 6891000 20 -473.136 715000 6891000 21 -459.9958 715500 6891000 22 -447.616 716000 6891000 23 -436.1425 716500 6891000 24 -427.1773 717000 6891000 25 -422.4582 717500 6891000 26 -422.5092 718000 6891000 27 -425.8073 718500 6891000 28 -429.0792 719000 6891000 29 -430.0667 719500 6891000 30 -428.9342 720000 6891000 31 -426.7077 720500 6891000 32 -424.0827 721000 6891000 33 -421.0709 721500 6891000 34 -417.199 722000 6891000 35 -411.7652 722500 6891000 36 -404.2996 723000 6891000 37 -395.0398 723500 6891000 38 -385.2402 724000 6891000 39 -375.89 724500 6891000 40 -367.7158 725000 6891000 41 -361.1575 725500 6891000 42 -355.943 726000 6891000 43 -351.1771 726500 6891000 44 -345.9758 727000 6891000 45 -339.9179 727500 6891000 46 -332.8726 728000 6891000 47 -325.2382 728500 6891000 48 -317.9242 729000 6891000 49 -311.8586 729500 6891000 50 -307.913 730000 6891000 51 -306.8261 730500 6891000 52 -308.052 731000 6891000 53 -310.318 731500 6891000 54 -312.2547 732000 6891000 55 -312.5624 732500 6891000 56 -310.3271 733000 6891000 57 -305.5406 733500 6891000 58 -298.9389 734000 6891000 59 -291.6378 734500 6891000 60 -284.7156 735000 6891000 61 -278.7609 735500 6891000 62 -273.8467 736000 6891000 63 -269.8215 736500 6891000 64 -266.6806 737000 6891000 65 -264.5481 737500 6891000 66 -263.7373 738000 6891000 67 -264.3513 738500 6891000 68 -266.6655 739000 6891000 69 -270.9506 739500 6891000 70 -277.6745 740000 6891000 71 -287.585 740500 6891000 72 -301.4241 741000 6891000 73 -319.7881 741500 6891000 74 -342.1888 742000 6891000 75 -368.2501 742500 6891000 76 -398.0116 743000 6891000 77 -431.442 743500 6891000 78 -467.5831 744000 6891000 79 -504.476 744500 6891000 80 -539.3437 745000 6891000 81 -568.6085 745500 6891000 82 -589.4614 746000 6891000 83 -601.1666 746500 6891000 84 -605.806 747000 6891000 85 -605.2297 705000 6891500 1 -756.7645 705500 6891500 2 -746.7308 706000 6891500 3 -735.5521 706500 6891500 4 -724.5922 707000 6891500 5 -715.4234 707500 6891500 6 -709.6369 708000 6891500 7 -708.2487 708500 6891500 8 -709.365 709000 6891500 9 -709.8636 709500 6891500 10 -706.765 710000 6891500 11 -697.2303 710500 6891500 12 -679.5843 711000 6891500 13 -654.7132 711500 6891500 14 -624.731 712000 6891500 15 -592.4946 712500 6891500 16 -561.2641 713000 6891500 17 -533.5366 713500 6891500 18 -510.5653 714000 6891500 19 -492.1537 714500 6891500 20 -477.0028 715000 6891500 21 -463.3629 715500 6891500 22 -449.8414 716000 6891500 23 -436.3723 716500 6891500 24 -424.8268 717000 6891500 25 -417.5415 717500 6891500 26 -415.3439 718000 6891500 27 -416.9267 718500 6891500 28 -419.2463 719000 6891500 29 -419.9464 719500 6891500 30 -418.8742 720000 6891500 31 -416.6422 720500 6891500 32 -413.6603 721000 6891500 33 -409.9182 721500 6891500 34 -405.1453 722000 6891500 35 -399.0345 722500 6891500 36 -391.5503 723000 6891500 37 -382.9443 723500 6891500 38 -373.9001 724000 6891500 39 -365.0711 724500 6891500 40 -357.0541 725000 6891500 41 -350.2662 725500 6891500 42 -344.6081 726000 6891500 43 -339.437 726500 6891500 44 -334.008 727000 6891500 45 -327.8318 727500 6891500 46 -320.6852 728000 6891500 47 -312.8561 728500 6891500 48 -305.1929 729000 6891500 49 -298.7229 729500 6891500 50 -294.6125 730000 6891500 51 -294.0465 730500 6891500 52 -296.3156 731000 6891500 53 -299.7288 731500 6891500 54 -302.7223 732000 6891500 55 -303.9903 732500 6891500 56 -302.6993 733000 6891500 57 -298.8865 733500 6891500 58 -293.2701 734000 6891500 59 -286.8998 734500 6891500 60 -280.7732 735000 6891500 61 -275.4325 735500 6891500 62 -271.0171 736000 6891500 63 -267.5342 736500 6891500 64 -265.1294 737000 6891500 65 -263.9711 737500 6891500 66 -264.2684 738000 6891500 67 -265.8321 738500 6891500 68 -268.8344 739000 6891500 69 -273.6909 739500 6891500 70 -280.9762 740000 6891500 71 -291.5151 740500 6891500 72 -306.0591 741000 6891500 73 -325.0073 741500 6891500 74 -347.5997 742000 6891500 75 -373.4324 742500 6891500 76 -402.9229 743000 6891500 77 -436.7204 743500 6891500 78 -473.938 744000 6891500 79 -511.9364 744500 6891500 80 -547.3494 745000 6891500 81 -576.4106 745500 6891500 82 -596.463 746000 6891500 83 -606.9431 746500 6891500 84 -609.8851 747000 6891500 85 -607.2828 705000 6892000 1 -758.5295 705500 6892000 2 -748.6506 706000 6892000 3 -737.7301 706500 6892000 4 -726.9486 707000 6892000 5 -717.6856 707500 6892000 6 -711.331 708000 6892000 7 -708.834 708500 6892000 8 -708.6583 709000 6892000 9 -708.1837 709500 6892000 10 -704.8651 710000 6892000 11 -696.2411 710500 6892000 12 -680.5707 711000 6892000 13 -658.213 711500 6892000 14 -630.5016 712000 6892000 15 -599.508 712500 6892000 16 -568.3025 713000 6892000 17 -539.7326 713500 6892000 18 -515.871 714000 6892000 19 -497.0103 714500 6892000 20 -481.6938 715000 6892000 21 -467.7604 715500 6892000 22 -453.388 716000 6892000 23 -438.2431 716500 6892000 24 -424.2459 717000 6892000 25 -414.2237 717500 6892000 26 -409.4289 718000 6892000 27 -408.8746 718500 6892000 28 -409.8649 719000 6892000 29 -410.0806 719500 6892000 30 -408.939 720000 6892000 31 -406.6569 720500 6892000 32 -403.4038 721000 6892000 33 -399.1258 721500 6892000 34 -393.6958 722000 6892000 35 -387.1014 722500 6892000 36 -379.6671 723000 6892000 37 -371.6872 723500 6892000 38 -363.404 724000 6892000 39 -355.1693 724500 6892000 40 -347.4242 725000 6892000 41 -340.5204 725500 6892000 42 -334.4674 726000 6892000 43 -328.8761 726500 6892000 44 -323.19 727000 6892000 45 -316.9166 727500 6892000 46 -309.7426 728000 6892000 47 -301.8515 728500 6892000 48 -294.0082 729000 6892000 49 -287.3063 729500 6892000 50 -283.1185 730000 6892000 51 -283.0304 730500 6892000 52 -286.2266 731000 6892000 53 -290.662 731500 6892000 54 -294.6021 732000 6892000 55 -296.7216 732500 6892000 56 -296.231 733000 6892000 57 -293.2137 733500 6892000 58 -288.4001 734000 6892000 59 -282.8144 734500 6892000 60 -277.4045 735000 6892000 61 -272.7036 735500 6892000 62 -268.9037 736000 6892000 63 -266.1236 736500 6892000 64 -264.6221 737000 6892000 65 -264.5959 737500 6892000 66 -266.168 738000 6892000 67 -268.9244 738500 6892000 68 -272.9276 739000 6892000 69 -278.6927 739500 6892000 70 -286.8896 740000 6892000 71 -298.3139 740500 6892000 72 -313.7462 741000 6892000 73 -333.3999 741500 6892000 74 -356.2752 742000 6892000 75 -381.9025 742500 6892000 76 -410.8893 743000 6892000 77 -444.3254 743500 6892000 78 -481.4849 744000 6892000 79 -519.3377 744500 6892000 80 -554.175 745000 6892000 81 -582.2943 745500 6892000 82 -601.2784 746000 6892000 83 -610.6711 746500 6892000 84 -612.3505 747000 6892000 85 -608.3334 705000 6892500 1 -760.8865 705500 6892500 2 -751.3072 706000 6892500 3 -740.7229 706500 6892500 4 -730.1779 707000 6892500 5 -720.8801 707500 6892500 6 -713.9734 708000 6892500 7 -710.2714 708500 6892500 8 -708.6833 709000 6892500 9 -707.1779 709500 6892500 10 -703.7 710000 6892500 11 -696.1868 710500 6892500 12 -682.8442 711000 6892500 13 -663.494 711500 6892500 14 -638.5479 712000 6892500 15 -609.0372 712500 6892500 16 -577.639 713000 6892500 17 -547.6478 713500 6892500 18 -522.2888 714000 6892500 19 -502.5249 714500 6892500 20 -486.7201 715000 6892500 21 -472.3209 715500 6892500 22 -457.2617 716000 6892500 23 -440.9518 716500 6892500 24 -425.1386 717000 6892500 25 -412.7682 717500 6892500 26 -405.4649 718000 6892500 27 -402.6795 718500 6892500 28 -402.1156 719000 6892500 29 -401.5762 719500 6892500 30 -400.1325 720000 6892500 31 -397.6668 720500 6892500 32 -394.1581 721000 6892500 33 -389.5105 721500 6892500 34 -383.6907 722000 6892500 35 -376.838 722500 6892500 36 -369.4667 723000 6892500 37 -361.9125 723500 6892500 38 -354.1483 724000 6892500 39 -346.3209 724500 6892500 40 -338.7393 725000 6892500 41 -331.6893 725500 6892500 42 -325.2553 726000 6892500 43 -319.2594 726500 6892500 44 -313.3433 727000 6892500 45 -307.0753 727500 6892500 46 -300.1084 728000 6892500 47 -292.5299 728500 6892500 48 -284.9931 729000 6892500 49 -278.5862 729500 6892500 50 -274.6519 730000 6892500 51 -274.9195 730500 6892500 52 -278.6333 731000 6892500 53 -283.6252 731500 6892500 54 -288.1158 732000 6892500 55 -290.7904 732500 6892500 56 -290.8605 733000 6892500 57 -288.4073 733500 6892500 58 -284.1696 734000 6892500 59 -279.1622 734500 6892500 60 -274.309 735000 6892500 61 -270.1761 735500 6892500 62 -267.0422 736000 6892500 63 -265.0977 736500 6892500 64 -264.6412 737000 6892500 65 -265.8565 737500 6892500 66 -268.8299 738000 6892500 67 -273.0592 738500 6892500 68 -278.5192 739000 6892500 69 -285.7367 739500 6892500 70 -295.4079 740000 6892500 71 -308.2277 740500 6892500 72 -324.9464 741000 6892500 73 -345.6643 741500 6892500 74 -369.241 742000 6892500 75 -395.0785 742500 6892500 76 -423.6496 743000 6892500 77 -456.0089 743500 6892500 78 -491.6403 744000 6892500 79 -527.6223 744500 6892500 80 -560.344 745000 6892500 81 -586.3919 745500 6892500 82 -603.7751 746000 6892500 83 -612.053 746500 6892500 84 -612.8162 747000 6892500 85 -607.8563 705000 6893000 1 -763.6896 705500 6893000 2 -754.501 706000 6893000 3 -744.2531 706500 6893000 4 -733.8992 707000 6893000 5 -724.4937 707500 6893000 6 -716.982 708000 6893000 7 -712.0322 708500 6893000 8 -708.9236 709000 6893000 9 -706.2461 709500 6893000 10 -702.5211 710000 6893000 11 -696.2421 710500 6893000 12 -685.8101 711000 6893000 13 -670.4063 711500 6893000 14 -649.2748 712000 6893000 15 -622.0526 712500 6893000 16 -590.6342 713000 6893000 17 -558.6788 713500 6893000 18 -530.8858 714000 6893000 19 -509.1989 714500 6893000 20 -491.9166 715000 6893000 21 -476.3383 715500 6893000 22 -460.4412 716000 6893000 23 -443.5109 716500 6893000 24 -426.8231 717000 6893000 25 -413.0331 717500 6893000 26 -403.7671 718000 6893000 27 -398.9089 718500 6893000 28 -396.656 719000 6893000 29 -395.0957 719500 6893000 30 -393.1078 720000 6893000 31 -390.2974 720500 6893000 32 -386.4949 721000 6893000 33 -381.5916 721500 6893000 34 -375.6062 722000 6893000 35 -368.7235 722500 6893000 36 -361.389 723000 6893000 37 -353.9605 723500 6893000 38 -346.3403 724000 6893000 39 -338.5937 724500 6893000 40 -330.9444 725000 6893000 41 -323.6271 725500 6893000 42 -316.7775 726000 6893000 43 -310.3815 726500 6893000 44 -304.2852 727000 6893000 45 -298.1512 727500 6893000 46 -291.685 728000 6893000 47 -284.869 728500 6893000 48 -278.2026 729000 6893000 49 -272.6578 729500 6893000 50 -269.4594 730000 6893000 51 -269.9818 730500 6893000 52 -273.7155 731000 6893000 53 -278.7012 731500 6893000 54 -283.2754 732000 6893000 55 -286.1496 732500 6893000 56 -286.5168 733000 6893000 57 -284.4048 733500 6893000 58 -280.5241 734000 6893000 59 -275.874 734500 6893000 60 -271.3939 735000 6893000 61 -267.7193 735500 6893000 62 -265.25 736000 6893000 63 -264.2545 736500 6893000 64 -264.9837 737000 6893000 65 -267.5629 737500 6893000 66 -272.0587 738000 6893000 67 -278.0106 738500 6893000 68 -285.3642 739000 6893000 69 -294.5612 739500 6893000 70 -306.2309 740000 6893000 71 -320.9746 740500 6893000 72 -339.4446 741000 6893000 73 -361.6427 741500 6893000 74 -386.3649 742000 6893000 75 -412.7931 742500 6893000 76 -441.0333 743000 6893000 77 -471.7571 743500 6893000 78 -504.5957 744000 6893000 79 -537.1901 744500 6893000 80 -566.443 745000 6893000 81 -589.3693 745500 6893000 82 -604.4662 746000 6893000 83 -611.3378 746500 6893000 84 -611.1647 747000 6893000 85 -605.3818 705000 6893500 1 -766.7399 705500 6893500 2 -757.9863 706000 6893500 3 -748.033 706500 6893500 4 -737.7733 707000 6893500 5 -728.1387 707500 6893500 6 -719.9227 708000 6893500 7 -713.6888 708500 6893500 8 -709.0214 709000 6893500 9 -705.0422 709500 6893500 10 -700.8828 710000 6893500 11 -695.8262 710500 6893500 12 -688.8156 711000 6893500 13 -678.3965 711500 6893500 14 -662.4514 712000 6893500 15 -638.8879 712500 6893500 16 -608.416 713000 6893500 17 -574.5823 713500 6893500 18 -543.5252 714000 6893500 19 -518.5621 714500 6893500 20 -498.3256 715000 6893500 21 -480.446 715500 6893500 22 -463.2126 716000 6893500 23 -445.8639 716500 6893500 24 -429.0356 717000 6893500 25 -414.6884 717500 6893500 26 -404.1578 718000 6893500 27 -397.5409 718500 6893500 28 -393.603 719000 6893500 29 -390.8438 719500 6893500 30 -388.1183 720000 6893500 31 -384.8148 720500 6893500 32 -380.6435 721000 6893500 33 -375.5209 721500 6893500 34 -369.4948 722000 6893500 35 -362.7148 722500 6893500 36 -355.4015 723000 6893500 37 -347.8198 723500 6893500 38 -339.9833 724000 6893500 39 -331.9845 724500 6893500 40 -324.0118 725000 6893500 41 -316.2638 725500 6893500 42 -308.9202 726000 6893500 43 -302.1068 726500 6893500 44 -295.8818 727000 6893500 45 -290.0232 727500 6893500 46 -284.3074 728000 6893500 47 -278.6014 728500 6893500 48 -273.1603 729000 6893500 49 -268.793 729500 6893500 50 -266.5224 730000 6893500 51 -267.3426 730500 6893500 52 -270.8394 731000 6893500 53 -275.5183 731500 6893500 54 -279.9349 732000 6893500 55 -282.8049 732500 6893500 56 -283.2451 733000 6893500 57 -281.2397 733500 6893500 58 -277.4973 734000 6893500 59 -273.0283 734500 6893500 60 -268.7918 735000 6893500 61 -265.506 735500 6893500 62 -263.7037 736000 6893500 63 -263.7436 736500 6893500 64 -265.8002 737000 6893500 65 -269.8946 737500 6893500 66 -276.101 738000 6893500 67 -283.9854 738500 6893500 68 -293.505 739000 6893500 69 -304.9887 739500 6893500 70 -318.9556 740000 6893500 71 -335.9267 740500 6893500 72 -356.4592 741000 6893500 73 -380.4975 741500 6893500 74 -406.6878 742000 6893500 75 -433.8292 742500 6893500 76 -461.54 743000 6893500 77 -490.1683 743500 6893500 78 -519.4891 744000 6893500 79 -547.8495 744500 6893500 80 -572.8414 745000 6893500 81 -592.02 745500 6893500 82 -604.2203 746000 6893500 83 -609.1738 746500 6893500 84 -607.6959 747000 6893500 85 -600.9373 705000 6894000 1 -769.7299 705500 6894000 2 -761.4346 706000 6894000 3 -751.7577 706500 6894000 4 -741.5474 707000 6894000 5 -731.6323 707500 6894000 6 -722.6926 708000 6894000 7 -715.2292 708500 6894000 8 -709.0506 709000 6894000 9 -703.7269 709500 6894000 10 -698.9991 710000 6894000 11 -694.9357 710500 6894000 12 -691.1797 711000 6894000 13 -685.9761 711500 6894000 14 -676.013 712000 6894000 15 -657.4186 712500 6894000 16 -629.502 713000 6894000 17 -595.069 713500 6894000 18 -560.8776 714000 6894000 19 -531.732 714500 6894000 20 -507.3737 715000 6894000 21 -486.1815 715500 6894000 22 -467.1234 716000 6894000 23 -449.096 716500 6894000 24 -432.1952 717000 6894000 25 -417.5574 717500 6894000 26 -406.1374 718000 6894000 27 -398.0706 718500 6894000 28 -392.5652 719000 6894000 29 -388.5538 719500 6894000 30 -384.97 720000 6894000 31 -381.0529 720500 6894000 32 -376.4301 721000 6894000 33 -371.0712 721500 6894000 34 -365.0479 722000 6894000 35 -358.3919 722500 6894000 36 -351.0739 723000 6894000 37 -343.1651 723500 6894000 38 -334.8689 724000 6894000 39 -326.3704 724500 6894000 40 -317.8641 725000 6894000 41 -309.525 725500 6894000 42 -301.5776 726000 6894000 43 -294.286 726500 6894000 44 -287.9329 727000 6894000 45 -282.423 727500 6894000 46 -277.5956 728000 6894000 47 -273.1559 728500 6894000 48 -269.0393 729000 6894000 49 -265.8788 729500 6894000 50 -264.5311 730000 6894000 51 -265.644 730500 6894000 52 -268.9156 731000 6894000 53 -273.303 731500 6894000 54 -277.589 732000 6894000 55 -280.4622 732500 6894000 56 -280.8979 733000 6894000 57 -278.8526 733500 6894000 58 -275.1158 734000 6894000 59 -270.7543 734500 6894000 60 -266.7379 735000 6894000 61 -263.8623 735500 6894000 62 -262.7989 736000 6894000 63 -263.9767 736500 6894000 64 -267.4739 737000 6894000 65 -273.2168 737500 6894000 66 -281.2894 738000 6894000 67 -291.2555 738500 6894000 68 -303.0491 739000 6894000 69 -316.8808 739500 6894000 70 -333.1614 740000 6894000 71 -352.3661 740500 6894000 72 -374.9926 741000 6894000 73 -401.0014 741500 6894000 74 -428.7403 742000 6894000 75 -456.5014 742500 6894000 76 -483.3859 743000 6894000 77 -509.5727 743500 6894000 78 -535.1174 744000 6894000 79 -559.0276 744500 6894000 80 -579.5446 745000 6894000 81 -594.7224 745500 6894000 82 -603.6797 746000 6894000 83 -606.2371 746500 6894000 84 -603.0907 747000 6894000 85 -595.2564 705000 6894500 1 -772.2635 705500 6894500 2 -764.4742 706000 6894500 3 -755.1569 706500 6894500 4 -745.0934 707000 6894500 5 -735.0038 707500 6894500 6 -725.4567 708000 6894500 7 -716.9027 708500 6894500 8 -709.3481 709000 6894500 9 -702.733 709500 6894500 10 -697.2976 710000 6894500 11 -693.6947 710500 6894500 12 -692.1609 711000 6894500 13 -690.9076 711500 6894500 14 -686.0458 712000 6894500 15 -672.3828 712500 6894500 16 -648.1971 713000 6894500 17 -615.1752 713500 6894500 18 -579.6201 714000 6894500 19 -547.0768 714500 6894500 20 -518.7511 715000 6894500 21 -494.1596 715500 6894500 22 -473.0043 716000 6894500 23 -453.993 716500 6894500 24 -436.7137 717000 6894500 25 -421.6394 717500 6894500 26 -409.3454 718000 6894500 27 -399.9318 718500 6894500 28 -392.9164 719000 6894500 29 -387.5911 719500 6894500 30 -383.0272 720000 6894500 31 -378.3878 720500 6894500 32 -373.2564 721000 6894500 33 -367.6627 721500 6894500 34 -361.6688 722000 6894500 35 -355.1556 722500 6894500 36 -347.8024 723000 6894500 37 -339.4988 723500 6894500 38 -330.6201 724000 6894500 39 -321.4796 724500 6894500 40 -312.3025 725000 6894500 41 -303.2526 725500 6894500 42 -294.5965 726000 6894500 43 -286.7288 726500 6894500 44 -280.1505 727000 6894500 45 -274.9047 727500 6894500 46 -270.9042 728000 6894500 47 -267.6821 728500 6894500 48 -264.8178 729000 6894500 49 -262.76 729500 6894500 50 -262.2546 730000 6894500 51 -263.6975 730500 6894500 52 -266.8755 731000 6894500 53 -271.1154 731500 6894500 54 -275.4003 732000 6894500 55 -278.3883 732500 6894500 56 -278.902 733000 6894500 57 -276.8868 733500 6894500 58 -273.2503 734000 6894500 59 -269.1286 734500 6894500 60 -265.4841 735000 6894500 61 -263.1557 735500 6894500 62 -262.9511 736000 6894500 63 -265.3673 736500 6894500 64 -270.4024 737000 6894500 65 -277.8795 737500 6894500 66 -287.8766 738000 6894500 67 -299.9401 738500 6894500 68 -313.961 739000 6894500 69 -330.0325 739500 6894500 70 -348.4649 740000 6894500 71 -369.6795 740500 6894500 72 -394.1585 741000 6894500 73 -421.877 741500 6894500 74 -450.864 742000 6894500 75 -478.958 742500 6894500 76 -504.7961 743000 6894500 77 -528.5005 743500 6894500 78 -550.4066 744000 6894500 79 -570.0561 744500 6894500 80 -586.2359 745000 6894500 81 -597.4584 745500 6894500 82 -603.0743 746000 6894500 83 -603.0258 746500 6894500 84 -598.0619 747000 6894500 85 -589.1965 705000 6895000 1 -774.059 705500 6895000 2 -766.8466 706000 6895000 3 -758.0603 706500 6895000 4 -748.3604 707000 6895000 5 -738.3275 707500 6895000 6 -728.3992 708000 6895000 7 -718.951 708500 6895000 8 -710.1759 709000 6895000 9 -702.3328 709500 6895000 10 -696.0189 710000 6895000 11 -692.1635 710500 6895000 12 -691.3406 711000 6895000 13 -692.0568 711500 6895000 14 -690.3586 712000 6895000 15 -680.6645 712500 6895000 16 -660.4634 713000 6895000 17 -630.5134 713500 6895000 18 -595.9296 714000 6895000 19 -562.1225 714500 6895000 20 -531.3209 715000 6895000 21 -504.1284 715500 6895000 22 -481.0254 716000 6895000 23 -460.8139 716500 6895000 24 -442.8338 717000 6895000 25 -427.0729 717500 6895000 26 -413.7679 718000 6895000 27 -402.9328 718500 6895000 28 -394.2819 719000 6895000 29 -387.4224 719500 6895000 30 -381.6323 720000 6895000 31 -376.1349 720500 6895000 32 -370.5054 721000 6895000 33 -364.7643 721500 6895000 34 -358.8776 722000 6895000 35 -352.5388 722500 6895000 36 -345.1625 723000 6895000 37 -336.4744 723500 6895000 38 -326.972 724000 6895000 39 -317.1134 724500 6895000 40 -307.1775 725000 6895000 41 -297.3427 725500 6895000 42 -287.9048 726000 6895000 43 -279.3479 726500 6895000 44 -272.3392 727000 6895000 45 -267.0811 727500 6895000 46 -263.6168 728000 6895000 47 -261.3883 728500 6895000 48 -259.6349 729000 6895000 49 -258.5598 729500 6895000 50 -258.8246 730000 6895000 51 -260.6723 730500 6895000 52 -263.9378 731000 6895000 53 -268.1881 731500 6895000 54 -272.564 732000 6895000 55 -275.7785 732500 6895000 56 -276.5984 733000 6895000 57 -274.9466 733500 6895000 58 -271.7842 734000 6895000 59 -268.2689 734500 6895000 60 -265.335 735000 6895000 61 -263.8403 735500 6895000 62 -264.6748 736000 6895000 63 -268.3966 736500 6895000 64 -274.9773 737000 6895000 65 -284.1858 737500 6895000 66 -296.1026 738000 6895000 67 -310.2184 738500 6895000 68 -326.3367 739000 6895000 69 -344.4514 739500 6895000 70 -364.7727 740000 6895000 71 -387.6365 740500 6895000 72 -413.4661 741000 6895000 73 -442.205 741500 6895000 74 -471.7438 742000 6895000 75 -499.7203 742500 6895000 76 -524.4409 743000 6895000 77 -545.8993 743500 6895000 78 -564.5783 744000 6895000 79 -580.3893 744500 6895000 80 -592.5585 745000 6895000 81 -600.0263 745500 6895000 82 -602.4115 746000 6895000 83 -599.791 746500 6895000 84 -593.0314 747000 6895000 85 -583.2619 705000 6895500 1 -775.1441 705500 6895500 2 -768.56 706000 6895500 3 -760.4673 706500 6895500 4 -751.3561 707000 6895500 5 -741.6363 707500 6895500 6 -731.5856 708000 6895500 7 -721.4431 708500 6895500 8 -711.5463 709000 6895500 9 -702.4246 709500 6895500 10 -694.9274 710000 6895500 11 -690.1672 710500 6895500 12 -688.8911 711000 6895500 13 -690.1107 711500 6895500 14 -690.1511 712000 6895500 15 -683.5507 712500 6895500 16 -667.1771 713000 6895500 17 -641.053 713500 6895500 18 -608.9315 714000 6895500 19 -575.5908 714500 6895500 20 -543.8565 715000 6895500 21 -515.1875 715500 6895500 22 -490.6665 716000 6895500 23 -469.3828 716500 6895500 24 -450.5985 717000 6895500 25 -433.9917 717500 6895500 26 -419.4981 718000 6895500 27 -407.029 718500 6895500 28 -396.4364 719000 6895500 29 -387.6312 719500 6895500 30 -380.2104 720000 6895500 31 -373.685 720500 6895500 32 -367.6629 721000 6895500 33 -361.9831 721500 6895500 34 -356.3521 722000 6895500 35 -350.2427 722500 6895500 36 -342.8832 723000 6895500 37 -333.874 723500 6895500 38 -323.7726 724000 6895500 39 -313.1743 724500 6895500 40 -302.4398 725000 6895500 41 -291.8098 725500 6895500 42 -281.5891 726000 6895500 43 -272.2654 726500 6895500 44 -264.5747 727000 6895500 45 -258.9019 727500 6895500 46 -255.5294 728000 6895500 47 -253.9468 728500 6895500 48 -253.1314 729000 6895500 49 -252.9408 729500 6895500 50 -253.9074 730000 6895500 51 -256.2521 730500 6895500 52 -259.8035 731000 6895500 53 -264.213 731500 6895500 54 -268.7284 732000 6895500 55 -272.2405 732500 6895500 56 -273.6631 733000 6895500 57 -272.8771 733500 6895500 58 -270.7403 734000 6895500 59 -268.3268 734500 6895500 60 -266.5337 735000 6895500 61 -266.2194 735500 6895500 62 -268.2939 736000 6895500 63 -273.3547 736500 6895500 64 -281.4275 737000 6895500 65 -292.2976 737500 6895500 66 -306.0466 738000 6895500 67 -322.1005 738500 6895500 68 -340.1632 739000 6895500 69 -360.0985 739500 6895500 70 -381.982 740000 6895500 71 -406.0519 740500 6895500 72 -432.6009 741000 6895500 73 -461.5029 741500 6895500 74 -490.7628 742000 6895500 75 -518.0635 742500 6895500 76 -541.683 743000 6895500 77 -561.2848 743500 6895500 78 -577.2633 744000 6895500 79 -589.7458 744500 6895500 80 -598.3348 745000 6895500 81 -602.3685 745500 6895500 82 -601.7723 746000 6895500 83 -596.7713 746500 6895500 84 -588.3434 747000 6895500 85 -577.8087 705000 6896000 1 -775.7528 705500 6896000 2 -769.8021 706000 6896000 3 -762.4843 706500 6896000 4 -754.1156 707000 6896000 5 -744.923 707500 6896000 6 -734.9881 708000 6896000 7 -724.3445 708500 6896000 8 -713.4015 709000 6896000 9 -702.8986 709500 6896000 10 -693.8708 710000 6896000 11 -687.6819 710500 6896000 12 -685.3589 711000 6896000 13 -686.4044 711500 6896000 14 -687.6668 712000 6896000 15 -683.7318 712500 6896000 16 -670.9864 713000 6896000 17 -648.6497 713500 6896000 18 -619.4439 714000 6896000 19 -587.4675 714500 6896000 20 -555.7958 715000 6896000 21 -526.5322 715500 6896000 22 -501.2531 716000 6896000 23 -479.2788 716500 6896000 24 -459.8312 717000 6896000 25 -442.3962 717500 6896000 26 -426.6222 718000 6896000 27 -412.3017 718500 6896000 28 -399.4466 719000 6896000 29 -388.2873 719500 6896000 30 -378.826 720000 6896000 31 -371.082 720500 6896000 32 -364.8011 721000 6896000 33 -359.42 721500 6896000 34 -354.2118 722000 6896000 35 -348.377 722500 6896000 36 -341.05 723000 6896000 37 -331.7643 723500 6896000 38 -321.115 724000 6896000 39 -309.7986 724500 6896000 40 -298.2857 725000 6896000 41 -286.9282 725500 6896000 42 -276.0276 726000 6896000 43 -265.968 726500 6896000 44 -257.4418 727000 6896000 45 -251.0303 727500 6896000 46 -247.3592 728000 6896000 47 -246.0542 728500 6896000 48 -245.9278 729000 6896000 49 -246.464 729500 6896000 50 -248.0002 730000 6896000 51 -250.8627 730500 6896000 52 -254.8703 731000 6896000 53 -259.6046 731500 6896000 54 -264.3606 732000 6896000 55 -268.2632 732500 6896000 56 -270.5354 733000 6896000 57 -271.0511 733500 6896000 58 -270.4198 734000 6896000 59 -269.5236 734500 6896000 60 -269.2101 735000 6896000 61 -270.3232 735500 6896000 62 -273.7771 736000 6896000 63 -280.2003 736500 6896000 64 -289.704 737000 6896000 65 -302.1555 737500 6896000 66 -317.6537 738000 6896000 67 -335.5317 738500 6896000 68 -355.3609 739000 6896000 69 -376.8434 739500 6896000 70 -399.8961 740000 6896000 71 -424.6426 740500 6896000 72 -451.3081 741000 6896000 73 -479.7158 741500 6896000 74 -508.1047 742000 6896000 75 -534.3527 742500 6896000 76 -556.8166 743000 6896000 77 -574.8229 743500 6896000 78 -588.501 744000 6896000 79 -598.1163 744500 6896000 80 -603.6052 745000 6896000 81 -604.6541 745500 6896000 82 -601.4347 746000 6896000 83 -594.3217 746500 6896000 84 -584.3923 747000 6896000 85 -573.17 705000 6896500 1 -776.0753 705500 6896500 2 -770.7224 706000 6896500 3 -764.1776 706500 6896500 4 -756.6216 707000 6896500 5 -748.1106 707500 6896500 6 -738.5074 708000 6896500 7 -727.5765 708500 6896500 8 -715.7212 709000 6896500 9 -703.8211 709500 6896500 10 -693.0645 710000 6896500 11 -685.1898 710500 6896500 12 -681.6719 711000 6896500 13 -682.3759 711500 6896500 14 -684.6089 712000 6896500 15 -683.0443 712500 6896500 16 -673.5809 713000 6896500 17 -654.6848 713500 6896500 18 -628.3485 714000 6896500 19 -598.1698 714500 6896500 20 -567.251 715000 6896500 21 -538.0795 715500 6896500 22 -512.5913 716000 6896500 23 -490.2514 716500 6896500 24 -470.2635 717000 6896500 25 -452.0316 717500 6896500 26 -435.0008 718000 6896500 27 -418.83 718500 6896500 28 -403.678 719000 6896500 29 -390.0683 719500 6896500 30 -378.4357 720000 6896500 31 -369.3749 720500 6896500 32 -362.8349 721000 6896500 33 -357.7988 721500 6896500 34 -353.0239 722000 6896500 35 -347.4525 722500 6896500 36 -340.0919 723000 6896500 37 -330.487 723500 6896500 38 -319.3068 724000 6896500 39 -307.3274 724500 6896500 40 -295.145 725000 6896500 41 -283.2351 725500 6896500 42 -271.89 726000 6896500 43 -261.3089 726500 6896500 44 -252.0466 727000 6896500 45 -244.8414 727500 6896500 46 -240.6695 728000 6896500 47 -239.3188 728500 6896500 48 -239.4888 729000 6896500 49 -240.3905 729500 6896500 50 -242.2248 730000 6896500 51 -245.5038 730500 6896500 52 -250.0568 731000 6896500 53 -255.2681 731500 6896500 54 -260.4193 732000 6896500 55 -264.8622 732500 6896500 56 -268.1573 733000 6896500 57 -270.2087 733500 6896500 58 -271.335 734000 6896500 59 -272.1727 734500 6896500 60 -273.4976 735000 6896500 61 -276.1275 735500 6896500 62 -280.9923 736000 6896500 63 -288.7735 736500 6896500 64 -299.6602 737000 6896500 65 -313.6234 737500 6896500 66 -330.8107 738000 6896500 67 -350.4363 738500 6896500 68 -371.8869 739000 6896500 69 -394.6525 739500 6896500 70 -418.4593 740000 6896500 71 -443.3245 740500 6896500 72 -469.5243 741000 6896500 73 -496.9688 741500 6896500 74 -524.1402 742000 6896500 75 -549.1166 742500 6896500 76 -570.346 743000 6896500 77 -586.8372 743500 6896500 78 -598.4387 744000 6896500 79 -605.5524 744500 6896500 80 -608.4377 745000 6896500 81 -607.0507 745500 6896500 82 -601.6945 746000 6896500 83 -592.8313 746500 6896500 84 -581.6292 747000 6896500 85 -569.7825 705000 6897000 1 -776.2068 705500 6897000 2 -771.362 706000 6897000 3 -765.5167 706500 6897000 4 -758.7574 707000 6897000 5 -751.0015 707500 6897000 6 -741.915 708000 6897000 7 -730.9739 708500 6897000 8 -718.485 709000 6897000 9 -705.3629 709500 6897000 10 -692.8958 710000 6897000 11 -683.2637 710500 6897000 12 -678.575 711000 6897000 13 -678.8533 711500 6897000 14 -681.69 712000 6897000 15 -681.9785 712500 6897000 16 -675.3466 713000 6897000 17 -659.5885 713500 6897000 18 -636.1697 714000 6897000 19 -608.2853 714500 6897000 20 -578.8527 715000 6897000 21 -550.4096 715500 6897000 22 -525.0391 716000 6897000 23 -502.363 716500 6897000 24 -481.6826 717000 6897000 25 -462.5179 717500 6897000 26 -444.285 718000 6897000 27 -426.5469 718500 6897000 28 -409.5585 719000 6897000 29 -394.0149 719500 6897000 30 -380.6173 720000 6897000 31 -370.2835 720500 6897000 32 -363.2181 721000 6897000 33 -358.1543 721500 6897000 34 -353.4822 722000 6897000 35 -347.9353 722500 6897000 36 -340.3869 723000 6897000 37 -330.3664 723500 6897000 38 -318.6706 724000 6897000 39 -306.1546 724500 6897000 40 -293.5248 725000 6897000 41 -281.3749 725500 6897000 42 -269.9769 726000 6897000 43 -259.3169 726500 6897000 44 -249.7625 727000 6897000 45 -242.0557 727500 6897000 46 -237.3355 728000 6897000 47 -235.5639 728500 6897000 48 -235.4649 729000 6897000 49 -236.1741 729500 6897000 50 -237.8753 730000 6897000 51 -241.3892 730500 6897000 52 -246.4951 731000 6897000 53 -252.2954 731500 6897000 54 -257.9916 732000 6897000 55 -263.114 732500 6897000 56 -267.5196 733000 6897000 57 -271.1443 733500 6897000 58 -274.0478 734000 6897000 59 -276.6333 734500 6897000 60 -279.5937 735000 6897000 61 -283.7101 735500 6897000 62 -289.9376 736000 6897000 63 -299.0275 736500 6897000 64 -311.2319 737000 6897000 65 -326.6279 737500 6897000 66 -345.4534 738000 6897000 67 -366.7845 738500 6897000 68 -389.7642 739000 6897000 69 -413.615 739500 6897000 70 -437.8308 740000 6897000 71 -462.3161 740500 6897000 72 -487.501 741000 6897000 73 -513.5315 741500 6897000 74 -539.1415 742000 6897000 75 -562.5803 742500 6897000 76 -582.3661 743000 6897000 77 -597.2653 743500 6897000 78 -606.9254 744000 6897000 79 -611.9238 744500 6897000 80 -612.7714 745000 6897000 81 -609.5883 745500 6897000 82 -602.7175 746000 6897000 83 -592.6423 746500 6897000 84 -580.5905 747000 6897000 85 -568.4026 705000 6897500 1 -776.1641 705500 6897500 2 -771.6683 706000 6897500 3 -766.3768 706500 6897500 4 -760.2921 707000 6897500 5 -753.2512 707500 6897500 6 -744.8147 708000 6897500 7 -734.235 708500 6897500 8 -721.6079 709000 6897500 9 -707.7297 709500 6897500 10 -693.8681 710000 6897500 11 -682.543 710500 6897500 12 -676.4943 711000 6897500 13 -675.9576 711500 6897500 14 -678.6426 712000 6897500 15 -679.9453 712500 6897500 16 -675.6027 713000 6897500 17 -662.9769 713500 6897500 18 -642.9941 714000 6897500 19 -618.3689 714500 6897500 20 -591.5342 715000 6897500 21 -564.5869 715500 6897500 22 -539.4024 716000 6897500 23 -515.9669 716500 6897500 24 -494.0054 717000 6897500 25 -473.4981 717500 6897500 26 -454.137 718000 6897500 27 -435.4446 718500 6897500 28 -417.615 719000 6897500 29 -401.2854 719500 6897500 30 -387.0803 720000 6897500 31 -375.7884 720500 6897500 32 -367.731 721000 6897500 33 -361.7201 721500 6897500 34 -356.2168 722000 6897500 35 -350.0365 722500 6897500 36 -341.972 723000 6897500 37 -331.5073 723500 6897500 38 -319.5103 724000 6897500 39 -306.8446 724500 6897500 40 -294.2308 725000 6897500 41 -282.305 725500 6897500 42 -271.3318 726000 6897500 43 -261.1688 726500 6897500 44 -252.0216 727000 6897500 45 -244.4219 727500 6897500 46 -239.2554 728000 6897500 47 -236.6196 728500 6897500 48 -235.5626 729000 6897500 49 -235.4705 729500 6897500 50 -236.6178 730000 6897500 51 -240.136 730500 6897500 52 -245.713 731000 6897500 53 -252.1524 731500 6897500 54 -258.5298 732000 6897500 55 -264.4448 732500 6897500 56 -269.9173 733000 6897500 57 -274.9201 733500 6897500 58 -279.3646 734000 6897500 59 -283.5115 734500 6897500 60 -287.9789 735000 6897500 61 -293.5058 735500 6897500 62 -301.0018 736000 6897500 63 -311.2832 736500 6897500 64 -324.6821 737000 6897500 65 -341.3747 737500 6897500 66 -361.7532 738000 6897500 67 -384.7534 738500 6897500 68 -409.2271 739000 6897500 69 -434.0797 739500 6897500 70 -458.5075 740000 6897500 71 -482.2241 740500 6897500 72 -505.7987 741000 6897500 73 -529.7283 741500 6897500 74 -553.0945 742000 6897500 75 -574.3748 742500 6897500 76 -592.2198 743000 6897500 77 -605.3391 743500 6897500 78 -613.258 744000 6897500 79 -616.6523 744500 6897500 80 -616.1858 745000 6897500 81 -612.0671 745500 6897500 82 -604.5835 746000 6897500 83 -594.2164 746500 6897500 84 -582.2167 747000 6897500 85 -570.5048 705000 6898000 1 -776.0328 705500 6898000 2 -771.7353 706000 6898000 3 -766.8432 706500 6898000 4 -761.2844 707000 6898000 5 -754.8585 707500 6898000 6 -747.0866 708000 6898000 7 -737.1212 708500 6898000 8 -724.7874 709000 6898000 9 -710.6739 709500 6898000 10 -695.9462 710000 6898000 11 -683.2192 710500 6898000 12 -675.6085 711000 6898000 13 -673.6822 711500 6898000 14 -675.4448 712000 6898000 15 -677.1313 712500 6898000 16 -674.6342 713000 6898000 17 -665.1923 713500 6898000 18 -649.152 714000 6898000 19 -628.6254 714500 6898000 20 -605.3419 715000 6898000 21 -580.5936 715500 6898000 22 -555.5914 716000 6898000 23 -530.9074 716500 6898000 24 -507.0688 717000 6898000 25 -484.8691 717500 6898000 26 -464.4625 718000 6898000 27 -445.3963 718500 6898000 28 -427.6018 719000 6898000 29 -411.4417 719500 6898000 30 -397.1967 720000 6898000 31 -385.2642 720500 6898000 32 -375.7932 721000 6898000 33 -367.9658 721500 6898000 34 -360.6466 722000 6898000 35 -353.0005 722500 6898000 36 -344.0818 723000 6898000 37 -333.3923 723500 6898000 38 -321.631 724000 6898000 39 -309.4915 724500 6898000 40 -297.5316 725000 6898000 41 -286.2424 725500 6898000 42 -275.8929 726000 6898000 43 -266.4265 726500 6898000 44 -258.0474 727000 6898000 45 -251.011 727500 6898000 46 -245.6416 728000 6898000 47 -242.0003 728500 6898000 48 -239.6941 729000 6898000 49 -238.599 729500 6898000 50 -239.1089 730000 6898000 51 -242.4914 730500 6898000 52 -248.3909 731000 6898000 53 -255.4278 731500 6898000 54 -262.577 732000 6898000 55 -269.3606 732500 6898000 56 -275.7553 733000 6898000 57 -281.7705 733500 6898000 58 -287.352 734000 6898000 59 -292.7725 734500 6898000 60 -298.5916 735000 6898000 61 -305.4603 735500 6898000 62 -314.1656 736000 6898000 63 -325.5329 736500 6898000 64 -339.9659 737000 6898000 65 -357.7714 737500 6898000 66 -379.561 738000 6898000 67 -404.153 738500 6898000 68 -430.0905 739000 6898000 69 -455.9435 739500 6898000 70 -480.5356 740000 6898000 71 -503.269 740500 6898000 72 -524.7239 741000 6898000 73 -545.7905 741500 6898000 74 -566.0524 742000 6898000 75 -584.3758 742500 6898000 76 -599.634 743000 6898000 77 -610.7548 743500 6898000 78 -617.2228 744000 6898000 79 -619.6182 744500 6898000 80 -618.5544 745000 6898000 81 -614.2628 745500 6898000 82 -607.0573 746000 6898000 83 -597.4153 746500 6898000 84 -586.552 747000 6898000 85 -576.3438 705000 6898500 1 -775.961 705500 6898500 2 -771.7631 706000 6898500 3 -767.1553 706500 6898500 4 -761.998 707000 6898500 5 -756.0714 707500 6898500 6 -748.8832 708000 6898500 7 -739.5507 708500 6898500 8 -727.7279 709000 6898500 9 -713.8201 709500 6898500 10 -698.866 710000 6898500 11 -685.2446 710500 6898500 12 -676.0518 711000 6898500 13 -672.2468 711500 6898500 14 -672.5305 712000 6898500 15 -674.2637 712500 6898500 16 -673.4567 713000 6898500 17 -667.0583 713500 6898500 18 -655.0739 714000 6898500 19 -639.067 714500 6898500 20 -619.9116 715000 6898500 21 -597.8528 715500 6898500 22 -573.1165 716000 6898500 23 -546.8715 716500 6898500 24 -520.7621 717000 6898500 25 -496.7596 717500 6898500 26 -475.5291 718000 6898500 27 -456.5578 718500 6898500 28 -439.4134 719000 6898500 29 -424.0204 719500 6898500 30 -410.1473 720000 6898500 31 -397.7011 720500 6898500 32 -386.5942 721000 6898500 33 -376.3277 721500 6898500 34 -366.3552 722000 6898500 35 -356.4372 722500 6898500 36 -346.3612 723000 6898500 37 -335.7985 723500 6898500 38 -324.9469 724000 6898500 39 -314.0665 724500 6898500 40 -303.3951 725000 6898500 41 -293.0143 725500 6898500 42 -283.1907 726000 6898500 43 -274.2585 726500 6898500 44 -266.6875 727000 6898500 45 -260.3972 727500 6898500 46 -255.0661 728000 6898500 47 -250.5741 728500 6898500 48 -247.1232 729000 6898500 49 -245.1667 729500 6898500 50 -245.2794 730000 6898500 51 -248.5 730500 6898500 52 -254.5822 731000 6898500 53 -262.1372 731500 6898500 54 -270.1043 732000 6898500 55 -277.8068 732500 6898500 56 -284.9512 733000 6898500 57 -291.5714 733500 6898500 58 -297.8564 734000 6898500 59 -304.2602 734500 6898500 60 -311.3028 735000 6898500 61 -319.4969 735500 6898500 62 -329.4313 736000 6898500 63 -341.8286 736500 6898500 64 -357.1403 737000 6898500 65 -375.845 737500 6898500 66 -398.826 738000 6898500 67 -424.8082 738500 6898500 68 -452.0336 739000 6898500 69 -478.7483 739500 6898500 70 -503.3529 740000 6898500 71 -524.8613 740500 6898500 72 -543.7955 741000 6898500 73 -561.4001 741500 6898500 74 -577.9075 742000 6898500 75 -592.6714 742500 6898500 76 -604.869 743000 6898500 77 -613.8079 743500 6898500 78 -619.0907 744000 6898500 79 -621.0333 744500 6898500 80 -620.0135 745000 6898500 81 -616.202 745500 6898500 82 -609.9636 746000 6898500 83 -601.8204 746500 6898500 84 -592.9266 747000 6898500 85 -584.9081 705000 6899000 1 -776.1414 705500 6899000 2 -772.0428 706000 6899000 3 -767.6662 706500 6899000 4 -762.8197 707000 6899000 5 -757.2437 707500 6899000 6 -750.4485 708000 6899000 7 -741.5555 708500 6899000 8 -730.2604 709000 6899000 9 -716.8783 709500 6899000 10 -702.2792 710000 6899000 11 -688.3458 710500 6899000 12 -677.7426 711000 6899000 13 -671.8351 711500 6899000 14 -670.3617 712000 6899000 15 -672.0271 712500 6899000 16 -672.8899 713000 6899000 17 -669.256 713500 6899000 18 -661.0295 714000 6899000 19 -649.5103 714500 6899000 20 -634.694 715000 6899000 21 -615.6085 715500 6899000 22 -591.3071 716000 6899000 23 -563.4984 716500 6899000 24 -535.0693 717000 6899000 25 -509.3999 717500 6899000 26 -487.6751 718000 6899000 27 -469.1221 718500 6899000 28 -452.9266 719000 6899000 29 -438.5556 719500 6899000 30 -425.2218 720000 6899000 31 -412.3453 720500 6899000 32 -399.5854 721000 6899000 33 -386.6917 721500 6899000 34 -373.7246 722000 6899000 35 -361.159 722500 6899000 36 -349.6821 723000 6899000 37 -339.3062 723500 6899000 38 -329.5206 724000 6899000 39 -320.0599 724500 6899000 40 -310.8069 725000 6899000 41 -301.321 725500 6899000 42 -291.7756 726000 6899000 43 -283.1071 726500 6899000 44 -276.264 727000 6899000 45 -270.8376 727500 6899000 46 -265.7868 728000 6899000 47 -260.7482 728500 6899000 48 -256.4677 729000 6899000 49 -253.9438 729500 6899000 50 -253.9291 730000 6899000 51 -257.1629 730500 6899000 52 -263.4203 731000 6899000 53 -271.4655 731500 6899000 54 -280.2418 732000 6899000 55 -288.8335 732500 6899000 56 -296.5927 733000 6899000 57 -303.5448 733500 6899000 58 -310.2526 734000 6899000 59 -317.469 734500 6899000 60 -325.7011 735000 6899000 61 -335.2996 735500 6899000 62 -346.6207 736000 6899000 63 -360.1498 736500 6899000 64 -376.3271 737000 6899000 65 -395.7527 737500 6899000 66 -419.5854 738000 6899000 67 -446.4896 738500 6899000 68 -474.471 739000 6899000 69 -501.531 739500 6899000 70 -525.722 740000 6899000 71 -545.6655 740500 6899000 72 -561.8534 741000 6899000 73 -575.8182 741500 6899000 74 -588.4015 742000 6899000 75 -599.4439 742500 6899000 76 -608.4856 743000 6899000 77 -615.2538 743500 6899000 78 -619.5473 744000 6899000 79 -621.3937 744500 6899000 80 -620.8467 745000 6899000 81 -617.9689 745500 6899000 82 -613.1331 746000 6899000 83 -606.8922 746500 6899000 84 -600.2958 747000 6899000 85 -594.7026 705000 6899500 1 -776.6851 705500 6899500 2 -772.7768 706000 6899500 3 -768.6395 706500 6899500 4 -764.0477 707000 6899500 5 -758.6623 707500 6899500 6 -752.0054 708000 6899500 7 -743.3006 708500 6899500 8 -732.5008 709000 6899500 9 -719.928 709500 6899500 10 -706.1021 710000 6899500 11 -692.3032 710500 6899500 12 -680.6181 711000 6899500 13 -672.7446 711500 6899500 14 -669.521 712000 6899500 15 -670.9918 712500 6899500 16 -673.3215 713000 6899500 17 -672.0006 713500 6899500 18 -666.9507 714000 6899500 19 -659.4738 714500 6899500 20 -648.7843 715000 6899500 21 -632.7473 715500 6899500 22 -609.2556 716000 6899500 23 -580.4375 716500 6899500 24 -550.2496 717000 6899500 25 -523.3834 717500 6899500 26 -501.477 718000 6899500 27 -483.4148 718500 6899500 28 -468.0715 719000 6899500 29 -454.5731 719500 6899500 30 -441.6897 720000 6899500 31 -428.4765 720500 6899500 32 -414.3569 721000 6899500 33 -399.1862 721500 6899500 34 -383.5594 722000 6899500 35 -368.663 722500 6899500 36 -355.7903 723000 6899500 37 -345.161 723500 6899500 38 -335.6817 724000 6899500 39 -326.7544 724500 6899500 40 -318.1238 725000 6899500 41 -309.0192 725500 6899500 42 -299.4584 726000 6899500 43 -290.8547 726500 6899500 44 -284.6273 727000 6899500 45 -280.1408 727500 6899500 46 -275.7292 728000 6899500 47 -270.6767 728500 6899500 48 -266.1025 729000 6899500 49 -263.4491 729500 6899500 50 -263.5875 730000 6899500 51 -267.0594 730500 6899500 52 -273.6214 731000 6899500 53 -282.1985 731500 6899500 54 -291.7183 732000 6899500 55 -301.0623 732500 6899500 56 -309.3256 733000 6899500 57 -316.5413 733500 6899500 58 -323.6335 734000 6899500 59 -331.6728 734500 6899500 60 -341.1997 735000 6899500 61 -352.4338 735500 6899500 62 -365.4872 736000 6899500 63 -380.5133 736500 6899500 64 -397.8223 737000 6899500 65 -417.9306 737500 6899500 66 -442.0873 738000 6899500 67 -469.0279 738500 6899500 68 -496.6941 739000 6899500 69 -523.0458 739500 6899500 70 -546.0519 740000 6899500 71 -564.1163 740500 6899500 72 -577.6492 741000 6899500 73 -588.3077 741500 6899500 74 -597.3255 742000 6899500 75 -604.9342 742500 6899500 76 -611.0532 743000 6899500 77 -615.8339 743500 6899500 78 -619.3021 744000 6899500 79 -621.2239 744500 6899500 80 -621.3354 745000 6899500 81 -619.5768 745500 6899500 82 -616.3008 746000 6899500 83 -612.0497 746500 6899500 84 -607.7421 747000 6899500 85 -604.4421 705000 6900000 1 -777.4224 705500 6900000 2 -773.8082 706000 6900000 3 -769.9462 706500 6900000 4 -765.6141 707000 6900000 5 -760.3835 707500 6900000 6 -753.7886 708000 6900000 7 -745.2499 708500 6900000 8 -734.9978 709000 6900000 9 -723.4526 709500 6900000 10 -710.6586 710000 6900000 11 -697.2866 710500 6900000 12 -684.9478 711000 6900000 13 -675.5865 711500 6900000 14 -670.825 712000 6900000 15 -671.6854 712500 6900000 16 -674.8084 713000 6900000 17 -675.1704 713500 6900000 18 -672.5517 714000 6900000 19 -668.275 714500 6900000 20 -660.9905 715000 6900000 21 -647.8076 715500 6900000 22 -625.7939 716000 6900000 23 -597.3036 716500 6900000 24 -566.7566 717000 6900000 25 -539.5531 717500 6900000 26 -517.6817 718000 6900000 27 -499.8518 718500 6900000 28 -484.8065 719000 6900000 29 -471.5834 719500 6900000 30 -458.7665 720000 6900000 31 -445.2801 720500 6900000 32 -430.3688 721000 6900000 33 -413.8222 721500 6900000 34 -396.579 722000 6900000 35 -380.3062 722500 6900000 36 -366.2532 723000 6900000 37 -354.4907 723500 6900000 38 -343.7581 724000 6900000 39 -333.578 724500 6900000 40 -323.985 725000 6900000 41 -314.3491 725500 6900000 42 -304.4905 726000 6900000 43 -295.8646 726500 6900000 44 -290.0675 727000 6900000 45 -286.4351 727500 6900000 46 -283.0085 728000 6900000 47 -278.6873 728500 6900000 48 -274.6296 729000 6900000 49 -272.4437 729500 6900000 50 -273.0896 730000 6900000 51 -277.0641 730500 6900000 52 -284.0843 731000 6900000 53 -293.2478 731500 6900000 54 -303.3902 732000 6900000 55 -313.2709 732500 6900000 56 -321.9529 733000 6900000 57 -329.5197 733500 6900000 58 -337.1401 734000 6900000 59 -346.1466 734500 6900000 60 -357.1797 735000 6900000 61 -370.4175 735500 6900000 62 -385.7227 736000 6900000 63 -402.8352 736500 6900000 64 -421.7449 737000 6900000 65 -442.6594 737500 6900000 66 -466.4797 738000 6900000 67 -492.2521 738500 6900000 68 -518.1586 739000 6900000 69 -542.4113 739500 6900000 70 -563.2432 740000 6900000 71 -579.1764 740500 6900000 72 -590.4484 741000 6900000 73 -598.5265 741500 6900000 74 -604.7338 742000 6900000 75 -609.5616 742500 6900000 76 -613.2612 743000 6900000 77 -616.3501 743500 6900000 78 -619.0858 744000 6900000 79 -621.0588 744500 6900000 80 -621.767 745000 6900000 81 -621.0521 745500 6900000 82 -619.2255 746000 6900000 83 -616.7823 746500 6900000 84 -614.4846 747000 6900000 85 -613.1161 705000 6900500 1 -777.9661 705500 6900500 2 -774.6809 706000 6900500 3 -771.134 706500 6900500 4 -767.1085 707000 6900500 5 -762.1735 707500 6900500 6 -755.8895 708000 6900500 7 -747.8764 708500 6900500 8 -738.4368 709000 6900500 9 -727.9979 709500 6900500 10 -716.2862 710000 6900500 11 -703.5312 710500 6900500 12 -691.0522 711000 6900500 13 -680.8336 711500 6900500 14 -674.8323 712000 6900500 15 -674.386 712500 6900500 16 -677.1381 713000 6900500 17 -678.4241 713500 6900500 18 -677.5181 714000 6900500 19 -675.4309 714500 6900500 20 -670.5396 715000 6900500 21 -659.7827 715500 6900500 22 -640.0278 716000 6900500 23 -613.5704 716500 6900500 24 -584.6064 717000 6900500 25 -558.2054 717500 6900500 26 -536.5291 718000 6900500 27 -518.52 718500 6900500 28 -502.9876 719000 6900500 29 -489.1691 719500 6900500 30 -475.8114 720000 6900500 31 -461.9587 720500 6900500 32 -446.8422 721000 6900500 33 -430.0347 721500 6900500 34 -412.4576 722000 6900500 35 -395.9729 722500 6900500 36 -381.1298 723000 6900500 37 -367.4044 723500 6900500 38 -353.927 724000 6900500 39 -340.793 724500 6900500 40 -328.619 725000 6900500 41 -317.4436 725500 6900500 42 -307.0607 726000 6900500 43 -298.4276 726500 6900500 44 -292.9568 727000 6900500 45 -290.0339 727500 6900500 46 -287.7072 728000 6900500 47 -284.627 728500 6900500 48 -281.6783 729000 6900500 49 -280.4315 729500 6900500 50 -281.8684 730000 6900500 51 -286.5499 730500 6900500 52 -294.2094 731000 6900500 53 -304.093 731500 6900500 54 -314.8246 732000 6900500 55 -325.0298 732500 6900500 56 -333.998 733000 6900500 57 -341.9916 733500 6900500 58 -350.2812 734000 6900500 59 -360.3972 734500 6900500 60 -373.1482 735000 6900500 61 -388.7845 735500 6900500 62 -406.8907 736000 6900500 63 -426.6744 736500 6900500 64 -447.5624 737000 6900500 65 -469.3901 737500 6900500 66 -492.2842 738000 6900500 67 -515.7601 738500 6900500 68 -538.6147 739000 6900500 69 -559.5906 739500 6900500 70 -577.4037 740000 6900500 71 -590.9871 740500 6900500 72 -600.412 741000 6900500 73 -606.6904 741500 6900500 74 -610.9725 742000 6900500 75 -613.8688 742500 6900500 76 -615.8398 743000 6900500 77 -617.5925 743500 6900500 78 -619.5817 744000 6900500 79 -621.374 744500 6900500 80 -622.3955 745000 6900500 81 -622.4468 745500 6900500 82 -621.7629 746000 6900500 83 -620.7478 746500 6900500 84 -619.9908 747000 6900500 85 -620.0256 705000 6901000 1 -778.1379 705500 6901000 2 -775.1224 706000 6901000 3 -771.9238 706500 6901000 4 -768.2819 707000 6901000 5 -763.8069 707500 6901000 6 -758.1315 708000 6901000 7 -751.0319 708500 6901000 8 -742.7314 709000 6901000 9 -733.4429 709500 6901000 10 -722.7986 710000 6901000 11 -710.795 710500 6901000 12 -698.579 711000 6901000 13 -687.9707 711500 6901000 14 -681.0068 712000 6901000 15 -678.8239 712500 6901000 16 -679.9987 713000 6901000 17 -681.3095 713500 6901000 18 -681.5108 714000 6901000 19 -680.7953 714500 6901000 20 -677.4871 715000 6901000 21 -668.7612 715500 6901000 22 -651.8088 716000 6901000 23 -628.6536 716500 6901000 24 -602.8716 717000 6901000 25 -578.4456 717500 6901000 26 -557.3 718000 6901000 27 -538.858 718500 6901000 28 -522.2574 719000 6901000 29 -507.0678 719500 6901000 30 -492.491 720000 6901000 31 -477.9792 720500 6901000 32 -462.9785 721000 6901000 33 -446.8509 721500 6901000 34 -430.0259 722000 6901000 35 -414.0268 722500 6901000 36 -398.7364 723000 6901000 37 -382.8842 723500 6901000 38 -366.2491 724000 6901000 39 -349.6505 724500 6901000 40 -334.3604 725000 6901000 41 -321.1036 725500 6901000 42 -309.9302 726000 6901000 43 -301.2054 726500 6901000 44 -295.9836 727000 6901000 45 -293.7191 727500 6901000 46 -292.3068 728000 6901000 47 -290.2306 728500 6901000 48 -288.2516 729000 6901000 49 -287.8761 729500 6901000 50 -290.0846 730000 6901000 51 -295.4781 730500 6901000 52 -303.9102 731000 6901000 53 -314.7491 731500 6901000 54 -326.2306 732000 6901000 55 -336.7248 732500 6901000 56 -345.7977 733000 6901000 57 -354.0902 733500 6901000 58 -362.9728 734000 6901000 59 -374.1733 734500 6901000 60 -388.762 735000 6901000 61 -407.1473 735500 6901000 62 -428.5451 736000 6901000 63 -451.3653 736500 6901000 64 -474.3682 737000 6901000 65 -496.8652 737500 6901000 66 -518.3376 738000 6901000 67 -538.7261 738500 6901000 68 -557.7203 739000 6901000 69 -574.7849 739500 6901000 70 -589.1992 740000 6901000 71 -600.3319 740500 6901000 72 -608.1774 741000 6901000 73 -613.2524 741500 6901000 74 -616.3919 742000 6901000 75 -618.1885 742500 6901000 76 -619.1631 743000 6901000 77 -619.9747 743500 6901000 78 -621.133 744000 6901000 79 -622.3892 744500 6901000 80 -623.3115 745000 6901000 81 -623.7399 745500 6901000 82 -623.7954 746000 6901000 83 -623.7455 746500 6901000 84 -624.0029 747000 6901000 85 -624.9174 705000 6901500 1 -778.1097 705500 6901500 2 -775.283 706000 6901500 3 -772.4131 706500 6901500 4 -769.2043 707000 6901500 5 -765.2748 707500 6901500 6 -760.3319 708000 6901500 7 -754.1982 708500 6901500 8 -747.004 709000 6901500 9 -738.8165 709500 6901500 10 -729.2568 710000 6901500 11 -718.181 710500 6901500 12 -706.431 711000 6901500 13 -695.6339 711500 6901500 14 -687.6593 712000 6901500 15 -683.7031 712500 6901500 16 -682.9964 713000 6901500 17 -683.6164 713500 6901500 18 -684.3082 714000 6901500 19 -684.4578 714500 6901500 20 -682.3506 715000 6901500 21 -675.5632 715500 6901500 22 -661.6517 716000 6901500 23 -642.3219 716500 6901500 24 -620.3628 717000 6901500 25 -598.6495 717500 6901500 26 -578.5667 718000 6901500 27 -559.8583 718500 6901500 28 -542.0652 719000 6901500 29 -525.1547 719500 6901500 30 -508.9373 720000 6901500 31 -493.4761 720500 6901500 32 -478.601 721000 6901500 33 -463.5692 721500 6901500 34 -448.1306 722000 6901500 35 -432.9321 722500 6901500 36 -417.3345 723000 6901500 37 -399.7871 723500 6901500 38 -380.7195 724000 6901500 39 -361.5381 724500 6901500 40 -343.873 725000 6901500 41 -328.8772 725500 6901500 42 -316.8586 726000 6901500 43 -307.9033 726500 6901500 44 -302.7587 727000 6901500 45 -300.8318 727500 6901500 46 -299.6966 728000 6901500 47 -297.7121 728500 6901500 48 -295.8505 729000 6901500 49 -295.7704 729500 6901500 50 -298.4101 730000 6901500 51 -304.3441 730500 6901500 52 -313.5357 731000 6901500 53 -325.4696 731500 6901500 54 -337.8925 732000 6901500 55 -348.6917 732500 6901500 56 -357.7525 733000 6901500 57 -366.1485 733500 6901500 58 -375.3969 734000 6901500 59 -387.501 734500 6901500 60 -403.9067 735000 6901500 61 -425.2858 735500 6901500 62 -450.2904 736000 6901500 63 -476.1936 736500 6901500 64 -501.0179 737000 6901500 65 -523.7141 737500 6901500 66 -543.2416 738000 6901500 67 -560.1702 738500 6901500 68 -575.0904 739000 6901500 69 -588.194 739500 6901500 70 -599.2865 740000 6901500 71 -608.0991 740500 6901500 72 -614.5487 741000 6901500 73 -618.7575 741500 6901500 74 -621.229 742000 6901500 75 -622.448 742500 6901500 76 -622.878 743000 6901500 77 -623.0226 743500 6901500 78 -623.3232 744000 6901500 79 -623.7993 744500 6901500 80 -624.3063 745000 6901500 81 -624.7929 745500 6901500 82 -625.2606 746000 6901500 83 -625.8203 746500 6901500 84 -626.7277 747000 6901500 85 -628.1999 705000 6902000 1 -778.0754 705500 6902000 2 -775.3815 706000 6902000 3 -772.7811 706500 6902000 4 -769.9638 707000 6902000 5 -766.5669 707500 6902000 6 -762.3298 708000 6902000 7 -757.0671 708500 6902000 8 -750.8036 709000 6902000 9 -743.5063 709500 6902000 10 -734.887 710000 6902000 11 -724.7568 710500 6902000 12 -713.6078 711000 6902000 13 -702.75 711500 6902000 14 -693.8994 712000 6902000 15 -688.2579 712500 6902000 16 -685.6932 713000 6902000 17 -685.3362 713500 6902000 18 -685.9871 714000 6902000 19 -686.5201 714500 6902000 20 -685.2852 715000 6902000 21 -680.3033 715500 6902000 22 -669.541 716000 6902000 23 -654.2493 716500 6902000 24 -636.416 717000 6902000 25 -617.8743 717500 6902000 26 -599.4244 718000 6902000 27 -580.8924 718500 6902000 28 -562.1577 719000 6902000 29 -543.5831 719500 6902000 30 -525.672 720000 6902000 31 -509.1367 720500 6902000 32 -494.2707 721000 6902000 33 -480.2406 721500 6902000 34 -466.1886 722000 6902000 35 -451.8629 722500 6902000 36 -436.1273 723000 6902000 37 -417.559 723500 6902000 38 -397.1771 724000 6902000 39 -376.7885 724500 6902000 40 -358.0908 725000 6902000 41 -342.1442 725500 6902000 42 -329.4362 726000 6902000 43 -320.1546 726500 6902000 44 -314.8847 727000 6902000 45 -312.7342 727500 6902000 46 -311.0114 728000 6902000 47 -308.0745 728500 6902000 48 -305.4135 729000 6902000 49 -304.9809 729500 6902000 50 -307.6262 730000 6902000 51 -313.8137 730500 6902000 52 -323.5408 731000 6902000 53 -336.3925 731500 6902000 54 -349.7234 732000 6902000 55 -360.85 732500 6902000 56 -369.9034 733000 6902000 57 -378.3667 733500 6902000 58 -387.8788 734000 6902000 59 -400.7498 734500 6902000 60 -418.9092 735000 6902000 61 -443.3786 735500 6902000 62 -472.0108 736000 6902000 63 -500.5686 736500 6902000 64 -526.3549 737000 6902000 65 -548.4073 737500 6902000 66 -565.5666 738000 6902000 67 -579.0537 738500 6902000 68 -590.2138 739000 6902000 69 -599.8057 739500 6902000 70 -608.0095 740000 6902000 71 -614.7887 740500 6902000 72 -620.0154 741000 6902000 73 -623.5325 741500 6902000 74 -625.5594 742000 6902000 75 -626.4327 742500 6902000 76 -626.4952 743000 6902000 77 -626.0802 743500 6902000 78 -625.5435 744000 6902000 79 -625.1495 744500 6902000 80 -625.0726 745000 6902000 81 -625.4212 745500 6902000 82 -626.1077 746000 6902000 83 -627.0845 746500 6902000 84 -628.4645 747000 6902000 85 -630.3699 705000 6902500 1 -778.1172 705500 6902500 2 -775.5107 706000 6902500 3 -773.0994 706500 6902500 4 -770.5913 707000 6902500 5 -767.6516 707500 6902500 6 -764.0216 708000 6902500 7 -759.4721 708500 6902500 8 -753.9383 709000 6902500 9 -747.3383 709500 6902500 10 -739.4368 710000 6902500 11 -730.083 710500 6902500 12 -719.56 711000 6902500 13 -708.838 711500 6902500 14 -699.3716 712000 6902500 15 -692.3886 712500 6902500 16 -688.203 713000 6902500 17 -686.6816 713500 6902500 18 -686.8456 714000 6902500 19 -687.3037 714500 6902500 20 -686.553 715000 6902500 21 -683.0964 715500 6902500 22 -675.4152 716000 6902500 23 -664.2125 716500 6902500 24 -650.6468 717000 6902500 25 -635.6417 717500 6902500 26 -619.3898 718000 6902500 27 -601.6169 718500 6902500 28 -582.4756 719000 6902500 29 -562.7007 719500 6902500 30 -543.4352 720000 6902500 31 -525.8989 720500 6902500 32 -510.7944 721000 6902500 33 -497.2361 721500 6902500 34 -483.9301 722000 6902500 35 -470.0276 722500 6902500 36 -454.1873 723000 6902500 37 -435.2398 723500 6902500 38 -414.5509 724000 6902500 39 -394.0677 724500 6902500 40 -375.39 725000 6902500 41 -359.26 725500 6902500 42 -346.1323 726000 6902500 43 -336.4594 726500 6902500 44 -330.8553 727000 6902500 45 -327.9929 727500 6902500 46 -325.2125 728000 6902500 47 -320.9664 728500 6902500 48 -317.1906 729000 6902500 49 -316.1032 729500 6902500 50 -318.4641 730000 6902500 51 -324.615 730500 6902500 52 -334.4359 731000 6902500 53 -347.5526 731500 6902500 54 -361.363 732000 6902500 55 -372.8179 732500 6902500 56 -382.1554 733000 6902500 57 -391.0594 733500 6902500 58 -401.1583 734000 6902500 59 -414.9731 734500 6902500 60 -434.882 735000 6902500 61 -462.2096 735500 6902500 62 -493.8793 736000 6902500 63 -523.9583 736500 6902500 64 -549.1817 737000 6902500 65 -569.3428 737500 6902500 66 -583.7989 738000 6902500 67 -594.2879 738500 6902500 68 -602.5082 739000 6902500 69 -609.4587 739500 6902500 70 -615.4909 740000 6902500 71 -620.6697 740500 6902500 72 -624.8511 741000 6902500 73 -627.7493 741500 6902500 74 -629.3978 742000 6902500 75 -629.9841 742500 6902500 76 -629.7086 743000 6902500 77 -628.7568 743500 6902500 78 -627.4111 744000 6902500 79 -626.1289 744500 6902500 80 -625.387 745000 6902500 81 -625.5048 745500 6902500 82 -626.3426 746000 6902500 83 -627.689 746500 6902500 84 -629.5043 747000 6902500 85 -631.8375 705000 6903000 1 -778.1332 705500 6903000 2 -775.5903 706000 6903000 3 -773.306 706500 6903000 4 -771.0292 707000 6903000 5 -768.4669 707500 6903000 6 -765.3475 708000 6903000 7 -761.3943 708500 6903000 8 -756.4647 709000 6903000 9 -750.4407 709500 6903000 10 -743.1271 710000 6903000 11 -734.4082 710500 6903000 12 -724.4739 711000 6903000 13 -714.0475 711500 6903000 14 -704.3003 712000 6903000 15 -696.4037 712500 6903000 16 -690.9205 713000 6903000 17 -688.1675 713500 6903000 18 -687.4434 714000 6903000 19 -687.3842 714500 6903000 20 -686.7332 715000 6903000 21 -684.4595 715500 6903000 22 -679.5999 716000 6903000 23 -672.3409 716500 6903000 24 -663.0211 717000 6903000 25 -651.762 717500 6903000 26 -638.1827 718000 6903000 27 -621.79 718500 6903000 28 -602.9391 719000 6903000 29 -582.7269 719500 6903000 30 -562.7665 720000 6903000 31 -544.5002 720500 6903000 32 -528.8254 721000 6903000 33 -514.9276 721500 6903000 34 -501.3468 722000 6903000 35 -487.0091 722500 6903000 36 -470.795 723000 6903000 37 -451.887 723500 6903000 38 -431.5657 724000 6903000 39 -411.5623 724500 6903000 40 -393.2483 725000 6903000 41 -377.2899 725500 6903000 42 -364.049 726000 6903000 43 -354.0973 726500 6903000 44 -347.9586 727000 6903000 45 -344.1541 727500 6903000 46 -340.3564 728000 6903000 47 -335.2704 728500 6903000 48 -330.8053 729000 6903000 49 -329.212 729500 6903000 50 -331.2314 730000 6903000 51 -337.1389 730500 6903000 52 -346.6612 731000 6903000 53 -359.2726 731500 6903000 54 -372.8723 732000 6903000 55 -384.6938 732500 6903000 56 -394.8968 733000 6903000 57 -405.0573 733500 6903000 58 -416.6311 734000 6903000 59 -432.0563 734500 6903000 60 -453.8107 735000 6903000 61 -483.1539 735500 6903000 62 -516.2716 736000 6903000 63 -545.9446 736500 6903000 64 -568.7987 737000 6903000 65 -585.6354 737500 6903000 66 -597.2012 738000 6903000 67 -605.3915 738500 6903000 68 -611.7261 739000 6903000 69 -617.0718 739500 6903000 70 -621.7613 740000 6903000 71 -625.8333 740500 6903000 72 -629.1627 741000 6903000 73 -631.4859 741500 6903000 74 -632.7702 742000 6903000 75 -633.0786 742500 6903000 76 -632.4615 743000 6903000 77 -630.9753 743500 6903000 78 -628.8447 744000 6903000 79 -626.667 744500 6903000 80 -625.222 745000 6903000 81 -625.1128 745500 6903000 82 -626.1464 746000 6903000 83 -627.9127 746500 6903000 84 -630.1918 747000 6903000 85 -632.9771 705000 6903500 1 -777.9465 705500 6903500 2 -775.454 706000 6903500 3 -773.2697 706500 6903500 4 -771.1874 707000 6903500 5 -768.9532 707500 6903500 6 -766.2823 708000 6903500 7 -762.8638 708500 6903500 8 -758.4944 709000 6903500 9 -753.0286 709500 6903500 10 -746.2896 710000 6903500 11 -738.1741 710500 6903500 12 -728.8121 711000 6903500 13 -718.7635 711500 6903500 14 -708.9886 712000 6903500 15 -700.5526 712500 6903500 16 -694.1287 713000 6903500 17 -690.1454 713500 6903500 18 -688.2289 714000 6903500 19 -687.2894 714500 6903500 20 -686.3916 715000 6903500 21 -684.9599 715500 6903500 22 -682.5588 716000 6903500 23 -678.9178 716500 6903500 24 -673.6547 717000 6903500 25 -666.1966 717500 6903500 26 -655.6059 718000 6903500 27 -641.1099 718500 6903500 28 -623.2047 719000 6903500 29 -603.3462 719500 6903500 30 -583.4005 720000 6903500 31 -564.8494 720500 6903500 32 -548.455 721000 6903500 33 -533.5818 721500 6903500 34 -518.8774 722000 6903500 35 -503.3395 722500 6903500 36 -486.346 723000 6903500 37 -467.5942 723500 6903500 38 -447.916 724000 6903500 39 -428.5194 724500 6903500 40 -410.493 725000 6903500 41 -394.622 725500 6903500 42 -381.4214 726000 6903500 43 -371.3477 726500 6903500 44 -364.679 727000 6903500 45 -359.9752 727500 6903500 46 -355.4126 728000 6903500 47 -350.0867 728500 6903500 48 -345.5618 729000 6903500 49 -343.8192 729500 6903500 50 -345.6145 730000 6903500 51 -351.2347 730500 6903500 52 -360.3005 731000 6903500 53 -372.1232 731500 6903500 54 -385.1365 732000 6903500 55 -397.4 732500 6903500 56 -409.1415 733000 6903500 57 -421.6272 733500 6903500 58 -435.9322 734000 6903500 59 -453.9473 734500 6903500 60 -477.5327 735000 6903500 61 -507.2834 735500 6903500 62 -539.2813 736000 6903500 63 -566.203 736500 6903500 64 -585.1136 737000 6903500 65 -597.7985 737500 6903500 66 -606.4229 738000 6903500 67 -612.9351 738500 6903500 68 -618.2213 739000 6903500 69 -622.7906 739500 6903500 70 -626.823 740000 6903500 71 -630.2429 740500 6903500 72 -632.9294 741000 6903500 73 -634.7488 741500 6903500 74 -635.7126 742000 6903500 75 -635.798 742500 6903500 76 -634.9062 743000 6903500 77 -632.9357 743500 6903500 78 -630.0409 744000 6903500 79 -626.9434 744500 6903500 80 -624.7747 745000 6903500 81 -624.5271 745500 6903500 82 -625.8987 746000 6903500 83 -628.1797 746500 6903500 84 -630.9416 747000 6903500 85 -634.1595 705000 6904000 1 -777.386 705500 6904000 2 -774.9418 706000 6904000 3 -772.8628 706500 6904000 4 -770.9805 707000 6904000 5 -769.07 707500 6904000 6 -766.8364 708000 6904000 7 -763.9391 708500 6904000 8 -760.1347 709000 6904000 9 -755.2548 709500 6904000 10 -749.1253 710000 6904000 11 -741.6342 710500 6904000 12 -732.852 711000 6904000 13 -723.2244 711500 6904000 14 -713.5581 712000 6904000 15 -704.8118 712500 6904000 16 -697.6703 713000 6904000 17 -692.5875 713500 6904000 18 -689.3973 714000 6904000 19 -687.3907 714500 6904000 20 -685.9982 715000 6904000 21 -685.0801 715500 6904000 22 -684.6895 716000 6904000 23 -684.1858 716500 6904000 24 -682.5984 717000 6904000 25 -678.786 717500 6904000 26 -671.2971 718000 6904000 27 -659.0414 718500 6904000 28 -642.6166 719000 6904000 29 -623.7553 719500 6904000 30 -604.4476 720000 6904000 31 -586.067 720500 6904000 32 -569.1997 721000 6904000 33 -553.2886 721500 6904000 34 -537.236 722000 6904000 35 -520.2827 722500 6904000 36 -502.3078 723000 6904000 37 -483.533 723500 6904000 38 -464.324 724000 6904000 39 -445.2901 724500 6904000 40 -427.2874 725000 6904000 41 -411.2472 725500 6904000 42 -397.945 726000 6904000 43 -387.709 726500 6904000 44 -380.5545 727000 6904000 45 -375.1649 727500 6904000 46 -370.1636 728000 6904000 47 -364.9692 728500 6904000 48 -360.8003 729000 6904000 49 -359.2577 729500 6904000 50 -361.076 730000 6904000 51 -366.5754 730500 6904000 52 -375.308 731000 6904000 53 -386.5157 731500 6904000 54 -399.0926 732000 6904000 55 -411.9777 732500 6904000 56 -425.7003 733000 6904000 57 -441.2776 733500 6904000 58 -459.2491 734000 6904000 59 -480.5313 734500 6904000 60 -505.7924 735000 6904000 61 -534.2814 735500 6904000 62 -562.4328 736000 6904000 63 -584.5436 736500 6904000 64 -598.658 737000 6904000 65 -607.1053 737500 6904000 66 -612.9882 738000 6904000 67 -618.1309 738500 6904000 68 -622.7896 739000 6904000 69 -627.0403 739500 6904000 70 -630.8338 740000 6904000 71 -633.9052 740500 6904000 72 -636.122 741000 6904000 73 -637.5262 741500 6904000 74 -638.2493 742000 6904000 75 -638.2237 742500 6904000 76 -637.2025 743000 6904000 77 -634.8887 743500 6904000 78 -631.3258 744000 6904000 79 -627.3361 744500 6904000 80 -624.4728 745000 6904000 81 -624.2423 745500 6904000 82 -626.1442 746000 6904000 83 -629.0316 746500 6904000 84 -632.2422 747000 6904000 85 -635.7922 705000 6904500 1 -776.2743 705500 6904500 2 -773.8884 706000 6904500 3 -771.9532 706500 6904500 4 -770.3212 707000 6904500 5 -768.7745 707500 6904500 6 -767.0137 708000 6904500 7 -764.6613 708500 6904500 8 -761.4473 709000 6904500 9 -757.1875 709500 6904500 10 -751.7034 710000 6904500 11 -744.8652 710500 6904500 12 -736.6862 711000 6904500 13 -727.5225 711500 6904500 14 -718.0657 712000 6904500 15 -709.1665 712500 6904500 16 -701.4813 713000 6904500 17 -695.4542 713500 6904500 18 -691.1075 714000 6904500 19 -688.0723 714500 6904500 20 -686.1157 715000 6904500 21 -685.409 715500 6904500 22 -686.4286 716000 6904500 23 -688.2968 716500 6904500 24 -689.6328 717000 6904500 25 -688.9061 717500 6904500 26 -684.3384 718000 6904500 27 -674.5729 718500 6904500 28 -660.1873 719000 6904500 29 -643.0115 719500 6904500 30 -624.9965 720000 6904500 31 -607.3771 720500 6904500 32 -590.5932 721000 6904500 33 -574.1676 721500 6904500 34 -557.2173 722000 6904500 35 -539.2186 722500 6904500 36 -520.3664 723000 6904500 37 -501.2409 723500 6904500 38 -481.9407 724000 6904500 39 -462.7113 724500 6904500 40 -444.2807 725000 6904500 41 -427.7001 725500 6904500 42 -413.9131 726000 6904500 43 -403.2269 726500 6904500 44 -395.502 727000 6904500 45 -389.5625 727500 6904500 46 -384.3888 728000 6904500 47 -379.5783 728500 6904500 48 -376.0366 729000 6904500 49 -375.0229 729500 6904500 50 -377.2141 730000 6904500 51 -382.9676 730500 6904500 52 -391.8158 731000 6904500 53 -402.958 731500 6904500 54 -415.5914 732000 6904500 55 -429.3286 732500 6904500 56 -445.0928 733000 6904500 57 -463.752 733500 6904500 58 -485.2139 734000 6904500 59 -509.2995 734500 6904500 60 -535.3652 735000 6904500 61 -561.4351 735500 6904500 62 -584.3835 736000 6904500 63 -600.8004 736500 6904500 64 -610.1912 737000 6904500 65 -615.0022 737500 6904500 66 -618.4807 738000 6904500 67 -622.3583 738500 6904500 68 -626.3967 739000 6904500 69 -630.3807 739500 6904500 70 -634.0579 740000 6904500 71 -636.9174 740500 6904500 72 -638.7587 741000 6904500 73 -639.8114 741500 6904500 74 -640.3651 742000 6904500 75 -640.3472 742500 6904500 76 -639.387 743000 6904500 77 -636.9928 743500 6904500 78 -633.0564 744000 6904500 79 -628.4496 744500 6904500 80 -625.1067 745000 6904500 81 -625.1005 745500 6904500 82 -627.674 746000 6904500 83 -631.1639 746500 6904500 84 -634.6974 747000 6904500 85 -638.3837 705000 6905000 1 -774.4816 705500 6905000 2 -772.1707 706000 6905000 3 -770.4477 706500 6905000 4 -769.1562 707000 6905000 5 -768.0563 707500 6905000 6 -766.8307 708000 6905000 7 -765.0648 708500 6905000 8 -762.468 709000 6905000 9 -758.8474 709500 6905000 10 -754.0213 710000 6905000 11 -747.8514 710500 6905000 12 -740.3125 711000 6905000 13 -731.6822 711500 6905000 14 -722.5477 712000 6905000 15 -713.6526 712500 6905000 16 -705.6027 713000 6905000 17 -698.842 713500 6905000 18 -693.5352 714000 6905000 19 -689.6208 714500 6905000 20 -687.1556 715000 6905000 21 -686.4561 715500 6905000 22 -688.1688 716000 6905000 23 -691.3615 716500 6905000 24 -694.5036 717000 6905000 25 -695.9168 717500 6905000 26 -693.7971 718000 6905000 27 -686.7081 718500 6905000 28 -675.0289 719000 6905000 29 -660.3492 719500 6905000 30 -644.419 720000 6905000 31 -628.2939 720500 6905000 32 -612.3791 721000 6905000 33 -596.2604 721500 6905000 34 -579.2401 722000 6905000 35 -560.9413 722500 6905000 36 -541.5358 723000 6905000 37 -521.6583 723500 6905000 38 -501.5196 724000 6905000 39 -481.3663 724500 6905000 40 -461.9609 725000 6905000 41 -444.3788 725500 6905000 42 -429.6198 726000 6905000 43 -418.0856 726500 6905000 44 -409.6193 727000 6905000 45 -403.175 727500 6905000 46 -397.9824 728000 6905000 47 -393.7268 728500 6905000 48 -391.0379 729000 6905000 49 -390.8697 729500 6905000 50 -393.8277 730000 6905000 51 -400.3629 730500 6905000 52 -410.0413 731000 6905000 53 -422.003 731500 6905000 54 -435.5171 732000 6905000 55 -450.4706 732500 6905000 56 -467.9248 733000 6905000 57 -488.6223 733500 6905000 58 -511.9981 734000 6905000 59 -537.075 734500 6905000 60 -562.3429 735000 6905000 61 -585.1427 735500 6905000 62 -602.9146 736000 6905000 63 -614.3085 736500 6905000 64 -619.949 737000 6905000 65 -622.2064 737500 6905000 66 -623.9045 738000 6905000 67 -626.5955 738500 6905000 68 -629.8909 739000 6905000 69 -633.425 739500 6905000 70 -636.8254 740000 6905000 71 -639.4 740500 6905000 72 -640.8785 741000 6905000 73 -641.6063 741500 6905000 74 -641.9955 742000 6905000 75 -642.0189 742500 6905000 76 -641.2724 743000 6905000 77 -639.1829 743500 6905000 78 -635.4957 744000 6905000 79 -631.0168 744500 6905000 80 -627.7538 745000 6905000 81 -628.156 745500 6905000 82 -631.3168 746000 6905000 83 -635.1871 746500 6905000 84 -638.8002 747000 6905000 85 -642.3609 705000 6905500 1 -772.0834 705500 6905500 2 -769.8558 706000 6905500 3 -768.4129 706500 6905500 4 -767.5555 707000 6905500 5 -766.9899 707500 6905500 6 -766.3636 708000 6905500 7 -765.2233 708500 6905500 8 -763.2637 709000 6905500 9 -760.2961 709500 6905500 10 -756.1411 710000 6905500 11 -750.6538 710500 6905500 12 -743.7869 711000 6905500 13 -735.7507 711500 6905500 14 -727.0313 712000 6905500 15 -718.2642 712500 6905500 16 -710.0058 713000 6905500 17 -702.6782 713500 6905500 18 -696.5593 714000 6905500 19 -691.8542 714500 6905500 20 -688.8403 715000 6905500 21 -687.9671 715500 6905500 22 -689.8613 716000 6905500 23 -693.6186 716500 6905500 24 -697.7165 717000 6905500 25 -700.4859 717500 6905500 26 -700.2924 718000 6905500 27 -695.8744 718500 6905500 28 -687.3322 719000 6905500 29 -675.7849 719500 6905500 30 -662.6367 720000 6905500 31 -648.6786 720500 6905500 32 -634.257 721000 6905500 33 -619.0872 721500 6905500 34 -602.6512 722000 6905500 35 -584.646 722500 6905500 36 -565.0332 723000 6905500 37 -544.1812 723500 6905500 38 -522.6223 724000 6905500 39 -500.9315 724500 6905500 40 -480.0521 725000 6905500 41 -461.0955 725500 6905500 42 -445.0294 726000 6905500 43 -432.3733 726500 6905500 44 -423.0892 727000 6905500 45 -416.2218 727500 6905500 46 -411.1463 728000 6905500 47 -407.5776 728500 6905500 48 -405.903 729000 6905500 49 -406.8203 729500 6905500 50 -410.8764 730000 6905500 51 -418.6924 730500 6905500 52 -429.9342 731000 6905500 53 -443.6286 731500 6905500 54 -458.9205 732000 6905500 55 -475.5443 732500 6905500 56 -494.1138 733000 6905500 57 -515.1836 733500 6905500 58 -538.1224 734000 6905500 59 -561.7807 734500 6905500 60 -584.4642 735000 6905500 61 -603.5829 735500 6905500 62 -617.0808 736000 6905500 63 -624.8023 736500 6905500 64 -628.0007 737000 6905500 65 -628.7338 737500 6905500 66 -629.3199 738000 6905500 67 -631.0319 738500 6905500 68 -633.5618 739000 6905500 69 -636.478 739500 6905500 70 -639.369 740000 6905500 71 -641.5154 740500 6905500 72 -642.5899 741000 6905500 73 -642.9639 741500 6905500 74 -643.1135 742000 6905500 75 -643.1033 742500 6905500 76 -642.6201 743000 6905500 77 -641.1685 743500 6905500 78 -638.4295 744000 6905500 79 -634.9783 744500 6905500 80 -632.5427 745000 6905500 81 -633.4167 745500 6905500 82 -636.8479 746000 6905500 83 -640.7173 746500 6905500 84 -644.1458 747000 6905500 85 -647.3977 705000 6906000 1 -769.2407 705500 6906000 2 -767.0908 706000 6906000 3 -765.9749 706500 6906000 4 -765.6237 707000 6906000 5 -765.6598 707500 6906000 6 -765.6785 708000 6906000 7 -765.1884 708500 6906000 8 -763.8734 709000 6906000 9 -761.5701 709500 6906000 10 -758.1113 710000 6906000 11 -753.3408 710500 6906000 12 -747.1769 711000 6906000 13 -739.7748 711500 6906000 14 -731.5345 712000 6906000 15 -722.9935 712500 6906000 16 -714.6494 713000 6906000 17 -706.8936 713500 6906000 18 -700.0676 714000 6906000 19 -694.5732 714500 6906000 20 -690.8712 715000 6906000 21 -689.5246 715500 6906000 22 -691.2505 716000 6906000 23 -695.1341 716500 6906000 24 -699.7336 717000 6906000 25 -703.4748 717500 6906000 26 -704.8896 718000 6906000 27 -702.9111 718500 6906000 28 -697.5195 719000 6906000 29 -689.3903 719500 6906000 30 -679.4913 720000 6906000 31 -668.2379 720500 6906000 32 -655.7454 721000 6906000 33 -641.92 721500 6906000 34 -626.4738 722000 6906000 35 -609.1287 722500 6906000 36 -589.5127 723000 6906000 37 -567.6189 723500 6906000 38 -544.3284 724000 6906000 39 -520.7101 724500 6906000 40 -497.9871 725000 6906000 41 -477.371 725500 6906000 42 -459.8408 726000 6906000 43 -445.9419 726500 6906000 44 -435.8994 727000 6906000 45 -428.7811 727500 6906000 46 -424.0274 728000 6906000 47 -421.3133 728500 6906000 48 -420.8321 729000 6906000 49 -423.0623 729500 6906000 50 -428.4968 730000 6906000 51 -437.9799 730500 6906000 52 -451.3163 731000 6906000 53 -467.3541 731500 6906000 54 -484.9612 732000 6906000 55 -503.457 732500 6906000 56 -522.5132 733000 6906000 57 -542.3038 733500 6906000 58 -562.6342 734000 6906000 59 -582.8282 734500 6906000 60 -601.5344 735000 6906000 61 -616.7444 735500 6906000 62 -626.9539 736000 6906000 63 -632.3708 736500 6906000 64 -634.2665 737000 6906000 65 -634.3307 737500 6906000 66 -634.3409 738000 6906000 67 -635.3553 738500 6906000 68 -637.2147 739000 6906000 69 -639.4951 739500 6906000 70 -641.749 740000 6906000 71 -643.3322 740500 6906000 72 -643.9365 741000 6906000 73 -643.9037 741500 6906000 74 -643.7331 742000 6906000 75 -643.5975 742500 6906000 76 -643.367 743000 6906000 77 -642.693 743500 6906000 78 -641.2861 744000 6906000 79 -639.4073 744500 6906000 80 -638.3138 745000 6906000 81 -639.6909 745500 6906000 82 -643.0513 746000 6906000 83 -646.599 746500 6906000 84 -649.6774 747000 6906000 85 -652.5981 705000 6906500 1 -766.2075 705500 6906500 2 -764.1141 706000 6906500 3 -763.3357 706500 6906500 4 -763.5146 707000 6906500 5 -764.171 707500 6906500 6 -764.8373 708000 6906500 7 -764.9899 708500 6906500 8 -764.3021 709000 6906500 9 -762.6609 709500 6906500 10 -759.9196 710000 6906500 11 -755.9038 710500 6906500 12 -750.4796 711000 6906500 13 -743.7477 711500 6906500 14 -736.0458 712000 6906500 15 -727.8243 712500 6906500 16 -719.5134 713000 6906500 17 -711.4532 713500 6906500 18 -704.0145 714000 6906500 19 -697.7128 714500 6906500 20 -693.1666 715000 6906500 21 -691.0862 715500 6906500 22 -692.3648 716000 6906500 23 -696.1136 716500 6906500 24 -700.9434 717000 6906500 25 -705.3887 717500 6906500 26 -708.153 718000 6906500 27 -708.3276 718500 6906500 28 -705.8102 719000 6906500 29 -700.9819 719500 6906500 30 -694.4152 720000 6906500 31 -686.1188 720500 6906500 32 -675.814 721000 6906500 33 -663.5838 721500 6906500 34 -649.4052 722000 6906500 35 -632.9785 722500 6906500 36 -613.5322 723000 6906500 37 -590.6402 723500 6906500 38 -565.5562 724000 6906500 39 -539.8775 724500 6906500 40 -515.155 725000 6906500 41 -492.747 725500 6906500 42 -473.6967 726000 6906500 43 -458.5732 726500 6906500 44 -447.9022 727000 6906500 45 -440.749 727500 6906500 46 -436.5857 728000 6906500 47 -435.0097 728500 6906500 48 -436.0316 729000 6906500 49 -439.9133 729500 6906500 50 -447.0385 730000 6906500 51 -458.4081 730500 6906500 52 -473.9439 731000 6906500 53 -492.2801 731500 6906500 54 -511.9709 732000 6906500 55 -531.8607 732500 6906500 56 -550.6679 733000 6906500 57 -568.0651 733500 6906500 58 -584.5369 734000 6906500 59 -600.2468 734500 6906500 60 -614.4699 735000 6906500 61 -625.8983 735500 6906500 62 -633.5407 736000 6906500 63 -637.5467 736500 6906500 64 -638.854 737000 6906500 65 -638.7283 737500 6906500 66 -638.5419 738000 6906500 67 -639.142 738500 6906500 68 -640.4938 739000 6906500 69 -642.2319 739500 6906500 70 -643.8936 740000 6906500 71 -644.8825 740500 6906500 72 -644.9523 741000 6906500 73 -644.4451 741500 6906500 74 -643.8932 742000 6906500 75 -643.592 742500 6906500 76 -643.6121 743000 6906500 77 -643.7399 743500 6906500 78 -643.6736 744000 6906500 79 -643.4622 744500 6906500 80 -643.7531 745000 6906500 81 -645.5888 745500 6906500 82 -648.666 746000 6906500 83 -651.7783 746500 6906500 84 -654.5035 747000 6906500 85 -657.1844 705000 6907000 1 -763.3392 705500 6907000 2 -761.2622 706000 6907000 3 -760.7721 706500 6907000 4 -761.4223 707000 6907000 5 -762.6313 707500 6907000 6 -763.8774 708000 6907000 7 -764.6119 708500 6907000 8 -764.5027 709000 6907000 9 -763.4959 709500 6907000 10 -761.4692 710000 6907000 11 -758.2297 710500 6907000 12 -753.5847 711000 6907000 13 -747.5806 711500 6907000 14 -740.5034 712000 6907000 15 -732.7204 712500 6907000 16 -724.5841 713000 6907000 17 -716.3677 713500 6907000 18 -708.4445 714000 6907000 19 -701.3807 714500 6907000 20 -695.9357 715000 6907000 21 -692.9572 715500 6907000 22 -693.5718 716000 6907000 23 -696.9407 716500 6907000 24 -701.7155 717000 6907000 25 -706.5456 717500 6907000 26 -710.2992 718000 6907000 27 -712.1939 718500 6907000 28 -712.0865 719000 6907000 29 -710.1605 719500 6907000 30 -706.632 720000 6907000 31 -701.1615 720500 6907000 32 -693.1128 721000 6907000 33 -682.6146 721500 6907000 34 -669.8492 722000 6907000 35 -654.4728 722500 6907000 36 -635.3987 723000 6907000 37 -611.7907 723500 6907000 38 -585.1682 724000 6907000 39 -557.6207 724500 6907000 40 -531.011 725000 6907000 41 -506.8686 725500 6907000 42 -486.3483 726000 6907000 43 -470.0706 726500 6907000 44 -458.8736 727000 6907000 45 -451.8752 727500 6907000 46 -448.6106 728000 6907000 47 -448.6096 728500 6907000 48 -451.6811 729000 6907000 49 -457.8008 729500 6907000 50 -467.0915 730000 6907000 51 -480.4175 730500 6907000 52 -497.7138 731000 6907000 53 -517.4866 731500 6907000 54 -538.1103 732000 6907000 55 -558.1868 732500 6907000 56 -575.8565 733000 6907000 57 -590.4014 733500 6907000 58 -602.8536 734000 6907000 59 -614.1273 734500 6907000 60 -624.1481 735000 6907000 61 -632.2706 735500 6907000 62 -637.9043 736000 6907000 63 -640.9973 736500 6907000 64 -642.0596 737000 6907000 65 -641.9583 737500 6907000 66 -641.7523 738000 6907000 67 -642.1368 738500 6907000 68 -643.1333 739000 6907000 69 -644.4461 739500 6907000 70 -645.6165 740000 6907000 71 -646.0709 740500 6907000 72 -645.6173 741000 6907000 73 -644.6423 741500 6907000 74 -643.7292 742000 6907000 75 -643.2859 742500 6907000 76 -643.567 743000 6907000 77 -644.4572 743500 6907000 78 -645.5956 744000 6907000 79 -646.8234 744500 6907000 80 -648.3434 745000 6907000 81 -650.5685 745500 6907000 82 -653.3387 746000 6907000 83 -656.0433 746500 6907000 84 -658.5139 747000 6907000 85 -661.079 705000 6907500 1 -761.0701 705500 6907500 2 -758.9509 706000 6907500 3 -758.6144 706500 6907500 4 -759.5601 707000 6907500 5 -761.1382 707500 6907500 6 -762.8005 708000 6907500 7 -763.9971 708500 6907500 8 -764.3898 709000 6907500 9 -763.9603 709500 6907500 10 -762.607 710000 6907500 11 -760.1331 710500 6907500 12 -756.3107 711000 6907500 13 -751.1295 711500 6907500 14 -744.8119 712000 6907500 15 -737.628 712500 6907500 16 -729.8466 713000 6907500 17 -721.6676 713500 6907500 18 -713.4526 714000 6907500 19 -705.7943 714500 6907500 20 -699.5631 715000 6907500 21 -695.6732 715500 6907500 22 -695.4193 716000 6907500 23 -698.0832 716500 6907500 24 -702.3898 717000 6907500 25 -707.1352 717500 6907500 26 -711.3753 718000 6907500 27 -714.4521 718500 6907500 28 -716.1683 719000 6907500 29 -716.5286 719500 6907500 30 -715.4427 720000 6907500 31 -712.4085 720500 6907500 32 -706.5579 721000 6907500 33 -697.8668 721500 6907500 34 -686.5436 722000 6907500 35 -672.1584 722500 6907500 36 -653.548 723000 6907500 37 -629.6641 723500 6907500 38 -602.1418 724000 6907500 39 -573.2947 724500 6907500 40 -545.191 725000 6907500 41 -519.5436 725500 6907500 42 -497.6799 726000 6907500 43 -480.3492 726500 6907500 44 -468.6223 727000 6907500 45 -461.8842 727500 6907500 46 -459.812 728000 6907500 47 -461.9443 728500 6907500 48 -467.828 729000 6907500 49 -477.0074 729500 6907500 50 -489.1148 730000 6907500 51 -504.3858 730500 6907500 52 -522.5679 731000 6907500 53 -542.2878 731500 6907500 54 -562.0704 732000 6907500 55 -580.6306 732500 6907500 56 -596.2562 733000 6907500 57 -608.0245 733500 6907500 58 -617.107 734000 6907500 59 -624.7507 734500 6907500 60 -631.3646 735000 6907500 61 -636.8457 735500 6907500 62 -640.9261 736000 6907500 63 -643.3721 736500 6907500 64 -644.314 737000 6907500 65 -644.2825 737500 6907500 66 -644.089 738000 6907500 67 -644.3101 738500 6907500 68 -644.9893 739000 6907500 69 -645.9031 739500 6907500 70 -646.6407 740000 6907500 71 -646.6663 740500 6907500 72 -645.8322 741000 6907500 73 -644.5655 741500 6907500 74 -643.472 742000 6907500 75 -643.0187 742500 6907500 76 -643.5841 743000 6907500 77 -645.1165 743500 6907500 78 -647.1946 744000 6907500 79 -649.4961 744500 6907500 80 -651.9401 745000 6907500 81 -654.5032 745500 6907500 82 -657.124 746000 6907500 83 -659.6221 746500 6907500 84 -662.0157 747000 6907500 85 -664.6089 705000 6908000 1 -759.7402 705500 6908000 2 -757.5124 706000 6908000 3 -757.1274 706500 6908000 4 -758.1 707000 6908000 5 -759.7776 707500 6908000 6 -761.619 708000 6908000 7 -763.1099 708500 6908000 8 -763.9119 709000 6908000 9 -763.983 709500 6908000 10 -763.2341 710000 6908000 11 -761.4848 710500 6908000 12 -758.5213 711000 6908000 13 -754.2822 711500 6908000 14 -748.8942 712000 6908000 15 -742.5049 712500 6908000 16 -735.2878 713000 6908000 17 -727.3672 713500 6908000 18 -719.0856 714000 6908000 19 -711.0689 714500 6908000 20 -704.2333 715000 6908000 21 -699.5543 715500 6908000 22 -698.2827 716000 6908000 23 -699.8994 716500 6908000 24 -703.275 717000 6908000 25 -707.3971 717500 6908000 26 -711.5439 718000 6908000 27 -715.2269 718500 6908000 28 -718.179 719000 6908000 29 -720.1711 719500 6908000 30 -720.8735 720000 6908000 31 -719.7236 720500 6908000 32 -715.9116 721000 6908000 33 -709.1079 721500 6908000 34 -699.3034 722000 6908000 35 -685.9202 722500 6908000 36 -667.787 723000 6908000 37 -644.0412 723500 6908000 38 -616.2115 724000 6908000 39 -586.6362 724500 6908000 40 -557.515 725000 6908000 41 -530.7133 725500 6908000 42 -507.7116 726000 6908000 43 -489.434 726500 6908000 44 -477.1657 727000 6908000 45 -470.72 727500 6908000 46 -470.0315 728000 6908000 47 -474.8091 728500 6908000 48 -484.2442 729000 6908000 49 -497.2515 729500 6908000 50 -512.7747 730000 6908000 51 -529.9908 730500 6908000 52 -548.1389 731000 6908000 53 -566.2992 731500 6908000 54 -583.5651 732000 6908000 55 -599.0749 732500 6908000 56 -611.8253 733000 6908000 57 -621.0679 733500 6908000 58 -627.6827 734000 6908000 59 -632.7683 734500 6908000 60 -636.953 735000 6908000 61 -640.4904 735500 6908000 62 -643.3716 736000 6908000 63 -645.2806 736500 6908000 64 -646.0999 737000 6908000 65 -646.0961 737500 6908000 66 -645.8373 738000 6908000 67 -645.8002 738500 6908000 68 -646.043 739000 6908000 69 -646.431 739500 6908000 70 -646.6877 740000 6908000 71 -646.4139 740500 6908000 72 -645.4913 741000 6908000 73 -644.3117 741500 6908000 74 -643.4012 742000 6908000 75 -643.1854 742500 6908000 76 -644.0622 743000 6908000 77 -646.0289 743500 6908000 78 -648.6606 744000 6908000 79 -651.5601 744500 6908000 80 -654.549 745000 6908000 81 -657.4271 745500 6908000 82 -660.1514 746000 6908000 83 -662.7588 746500 6908000 84 -665.3514 747000 6908000 85 -668.1602 705000 6908500 1 -759.4261 705500 6908500 2 -757.0411 706000 6908500 3 -756.4157 706500 6908500 4 -757.1472 707000 6908500 5 -758.6505 707500 6908500 6 -760.4211 708000 6908500 7 -762.0129 708500 6908500 8 -763.098 709000 6908500 9 -763.577 709500 6908500 10 -763.356 710000 6908500 11 -762.2798 710500 6908500 12 -760.1858 711000 6908500 13 -756.989 711500 6908500 14 -752.6973 712000 6908500 15 -747.316 712500 6908500 16 -740.8984 713000 6908500 17 -733.4675 713500 6908500 18 -725.342 714000 6908500 19 -717.1957 714500 6908500 20 -709.9402 715000 6908500 21 -704.5864 715500 6908500 22 -702.2883 716000 6908500 23 -702.637 716500 6908500 24 -704.711 717000 6908500 25 -707.723 717500 6908500 26 -711.2151 718000 6908500 27 -714.9279 718500 6908500 28 -718.5401 719000 6908500 29 -721.5605 719500 6908500 30 -723.4479 720000 6908500 31 -723.685 720500 6908500 32 -721.6144 721000 6908500 33 -716.7045 721500 6908500 34 -708.5519 722000 6908500 35 -696.3868 722500 6908500 36 -679.0053 723000 6908500 37 -655.6324 723500 6908500 38 -627.8406 724000 6908500 39 -597.8931 724500 6908500 40 -568.0649 725000 6908500 41 -540.39 725500 6908500 42 -516.5216 726000 6908500 43 -497.4985 726500 6908500 44 -484.7417 727000 6908500 45 -478.551 727500 6908500 46 -479.3278 728000 6908500 47 -487.067 728500 6908500 48 -500.5525 729000 6908500 49 -517.8759 729500 6908500 50 -537.0745 730000 6908500 51 -556.0878 730500 6908500 52 -573.4892 731000 6908500 53 -588.9835 731500 6908500 54 -602.5922 732000 6908500 55 -614.2258 732500 6908500 56 -623.629 733000 6908500 57 -630.5293 733500 6908500 58 -635.3973 734000 6908500 59 -638.8849 734500 6908500 60 -641.5611 735000 6908500 61 -643.7988 735500 6908500 62 -645.7435 736000 6908500 63 -647.132 736500 6908500 64 -647.7523 737000 6908500 65 -647.6943 737500 6908500 66 -647.2498 738000 6908500 67 -646.7855 738500 6908500 68 -646.4003 739000 6908500 69 -646.0844 739500 6908500 70 -645.7549 740000 6908500 71 -645.3036 740500 6908500 72 -644.66 741000 6908500 73 -644.0349 741500 6908500 74 -643.7307 742000 6908500 75 -644.0482 742500 6908500 76 -645.2843 743000 6908500 77 -647.4611 743500 6908500 78 -650.2421 744000 6908500 79 -653.2852 744500 6908500 80 -656.4145 745000 6908500 81 -659.5486 745500 6908500 82 -662.6039 746000 6908500 83 -665.6193 746500 6908500 84 -668.6636 747000 6908500 85 -671.8734 705000 6909000 1 -759.7986 705500 6909000 2 -757.2067 706000 6909000 3 -756.247 706500 6909000 4 -756.5947 707000 6909000 5 -757.7604 707500 6909000 6 -759.309 708000 6909000 7 -760.8569 708500 6909000 8 -762.1064 709000 6909000 9 -762.9073 709500 6909000 10 -763.1511 710000 6909000 11 -762.709 710500 6909000 12 -761.4671 711000 6909000 13 -759.335 711500 6909000 14 -756.2169 712000 6909000 15 -751.9804 712500 6909000 16 -746.5396 713000 6909000 17 -739.7786 713500 6909000 18 -731.9883 714000 6909000 19 -723.9004 714500 6909000 20 -716.4295 715000 6909000 21 -710.5474 715500 6909000 22 -707.3045 716000 6909000 23 -706.3577 716500 6909000 24 -706.9755 717000 6909000 25 -708.6025 717500 6909000 26 -711.0784 718000 6909000 27 -714.4199 718500 6909000 28 -718.2678 719000 6909000 29 -721.8651 719500 6909000 30 -724.4946 720000 6909000 31 -725.7315 720500 6909000 32 -725.1322 721000 6909000 33 -722.01 721500 6909000 34 -715.5673 722000 6909000 35 -704.8294 722500 6909000 36 -688.462 723000 6909000 37 -665.6561 723500 6909000 38 -638.0295 724000 6909000 39 -607.8742 724500 6909000 40 -577.5607 725000 6909000 41 -549.2833 725500 6909000 42 -524.8479 726000 6909000 43 -505.3354 726500 6909000 44 -492.2349 727000 6909000 45 -486.1646 727500 6909000 46 -488.2905 728000 6909000 47 -498.9606 728500 6909000 48 -516.493 729000 6909000 49 -538.0799 729500 6909000 50 -560.8156 730000 6909000 51 -581.3269 730500 6909000 52 -597.5488 731000 6909000 53 -609.942 731500 6909000 54 -619.5723 732000 6909000 55 -627.1808 732500 6909000 56 -633.2815 733000 6909000 57 -638.0408 733500 6909000 58 -641.5368 734000 6909000 59 -643.9374 734500 6909000 60 -645.6229 735000 6909000 61 -646.9566 735500 6909000 62 -648.1339 736000 6909000 63 -648.9959 736500 6909000 64 -649.3376 737000 6909000 65 -649.1388 737500 6909000 66 -648.4441 738000 6909000 67 -647.4918 738500 6909000 68 -646.4416 739000 6909000 69 -645.4199 739500 6909000 70 -644.5483 740000 6909000 71 -644.0217 740500 6909000 72 -643.8617 741000 6909000 73 -644.0255 741500 6909000 74 -644.5225 742000 6909000 75 -645.4924 742500 6909000 76 -647.1105 743000 6909000 77 -649.3932 743500 6909000 78 -652.1274 744000 6909000 79 -655.0865 744500 6909000 80 -658.1821 745000 6909000 81 -661.477 745500 6909000 82 -664.908 746000 6909000 83 -668.4027 746500 6909000 84 -671.9472 747000 6909000 85 -675.5839 705000 6909500 1 -760.7206 705500 6909500 2 -757.8798 706000 6909500 3 -756.5135 706500 6909500 4 -756.3811 707000 6909500 5 -757.0965 707500 6909500 6 -758.3072 708000 6909500 7 -759.7073 708500 6909500 8 -761.0241 709000 6909500 9 -762.0776 709500 6909500 10 -762.7328 710000 6909500 11 -762.8768 710500 6909500 12 -762.4359 711000 6909500 13 -761.3156 711500 6909500 14 -759.3452 712000 6909500 15 -756.2835 712500 6909500 16 -751.9124 713000 6909500 17 -745.9675 713500 6909500 18 -738.7073 714000 6909500 19 -730.9277 714500 6909500 20 -723.5402 715000 6909500 21 -717.4111 715500 6909500 22 -713.4057 716000 6909500 23 -711.2693 716500 6909500 24 -710.4502 717000 6909500 25 -710.6221 717500 6909500 26 -711.9038 718000 6909500 27 -714.5847 718500 6909500 28 -718.2958 719000 6909500 29 -722.0558 719500 6909500 30 -725.0289 720000 6909500 31 -726.8987 720500 6909500 32 -727.4316 721000 6909500 33 -725.8459 721500 6909500 34 -721.017 722000 6909500 35 -711.7602 722500 6909500 36 -696.5789 723000 6909500 37 -674.5015 723500 6909500 38 -647.2177 724000 6909500 39 -617.1057 724500 6909500 40 -586.6354 725000 6909500 41 -558.1381 725500 6909500 42 -533.5476 726000 6909500 43 -513.946 726500 6909500 44 -500.7903 727000 6909500 45 -494.891 727500 6909500 46 -498.1286 728000 6909500 47 -511.2077 728500 6909500 48 -532.0516 729000 6909500 49 -557.0635 729500 6909500 50 -582.5436 730000 6909500 51 -604.0726 730500 6909500 52 -618.9843 731000 6909500 53 -628.4426 731500 6909500 54 -634.4623 732000 6909500 55 -638.5109 732500 6909500 56 -641.673 733000 6909500 57 -644.5142 733500 6909500 58 -646.8349 734000 6909500 59 -648.3742 734500 6909500 60 -649.3023 735000 6909500 61 -649.9194 735500 6909500 62 -650.4301 736000 6909500 63 -650.7578 736500 6909500 64 -650.7452 737000 6909500 65 -650.3172 737500 6909500 66 -649.364 738000 6909500 67 -648.012 738500 6909500 68 -646.4688 739000 6909500 69 -644.9682 739500 6909500 70 -643.782 740000 6909500 71 -643.3152 740500 6909500 72 -643.6769 741000 6909500 73 -644.616 741500 6909500 74 -645.8882 742000 6909500 75 -647.4802 742500 6909500 76 -649.4533 743000 6909500 77 -651.8127 743500 6909500 78 -654.4587 744000 6909500 79 -657.2908 744500 6909500 80 -660.3059 745000 6909500 81 -663.683 745500 6909500 82 -667.3882 746000 6909500 83 -671.2481 746500 6909500 84 -675.1739 747000 6909500 85 -679.1468 705000 6910000 1 -762.0343 705500 6910000 2 -758.935 706000 6910000 3 -757.1146 706500 6910000 4 -756.4298 707000 6910000 5 -756.6089 707500 6910000 6 -757.3954 708000 6910000 7 -758.5727 708500 6910000 8 -759.8979 709000 6910000 9 -761.1663 709500 6910000 10 -762.203 710000 6910000 11 -762.885 710500 6910000 12 -763.1464 711000 6910000 13 -762.8876 711500 6910000 14 -761.8984 712000 6910000 15 -759.8763 712500 6910000 16 -756.5311 713000 6910000 17 -751.502 713500 6910000 18 -745.0057 714000 6910000 19 -737.8624 714500 6910000 20 -730.9423 715000 6910000 21 -724.9535 715500 6910000 22 -720.5101 716000 6910000 23 -717.457 716500 6910000 24 -715.4557 717000 6910000 25 -714.3893 717500 6910000 26 -714.5441 718000 6910000 27 -716.3757 718500 6910000 28 -719.5621 719000 6910000 29 -723.0464 719500 6910000 30 -725.9811 720000 6910000 31 -728.1182 720500 6910000 32 -729.3542 721000 6910000 33 -728.872 721500 6910000 34 -725.3211 722000 6910000 35 -717.3379 722500 6910000 36 -703.3497 723000 6910000 37 -682.225 723500 6910000 38 -655.6451 724000 6910000 39 -626.0471 724500 6910000 40 -595.9587 725000 6910000 41 -567.7846 725500 6910000 42 -543.5591 726000 6910000 43 -524.4022 726500 6910000 44 -511.713 727000 6910000 45 -506.3515 727500 6910000 46 -510.4521 728000 6910000 47 -524.9136 728500 6910000 48 -547.4555 729000 6910000 49 -574.0405 729500 6910000 50 -600.5842 730000 6910000 51 -622.3079 730500 6910000 52 -636.1683 731000 6910000 53 -643.5914 731500 6910000 54 -647.0967 732000 6910000 55 -648.5961 732500 6910000 56 -649.5129 733000 6910000 57 -650.6846 733500 6910000 58 -651.8622 734000 6910000 59 -652.5571 734500 6910000 60 -652.7709 735000 6910000 61 -652.7131 735500 6910000 62 -652.566 736000 6910000 63 -652.3135 736500 6910000 64 -651.8538 737000 6910000 65 -651.1127 737500 6910000 66 -649.9446 738000 6910000 67 -648.4026 738500 6910000 68 -646.7053 739000 6910000 69 -645.1262 739500 6910000 70 -643.986 740000 6910000 71 -643.7283 740500 6910000 72 -644.5188 741000 6910000 73 -646.0273 741500 6910000 74 -647.8828 742000 6910000 75 -649.9622 742500 6910000 76 -652.2326 743000 6910000 77 -654.6826 743500 6910000 78 -657.2966 744000 6910000 79 -660.0717 744500 6910000 80 -663.0594 745000 6910000 81 -666.4505 745500 6910000 82 -670.2468 746000 6910000 83 -674.2485 746500 6910000 84 -678.335 747000 6910000 85 -682.4724 705000 6910500 1 -763.511 705500 6910500 2 -760.1708 706000 6910500 3 -757.8911 706500 6910500 4 -756.6239 707000 6910500 5 -756.2161 707500 6910500 6 -756.5173 708000 6910500 7 -757.4278 708500 6910500 8 -758.7429 709000 6910500 9 -760.2229 709500 6910500 10 -761.6379 710000 6910500 11 -762.8141 710500 6910500 12 -763.6421 711000 6910500 13 -764.0079 711500 6910500 14 -763.7006 712000 6910500 15 -762.4247 712500 6910500 16 -759.9193 713000 6910500 17 -755.8488 713500 6910500 18 -750.3732 714000 6910500 19 -744.232 714500 6910500 20 -738.1799 715000 6910500 21 -732.736 715500 6910500 22 -728.2699 716000 6910500 23 -724.7184 716500 6910500 24 -721.9935 717000 6910500 25 -720.1448 717500 6910500 26 -719.4606 718000 6910500 27 -720.3496 718500 6910500 28 -722.6068 719000 6910500 29 -725.354 719500 6910500 30 -727.8784 720000 6910500 31 -729.9495 720500 6910500 32 -731.4401 721000 6910500 33 -731.5518 721500 6910500 34 -728.8192 722000 6910500 35 -721.7795 722500 6910500 36 -708.8607 723000 6910500 37 -688.9383 723500 6910500 38 -663.5347 724000 6910500 39 -635.0351 724500 6910500 40 -605.958 725000 6910500 41 -578.7176 725500 6910500 42 -555.4033 726000 6910500 43 -537.2144 726500 6910500 44 -525.5706 727000 6910500 45 -521.1871 727500 6910500 46 -525.9619 728000 6910500 47 -540.6243 728500 6910500 48 -562.9835 729000 6910500 49 -589.0175 729500 6910500 50 -614.6574 730000 6910500 51 -635.427 730500 6910500 52 -648.5104 731000 6910500 53 -654.9966 731500 6910500 54 -657.3367 732000 6910500 55 -657.524 732500 6910500 56 -657.0244 733000 6910500 57 -656.8196 733500 6910500 58 -656.8427 734000 6910500 59 -656.6307 734500 6910500 60 -656.0944 735000 6910500 61 -655.3436 735500 6910500 62 -654.5092 736000 6910500 63 -653.6169 736500 6910500 64 -652.6304 737000 6910500 65 -651.5124 737500 6910500 66 -650.1937 738000 6910500 67 -648.6996 738500 6910500 68 -647.2093 739000 6910500 69 -645.9549 739500 6910500 70 -645.2211 740000 6910500 71 -645.3234 740500 6910500 72 -646.4151 741000 6910500 73 -648.2316 741500 6910500 74 -650.4221 742000 6910500 75 -652.816 742500 6910500 76 -655.317 743000 6910500 77 -657.8898 743500 6910500 78 -660.5629 744000 6910500 79 -663.3808 744500 6910500 80 -666.4142 745000 6910500 81 -669.7874 745500 6910500 82 -673.5127 746000 6910500 83 -677.44 746500 6910500 84 -681.4698 747000 6910500 85 -685.591 705000 6911000 1 -764.9401 705500 6911000 2 -761.3903 706000 6911000 3 -758.6859 706500 6911000 4 -756.8596 707000 6911000 5 -755.8604 707500 6911000 6 -755.6443 708000 6911000 7 -756.262 708500 6911000 8 -757.5634 709000 6911000 9 -759.2563 709500 6911000 10 -761.0411 710000 6911000 11 -762.6635 710500 6911000 12 -763.9186 711000 6911000 13 -764.6628 711500 6911000 14 -764.726 712000 6911000 15 -763.888 712500 6911000 16 -761.9838 713000 6911000 17 -758.8356 713500 6911000 18 -754.565 714000 6911000 19 -749.7145 714500 6911000 20 -744.8437 715000 6911000 21 -740.2831 715500 6911000 22 -736.1622 716000 6911000 23 -732.5356 716500 6911000 24 -729.5528 717000 6911000 25 -727.3787 717500 6911000 26 -726.1912 718000 6911000 27 -726.1553 718500 6911000 28 -727.1858 719000 6911000 29 -728.8169 719500 6911000 30 -730.6069 720000 6911000 31 -732.3405 720500 6911000 32 -733.7645 721000 6911000 33 -734.0986 721500 6911000 34 -731.8726 722000 6911000 35 -725.6024 722500 6911000 36 -713.7189 723000 6911000 37 -695.1693 723500 6911000 38 -671.2977 724000 6911000 39 -644.327 724500 6911000 40 -616.7167 725000 6911000 41 -590.8884 725500 6911000 42 -568.9511 726000 6911000 43 -552.1425 726500 6911000 44 -541.8577 727000 6911000 45 -538.5587 727500 6911000 46 -543.7042 728000 6911000 47 -557.7487 728500 6911000 48 -578.5992 729000 6911000 49 -602.6457 729500 6911000 50 -626.1548 730000 6911000 51 -645.1745 730500 6911000 52 -657.3547 731000 6911000 53 -663.4403 731500 6911000 54 -665.4144 732000 6911000 55 -665.0798 732500 6911000 56 -663.8375 733000 6911000 57 -662.6335 733500 6911000 58 -661.6113 734000 6911000 59 -660.4995 734500 6911000 60 -659.2043 735000 6911000 61 -657.753 735500 6911000 62 -656.2195 736000 6911000 63 -654.6624 736500 6911000 64 -653.1182 737000 6911000 65 -651.6199 737500 6911000 66 -650.2157 738000 6911000 67 -648.9451 738500 6911000 68 -647.9157 739000 6911000 69 -647.2621 739500 6911000 70 -647.1473 740000 6911000 71 -647.7188 740500 6911000 72 -649.0386 741000 6911000 73 -650.9785 741500 6911000 74 -653.3086 742000 6911000 75 -655.8721 742500 6911000 76 -658.5504 743000 6911000 77 -661.2848 743500 6911000 78 -664.1031 744000 6911000 79 -667.0524 744500 6911000 80 -670.1771 745000 6911000 81 -673.525 745500 6911000 82 -677.0912 746000 6911000 83 -680.8044 746500 6911000 84 -684.6236 747000 6911000 85 -688.5858 705000 6911500 1 -766.164 705500 6911500 2 -762.459 706000 6911500 3 -759.406 706500 6911500 4 -757.0965 707000 6911500 5 -755.558 707500 6911500 6 -754.8408 708000 6911500 7 -755.1478 708500 6911500 8 -756.4039 709000 6911500 9 -758.2617 709500 6911500 10 -760.3498 710000 6911500 11 -762.327 710500 6911500 12 -763.8853 711000 6911500 13 -764.8358 711500 6911500 14 -765.0754 712000 6911500 15 -764.4939 712500 6911500 16 -763.0551 713000 6911500 17 -760.7393 713500 6911500 18 -757.6762 714000 6911500 19 -754.1885 714500 6911500 20 -750.6082 715000 6911500 21 -747.1004 715500 6911500 22 -743.5752 716000 6911500 23 -740.1871 716500 6911500 24 -737.2711 717000 6911500 25 -735.0463 717500 6911500 26 -733.5416 718000 6911500 27 -732.667 718500 6911500 28 -732.4035 719000 6911500 29 -732.756 719500 6911500 30 -733.6232 720000 6911500 31 -734.8301 720500 6911500 32 -736.0356 721000 6911500 33 -736.4656 721500 6911500 34 -734.7154 722000 6911500 35 -729.2993 722500 6911500 36 -718.6234 723000 6911500 37 -701.5839 723500 6911500 38 -679.4068 724000 6911500 39 -654.1572 724500 6911500 40 -628.2314 725000 6911500 41 -604.0777 725500 6911500 42 -583.8341 726000 6911500 43 -568.6826 726500 6911500 44 -559.8256 727000 6911500 45 -557.4141 727500 6911500 46 -562.5075 728000 6911500 47 -575.3927 728500 6911500 48 -594.0952 729000 6911500 49 -615.4997 729500 6911500 50 -636.3505 730000 6911500 51 -653.2719 730500 6911500 52 -664.3451 731000 6911500 53 -670.0243 731500 6911500 54 -671.8234 732000 6911500 55 -671.2685 732500 6911500 56 -669.6039 733000 6911500 57 -667.6996 733500 6911500 58 -665.8468 734000 6911500 59 -663.9625 734500 6911500 60 -661.9766 735000 6911500 61 -659.8613 735500 6911500 62 -657.655 736000 6911500 63 -655.4551 736500 6911500 64 -653.3751 737000 6911500 65 -651.5292 737500 6911500 66 -650.1057 738000 6911500 67 -649.1589 738500 6911500 68 -648.7146 739000 6911500 69 -648.7834 739500 6911500 70 -649.3774 740000 6911500 71 -650.4482 740500 6911500 72 -651.9706 741000 6911500 73 -653.9554 741500 6911500 74 -656.328 742000 6911500 75 -658.982 742500 6911500 76 -661.8093 743000 6911500 77 -664.7379 743500 6911500 78 -667.7653 744000 6911500 79 -670.9059 744500 6911500 80 -674.1562 745000 6911500 81 -677.4816 745500 6911500 82 -680.8666 746000 6911500 83 -684.3095 746500 6911500 84 -687.8401 747000 6911500 85 -691.5514 705000 6912000 1 -767.0073 705500 6912000 2 -763.251 706000 6912000 3 -759.9927 706500 6912000 4 -757.3564 707000 6912000 5 -755.4185 707500 6912000 6 -754.288 708000 6912000 7 -754.2757 708500 6912000 8 -755.3843 709000 6912000 9 -757.2462 709500 6912000 10 -759.4545 710000 6912000 11 -761.6245 710500 6912000 12 -763.3729 711000 6912000 13 -764.4636 711500 6912000 14 -764.8429 712000 6912000 15 -764.496 712500 6912000 16 -763.4821 713000 6912000 17 -761.8965 713500 6912000 18 -759.8653 714000 6912000 19 -757.5464 714500 6912000 20 -755.0922 715000 6912000 21 -752.5644 715500 6912000 22 -749.7429 716000 6912000 23 -746.7952 716500 6912000 24 -744.132 717000 6912000 25 -741.9539 717500 6912000 26 -740.181 718000 6912000 27 -738.5677 718500 6912000 28 -737.1595 719000 6912000 29 -736.3184 719500 6912000 30 -736.2437 720000 6912000 31 -736.8618 720500 6912000 32 -737.834 721000 6912000 33 -738.4202 721500 6912000 34 -737.334 722000 6912000 35 -733.0433 722500 6912000 36 -723.863 723000 6912000 37 -708.5278 723500 6912000 38 -688.1616 724000 6912000 39 -664.7603 724500 6912000 40 -640.6707 725000 6912000 41 -618.3605 725500 6912000 42 -599.9957 726000 6912000 43 -586.6124 726500 6912000 44 -579.0675 727000 6912000 45 -577.2291 727500 6912000 46 -581.8631 728000 6912000 47 -593.188 728500 6912000 48 -609.4616 729000 6912000 49 -627.9825 729500 6912000 50 -645.9914 730000 6912000 51 -660.6388 730500 6912000 52 -670.3184 731000 6912000 53 -675.3406 731500 6912000 54 -676.8596 732000 6912000 55 -676.1163 732500 6912000 56 -674.1699 733000 6912000 57 -671.7856 733500 6912000 58 -669.3118 734000 6912000 59 -666.7997 734500 6912000 60 -664.2244 735000 6912000 61 -661.5368 735500 6912000 62 -658.7482 736000 6912000 63 -655.9908 736500 6912000 64 -653.4543 737000 6912000 65 -651.3325 737500 6912000 66 -649.9368 738000 6912000 67 -649.3342 738500 6912000 68 -649.4724 739000 6912000 69 -650.2393 739500 6912000 70 -651.5076 740000 6912000 71 -653.0657 740500 6912000 72 -654.8043 741000 6912000 73 -656.8472 741500 6912000 74 -659.2656 742000 6912000 75 -662.011 742500 6912000 76 -664.9953 743000 6912000 77 -668.1411 743500 6912000 78 -671.4105 744000 6912000 79 -674.772 744500 6912000 80 -678.1685 745000 6912000 81 -681.4981 745500 6912000 82 -684.7352 746000 6912000 83 -687.9326 746500 6912000 84 -691.1828 747000 6912000 85 -694.6293 705000 6912500 1 -767.3754 705500 6912500 2 -763.704 706000 6912500 3 -760.4238 706500 6912500 4 -757.664 707000 6912500 5 -755.5196 707500 6912500 6 -754.1161 708000 6912500 7 -753.7789 708500 6912500 8 -754.5879 709000 6912500 9 -756.2205 709500 6912500 10 -758.3023 710000 6912500 11 -760.4612 710500 6912500 12 -762.3041 711000 6912500 13 -763.5613 711500 6912500 14 -764.1766 712000 6912500 15 -764.1602 712500 6912500 16 -763.6014 713000 6912500 17 -762.6235 713500 6912500 18 -761.35 714000 6912500 19 -759.8545 714500 6912500 20 -758.1922 715000 6912500 21 -756.3859 715500 6912500 22 -754.247 716000 6912500 23 -751.847 716500 6912500 24 -749.5266 717000 6912500 25 -747.3916 717500 6912500 26 -745.317 718000 6912500 27 -743.0789 718500 6912500 28 -740.7662 719000 6912500 29 -738.9281 719500 6912500 30 -737.9835 720000 6912500 31 -738.0229 720500 6912500 32 -738.8322 721000 6912500 33 -739.7339 721500 6912500 34 -739.5175 722000 6912500 35 -736.573 722500 6912500 36 -729.1442 723000 6912500 37 -715.7603 723500 6912500 38 -697.4645 724000 6912500 39 -676.2162 724500 6912500 40 -654.2826 725000 6912500 41 -634.0502 725500 6912500 42 -617.636 726000 6912500 43 -605.9288 726500 6912500 44 -599.4549 727000 6912500 45 -597.8979 727500 6912500 46 -601.7577 728000 6912500 47 -611.2164 728500 6912500 48 -624.8322 729000 6912500 49 -640.2881 729500 6912500 50 -655.3054 730000 6912500 51 -667.5381 730500 6912500 52 -675.6151 731000 6912500 53 -679.7507 731500 6912500 54 -680.8371 732000 6912500 55 -679.8553 732500 6912500 56 -677.6644 733000 6912500 57 -674.9158 733500 6912500 58 -671.9636 734000 6912500 59 -668.9374 734500 6912500 60 -665.8608 735000 6912500 61 -662.6958 735500 6912500 62 -659.4502 736000 6912500 63 -656.2878 736500 6912500 64 -653.4426 737000 6912500 65 -651.1559 737500 6912500 66 -649.8171 738000 6912500 67 -649.4988 738500 6912500 68 -650.092 739000 6912500 69 -651.3928 739500 6912500 70 -653.1863 740000 6912500 71 -655.1697 740500 6912500 72 -657.1743 741000 6912500 73 -659.3768 741500 6912500 74 -661.9305 742000 6912500 75 -664.831 742500 6912500 76 -668.0118 743000 6912500 77 -671.3949 743500 6912500 78 -674.9152 744000 6912500 79 -678.5017 744500 6912500 80 -682.0552 745000 6912500 81 -685.4286 745500 6912500 82 -688.5902 746000 6912500 83 -691.6287 746500 6912500 84 -694.6845 747000 6912500 85 -697.9394 705000 6913000 1 -767.3026 705500 6913000 2 -763.8315 706000 6913000 3 -760.6863 706500 6913000 4 -757.9754 707000 6913000 5 -755.778 707500 6913000 6 -754.2111 708000 6913000 7 -753.5569 708500 6913000 8 -753.9457 709000 6913000 9 -755.1658 709500 6913000 10 -756.9359 710000 6913000 11 -758.9396 710500 6913000 12 -760.8129 711000 6913000 13 -762.2669 711500 6913000 14 -763.1981 712000 6913000 15 -763.5866 712500 6913000 16 -763.5031 713000 6913000 17 -763.0341 713500 6913000 18 -762.2775 714000 6913000 19 -761.2902 714500 6913000 20 -760.1168 715000 6913000 21 -758.7726 715500 6913000 22 -757.2083 716000 6913000 23 -755.4054 716500 6913000 24 -753.4993 717000 6913000 25 -751.4366 717500 6913000 26 -749.0576 718000 6913000 27 -746.2589 718500 6913000 28 -743.2145 719000 6913000 29 -740.5228 719500 6913000 30 -738.7458 720000 6913000 31 -738.2009 720500 6913000 32 -738.9097 721000 6913000 33 -740.2667 721500 6913000 34 -741.0375 722000 6913000 35 -739.5185 722500 6913000 36 -733.9505 723000 6913000 37 -722.8034 723500 6913000 38 -706.9954 724000 6913000 39 -688.4122 724500 6913000 40 -669.1558 725000 6913000 41 -651.3428 725500 6913000 42 -636.8748 726000 6913000 43 -626.5822 726500 6913000 44 -620.8739 727000 6913000 45 -619.3707 727500 6913000 46 -622.2646 728000 6913000 47 -629.5979 728500 6913000 48 -640.2613 729000 6913000 49 -652.3929 729500 6913000 50 -664.2071 730000 6913000 51 -673.866 730500 6913000 52 -680.2272 731000 6913000 53 -683.3787 731500 6913000 54 -683.9639 732000 6913000 55 -682.7136 732500 6913000 56 -680.2897 733000 6913000 57 -677.2291 733500 6913000 58 -673.8701 734000 6913000 59 -670.3965 734500 6913000 60 -666.8837 735000 6913000 61 -663.3367 735500 6913000 62 -659.7821 736000 6913000 63 -656.3887 736500 6913000 64 -653.4034 737000 6913000 65 -651.0817 737500 6913000 66 -649.821 738000 6913000 67 -649.6895 738500 6913000 68 -650.5569 739000 6913000 69 -652.1736 739500 6913000 70 -654.2861 740000 6913000 71 -656.6078 740500 6913000 72 -658.938 741000 6913000 73 -661.4277 741500 6913000 74 -664.2323 742000 6913000 75 -667.3689 742500 6913000 76 -670.7915 743000 6913000 77 -674.4293 743500 6913000 78 -678.2033 744000 6913000 79 -682.0163 744500 6913000 80 -685.7371 745000 6913000 81 -689.1976 745500 6913000 82 -692.3607 746000 6913000 83 -695.3354 746500 6913000 84 -698.2944 747000 6913000 85 -701.4442 705000 6913500 1 -766.8882 705500 6913500 2 -763.6818 706000 6913500 3 -760.7708 706500 6913500 4 -758.2213 707000 6913500 5 -756.0668 707500 6913500 6 -754.3773 708000 6913500 7 -753.4003 708500 6913500 8 -753.3098 709000 6913500 9 -754.027 709500 6913500 10 -755.3956 710000 6913500 11 -757.191 710500 6913500 12 -759.0764 711000 6913500 13 -760.7438 711500 6913500 14 -762.0251 712000 6913500 15 -762.8375 712500 6913500 16 -763.1971 713000 6913500 17 -763.1354 713500 6913500 18 -762.7182 714000 6913500 19 -762.0181 714500 6913500 20 -761.1106 715000 6913500 21 -760.0729 715500 6913500 22 -758.9792 716000 6913500 23 -757.7759 716500 6913500 24 -756.3392 717000 6913500 25 -754.4229 717500 6913500 26 -751.8215 718000 6913500 27 -748.5459 718500 6913500 28 -744.8718 719000 6913500 29 -741.3967 719500 6913500 30 -738.787 720000 6913500 31 -737.6283 720500 6913500 32 -738.2754 721000 6913500 33 -740.184 721500 6913500 34 -741.9683 722000 6913500 35 -741.8672 722500 6913500 36 -738.1133 723000 6913500 37 -729.3698 723500 6913500 38 -716.402 724000 6913500 39 -700.931 724500 6913500 40 -684.8007 725000 6913500 41 -669.7119 725500 6913500 42 -657.1497 726000 6913500 43 -647.9584 726500 6913500 44 -642.7 727000 6913500 45 -641.0552 727500 6913500 46 -642.9114 728000 6913500 47 -647.9877 728500 6913500 48 -655.4964 729000 6913500 49 -664.1465 729500 6913500 50 -672.6458 730000 6913500 51 -679.636 730500 6913500 52 -684.2353 731000 6913500 53 -686.3739 731500 6913500 54 -686.4222 732000 6913500 55 -684.8704 732500 6913500 56 -682.203 733000 6913500 57 -678.8491 733500 6913500 58 -675.1305 734000 6913500 59 -671.2708 734500 6913500 60 -667.3943 735000 6913500 61 -663.5574 735500 6913500 62 -659.8242 736000 6913500 63 -656.3467 736500 6913500 64 -653.3492 737000 6913500 65 -651.0788 737500 6913500 66 -649.9197 738000 6913500 67 -649.9125 738500 6913500 68 -650.9239 739000 6913500 69 -652.6972 739500 6913500 70 -654.9747 740000 6913500 71 -657.5313 740500 6913500 72 -660.1996 741000 6913500 73 -663.0495 741500 6913500 74 -666.1781 742000 6913500 75 -669.603 742500 6913500 76 -673.2961 743000 6913500 77 -677.1989 743500 6913500 78 -681.231 744000 6913500 79 -685.2817 744500 6913500 80 -689.1952 745000 6913500 81 -692.7803 745500 6913500 82 -696.0004 746000 6913500 83 -698.9769 746500 6913500 84 -701.9025 747000 6913500 85 -704.9914 705000 6914000 1 -766.2286 705500 6914000 2 -763.2964 706000 6914000 3 -760.6554 706500 6914000 4 -758.3174 707000 6914000 5 -756.249 707500 6914000 6 -754.4527 708000 6914000 7 -753.1471 708500 6914000 8 -752.5715 709000 6914000 9 -752.7766 709500 6914000 10 -753.7335 710000 6914000 11 -755.3228 710500 6914000 12 -757.2339 711000 6914000 13 -759.1209 711500 6914000 14 -760.75 712000 6914000 15 -761.9673 712500 6914000 16 -762.7228 713000 6914000 17 -762.9871 713500 6914000 18 -762.796 714000 6914000 19 -762.2465 714500 6914000 20 -761.4678 715000 6914000 21 -760.6177 715500 6914000 22 -759.9196 716000 6914000 23 -759.2847 716500 6914000 24 -758.357 717000 6914000 25 -756.68 717500 6914000 26 -753.9834 718000 6914000 27 -750.378 718500 6914000 28 -746.2232 719000 6914000 29 -742.0964 719500 6914000 30 -738.7415 720000 6914000 31 -737.0046 720500 6914000 32 -737.6058 721000 6914000 33 -740.0645 721500 6914000 34 -742.7909 722000 6914000 35 -743.9828 722500 6914000 36 -741.91 723000 6914000 37 -735.4737 723500 6914000 38 -725.3815 724000 6914000 39 -713.1089 724500 6914000 40 -700.1815 725000 6914000 41 -687.8484 725500 6914000 42 -677.1116 726000 6914000 43 -668.802 726500 6914000 44 -663.7579 727000 6914000 45 -661.8043 727500 6914000 46 -662.5898 728000 6914000 47 -665.4906 728500 6914000 48 -669.9487 729000 6914000 49 -675.2615 729500 6914000 50 -680.5862 730000 6914000 51 -684.9995 730500 6914000 52 -687.8639 731000 6914000 53 -688.974 731500 6914000 54 -688.4283 732000 6914000 55 -686.5041 732500 6914000 56 -683.5453 733000 6914000 57 -679.897 733500 6914000 58 -675.8636 734000 6914000 59 -671.694 734500 6914000 60 -667.5458 735000 6914000 61 -663.5221 735500 6914000 62 -659.718 736000 6914000 63 -656.2584 736500 6914000 64 -653.3239 737000 6914000 65 -651.1382 737500 6914000 66 -650.0828 738000 6914000 67 -650.1824 738500 6914000 68 -651.2936 739000 6914000 69 -653.1572 739500 6914000 70 -655.5348 740000 6914000 71 -658.2562 740500 6914000 72 -661.2099 741000 6914000 73 -664.3982 741500 6914000 74 -667.8452 742000 6914000 75 -671.5559 742500 6914000 76 -675.5137 743000 6914000 77 -679.6738 743500 6914000 78 -683.962 744000 6914000 79 -688.2629 744500 6914000 80 -692.4005 745000 6914000 81 -696.1443 745500 6914000 82 -699.4533 746000 6914000 83 -702.4662 746500 6914000 84 -705.3896 747000 6914000 85 -708.4297 705000 6914500 1 -765.3958 705500 6914500 2 -762.6962 706000 6914500 3 -760.2971 706500 6914500 4 -758.1568 707000 6914500 5 -756.1746 707500 6914500 6 -754.2838 708000 6914500 7 -752.6829 708500 6914500 8 -751.6805 709000 6914500 9 -751.438 709500 6914500 10 -752.0364 710000 6914500 11 -753.4543 710500 6914500 12 -755.4058 711000 6914500 13 -757.5026 711500 6914500 14 -759.4497 712000 6914500 15 -761.0259 712500 6914500 16 -762.1195 713000 6914500 17 -762.6517 713500 6914500 18 -762.6369 714000 6914500 19 -762.1962 714500 6914500 20 -761.5102 715000 6914500 21 -760.8 715500 6914500 22 -760.4063 716000 6914500 23 -760.236 716500 6914500 24 -759.7723 717000 6914500 25 -758.4036 717500 6914500 26 -755.7958 718000 6914500 27 -752.1141 718500 6914500 28 -747.7757 719000 6914500 29 -743.3285 719500 6914500 30 -739.5522 720000 6914500 31 -737.4423 720500 6914500 32 -737.9835 721000 6914500 33 -740.7798 721500 6914500 34 -744.1271 722000 6914500 35 -746.2482 722500 6914500 36 -745.5372 723000 6914500 37 -741.1051 723500 6914500 38 -733.5947 724000 6914500 39 -724.2228 724500 6914500 40 -714.1815 725000 6914500 41 -704.3229 725500 6914500 42 -695.2405 726000 6914500 43 -687.7012 726500 6914500 44 -682.7404 727000 6914500 45 -680.3398 727500 6914500 46 -680.0549 728000 6914500 47 -681.0623 728500 6914500 48 -682.945 729000 6914500 49 -685.4223 729500 6914500 50 -688.0036 730000 6914500 51 -690.124 730500 6914500 52 -691.3731 731000 6914500 53 -691.441 731500 6914500 54 -690.2061 732000 6914500 55 -687.7892 732500 6914500 56 -684.452 733000 6914500 57 -680.4933 733500 6914500 58 -676.2 734000 6914500 59 -671.8171 734500 6914500 60 -667.5076 735000 6914500 61 -663.4054 735500 6914500 62 -659.6233 736000 6914500 63 -656.2522 736500 6914500 64 -653.4248 737000 6914500 65 -651.3411 737500 6914500 66 -650.3902 738000 6914500 67 -650.6008 738500 6914500 68 -651.8129 739000 6914500 69 -653.7589 739500 6914500 70 -656.2159 740000 6914500 71 -659.0538 740500 6914500 72 -662.2025 741000 6914500 73 -665.6359 741500 6914500 74 -669.3259 742000 6914500 75 -673.2672 742500 6914500 76 -677.447 743000 6914500 77 -681.8298 743500 6914500 78 -686.3514 744000 6914500 79 -690.8957 744500 6914500 80 -695.2689 745000 6914500 81 -699.1944 745500 6914500 82 -702.6185 746000 6914500 83 -705.6987 746500 6914500 84 -708.6492 747000 6914500 85 -711.6552 705000 6915000 1 -764.4474 705500 6915000 2 -761.8935 706000 6915000 3 -759.6501 706500 6915000 4 -757.6332 707000 6915000 5 -755.7032 707500 6915000 6 -753.7456 708000 6915000 7 -751.9369 708500 6915000 8 -750.6314 709000 6915000 9 -750.0691 709500 6915000 10 -750.4072 710000 6915000 11 -751.6992 710500 6915000 12 -753.6946 711000 6915000 13 -755.9747 711500 6915000 14 -758.1907 712000 6915000 15 -760.062 712500 6915000 16 -761.4296 713000 6915000 17 -762.1905 713500 6915000 18 -762.3513 714000 6915000 19 -762.0507 714500 6915000 20 -761.5047 715000 6915000 21 -760.9535 715500 6915000 22 -760.7649 716000 6915000 23 -760.8739 716500 6915000 24 -760.7217 717000 6915000 25 -759.675 717500 6915000 26 -757.3726 718000 6915000 27 -753.9897 718500 6915000 28 -749.9467 719000 6915000 29 -745.7452 719500 6915000 30 -742.1363 720000 6915000 31 -740.0521 720500 6915000 32 -740.4745 721000 6915000 33 -743.1487 721500 6915000 34 -746.4891 722000 6915000 35 -748.8833 722500 6915000 36 -749.0104 723000 6915000 37 -746.11 723500 6915000 38 -740.7027 724000 6915000 39 -733.7101 724500 6915000 40 -725.9955 725000 6915000 41 -718.1369 725500 6915000 42 -710.4811 726000 6915000 43 -703.6594 726500 6915000 44 -698.7176 727000 6915000 45 -695.7745 727500 6915000 46 -694.468 728000 6915000 47 -694.0238 728500 6915000 48 -694.0651 729000 6915000 49 -694.4894 729500 6915000 50 -695.0046 730000 6915000 51 -695.2759 730500 6915000 52 -695.0814 731000 6915000 53 -694.0699 731500 6915000 54 -691.997 732000 6915000 55 -688.9129 732500 6915000 56 -685.071 733000 6915000 57 -680.7733 733500 6915000 58 -676.2846 734000 6915000 59 -671.8056 734500 6915000 60 -667.4667 735000 6915000 61 -663.3995 735500 6915000 62 -659.7177 736000 6915000 63 -656.4855 736500 6915000 64 -653.8009 737000 6915000 65 -651.8461 737500 6915000 66 -651.01 738000 6915000 67 -651.3327 738500 6915000 68 -652.6402 739000 6915000 69 -654.658 739500 6915000 70 -657.1779 740000 6915000 71 -660.0853 740500 6915000 72 -663.3286 741000 6915000 73 -666.8846 741500 6915000 74 -670.7028 742000 6915000 75 -674.7746 742500 6915000 76 -679.0954 743000 6915000 77 -683.6384 743500 6915000 78 -688.3409 744000 6915000 79 -693.0806 744500 6915000 80 -697.6583 745000 6915000 81 -701.7731 745500 6915000 82 -705.3535 746000 6915000 83 -708.5604 746500 6915000 84 -711.5979 747000 6915000 85 -714.6157 705000 6915500 1 -763.4304 705500 6915500 2 -760.9142 706000 6915500 3 -758.716 706500 6915500 4 -756.7245 707000 6915500 5 -754.7936 707500 6915500 6 -752.8051 708000 6915500 7 -750.9023 708500 6915500 8 -749.4418 709000 6915500 9 -748.7032 709500 6915500 10 -748.8961 710000 6915500 11 -750.116 710500 6915500 12 -752.1619 711000 6915500 13 -754.6013 711500 6915500 14 -757.041 712000 6915500 15 -759.1469 712500 6915500 16 -760.7245 713000 6915500 17 -761.675 713500 6915500 18 -762.0186 714000 6915500 19 -761.9032 714500 6915500 20 -761.5485 715000 6915500 21 -761.2028 715500 6915500 22 -761.1514 716000 6915500 23 -761.3652 716500 6915500 24 -761.3661 717000 6915500 25 -760.6139 717500 6915500 26 -758.8114 718000 6915500 27 -756.0898 718500 6915500 28 -752.822 719000 6915500 29 -749.4627 719500 6915500 30 -746.6338 720000 6915500 31 -745.0485 720500 6915500 32 -745.3531 721000 6915500 33 -747.422 721500 6915500 34 -750.0732 722000 6915500 35 -752.0592 722500 6915500 36 -752.3781 723000 6915500 37 -750.4644 723500 6915500 38 -746.6249 724000 6915500 39 -741.4399 724500 6915500 40 -735.4552 725000 6915500 41 -729.0579 725500 6915500 42 -722.5293 726000 6915500 43 -716.3579 726500 6915500 44 -711.4149 727000 6915500 45 -707.926 727500 6915500 46 -705.7103 728000 6915500 47 -704.2828 728500 6915500 48 -703.2893 729000 6915500 49 -702.5687 729500 6915500 50 -701.8543 730000 6915500 51 -700.8359 730500 6915500 52 -699.3755 731000 6915500 53 -697.184 731500 6915500 54 -694.0503 732000 6915500 55 -690.0715 732500 6915500 56 -685.5661 733000 6915500 57 -680.8856 733500 6915500 58 -676.2674 734000 6915500 59 -671.8231 734500 6915500 60 -667.6051 735000 6915500 61 -663.6888 735500 6915500 62 -660.1682 736000 6915500 63 -657.1076 736500 6915500 64 -654.6063 737000 6915500 65 -652.8354 737500 6915500 66 -652.1404 738000 6915500 67 -652.5571 738500 6915500 68 -653.9185 739000 6915500 69 -655.9625 739500 6915500 70 -658.496 740000 6915500 71 -661.4128 740500 6915500 72 -664.6605 741000 6915500 73 -668.2158 741500 6915500 74 -672.038 742000 6915500 75 -676.1218 742500 6915500 76 -680.4766 743000 6915500 77 -685.0812 743500 6915500 78 -689.8676 744000 6915500 79 -694.7078 744500 6915500 80 -699.4131 745000 6915500 81 -703.7073 745500 6915500 82 -707.5078 746000 6915500 83 -710.9409 746500 6915500 84 -714.1661 747000 6915500 85 -717.2811 705000 6916000 1 -762.3834 705500 6916000 2 -759.8188 706000 6916000 3 -757.5883 706500 6916000 4 -755.5643 707000 6916000 5 -753.6032 707500 6916000 6 -751.6064 708000 6916000 7 -749.6884 708500 6916000 8 -748.1703 709000 6916000 9 -747.3455 709500 6916000 10 -747.4718 710000 6916000 11 -748.682 710500 6916000 12 -750.8118 711000 6916000 13 -753.4164 711500 6916000 14 -756.0618 712000 6916000 15 -758.3638 712500 6916000 16 -760.1012 713000 6916000 17 -761.1966 713500 6916000 18 -761.7023 714000 6916000 19 -761.7722 714500 6916000 20 -761.6141 715000 6916000 21 -761.4498 715500 6916000 22 -761.507 716000 6916000 23 -761.7597 716500 6916000 24 -761.8668 717000 6916000 25 -761.4285 717500 6916000 26 -760.2368 718000 6916000 27 -758.3922 718500 6916000 28 -756.1867 719000 6916000 29 -753.9926 719500 6916000 30 -752.2584 720000 6916000 31 -751.3932 720500 6916000 32 -751.6824 721000 6916000 33 -752.9733 721500 6916000 34 -754.5747 722000 6916000 35 -755.72 722500 6916000 36 -755.7824 723000 6916000 37 -754.358 723500 6916000 38 -751.5949 724000 6916000 39 -747.7178 724500 6916000 40 -742.9875 725000 6916000 41 -737.6421 725500 6916000 42 -731.922 726000 6916000 43 -726.231 726500 6916000 44 -721.2385 727000 6916000 45 -717.2537 727500 6916000 46 -714.3389 728000 6916000 47 -712.3225 728500 6916000 48 -710.9333 729000 6916000 49 -709.8517 729500 6916000 50 -708.6879 730000 6916000 51 -706.9613 730500 6916000 52 -704.4048 731000 6916000 53 -700.913 731500 6916000 54 -696.4911 732000 6916000 55 -691.402 732500 6916000 56 -686.088 733000 6916000 57 -680.9793 733500 6916000 58 -676.2761 734000 6916000 59 -671.9666 734500 6916000 60 -667.9867 735000 6916000 61 -664.3184 735500 6916000 62 -660.996 736000 6916000 63 -658.1201 736500 6916000 64 -655.8348 737000 6916000 65 -654.3078 737500 6916000 66 -653.8062 738000 6916000 67 -654.3087 738500 6916000 68 -655.681 739000 6916000 69 -657.7015 739500 6916000 70 -660.1976 740000 6916000 71 -663.0634 740500 6916000 72 -666.2384 741000 6916000 73 -669.693 741500 6916000 74 -673.4042 742000 6916000 75 -677.3807 742500 6916000 76 -681.6616 743000 6916000 77 -686.2385 743500 6916000 78 -691.0208 744000 6916000 79 -695.8612 744500 6916000 80 -700.5822 745000 6916000 81 -705.0101 745500 6916000 82 -709.0694 746000 6916000 83 -712.808 746500 6916000 84 -716.309 747000 6916000 85 -719.6113 705000 6916500 1 -761.3406 705500 6916500 2 -758.684 706000 6916500 3 -756.3962 706500 6916500 4 -754.3362 707000 6916500 5 -752.3596 707500 6916500 6 -750.3748 708000 6916500 7 -748.4725 708500 6916500 8 -746.9316 709000 6916500 9 -746.0488 709500 6916500 10 -746.1362 710000 6916500 11 -747.3838 710500 6916500 12 -749.6337 711000 6916500 13 -752.4202 711500 6916500 14 -755.2661 712000 6916500 15 -757.7396 712500 6916500 16 -759.5976 713000 6916500 17 -760.7947 713500 6916500 18 -761.4243 714000 6916500 19 -761.6475 714500 6916500 20 -761.6529 715000 6916500 21 -761.6322 715500 6916500 22 -761.7683 716000 6916500 23 -762.057 716500 6916500 24 -762.2846 717000 6916500 25 -762.1914 717500 6916500 26 -761.6494 718000 6916500 27 -760.7346 718500 6916500 28 -759.6638 719000 6916500 29 -758.7161 719500 6916500 30 -758.1415 720000 6916500 31 -758.0419 720500 6916500 32 -758.3428 721000 6916500 33 -758.8949 721500 6916500 34 -759.4349 722000 6916500 35 -759.6384 722500 6916500 36 -759.2199 723000 6916500 37 -758.0204 723500 6916500 38 -756.0015 724000 6916500 39 -753.0865 724500 6916500 40 -749.2867 725000 6916500 41 -744.7112 725500 6916500 42 -739.567 726000 6916500 43 -734.1767 726500 6916500 44 -729.0562 727000 6916500 45 -724.6128 727500 6916500 46 -721.1487 728000 6916500 47 -718.8033 728500 6916500 48 -717.3657 729000 6916500 49 -716.3616 729500 6916500 50 -715.2081 730000 6916500 51 -713.1735 730500 6916500 52 -709.7229 731000 6916500 53 -704.9489 731500 6916500 54 -699.1876 732000 6916500 55 -692.9263 732500 6916500 56 -686.754 733000 6916500 57 -681.1906 733500 6916500 58 -676.3953 734000 6916500 59 -672.2258 734500 6916500 60 -668.4969 735000 6916500 61 -665.0978 735500 6916500 62 -661.9899 736000 6916500 63 -659.3142 736500 6916500 64 -657.2758 737000 6916500 65 -656.0358 737500 6916500 66 -655.7759 738000 6916500 67 -656.3993 738500 6916500 68 -657.7949 739000 6916500 69 -659.7915 739500 6916500 70 -662.2374 740000 6916500 71 -665.0251 740500 6916500 72 -668.0833 741000 6916500 73 -671.3709 741500 6916500 74 -674.8832 742000 6916500 75 -678.6564 742500 6916500 76 -682.7781 743000 6916500 77 -687.2645 743500 6916500 78 -691.9937 744000 6916500 79 -696.7853 744500 6916500 80 -701.4775 745000 6916500 81 -705.9705 745500 6916500 82 -710.2316 746000 6916500 83 -714.2546 746500 6916500 84 -718.0444 747000 6916500 85 -721.5731 705000 6917000 1 -760.3417 705500 6917000 2 -757.5746 706000 6917000 3 -755.2325 706500 6917000 4 -753.1582 707000 6917000 5 -751.1998 707500 6917000 6 -749.2596 708000 6917000 7 -747.4017 708500 6917000 8 -745.8665 709000 6917000 9 -744.9501 709500 6917000 10 -745.0133 710000 6917000 11 -746.311 710500 6917000 12 -748.6805 711000 6917000 13 -751.6283 711500 6917000 14 -754.6377 712000 6917000 15 -757.2437 712500 6917000 16 -759.1849 713000 6917000 17 -760.4487 713500 6917000 18 -761.1688 714000 6917000 19 -761.5113 714500 6917000 20 -761.6435 715000 6917000 21 -761.728 715500 6917000 22 -761.9241 716000 6917000 23 -762.2581 716500 6917000 24 -762.6198 717000 6917000 25 -762.8689 717500 6917000 26 -762.9432 718000 6917000 27 -762.9016 718500 6917000 28 -762.8909 719000 6917000 29 -763.095 719500 6917000 30 -763.579 720000 6917000 31 -764.1849 720500 6917000 32 -764.5609 721000 6917000 33 -764.5453 721500 6917000 34 -764.2132 722000 6917000 35 -763.6134 722500 6917000 36 -762.7341 723000 6917000 37 -761.634 723500 6917000 38 -760.1476 724000 6917000 39 -757.9543 724500 6917000 40 -754.8583 725000 6917000 41 -750.8506 725500 6917000 42 -746.0857 726000 6917000 43 -740.8328 726500 6917000 44 -735.5142 727000 6917000 45 -730.6425 727500 6917000 46 -726.7205 728000 6917000 47 -724.1342 728500 6917000 48 -722.7344 729000 6917000 49 -721.9149 729500 6917000 50 -720.9022 730000 6917000 51 -718.7313 730500 6917000 52 -714.6279 731000 6917000 53 -708.8109 731500 6917000 54 -701.9241 732000 6917000 55 -694.6555 732500 6917000 56 -687.7098 733000 6917000 57 -681.6818 733500 6917000 58 -676.7097 734000 6917000 59 -672.5624 734500 6917000 60 -668.9707 735000 6917000 61 -665.7743 735500 6917000 62 -662.8807 736000 6917000 63 -660.4478 736500 6917000 64 -658.7103 737000 6917000 65 -657.8058 737500 6917000 66 -657.8409 738000 6917000 67 -658.6522 738500 6917000 68 -660.1379 739000 6917000 69 -662.1631 739500 6917000 70 -664.5907 740000 6917000 71 -667.308 740500 6917000 72 -670.2342 741000 6917000 73 -673.3193 741500 6917000 74 -676.5728 742000 6917000 75 -680.0735 742500 6917000 76 -683.972 743000 6917000 77 -688.3214 743500 6917000 78 -692.964 744000 6917000 79 -697.6783 744500 6917000 80 -702.3043 745000 6917000 81 -706.7908 745500 6917000 82 -711.1427 746000 6917000 83 -715.3328 746500 6917000 84 -719.326 747000 6917000 85 -723.0515 705000 6917500 1 -759.4329 705500 6917500 2 -756.5488 706000 6917500 3 -754.1638 706500 6917500 4 -752.1021 707000 6917500 5 -750.2024 707500 6917500 6 -748.3546 708000 6917500 7 -746.5981 708500 6917500 8 -745.1353 709000 6917500 9 -744.2516 709500 6917500 10 -744.3203 710000 6917500 11 -745.6392 710500 6917500 12 -748.048 711000 6917500 13 -751.0524 711500 6917500 14 -754.1204 712000 6917500 15 -756.7867 712500 6917500 16 -758.7773 713000 6917500 17 -760.0973 713500 6917500 18 -760.9017 714000 6917500 19 -761.3513 714500 6917500 20 -761.5903 715000 6917500 21 -761.7555 715500 6917500 22 -761.9932 716000 6917500 23 -762.3663 716500 6917500 24 -762.846 717000 6917500 25 -763.3885 717500 6917500 26 -763.9871 718000 6917500 27 -764.6802 718500 6917500 28 -765.5463 719000 6917500 29 -766.6709 719500 6917500 30 -767.9708 720000 6917500 31 -769.1317 720500 6917500 32 -769.6548 721000 6917500 33 -769.3657 721500 6917500 34 -768.5447 722000 6917500 35 -767.4921 722500 6917500 36 -766.3721 723000 6917500 37 -765.3773 723500 6917500 38 -764.3011 724000 6917500 39 -762.6591 724500 6917500 40 -760.1083 725000 6917500 41 -756.5245 725500 6917500 42 -751.9882 726000 6917500 43 -746.7347 726500 6917500 44 -741.1638 727000 6917500 45 -735.8941 727500 6917500 46 -731.5501 728000 6917500 47 -728.6653 728500 6917500 48 -727.1459 729000 6917500 49 -726.3224 729500 6917500 50 -725.2857 730000 6917500 51 -722.9751 730500 6917500 52 -718.483 731000 6917500 53 -712.0507 731500 6917500 54 -704.4865 732000 6917500 55 -696.5831 732500 6917500 56 -689.0783 733000 6917500 57 -682.5937 733500 6917500 58 -677.2904 734000 6917500 59 -672.9425 734500 6917500 60 -669.273 735000 6917500 61 -666.1428 735500 6917500 62 -663.4567 736000 6917500 63 -661.3386 736500 6917500 64 -659.9828 737000 6917500 65 -659.4745 737500 6917500 66 -659.8635 738000 6917500 67 -660.9479 738500 6917500 68 -662.6195 739000 6917500 69 -664.7581 739500 6917500 70 -667.2305 740000 6917500 71 -669.9155 740500 6917500 72 -672.7233 741000 6917500 73 -675.6053 741500 6917500 74 -678.5891 742000 6917500 75 -681.7974 742500 6917500 76 -685.434 743000 6917500 77 -689.5942 743500 6917500 78 -694.095 744000 6917500 79 -698.6813 744500 6917500 80 -703.1885 745000 6917500 81 -707.5671 745500 6917500 82 -711.8434 746000 6917500 83 -716.011 746500 6917500 84 -720.0399 747000 6917500 85 -723.8467 705000 6918000 1 -758.6549 705500 6918000 2 -755.6515 706000 6918000 3 -753.231 706500 6918000 4 -751.2003 707000 6918000 5 -749.3943 707500 6918000 6 -747.6974 708000 6918000 7 -746.1266 708500 6918000 8 -744.8438 709000 6918000 9 -744.1031 709500 6918000 10 -744.2312 710000 6918000 11 -745.5084 710500 6918000 12 -747.8062 711000 6918000 13 -750.6842 711500 6918000 14 -753.6525 712000 6918000 15 -756.278 712500 6918000 16 -758.2918 713000 6918000 17 -759.6838 713500 6918000 18 -760.5969 714000 6918000 19 -761.1682 714500 6918000 20 -761.5152 715000 6918000 21 -761.7519 715500 6918000 22 -762.0115 716000 6918000 23 -762.3949 716500 6918000 24 -762.9408 717000 6918000 25 -763.6887 717500 6918000 26 -764.6814 718000 6918000 27 -765.9335 718500 6918000 28 -767.4495 719000 6918000 29 -769.2157 719500 6918000 30 -771.045 720000 6918000 31 -772.5667 720500 6918000 32 -773.2928 721000 6918000 33 -773.0508 721500 6918000 34 -772.1793 722000 6918000 35 -771.0844 722500 6918000 36 -770.0382 723000 6918000 37 -769.2431 723500 6918000 38 -768.5252 724000 6918000 39 -767.3386 724500 6918000 40 -765.2457 725000 6918000 41 -762.0023 725500 6918000 42 -757.5756 726000 6918000 43 -752.1813 726500 6918000 44 -746.2744 727000 6918000 45 -740.597 727500 6918000 46 -735.8367 728000 6918000 47 -732.538 728500 6918000 48 -730.6644 729000 6918000 49 -729.5506 729500 6918000 50 -728.2661 730000 6918000 51 -725.7021 730500 6918000 52 -721.0546 731000 6918000 53 -714.4568 731500 6918000 54 -706.705 732000 6918000 55 -698.5851 732500 6918000 56 -690.7929 733000 6918000 57 -683.8997 733500 6918000 58 -678.1281 734000 6918000 59 -673.362 734500 6918000 60 -669.4028 735000 6918000 61 -666.1897 735500 6918000 62 -663.6957 736000 6918000 63 -661.9693 736500 6918000 64 -661.0806 737000 6918000 65 -661.0303 737500 6918000 66 -661.8239 738000 6918000 67 -663.2548 738500 6918000 68 -665.201 739000 6918000 69 -667.5356 739500 6918000 70 -670.1207 740000 6918000 71 -672.8239 740500 6918000 72 -675.5491 741000 6918000 73 -678.2655 741500 6918000 74 -681.0281 742000 6918000 75 -683.9874 742500 6918000 76 -687.3501 743000 6918000 77 -691.2403 743500 6918000 78 -695.4858 744000 6918000 79 -699.8343 744500 6918000 80 -704.1213 745000 6918000 81 -708.2643 745500 6918000 82 -712.2768 746000 6918000 83 -716.1929 746500 6918000 84 -720.0264 747000 6918000 85 -723.7334 705000 6918500 1 -758.0273 705500 6918500 2 -754.9111 706000 6918500 3 -752.461 706500 6918500 4 -750.4704 707000 6918500 5 -748.7775 707500 6918500 6 -747.2745 708000 6918500 7 -745.9585 708500 6918500 8 -744.9437 709000 6918500 9 -744.4356 709500 6918500 10 -744.6779 710000 6918500 11 -745.8566 710500 6918500 12 -747.8962 711000 6918500 13 -750.4749 711500 6918500 14 -753.2064 712000 6918500 15 -755.7019 712500 6918500 16 -757.7172 713000 6918500 17 -759.2051 713500 6918500 18 -760.2614 714000 6918500 19 -760.982 714500 6918500 20 -761.4506 715000 6918500 21 -761.757 715500 6918500 22 -762.0176 716000 6918500 23 -762.3676 716500 6918500 24 -762.9064 717000 6918500 25 -763.7518 717500 6918500 26 -765.0002 718000 6918500 27 -766.6391 718500 6918500 28 -768.596 719000 6918500 29 -770.7703 719500 6918500 30 -772.9163 720000 6918500 31 -774.6698 720500 6918500 32 -775.6207 721000 6918500 33 -775.6349 721500 6918500 34 -775.0201 722000 6918500 35 -774.1838 722500 6918500 36 -773.4367 723000 6918500 37 -772.9783 723500 6918500 38 -772.6409 724000 6918500 39 -771.8971 724500 6918500 40 -770.2448 725000 6918500 41 -767.3098 725500 6918500 42 -762.9073 726000 6918500 43 -757.2277 726500 6918500 44 -750.8401 727000 6918500 45 -744.6404 727500 6918500 46 -739.3745 728000 6918500 47 -735.589 728500 6918500 48 -733.2523 729000 6918500 49 -731.7234 729500 6918500 50 -730.1004 730000 6918500 51 -727.3072 730500 6918500 52 -722.6143 731000 6918500 53 -716.1295 731500 6918500 54 -708.5095 732000 6918500 55 -700.4584 732500 6918500 56 -692.5886 733000 6918500 57 -685.3865 733500 6918500 58 -679.1168 734000 6918500 59 -673.8318 734500 6918500 60 -669.4694 735000 6918500 61 -666.0937 735500 6918500 62 -663.7748 736000 6918500 63 -662.4892 736500 6918500 64 -662.1278 737000 6918500 65 -662.5767 737500 6918500 66 -663.8043 738000 6918500 67 -665.6188 738500 6918500 68 -667.888 739000 6918500 69 -670.467 739500 6918500 70 -673.2087 740000 6918500 71 -675.9681 740500 6918500 72 -678.6459 741000 6918500 73 -681.2439 741500 6918500 74 -683.8591 742000 6918500 75 -686.6411 742500 6918500 76 -689.7419 743000 6918500 77 -693.2641 743500 6918500 78 -697.1029 744000 6918500 79 -701.0668 744500 6918500 80 -705.007 745000 6918500 81 -708.7828 745500 6918500 82 -712.3676 746000 6918500 83 -715.8378 746500 6918500 84 -719.2758 747000 6918500 85 -722.7008 705000 6919000 1 -757.5653 705500 6919000 2 -754.3525 706000 6919000 3 -751.8751 706500 6919000 4 -749.9205 707000 6919000 5 -748.3391 707500 6919000 6 -747.0353 708000 6919000 7 -745.9901 708500 6919000 8 -745.2602 709000 6919000 9 -744.9988 709500 6919000 10 -745.3562 710000 6919000 11 -746.4084 710500 6919000 12 -748.1171 711000 6919000 13 -750.3162 711500 6919000 14 -752.7524 712000 6919000 15 -755.0933 712500 6919000 16 -757.101 713000 6919000 17 -758.7018 713500 6919000 18 -759.9304 714000 6919000 19 -760.8302 714500 6919000 20 -761.4413 715000 6919000 21 -761.8212 715500 6919000 22 -762.0638 716000 6919000 23 -762.334 716500 6919000 24 -762.787 717000 6919000 25 -763.621 717500 6919000 26 -764.997 718000 6919000 27 -766.8731 718500 6919000 28 -769.0989 719000 6919000 29 -771.5101 719500 6919000 30 -773.8447 720000 6919000 31 -775.7756 720500 6919000 32 -776.9659 721000 6919000 33 -777.3168 721500 6919000 34 -777.0882 722000 6919000 35 -776.6489 722500 6919000 36 -776.3101 723000 6919000 37 -776.2729 723500 6919000 38 -776.3761 724000 6919000 39 -776.1157 724500 6919000 40 -774.9307 725000 6919000 41 -772.3029 725500 6919000 42 -767.8574 726000 6919000 43 -761.7607 726500 6919000 44 -754.7397 727000 6919000 45 -747.8734 727500 6919000 46 -741.9877 728000 6919000 47 -737.6563 728500 6919000 48 -734.8535 729000 6919000 49 -732.9479 729500 6919000 50 -731.0699 730000 6919000 51 -728.1496 730500 6919000 52 -723.5182 731000 6919000 53 -717.2498 731500 6919000 54 -709.8943 732000 6919000 55 -702.0577 732500 6919000 56 -694.2456 733000 6919000 57 -686.8478 733500 6919000 58 -680.1595 734000 6919000 59 -674.3875 734500 6919000 60 -669.6246 735000 6919000 61 -666.087 735500 6919000 62 -663.9565 736000 6919000 63 -663.1381 736500 6919000 64 -663.3279 737000 6919000 65 -664.2819 737500 6919000 66 -665.9341 738000 6919000 67 -668.1211 738500 6919000 68 -670.7032 739000 6919000 69 -673.5192 739500 6919000 70 -676.4137 740000 6919000 71 -679.23 740500 6919000 72 -681.8669 741000 6919000 73 -684.3668 741500 6919000 74 -686.8733 742000 6919000 75 -689.514 742500 6919000 76 -692.3554 743000 6919000 77 -695.4346 743500 6919000 78 -698.7391 744000 6919000 79 -702.1896 744500 6919000 80 -705.6733 745000 6919000 81 -708.9894 745500 6919000 82 -712.059 746000 6919000 83 -714.999 746500 6919000 84 -717.9634 747000 6919000 85 -721.0521 705000 6919500 1 -757.3887 705500 6919500 2 -754.0664 706000 6919500 3 -751.524 706500 6919500 4 -749.5558 707000 6919500 5 -748.0339 707500 6919500 6 -746.8772 708000 6919500 7 -746.0426 708500 6919500 8 -745.5316 709000 6919500 9 -745.4554 709500 6919500 10 -745.884 710000 6919500 11 -746.7918 710500 6919500 12 -748.1817 711000 6919500 13 -750.0291 711500 6919500 14 -752.2086 712000 6919500 15 -754.4342 712500 6919500 16 -756.4663 713000 6919500 17 -758.2073 713500 6919500 18 -759.6448 714000 6919500 19 -760.7678 714500 6919500 20 -761.5607 715000 6919500 21 -762.0358 715500 6919500 22 -762.2557 716000 6919500 23 -762.4144 716500 6919500 24 -762.7167 717000 6919500 25 -763.4391 717500 6919500 26 -764.8159 718000 6919500 27 -766.778 718500 6919500 28 -769.1031 719000 6919500 29 -771.5953 719500 6919500 30 -774.0141 720000 6919500 31 -776.0806 720500 6919500 32 -777.501 721000 6919500 33 -778.1877 721500 6919500 34 -778.3615 722000 6919500 35 -778.348 722500 6919500 36 -778.4394 723000 6919500 37 -778.8448 723500 6919500 38 -779.4078 724000 6919500 39 -779.6289 724500 6919500 40 -778.8907 725000 6919500 41 -776.5405 725500 6919500 42 -772.0054 726000 6919500 43 -765.4256 726500 6919500 44 -757.703 727000 6919500 45 -750.1107 727500 6919500 46 -743.5646 728000 6919500 47 -738.7034 728500 6919500 48 -735.5046 729000 6919500 49 -733.3149 729500 6919500 50 -731.2722 730000 6919500 51 -728.3378 730500 6919500 52 -723.8257 731000 6919500 53 -717.8061 731500 6919500 54 -710.7617 732000 6919500 55 -703.2172 732500 6919500 56 -695.5806 733000 6919500 57 -688.1543 733500 6919500 58 -681.239 734000 6919500 59 -675.16 734500 6919500 60 -670.1471 735000 6919500 61 -666.5481 735500 6919500 62 -664.6441 736000 6919500 63 -664.2895 736500 6919500 64 -665.0024 737000 6919500 65 -666.4157 737500 6919500 66 -668.4244 738000 6919500 67 -670.8948 738500 6919500 68 -673.6891 739000 6919500 69 -676.6405 739500 6919500 70 -679.598 740000 6919500 71 -682.4048 740500 6919500 72 -684.9611 741000 6919500 73 -687.3408 741500 6919500 74 -689.718 742000 6919500 75 -692.1871 742500 6919500 76 -694.7316 743000 6919500 77 -697.322 743500 6919500 78 -700.0203 744000 6919500 79 -702.8662 744500 6919500 80 -705.8049 745000 6919500 81 -708.6294 745500 6919500 82 -711.2261 746000 6919500 83 -713.7355 746500 6919500 84 -716.3539 747000 6919500 85 -719.2266 705000 6920000 1 -757.5566 705500 6920000 2 -754.0858 706000 6920000 3 -751.3958 706500 6920000 4 -749.3154 707000 6920000 5 -747.7479 707500 6920000 6 -746.6238 708000 6920000 7 -745.8771 708500 6920000 8 -745.455 709000 6920000 9 -745.445 709500 6920000 10 -745.8768 710000 6920000 11 -746.6634 710500 6920000 12 -747.8307 711000 6920000 13 -749.4533 711500 6920000 14 -751.4828 712000 6920000 15 -753.6791 712500 6920000 16 -755.7916 713000 6920000 17 -757.7184 713500 6920000 18 -759.417 714000 6920000 19 -760.8231 714500 6920000 20 -761.8553 715000 6920000 21 -762.4685 715500 6920000 22 -762.6934 716000 6920000 23 -762.756 716500 6920000 24 -762.9036 717000 6920000 25 -763.4686 717500 6920000 26 -764.735 718000 6920000 27 -766.626 718500 6920000 28 -768.8766 719000 6920000 29 -771.288 719500 6920000 30 -773.6724 720000 6920000 31 -775.8076 720500 6920000 32 -777.425 721000 6920000 33 -778.4244 721500 6920000 34 -778.9857 722000 6920000 35 -779.3897 722500 6920000 36 -779.891 723000 6920000 37 -780.6889 723500 6920000 38 -781.6268 724000 6920000 39 -782.2001 724500 6920000 40 -781.7472 725000 6920000 41 -779.5485 725500 6920000 42 -774.91 726000 6920000 43 -767.94 726500 6920000 44 -759.6596 727000 6920000 45 -751.4808 727500 6920000 46 -744.3796 728000 6920000 47 -739.0508 728500 6920000 48 -735.4944 729000 6920000 49 -733.0463 729500 6920000 50 -730.84 730000 6920000 51 -727.9127 730500 6920000 52 -723.537 731000 6920000 53 -717.7729 731500 6920000 54 -711.0646 732000 6920000 55 -703.8691 732500 6920000 56 -696.5172 733000 6920000 57 -689.2506 733500 6920000 58 -682.3715 734000 6920000 59 -676.277 734500 6920000 60 -671.2874 735000 6920000 61 -667.809 735500 6920000 62 -666.1849 736000 6920000 63 -666.2302 736500 6920000 64 -667.3714 737000 6920000 65 -669.153 737500 6920000 66 -671.4074 738000 6920000 67 -674.0124 738500 6920000 68 -676.8431 739000 6920000 69 -679.7504 739500 6920000 70 -682.6083 740000 6920000 71 -685.2858 740500 6920000 72 -687.693 741000 6920000 73 -689.9091 741500 6920000 74 -692.1057 742000 6920000 75 -694.3382 742500 6920000 76 -696.5397 743000 6920000 77 -698.6326 743500 6920000 78 -700.715 744000 6920000 79 -702.9117 744500 6920000 80 -705.2446 745000 6920000 81 -707.5975 745500 6920000 82 -709.8742 746000 6920000 83 -712.2003 746500 6920000 84 -714.7504 747000 6920000 85 -717.6503 705000 6920500 1 -757.9907 705500 6920500 2 -754.3473 706000 6920500 3 -751.4338 706500 6920500 4 -749.1298 707000 6920500 5 -747.374 707500 6920500 6 -746.1145 708000 6920500 7 -745.2783 708500 6920500 8 -744.7673 709000 6920500 9 -744.6573 709500 6920500 10 -745.0048 710000 6920500 11 -745.7324 710500 6920500 12 -746.8617 711000 6920500 13 -748.4697 711500 6920500 14 -750.5118 712000 6920500 15 -752.785 712500 6920500 16 -755.0499 713000 6920500 17 -757.2211 713500 6920500 18 -759.2462 714000 6920500 19 -761.0109 714500 6920500 20 -762.3563 715000 6920500 21 -763.1687 715500 6920500 22 -763.4554 716000 6920500 23 -763.4861 716500 6920500 24 -763.5365 717000 6920500 25 -763.9417 717500 6920500 26 -764.9954 718000 6920500 27 -766.6381 718500 6920500 28 -768.6107 719000 6920500 29 -770.7475 719500 6920500 30 -772.9406 720000 6920500 31 -775.0405 720500 6920500 32 -776.8045 721000 6920500 33 -778.098 721500 6920500 34 -779.0401 722000 6920500 35 -779.8525 722500 6920500 36 -780.7339 723000 6920500 37 -781.8326 723500 6920500 38 -782.9879 724000 6920500 39 -783.6882 724500 6920500 40 -783.2574 725000 6920500 41 -780.999 725500 6920500 42 -776.2562 726000 6920500 43 -769.0989 726500 6920500 44 -760.5512 727000 6920500 45 -752.0551 727500 6920500 46 -744.6017 728000 6920500 47 -738.9044 728500 6920500 48 -735.0057 729000 6920500 49 -732.2685 729500 6920500 50 -729.8477 730000 6920500 51 -726.8663 730500 6920500 52 -722.6232 731000 6920500 53 -717.1342 731500 6920500 54 -710.7866 732000 6920500 55 -703.9793 732500 6920500 56 -697.0137 733000 6920500 57 -690.1094 733500 6920500 58 -683.5594 734000 6920500 59 -677.7901 734500 6920500 60 -673.1471 735000 6920500 61 -670.0198 735500 6920500 62 -668.726 736000 6920500 63 -669.0873 736500 6920500 64 -670.535 737000 6920500 65 -672.5674 737500 6920500 66 -674.9382 738000 6920500 67 -677.4958 738500 6920500 68 -680.1475 739000 6920500 69 -682.7942 739500 6920500 70 -685.3588 740000 6920500 71 -687.7609 740500 6920500 72 -689.9372 741000 6920500 73 -691.9464 741500 6920500 74 -693.9147 742000 6920500 75 -695.8588 742500 6920500 76 -697.6869 743000 6920500 77 -699.3041 743500 6920500 78 -700.8004 744000 6920500 79 -702.3434 744500 6920500 80 -704.0405 745000 6920500 81 -705.9551 745500 6920500 82 -708.0913 746000 6920500 83 -710.5125 746500 6920500 84 -713.2875 747000 6920500 85 -716.4636 705000 6921000 1 -758.5811 705500 6921000 2 -754.7693 706000 6921000 3 -751.5885 706500 6921000 4 -748.9749 707000 6921000 5 -746.9034 707500 6921000 6 -745.3459 708000 6921000 7 -744.2359 708500 6921000 8 -743.4592 709000 6921000 9 -743.079 709500 6921000 10 -743.2407 710000 6921000 11 -743.9869 710500 6921000 12 -745.2968 711000 6921000 13 -747.1246 711500 6921000 14 -749.3492 712000 6921000 15 -751.7886 712500 6921000 16 -754.2603 713000 6921000 17 -756.7208 713500 6921000 18 -759.1272 714000 6921000 19 -761.3176 714500 6921000 20 -763.0455 715000 6921000 21 -764.1173 715500 6921000 22 -764.5298 716000 6921000 23 -764.6115 716500 6921000 24 -764.649 717000 6921000 25 -764.9344 717500 6921000 26 -765.7111 718000 6921000 27 -766.9529 718500 6921000 28 -768.4622 719000 6921000 29 -770.1426 719500 6921000 30 -771.9893 720000 6921000 31 -773.9406 720500 6921000 32 -775.7806 721000 6921000 33 -777.3318 721500 6921000 34 -778.6288 722000 6921000 35 -779.8139 722500 6921000 36 -781.0229 723000 6921000 37 -782.3281 723500 6921000 38 -783.5539 724000 6921000 39 -784.1947 724500 6921000 40 -783.5858 725000 6921000 41 -781.0966 725500 6921000 42 -776.2249 726000 6921000 43 -769.0463 726500 6921000 44 -760.4696 727000 6921000 45 -751.8715 727500 6921000 46 -744.243 728000 6921000 47 -738.3018 728500 6921000 48 -734.1272 729000 6921000 49 -731.1255 729500 6921000 50 -728.488 730000 6921000 51 -725.4031 730500 6921000 52 -721.2552 731000 6921000 53 -716.027 731500 6921000 54 -710.0383 732000 6921000 55 -703.6454 732500 6921000 56 -697.1388 733000 6921000 57 -690.7455 733500 6921000 58 -684.7575 734000 6921000 59 -679.585 734500 6921000 60 -675.539 735000 6921000 61 -672.9574 735500 6921000 62 -672.0756 736000 6921000 63 -672.7221 736500 6921000 64 -674.3856 737000 6921000 65 -676.5602 737500 6921000 66 -678.9188 738000 6921000 67 -681.2599 738500 6921000 68 -683.5334 739000 6921000 69 -685.7277 739500 6921000 70 -687.8355 740000 6921000 71 -689.8344 740500 6921000 72 -691.6994 741000 6921000 73 -693.4621 741500 6921000 74 -695.1806 742000 6921000 75 -696.8314 742500 6921000 76 -698.3029 743000 6921000 77 -699.4907 743500 6921000 78 -700.4594 744000 6921000 79 -701.3844 744500 6921000 80 -702.4571 745000 6921000 81 -703.9783 745500 6921000 82 -706.1154 746000 6921000 83 -708.8459 746500 6921000 84 -712.0607 747000 6921000 85 -715.6724 705000 6921500 1 -759.2837 705500 6921500 2 -755.3266 706000 6921500 3 -751.8721 706500 6921500 4 -748.9159 707000 6921500 5 -746.4702 707500 6921500 6 -744.5401 708000 6921500 7 -743.0705 708500 6921500 8 -741.939 709000 6921500 9 -741.2082 709500 6921500 10 -741.1279 710000 6921500 11 -741.9208 710500 6921500 12 -743.5308 711000 6921500 13 -745.7107 711500 6921500 14 -748.2094 712000 6921500 15 -750.8477 712500 6921500 16 -753.5278 713000 6921500 17 -756.2698 713500 6921500 18 -759.0569 714000 6921500 19 -761.6862 714500 6921500 20 -763.8246 715000 6921500 21 -765.1959 715500 6921500 22 -765.7933 716000 6921500 23 -766.0031 716500 6921500 24 -766.1048 717000 6921500 25 -766.3265 717500 6921500 26 -766.8311 718000 6921500 27 -767.6075 718500 6921500 28 -768.5518 719000 6921500 29 -769.665 719500 6921500 30 -771.0578 720000 6921500 31 -772.7654 720500 6921500 32 -774.5943 721000 6921500 33 -776.3228 721500 6921500 34 -777.8958 722000 6921500 35 -779.3691 722500 6921500 36 -780.8124 723000 6921500 37 -782.238 723500 6921500 38 -783.4459 724000 6921500 39 -783.947 724500 6921500 40 -783.1 725000 6921500 41 -780.3475 725500 6921500 42 -775.3364 726000 6921500 43 -768.1904 726500 6921500 44 -759.6676 727000 6921500 45 -751.0439 727500 6921500 46 -743.3143 728000 6921500 47 -737.2394 728500 6921500 48 -732.9197 729000 6921500 49 -729.7674 729500 6921500 50 -726.9813 730000 6921500 51 -723.8005 730500 6921500 52 -719.6984 731000 6921500 53 -714.6543 731500 6921500 54 -708.9582 732000 6921500 55 -702.9576 732500 6921500 56 -696.951 733000 6921500 57 -691.1715 733500 6921500 58 -685.903 734000 6921500 59 -681.5089 734500 6921500 60 -678.2213 735000 6921500 61 -676.3006 735500 6921500 62 -675.9131 736000 6921500 63 -676.8722 736500 6921500 64 -678.7042 737000 6921500 65 -680.9327 737500 6921500 66 -683.1569 738000 6921500 67 -685.1349 738500 6921500 68 -686.876 739000 6921500 69 -688.4813 739500 6921500 70 -690.0261 740000 6921500 71 -691.543 740500 6921500 72 -693.0399 741000 6921500 73 -694.5253 741500 6921500 74 -695.9952 742000 6921500 75 -697.3899 742500 6921500 76 -698.5772 743000 6921500 77 -699.4288 743500 6921500 78 -699.9717 744000 6921500 79 -700.3679 744500 6921500 80 -700.8726 745000 6921500 81 -702.0515 745500 6921500 82 -704.2776 746000 6921500 83 -707.4313 746500 6921500 84 -711.1879 747000 6921500 85 -715.301 705000 6922000 1 -760.1052 705500 6922000 2 -756.0378 706000 6922000 3 -752.3426 706500 6922000 4 -749.0709 707000 6922000 5 -746.274 707500 6922000 6 -743.9979 708000 6922000 7 -742.2076 708500 6922000 8 -740.7752 709000 6922000 9 -739.7655 709500 6922000 10 -739.4984 710000 6922000 11 -740.3357 710500 6922000 12 -742.2048 711000 6922000 13 -744.687 711500 6922000 14 -747.4162 712000 6922000 15 -750.2047 712500 6922000 16 -753.0255 713000 6922000 17 -755.9604 713500 6922000 18 -759.0292 714000 6922000 19 -762.0057 714500 6922000 20 -764.5052 715000 6922000 21 -766.1908 715500 6922000 22 -767.0463 716000 6922000 23 -767.4791 716500 6922000 24 -767.7343 717000 6922000 25 -767.9644 717500 6922000 26 -768.2537 718000 6922000 27 -768.5987 718500 6922000 28 -768.9824 719000 6922000 29 -769.5157 719500 6922000 30 -770.4095 720000 6922000 31 -771.7931 720500 6922000 32 -773.5028 721000 6922000 33 -775.2857 721500 6922000 34 -777.0093 722000 6922000 35 -778.6476 722500 6922000 36 -780.2101 723000 6922000 37 -781.673 723500 6922000 38 -782.8234 724000 6922000 39 -783.1879 724500 6922000 40 -782.1449 725000 6922000 41 -779.1859 725500 6922000 42 -774.0682 726000 6922000 43 -766.9482 726500 6922000 44 -758.4661 727000 6922000 45 -749.8137 727500 6922000 46 -742.006 728000 6922000 47 -735.8831 728500 6922000 48 -731.5604 729000 6922000 49 -728.3967 729500 6922000 50 -725.5563 730000 6922000 51 -722.2971 730500 6922000 52 -718.1701 731000 6922000 53 -713.175 731500 6922000 54 -707.6357 732000 6922000 55 -701.9391 732500 6922000 56 -696.4195 733000 6922000 57 -691.3204 733500 6922000 58 -686.9046 734000 6922000 59 -683.4493 734500 6922000 60 -681.0601 735000 6922000 61 -679.8955 735500 6922000 62 -680.0535 736000 6922000 63 -681.3233 736500 6922000 64 -683.256 737000 6922000 65 -685.4213 737500 6922000 66 -687.3871 738000 6922000 67 -688.8874 738500 6922000 68 -690.0001 739000 6922000 69 -690.9515 739500 6922000 70 -691.8953 740000 6922000 71 -692.9058 740500 6922000 72 -694.01 741000 6922000 73 -695.203 741500 6922000 74 -696.4393 742000 6922000 75 -697.6368 742500 6922000 76 -698.65 743000 6922000 77 -699.3188 743500 6922000 78 -699.6238 744000 6922000 79 -699.682 744500 6922000 80 -699.7637 745000 6922000 81 -700.6651 745500 6922000 82 -702.9951 746000 6922000 83 -706.556 746500 6922000 84 -710.8204 747000 6922000 85 -715.397 705000 6922500 1 -761.0756 705500 6922500 2 -756.9406 706000 6922500 3 -753.0661 706500 6922500 4 -749.5559 707000 6922500 5 -746.4989 707500 6922500 6 -743.9802 708000 6922500 7 -742.0045 708500 6922500 8 -740.452 709000 6922500 9 -739.3759 709500 6922500 10 -739.0698 710000 6922500 11 -739.9211 710500 6922500 12 -741.8727 711000 6922500 13 -744.4479 711500 6922500 14 -747.2439 712000 6922500 15 -750.0705 712500 6922500 16 -752.9254 713000 6922500 17 -755.9003 713500 6922500 18 -759.0432 714000 6922500 19 -762.1539 714500 6922500 20 -764.8792 715000 6922500 21 -766.8754 715500 6922500 22 -768.0913 716000 6922500 23 -768.8759 716500 6922500 24 -769.4019 717000 6922500 25 -769.7393 717500 6922500 26 -769.9064 718000 6922500 27 -769.9106 718500 6922500 28 -769.8143 719000 6922500 29 -769.8327 719500 6922500 30 -770.2403 720000 6922500 31 -771.2297 720500 6922500 32 -772.6979 721000 6922500 33 -774.3944 721500 6922500 34 -776.1308 722000 6922500 35 -777.8054 722500 6922500 36 -779.3715 723000 6922500 37 -780.79 723500 6922500 38 -781.8532 724000 6922500 39 -782.1096 724500 6922500 40 -780.9525 725000 6922500 41 -777.8929 725500 6922500 42 -772.7332 726000 6922500 43 -765.6425 726500 6922500 44 -757.199 727000 6922500 45 -748.5454 727500 6922500 46 -740.7133 728000 6922500 47 -734.6144 728500 6922500 48 -730.3754 729000 6922500 49 -727.2783 729500 6922500 50 -724.4335 730000 6922500 51 -721.0886 730500 6922500 52 -716.826 731000 6922500 53 -711.6845 731500 6922500 54 -706.0911 732000 6922500 55 -700.5295 732500 6922500 56 -695.4202 733000 6922500 57 -691.0507 733500 6922500 58 -687.6517 734000 6922500 59 -685.353 734500 6922500 60 -684.0663 735000 6922500 61 -683.7817 735500 6922500 62 -684.4898 736000 6922500 63 -685.9612 736500 6922500 64 -687.8123 737000 6922500 65 -689.6918 737500 6922500 66 -691.2255 738000 6922500 67 -692.1661 738500 6922500 68 -692.6573 739000 6922500 69 -692.9999 739500 6922500 70 -693.3946 740000 6922500 71 -693.9363 740500 6922500 72 -694.6558 741000 6922500 73 -695.5469 741500 6922500 74 -696.5589 742000 6922500 75 -697.6134 742500 6922500 76 -698.5773 743000 6922500 77 -699.2762 743500 6922500 78 -699.638 744000 6922500 79 -699.6884 744500 6922500 80 -699.6355 745000 6922500 81 -700.3688 745500 6922500 82 -702.7277 746000 6922500 83 -706.5172 746500 6922500 84 -711.0969 747000 6922500 85 -715.9873 705000 6923000 1 -762.2321 705500 6923000 2 -758.0699 706000 6923000 3 -754.0822 706500 6923000 4 -750.4256 707000 6923000 5 -747.2339 707500 6923000 6 -744.6173 708000 6923000 7 -742.6303 708500 6923000 8 -741.1754 709000 6923000 9 -740.2744 709500 6923000 10 -740.1231 710000 6923000 11 -740.9746 710500 6923000 12 -742.7914 711000 6923000 13 -745.1907 711500 6923000 14 -747.8335 712000 6923000 15 -750.5456 712500 6923000 16 -753.2983 713000 6923000 17 -756.1562 713500 6923000 18 -759.1556 714000 6923000 19 -762.159 714500 6923000 20 -764.91 715000 6923000 21 -767.1764 715500 6923000 22 -768.8497 716000 6923000 23 -770.1157 716500 6923000 24 -771.0346 717000 6923000 25 -771.5829 717500 6923000 26 -771.7196 718000 6923000 27 -771.4774 718500 6923000 28 -771.0036 719000 6923000 29 -770.5928 719500 6923000 30 -770.5712 720000 6923000 31 -771.1338 720500 6923000 32 -772.2688 721000 6923000 33 -773.7713 721500 6923000 34 -775.412 722000 6923000 35 -777.0161 722500 6923000 36 -778.4791 723000 6923000 37 -779.7498 723500 6923000 38 -780.6547 724000 6923000 39 -780.7849 724500 6923000 40 -779.5884 725000 6923000 41 -776.5667 725500 6923000 42 -771.4754 726000 6923000 43 -764.473 726500 6923000 44 -756.1542 727000 6923000 45 -747.6494 727500 6923000 46 -739.9495 728000 6923000 47 -733.9427 728500 6923000 48 -729.7692 729000 6923000 49 -726.6909 729500 6923000 50 -723.8028 730000 6923000 51 -720.3141 730500 6923000 52 -715.7545 731000 6923000 53 -710.2191 731500 6923000 54 -704.2806 732000 6923000 55 -698.5966 732500 6923000 56 -693.7498 733000 6923000 57 -690.1546 733500 6923000 58 -688.0007 734000 6923000 59 -687.1779 734500 6923000 60 -687.3035 735000 6923000 61 -688.0842 735500 6923000 62 -689.3001 736000 6923000 63 -690.7286 736500 6923000 64 -692.1547 737000 6923000 65 -693.3961 737500 6923000 66 -694.2578 738000 6923000 67 -694.5921 738500 6923000 68 -694.5473 739000 6923000 69 -694.4304 739500 6923000 70 -694.4318 740000 6923000 71 -694.6166 740500 6923000 72 -694.9906 741000 6923000 73 -695.5718 741500 6923000 74 -696.3528 742000 6923000 75 -697.2948 742500 6923000 76 -698.3192 743000 6923000 77 -699.2834 743500 6923000 78 -700.0552 744000 6923000 79 -700.5276 744500 6923000 80 -700.7476 745000 6923000 81 -701.5059 745500 6923000 82 -703.7631 746000 6923000 83 -707.4746 746500 6923000 84 -712.0508 747000 6923000 85 -717.0187 705000 6923500 1 -763.5626 705500 6923500 2 -759.3953 706000 6923500 3 -755.3348 706500 6923500 4 -751.5952 707000 6923500 5 -748.3593 707500 6923500 6 -745.7678 708000 6923500 7 -743.9125 708500 6923500 8 -742.7086 709000 6923500 9 -742.122 709500 6923500 10 -742.216 710000 6923500 11 -743.0722 710500 6923500 12 -744.6435 711000 6923500 13 -746.7064 711500 6923500 14 -749.0505 712000 6923500 15 -751.5282 712500 6923500 16 -754.0641 713000 6923500 17 -756.6814 713500 6923500 18 -759.4111 714000 6923500 19 -762.1779 714500 6923500 20 -764.8505 715000 6923500 21 -767.3138 715500 6923500 22 -769.4521 716000 6923500 23 -771.2477 716500 6923500 24 -772.6235 717000 6923500 25 -773.4453 717500 6923500 26 -773.6036 718000 6923500 27 -773.1718 718500 6923500 28 -772.3912 719000 6923500 29 -771.6229 719500 6923500 30 -771.213 720000 6923500 31 -771.3735 720500 6923500 32 -772.1652 721000 6923500 33 -773.4471 721500 6923500 34 -774.9468 722000 6923500 35 -776.4092 722500 6923500 36 -777.6723 723000 6923500 37 -778.666 723500 6923500 38 -779.2818 724000 6923500 39 -779.2011 724500 6923500 40 -777.9747 725000 6923500 41 -775.0913 725500 6923500 42 -770.1775 726000 6923500 43 -763.3541 726500 6923500 44 -755.2993 727000 6923500 45 -747.1494 727500 6923500 46 -739.7926 728000 6923500 47 -733.9636 728500 6923500 48 -729.7885 729000 6923500 49 -726.6113 729500 6923500 50 -723.5848 730000 6923500 51 -719.8761 730500 6923500 52 -714.8802 731000 6923500 53 -708.738 731500 6923500 54 -702.2132 732000 6923500 55 -696.1879 732500 6923500 56 -691.4565 733000 6923500 57 -688.65 733500 6923500 58 -687.916 734000 6923500 59 -688.813 734500 6923500 60 -690.5809 735000 6923500 61 -692.5768 735500 6923500 62 -694.2576 736000 6923500 63 -695.4262 736500 6923500 64 -696.1389 737000 6923500 65 -696.4851 737500 6923500 66 -696.471 738000 6923500 67 -696.1653 738500 6923500 68 -695.6766 739000 6923500 69 -695.233 739500 6923500 70 -694.9705 740000 6923500 71 -694.9068 740500 6923500 72 -695.0054 741000 6923500 73 -695.3051 741500 6923500 74 -695.8679 742000 6923500 75 -696.7156 742500 6923500 76 -697.8497 743000 6923500 77 -699.204 743500 6923500 78 -700.5734 744000 6923500 79 -701.7138 744500 6923500 80 -702.4764 745000 6923500 81 -703.4775 745500 6923500 82 -705.6056 746000 6923500 83 -709.0269 746500 6923500 84 -713.3533 747000 6923500 85 -718.2053 705000 6924000 1 -765.0118 705500 6924000 2 -760.8465 706000 6924000 3 -756.7327 706500 6924000 4 -752.946 707000 6924000 5 -749.7191 707500 6924000 6 -747.2274 708000 6924000 7 -745.5918 708500 6924000 8 -744.7184 709000 6924000 9 -744.502 709500 6924000 10 -744.8642 710000 6924000 11 -745.7166 710500 6924000 12 -747.007 711000 6924000 13 -748.6788 711500 6924000 14 -750.6646 712000 6924000 15 -752.8541 712500 6924000 16 -755.121 713000 6924000 17 -757.4493 713500 6924000 18 -759.8666 714000 6924000 19 -762.3555 714500 6924000 20 -764.8997 715000 6924000 21 -767.5084 715500 6924000 22 -770.0551 716000 6924000 23 -772.3364 716500 6924000 24 -774.1503 717000 6924000 25 -775.2513 717500 6924000 26 -775.452 718000 6924000 27 -774.8707 718500 6924000 28 -773.8533 719000 6924000 29 -772.8035 719500 6924000 30 -772.0753 720000 6924000 31 -771.8884 720500 6924000 32 -772.3809 721000 6924000 33 -773.4606 721500 6924000 34 -774.7954 722000 6924000 35 -776.0396 722500 6924000 36 -776.976 723000 6924000 37 -777.5264 723500 6924000 38 -777.6672 724000 6924000 39 -777.2172 724500 6924000 40 -775.8651 725000 6924000 41 -773.1204 725500 6924000 42 -768.4491 726000 6924000 43 -761.9052 726500 6924000 44 -754.2695 727000 6924000 45 -746.6603 727500 6924000 46 -739.8165 728000 6924000 47 -734.2645 728500 6924000 48 -730.0679 729000 6924000 49 -726.6985 729500 6924000 50 -723.4244 730000 6924000 51 -719.4081 730500 6924000 52 -713.9035 731000 6924000 53 -707.0879 731500 6924000 54 -699.9272 732000 6924000 55 -693.5281 732500 6924000 56 -688.8831 733000 6924000 57 -686.8452 733500 6924000 58 -687.5329 734000 6924000 59 -690.1424 734500 6924000 60 -693.5263 735000 6924000 61 -696.7037 735500 6924000 62 -698.8123 736000 6924000 63 -699.6616 736500 6924000 64 -699.6048 737000 6924000 65 -699.0118 737500 6924000 66 -698.1103 738000 6924000 67 -697.145 738500 6924000 68 -696.2283 739000 6924000 69 -695.4871 739500 6924000 70 -695.0001 740000 6924000 71 -694.7473 740500 6924000 72 -694.6504 741000 6924000 73 -694.7552 741500 6924000 74 -695.1754 742000 6924000 75 -695.9758 742500 6924000 76 -697.246 743000 6924000 77 -699.0056 743500 6924000 78 -700.9895 744000 6924000 79 -702.7961 744500 6924000 80 -704.1602 745000 6924000 81 -705.4647 745500 6924000 82 -707.5032 746000 6924000 83 -710.562 746500 6924000 84 -714.5125 747000 6924000 85 -719.1268 705000 6924500 1 -766.4787 705500 6924500 2 -762.3233 706000 6924500 3 -758.1772 706500 6924500 4 -754.372 707000 6924500 5 -751.1858 707500 6924500 6 -748.8272 708000 6924500 7 -747.4367 708500 6924500 8 -746.8952 709000 6924500 9 -747.0255 709500 6924500 10 -747.6266 710000 6924500 11 -748.4695 710500 6924500 12 -749.4953 711000 6924500 13 -750.7931 711500 6924500 14 -752.4263 712000 6924500 15 -754.334 712500 6924500 16 -756.3561 713000 6924500 17 -758.444 713500 6924500 18 -760.6139 714000 6924500 19 -762.8786 714500 6924500 20 -765.2991 715000 6924500 21 -767.9805 715500 6924500 22 -770.7958 716000 6924500 23 -773.4043 716500 6924500 24 -775.5167 717000 6924500 25 -776.8193 717500 6924500 26 -777.0689 718000 6924500 27 -776.4154 718500 6924500 28 -775.2823 719000 6924500 29 -774.0884 719500 6924500 30 -773.1715 720000 6924500 31 -772.7557 720500 6924500 32 -773.0269 721000 6924500 33 -773.9281 721500 6924500 34 -775.0568 722000 6924500 35 -775.9732 722500 6924500 36 -776.4012 723000 6924500 37 -776.2745 723500 6924500 38 -775.6751 724000 6924500 39 -774.5814 724500 6924500 40 -772.842 725000 6924500 41 -770.0749 725500 6924500 42 -765.6557 726000 6924500 43 -759.5555 726500 6924500 44 -752.5887 727000 6924500 45 -745.7504 727500 6924500 46 -739.5768 728000 6924500 47 -734.3892 728500 6924500 48 -730.1732 729000 6924500 49 -726.5154 729500 6924500 50 -722.8226 730000 6924500 51 -718.3561 730500 6924500 52 -712.3484 731000 6924500 53 -705.012 731500 6924500 54 -697.459 732000 6924500 55 -690.9344 732500 6924500 56 -686.5274 733000 6924500 57 -685.2145 733500 6924500 58 -687.0952 734000 6924500 59 -691.0816 734500 6924500 60 -695.7324 735000 6924500 61 -699.8446 735500 6924500 62 -702.3373 736000 6924500 63 -702.9968 736500 6924500 64 -702.3723 737000 6924500 65 -701.0408 737500 6924500 66 -699.3819 738000 6924500 67 -697.7874 738500 6924500 68 -696.3943 739000 6924500 69 -695.2788 739500 6924500 70 -694.5049 740000 6924500 71 -694.0672 740500 6924500 72 -693.8825 741000 6924500 73 -693.9771 741500 6924500 74 -694.4324 742000 6924500 75 -695.3057 742500 6924500 76 -696.7612 743000 6924500 77 -698.9119 743500 6924500 78 -701.4398 744000 6924500 79 -703.7844 744500 6924500 80 -705.614 745000 6924500 81 -707.1403 745500 6924500 82 -709.0056 746000 6924500 83 -711.5979 746500 6924500 84 -715.033 747000 6924500 85 -719.2686 705000 6925000 1 -767.8219 705500 6925000 2 -763.702 706000 6925000 3 -759.5692 706500 6925000 4 -755.7879 707000 6925000 5 -752.6683 707500 6925000 6 -750.4419 708000 6925000 7 -749.2583 708500 6925000 8 -748.9691 709000 6925000 9 -749.3412 709500 6925000 10 -750.0983 710000 6925000 11 -750.9264 710500 6925000 12 -751.7524 711000 6925000 13 -752.7565 711500 6925000 14 -754.0947 712000 6925000 15 -755.7755 712500 6925000 16 -757.6525 713000 6925000 17 -759.6516 713500 6925000 18 -761.7514 714000 6925000 19 -763.9501 714500 6925000 20 -766.3121 715000 6925000 21 -768.9762 715500 6925000 22 -771.8208 716000 6925000 23 -774.4587 716500 6925000 24 -776.5862 717000 6925000 25 -777.9168 717500 6925000 26 -778.217 718000 6925000 27 -777.6345 718500 6925000 28 -776.588 719000 6925000 29 -775.4675 719500 6925000 30 -774.5763 720000 6925000 31 -774.1235 720500 6925000 32 -774.2846 721000 6925000 33 -775.0115 721500 6925000 34 -775.8536 722000 6925000 35 -776.2987 722500 6925000 36 -776.0027 723000 6925000 37 -774.9085 723500 6925000 38 -773.2197 724000 6925000 39 -771.0778 724500 6925000 40 -768.514 725000 6925000 41 -765.3741 725500 6925000 42 -761.1683 726000 6925000 43 -755.7853 726500 6925000 44 -749.8943 727000 6925000 45 -744.1657 727500 6925000 46 -738.8726 728000 6925000 47 -734.14 728500 6925000 48 -729.8813 729000 6925000 49 -725.7789 729500 6925000 50 -721.4115 730000 6925000 51 -716.2687 730500 6925000 52 -709.8146 731000 6925000 53 -702.291 731500 6925000 54 -694.8215 732000 6925000 55 -688.6339 732500 6925000 56 -684.7685 733000 6925000 57 -684.1331 733500 6925000 58 -686.8244 734000 6925000 59 -691.6371 734500 6925000 60 -697.0076 735000 6925000 61 -701.6655 735500 6925000 62 -704.4901 736000 6925000 63 -705.2039 736500 6925000 64 -704.374 737000 6925000 65 -702.6452 737500 6925000 66 -700.4656 738000 6925000 67 -698.3013 738500 6925000 68 -696.3626 739000 6925000 69 -694.7473 739500 6925000 70 -693.5701 740000 6925000 71 -692.9161 740500 6925000 72 -692.7798 741000 6925000 73 -693.1425 741500 6925000 74 -693.9347 742000 6925000 75 -695.1215 742500 6925000 76 -696.8679 743000 6925000 77 -699.3538 743500 6925000 78 -702.2449 744000 6925000 79 -704.8959 744500 6925000 80 -706.9296 745000 6925000 81 -708.43 745500 6925000 82 -709.8936 746000 6925000 83 -711.7782 746500 6925000 84 -714.4371 747000 6925000 85 -718.046 ================================================ FILE: examples/data/input_data/tut_chapter1/.~lock.fault_unconformity_model_orientations.csv# ================================================ ,bl9,bl9,24.01.2018 18:51,file:///home/bl9/.config/libreoffice/4; ================================================ FILE: examples/data/input_data/tut_chapter1/.~lock.fault_unconformity_model_points.csv# ================================================ ,bl9,bl9,24.01.2018 18:39,file:///home/bl9/.config/libreoffice/4; ================================================ FILE: examples/data/input_data/tut_chapter1/fault_unconformity_model_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 1000,1000,950,90,18.435,1,Shale 400,1000,1400,90,18.435,1,Sandstone_2 1000,1500,1600,270,20,1,Carbonate 500,1000,864.602,270,71.565,1,Main_Fault ================================================ FILE: examples/data/input_data/tut_chapter1/fault_unconformity_model_points.csv ================================================ X,Y,Z,formation 800,50,750,Shale 800,150,700,Shale 800,300,700,Shale 800,500,800,Shale 800,1000,1000,Shale 800,1500,700,Shale 800,1700,600,Shale 800,1950,650,Shale 0,1000,1100,Shale 300,1000,1000,Shale 450,1000,950,Shale 1100,1000,900,Shale 1400,1000,850,Shale 1700,1000,900,Shale 1500,500,800,Shale 1500,1500,750,Shale 800,50,450,Sandstone_1 800,150,400,Sandstone_1 800,300,400,Sandstone_1 800,500,500,Sandstone_1 800,1000,700,Sandstone_1 800,1500,400,Sandstone_1 800,1700,300,Sandstone_1 800,1950,350,Sandstone_1 0,1000,800,Sandstone_1 300,1000,700,Sandstone_1 1100,1000,600,Sandstone_1 1400,1000,550,Sandstone_1 1700,1000,600,Sandstone_1 1500,500,500,Sandstone_1 1500,1500,450,Sandstone_1 900,150,920,Siltstone 900,300,920,Siltstone 900,1500,920,Siltstone 900,1700,820,Siltstone 900,1950,870,Siltstone 0,1000,1300,Siltstone 300,1000,1200,Siltstone 600,1000,1100,Siltstone 1100,1000,1100,Siltstone 1400,1000,1050,Siltstone 1700,1000,1100,Siltstone 1500,500,1000,Siltstone 1500,1500,950,Siltstone 0,1000,1500,Sandstone_2 300,1000,1400,Sandstone_2 600,1000,1300,Sandstone_2 1100,1000,1300,Sandstone_2 1400,1000,1250,Sandstone_2 1700,1000,1300,Sandstone_2 1500,500,1200,Sandstone_2 1500,1500,1150,Sandstone_2 300,300,1500,Carbonate 1700,1700,1600,Carbonate 1000,1000,1300,Carbonate 300,1700,1400,Carbonate 1700,300,1500,Carbonate 700,1000,900,Main_Fault 600,1000,600,Main_Fault 500,1000,300,Main_Fault 800,1000,1200,Main_Fault 900,1000,1500,Main_Fault ================================================ FILE: examples/data/input_data/tut_chapter1/simple_fault_model_orientations.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 1000,1000,950,90,18.435,1,Shale 400,1000,1400,90,18.435,1,Sandstone_2 500,1000,864.602,270,71.565,1,Main_Fault ================================================ FILE: examples/data/input_data/tut_chapter1/simple_fault_model_orientations_geophy.csv ================================================ X,Y,Z,azimuth,dip,polarity,formation 1000,1000,-1050,90,18.435,1,target 400,1000,-600,90,18.435,1,seawater 500,1000,-1135.398,270,71.565,1,fault ================================================ FILE: examples/data/input_data/tut_chapter1/simple_fault_model_points.csv ================================================ X,Y,Z,formation 800,50,750,Shale 800,150,700,Shale 800,300,700,Shale 800,500,800,Shale 800,1000,1000,Shale 800,1500,700,Shale 800,1700,600,Shale 800,1950,650,Shale 0,1000,1100,Shale 300,1000,1000,Shale 450,1000,950,Shale 1100,1000,900,Shale 1400,1000,850,Shale 1700,1000,900,Shale 1500,500,800,Shale 1500,1500,750,Shale 800,50,450,Sandstone_1 800,150,400,Sandstone_1 800,300,400,Sandstone_1 800,500,500,Sandstone_1 800,1000,700,Sandstone_1 800,1500,400,Sandstone_1 800,1700,300,Sandstone_1 800,1950,350,Sandstone_1 0,1000,800,Sandstone_1 300,1000,700,Sandstone_1 1100,1000,600,Sandstone_1 1400,1000,550,Sandstone_1 1700,1000,600,Sandstone_1 1500,500,500,Sandstone_1 1500,1500,450,Sandstone_1 900,150,920,Siltstone 900,300,920,Siltstone 900,1500,920,Siltstone 900,1700,820,Siltstone 900,1950,870,Siltstone 0,1000,1300,Siltstone 300,1000,1200,Siltstone 600,1000,1100,Siltstone 1100,1000,1100,Siltstone 1400,1000,1050,Siltstone 1700,1000,1100,Siltstone 1500,500,1000,Siltstone 1500,1500,950,Siltstone 0,1000,1500,Sandstone_2 300,1000,1400,Sandstone_2 600,1000,1300,Sandstone_2 1100,1000,1300,Sandstone_2 1400,1000,1250,Sandstone_2 1700,1000,1300,Sandstone_2 1500,500,1200,Sandstone_2 1500,1500,1150,Sandstone_2 700,1000,900,Main_Fault 600,1000,600,Main_Fault 500,1000,300,Main_Fault 800,1000,1200,Main_Fault 900,1000,1500,Main_Fault ================================================ FILE: examples/data/input_data/tut_chapter1/simple_fault_model_points_geophy.csv ================================================ X,Y,Z,formation 800,50,-1250,target 800,150,-1300,target 800,300,-1300,target 800,500,-1200,target 800,1000,-1000,target 800,1500,-1300,target 800,1700,-1400,target 800,1950,-1350,target 0,1000,-900,target 300,1000,-1000,target 450,1000,-1050,target 1100,1000,-1100,target 1400,1000,-1150,target 1700,1000,-1100,target 1500,500,-1200,target 1500,1500,-1250,target 800,50,-1550,underburden 800,150,-1600,underburden 800,300,-1600,underburden 800,500,-1500,underburden 800,1000,-1300,underburden 800,1500,-1600,underburden 800,1700,-1700,underburden 800,1950,-1650,underburden 0,1000,-1200,underburden 300,1000,-1300,underburden 1100,1000,-1400,underburden 1400,1000,-1450,underburden 1700,1000,-1400,underburden 1500,500,-1500,underburden 1500,1500,-1550,underburden 900,150,-1080,overburden 900,300,-1080,overburden 900,1500,-1080,overburden 900,1700,-1180,overburden 900,1950,-1130,overburden 0,1000,-700,overburden 300,1000,-800,overburden 600,1000,-900,overburden 1100,1000,-900,overburden 1400,1000,-950,overburden 1700,1000,-900,overburden 1500,500,-1000,overburden 1500,1500,-1050,overburden 0,1000,-500,seawater 300,1000,-600,seawater 600,1000,-700,seawater 1100,1000,-700,seawater 1400,1000,-750,seawater 1700,1000,-700,seawater 1500,500,-800,seawater 1500,1500,-850,seawater 700,1000,-1100,fault 600,1000,-1400,fault 500,1000,-1700,fault 800,1000,-800,fault 900,1000,-500,fault ================================================ FILE: examples/data/input_data/tut_chapter6/ch6_data_fol.csv ================================================ G_x,G_y,G_z,X,X_std,Y,Y_std,Z,Z_std,annotations,azimuth,azimuth_std,dip,dip_std,formation,formation_number,group_id,index,isFault,order_series,polarity,series 0.8682431421244591,-5.537707899440688e-15,0.4961389383568339,1500.0,,6.66666666667,,990.0,,"${\bf{x}}_{\beta \,{\bf{1}},0}$",90.0,,60.2551187031,,Fault,1,fault,,True,1,1,fault 0.25881904510252074,1.5848095757158825e-17,0.9659258262890683,506.333333333,,9.66666666667,,1679.33333333,,"${\bf{x}}_{\beta \,{\bf{2}},0}$",90,,15,,Layer 2,2,l2_a,1.0,False,2,1,Rest 0.25881904510252074,1.5848095757158825e-17,0.9659258262890683,2500,,9.666666666666666,,911,,"${\bf{x}}_{\beta \,{\bf{2}},1}$",90,,15,,Layer 2,2,l2_a,1.0,False,2,1,Rest ================================================ FILE: examples/data/input_data/tut_chapter6/ch6_data_interf.csv ================================================ X,X_std,Y,Y_std,Z,Z_std,annotations,formation,formation_number,group_id,isFault,order_series,series 1700,0.0,0,0.0,640,0.0,"${\bf{x}}_{\alpha \,{\bf{1}},0}$",Fault,1,fault,True,1,fault 1500,0.0,10,0.0,990,0.0,"${\bf{x}}_{\alpha \,{\bf{1}},1}$",Fault,1,fault,True,1,fault 1300,0.0,10,0.0,1340,0.0,"${\bf{x}}_{\alpha \,{\bf{1}},2}$",Fault,1,fault,True,1,fault 2500,0.0,10,0.0,911,0.0,"${\bf{x}}_{\alpha \,{\bf{2}},0}$",Layer 2,2,l2_b,False,2,Rest 500,0.0,10,0.0,1681,0.0,"${\bf{x}}_{\alpha \,{\bf{2}},1}$",Layer 2,2,l2_a,False,2,Rest 2500,0.0,10,0.0,704,0.0,"${\bf{x}}_{\alpha \,{\bf{3}},0}$",Layer 3,3,l3_b,False,2,Rest 500,0.0,10,0.0,1474,0.0,"${\bf{x}}_{\alpha \,{\bf{3}},1}$",Layer 3,3,l3_a,False,2,Rest 2500,0.0,10,0.0,497,0.0,"${\bf{x}}_{\alpha \,{\bf{4}},0}$",Layer 4,4,l4_b,False,2,Rest 500,0.0,10,0.0,1267,0.0,"${\bf{x}}_{\alpha \,{\bf{4}},1}$",Layer 4,4,l4_a,False,2,Rest 2500,0.0,10,0.0,290,0.0,"${\bf{x}}_{\alpha \,{\bf{5}},0}$",Layer 5,5,l5_b,False,2,Rest 500,0.0,10,0.0,1060,0.0,"${\bf{x}}_{\alpha \,{\bf{5}},1}$",Layer 5,5,l5_a,False,2,Rest ================================================ FILE: examples/examples/README.rst ================================================ Examples ======== This examples intend to be a gallery of what other people has done with GemPy. Hopefully with the help of the community we can create a complete library of structures that can serve as template for new users. ================================================ FILE: examples/examples/__init__.py ================================================ ================================================ FILE: examples/examples/geometries/README.rst ================================================ Simple geometries ----------------- Some simple geometries. ================================================ FILE: examples/examples/geometries/__init__.py ================================================ ================================================ FILE: examples/examples/geometries/a01_horizontal_stratigraphic.py ================================================ """ Model 1 - Horizontal Stratigraphy =================================== This example demonstrates how to build a basic geological model with horizontally stacked layers using GemPy, an open-source Python library for implicit geological modeling. In this script, we will: - Set up and compute a simple geological model using input data (orientations and surface points). - Visualize the model in 2D and 3D. - Export model components (formations, orientations, surface points, and the regular grid) to VTK files. - Extract mesh vertices and normals, save them to Excel files, and convert the vertex data to an XYZ file. Each section includes detailed comments to explain its purpose and functionality. """ # %% # Import necessary libraries import gempy as gp import gempy_viewer as gpv import pyvista as pv import vtk import pandas as pd # sphinx_gallery_thumbnail_number = 2 # %% # Generate the Geological Model # ----------------------------- # In this section, we define the data source and create a GeoModel instance. # The model is defined with a specific spatial extent and resolution (refinement). # Input data (orientations and surface points) are loaded from a remote repository. # Define the path to the dataset hosted online data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' # Create a GeoModel instance with the given project name, extent, and refinement level. data = gp.create_geomodel( project_name='horizontal', extent=[0, 1000, 0, 1000, 0, 1000], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/jan_models/model1_orientations.csv", path_to_surface_points=data_path + "/data/input_data/jan_models/model1_surface_points.csv" ) ) # Map a geological series to the corresponding surfaces. # Here, the "Strat_Series" is associated with two formations ('rock2' and 'rock1'), # which defines the stacking order of horizontal layers. gp.map_stack_to_surfaces( gempy_model=data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) # Compute the geological model using the provided data and mappings. gp.compute_model(data) geo_data = data # %% # 2D Visualization of the Geological Model # ----------------------------------------- # The following plots provide 2D views of the model. # - The first plot shows the initial model without computed results. # - The subsequent plots display the computed geological data in the x and y directions. # Note: The boundaries are hidden in the latter plots for a cleaner visualization. # Plot the initial model in the y direction (without displaying computed results) gpv.plot_2d(geo_data, direction=['y'], show_results=False) # Plot the computed model results in the x and y directions, including data but excluding boundaries gpv.plot_2d(geo_data, direction=['x'], show_data=True, show_boundaries=False) gpv.plot_2d(geo_data, direction=['y'], show_data=True, show_boundaries=False) # %% # 3D Visualization and Export to VTK # ---------------------------------- # Visualize the model in 3D with data, results, and boundaries. # The generated 3D plot is also used to export various components of the model to VTK files. p = gpv.plot_3d(geo_data, show_data=True, show_results=True, show_boundaries=True, image=True) # Export different components of the model to VTK files: p.surface_poly['rock1'].save('rock1.vtk') # Save formation 'rock1' p.surface_poly['rock2'].save('rock2.vtk') # Save formation 'rock2' p.orientations_mesh.save('orientations.vtk') # Save the orientations mesh p.surface_points_mesh.save('surface_points.vtk') # Save the surface points mesh # Retrieve and export the regular grid (volume representation) of the model box = p.regular_grid_actor.GetMapper().GetInput() box.save('box.vtk') # %% # Display the Exported VTK Files with PyVista # ------------------------------------------- # Load and plot each exported VTK file to verify the export. pv.read('rock1.vtk').plot(show_edges=False) pv.read('rock2.vtk').plot(show_edges=False) pv.read('orientations.vtk').plot(show_edges=False) pv.read('surface_points.vtk').plot(show_edges=False) pv.read('box.vtk').plot(show_edges=False) # %% # Extract and Save Mesh Vertices and Normals # ------------------------------------------ # The following functions extract vertex coordinates and corresponding normal vectors # from a mesh (vtkPolyData), and then save this data into Excel files for further analysis. def generate_normals(polydata): """ Generate normals for the given polydata if they are not already computed. Parameters: polydata (vtk.vtkPolyData): Input polydata for which normals are to be computed. Returns: vtk.vtkPolyData: The polydata with computed point normals. """ normal_generator = vtk.vtkPolyDataNormals() normal_generator.SetInputData(polydata) normal_generator.ComputePointNormalsOn() normal_generator.ComputeCellNormalsOff() normal_generator.Update() return normal_generator.GetOutput() def get_vertices_and_normals(mesh): """ Extract vertices and normals from a mesh. Parameters: mesh: The mesh object (typically from a formation) to extract surface vertices and normals. Returns: tuple: Two lists containing vertices and normals respectively. """ # Extract the surface of the mesh surface_mesh = mesh.extract_surface() polydata = surface_mesh # Ensure normals are computed for the polydata polydata_with_normals = generate_normals(polydata) # Extract points (vertices) points = polydata_with_normals.GetPoints() vertices = [points.GetPoint(i) for i in range(points.GetNumberOfPoints())] # Extract normals associated with the points normals_array = polydata_with_normals.GetPointData().GetNormals() normals = [normals_array.GetTuple(i) for i in range(normals_array.GetNumberOfTuples())] return vertices, normals def save_to_excel(vertices, normals, vertices_file, normals_file): """ Save the vertices and normals to separate Excel files. Parameters: vertices (list): List of vertex coordinates. normals (list): List of normal vectors. vertices_file (str): File name for saving vertices. normals_file (str): File name for saving normals. """ # Create DataFrames from the lists vertices_df = pd.DataFrame(vertices, columns=['X', 'Y', 'Z']) normals_df = pd.DataFrame(normals, columns=['x', 'y', 'z']) # Write the DataFrames to Excel files vertices_df.to_excel(vertices_file, index=False) normals_df.to_excel(normals_file, index=False) # Extract vertices and normals from the mesh of formation 'rock1' mesh = p.surface_poly['rock1'] vertices, normals = get_vertices_and_normals(mesh) # Create DataFrames for later processing or verification vertices_df = pd.DataFrame(vertices, columns=['X', 'Y', 'Z']) normals_df = pd.DataFrame(normals, columns=['x', 'y', 'z']) # Define file names for the Excel outputs vertices_file = "rock1_vertices.xlsx" normals_file = "rock1_norms.xlsx" # Save the extracted data to Excel files save_to_excel(vertices, normals, vertices_file, normals_file) # Optionally, read back the Excel files to verify their content pd.read_excel(vertices_file) pd.read_excel(normals_file) # %% # Convert Vertices DataFrame to an XYZ File # ----------------------------------------- # This function converts a DataFrame containing vertex coordinates to an XYZ format file, # which is a simple text file with one point per line. def dataframe_to_xyz(df, filename): """ Write vertex coordinates from a DataFrame to an XYZ file. Parameters: df (pandas.DataFrame): DataFrame containing 'X', 'Y', and 'Z' columns. filename (str): Output filename for the XYZ file. """ with open(filename, 'w') as f: for index, row in df.iterrows(): f.write(f"{row['X']} {row['Y']} {row['Z']}\n") # Specify the output file name for the XYZ file filename = "output.xyz" # Convert the vertices DataFrame to an XYZ file dataframe_to_xyz(vertices_df, filename) ================================================ FILE: examples/examples/geometries/b02_fold.py ================================================ """ Model 2 - Anticline =================== Simple model of an anticline This script demonstrates how to create a geological model of an anticline structure using GemPy, a Python-based, open-source library for implicit geological modeling. """ # Import necessary libraries import gempy as gp import gempy_viewer as gpv # sphinx_gallery_thumbnail_number = 2 # %% # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data: gp.data.GeoModel = gp.create_geomodel( project_name='fold', extent=[0, 1000, 0, 1000, 0, 1000], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model2_orientations.csv", path_to_surface_points=path_to_data + "model2_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) # Compute the geological model gp.compute_model(data) geo_data = data # %% # Plot the initial geological model in the y direction without results gpv.plot_2d(geo_data, direction=['y'], show_results=False) # Plot the result of the model in the y and x direction with data and scalar gpv.plot_2d(geo_data, direction='y', show_data=True, show_scalar=False) gpv.plot_2d(geo_data, direction='x', show_data=True, show_scalar=True) ================================================ FILE: examples/examples/geometries/c03_recumbent_fold.py ================================================ """ Model 3 - Recumbent Fold ======================== Modeling a recumbent fold This script demonstrates how to create a geological model of a recumbent fold using GemPy, a Python-based, open-source library for implicit geological modeling. """ # Import necessary libraries import gempy as gp import gempy_viewer as gpv # sphinx_gallery_thumbnail_number = 2 # %% # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data = gp.create_geomodel( project_name='recumbent', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[50, 50, 50], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model3_orientations.csv", path_to_surface_points=path_to_data + "model3_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) # Compute the geological model gp.compute_model(data) geo_data = data # %% # Plot the initial geological model in the y direction gpv.plot_2d(geo_data, direction=['y'], show_results=False) # Plot the result of the model in the y direction with data gpv.plot_2d(geo_data, direction=['y'], show_data=True) # %% gpv.plot_3d(geo_data, show_surfaces=True) ================================================ FILE: examples/examples/geometries/d04_pinchout.py ================================================ """ Model 4 - Pinchout ================== Modeling of a pinchout: combining scalar fields This script demonstrates how to create a geological model with a layer of varying thickness (pinchout) using GemPy, a Python-based, open-source library for implicit geological modeling. """ # Import necessary libraries import gempy as gp import gempy_viewer as gpv # sphinx_gallery_thumbnail_number = 3 # %% # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data = gp.create_geomodel( project_name='pinchout', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[50, 50, 50], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model4_orientations.csv", path_to_surface_points=path_to_data + "model4_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) # Compute the geological model gp.compute_model(data) geo_data = data # %% # Plot the initial geological model in the y direction gpv.plot_2d(geo_data, direction=['y'], show_results=False) # Plot the result of the model in the x and y direction with data gpv.plot_2d(geo_data, direction=['x'], show_data=True) gpv.plot_2d(geo_data, direction=['y'], show_data=True) # %% gpv.plot_3d(geo_data, show_surfaces=True) ================================================ FILE: examples/examples/geometries/e05_fault.py ================================================ """ Model 5 - Fault =============== Modeling a fault This script demonstrates how to create a simple fault model with constant offset using GemPy, a Python-based, open-source library for implicit geological modeling. """ # Import necessary libraries import gempy as gp import gempy_viewer as gpv import numpy as np from gempy_engine.core.data.stack_relation_type import StackRelationType # sphinx_gallery_thumbnail_number = 2 # %% # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data = gp.create_geomodel( project_name='fault', extent=[0, 1000, 0, 1000, 0, 1000], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model5_orientations.csv", path_to_surface_points=path_to_data + "model5_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={ "Fault_Series": 'fault', "Strat_Series": ('rock2', 'rock1') } ) # Define fault groups data.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT data.structural_frame.fault_relations = np.array([[0, 1], [0, 0]]) # Compute the geological model gp.compute_model(data) geo_data = data # %% # Plot the initial geological model in the y direction gpv.plot_2d(geo_data, direction=['y'], show_results=False) # %% # Plot the result of the model in the x and y direction with data gpv.plot_2d(geo_data, direction='y', show_data=True) gpv.plot_2d(geo_data, direction='x', show_data=True) gpv.plot_3d(geo_data, show_data=True, show_boundaries=True, show_lith=True) ================================================ FILE: examples/examples/geometries/f06_unconformity.py ================================================ """ Model 6 - Unconformity ====================== Modeling unconformities through the combination of scalar fields This script creates an unconformity cutting an anticline structure using GemPy, an open-source, Python-based library for building implicit geological models. """ # Importing necessary libraries import gempy as gp import gempy_viewer as gpv from gempy_engine.core.data.stack_relation_type import StackRelationType # sphinx_gallery_thumbnail_number = 2 # %% # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data = gp.create_geomodel( project_name='unconformity', extent=[0, 1000, 0, 1000, 0, 1000], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model6_orientations.csv", path_to_surface_points=path_to_data + "model6_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={ "Strat_Series1": 'rock3', "Strat_Series2": ('rock2', 'rock1') } ) # Define the structural relation data.structural_frame.structural_groups[0].structural_relation = StackRelationType.ERODE # Compute the geological model gp.compute_model(data) geo_data = data # %% # Plot the initial geological model in the y direction gpv.plot_2d(geo_data, direction=['y'], show_results=False) # %% # Plot the result of the model in the y and x directions with data gpv.plot_2d(geo_data, direction='y', show_data=True) gpv.plot_2d(geo_data, direction='x', show_data=True) ================================================ FILE: examples/examples/geometries/g07_combination.py ================================================ """ Model 7 - Combination ====================== Combining faults and unconformities This script creates a folded domain featuring an unconformity and a fault using GemPy, an open-source, Python-based library for building implicit geological models. """ # Importing necessary libraries import numpy as np import gempy as gp import gempy_viewer as gpv from gempy_engine.core.data.stack_relation_type import StackRelationType # sphinx_gallery_thumbnail_number = 2 # Generate the model # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance data = gp.create_geomodel( project_name='combination', extent=[0, 2500, 0, 1000, 0, 1000], refinement=6, resolution=[20, 20, 20], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model7_orientations.csv", path_to_surface_points=path_to_data + "model7_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=data, mapping_object={ "Fault_Series" : ('fault'), "Strat_Series1": ('rock3'), "Strat_Series2": ('rock2', 'rock1'), } ) # Define the structural relation data.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT data.structural_frame.fault_relations = np.array( [[0, 1, 1], [0, 0, 0], [0, 0, 0]] ) # Compute the geological model data.interpolation_options.number_octree_levels_surface = 5 gp.compute_model(data) data.structural_frame # %% # Plot the initial geological model in the y direction gpv.plot_2d(data, direction=['y'], show_results=False) # %% # Plot the result of the model in the y and x directions with data and boundaries gpv.plot_2d(data, direction='y', show_data=True, show_boundaries=True) gpv.plot_2d(data, direction='x', show_data=True) # Plot the blocks accounting for fault blocks gpv.plot_2d( model=data, override_regular_grid=data.solutions.raw_arrays.litho_faults_block, show_data=True, kwargs_lithology={'cmap': 'Set1', 'norm': None} ) # %% # The 3D plot is commented out due to a bug. gpv.plot_3d(data) ================================================ FILE: examples/examples/geometries/h08_more_examples.py ================================================ """ GemPy Models - Some More Complex Examples ----------------------------------------- A set of more complex examples """ # %% # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import os # %% # Choose a model and load the corresponding data set in the line below # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Model 1: Discordant layering # # Model 2: Anticlinal layering # # Model 3: Parallel steep dipping layers # # Model 5: Normal faulting # # Model 6: Synclinal layering # # Model 7: Graben structure with two faults # # Model 8: Similar to Model 5 # # Model 9: Parallel flat dipping layers # # %% data_path = os.path.abspath('../..') # %% def create_example(name_model, plot_section=True): """ Create an inter_data from one of the examples data_set Attr: name_model (str): name of the model that you want to generate. It has to be in ['Model 1' ,'Model 2', 'Model 3', 'Model 4','Model 5' 'Model 6','Model 7', 'Model 8', 'Model 9'] save_pickle (bool, str): Save to a pickle the interp_data object. You can pass the path as a string otherwse the default name will be given plot_section (bool) """ name_list = np.array(['Model 1', 'Model 2', 'Model 3', 'Model 4', 'Model 5', 'Model 6', 'Model 7', 'Model 8', 'Model 9']) assert name_model in name_list, 'Name model must be in the following list: ' + str(name_list) # Extract number of the model n_model = name_model[-1] # # Load right gempy geodata geo_data: gp.data.GeoModel = gp.create_geomodel( project_name=name_model, extent=[0, 2000, 0, 2000, 0, 1600], resolution=[50, 50, 50], refinement=6, # * For this model is better not to use octrees because we want to see what is happening in the scalar fields importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/lisa_models/foliations" + n_model + ".csv", path_to_surface_points=data_path + "/data/input_data/lisa_models/interfaces" + n_model + ".csv", ) ) # Set the right sequential pile subset_list_1 = np.array(['Model 1']) subset_list_2 = np.array(['Model 5', 'Model 8']) subset_list_3 = np.array(['Model 2', 'Model 3', 'Model 9', 'Model 6']) subset_list_4 = np.array(['Model 7']) ### Model 1 - Discordant layering ### if name_model in subset_list_1: gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Strat_Series_1": ('Sandstone', 'Siltstone', 'Shale'), "Strat_Series_2": ('Sandstone2', 'Siltstone2', 'Shale2') }, ) ### Model 5 - One normal Fault ### ### Model 8 - ### elif name_model in subset_list_2: gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_Series": 'Main_Fault', "Strat_Series": ('Sandstone', 'Siltstone', 'Shale', 'Sandstone_2', 'Schist', 'Gneiss') }, ) gp.set_is_fault(geo_data, ['Fault_Series']) elif name_model in subset_list_3: ### Model 2 - Aufwölbung (durch Salzstock?) ### ### Model 3+9 - Parallele NNE Schichtung ohne Verwerfung ### ### Model 6 - Mulde ### gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Strat_Series": ('Sandstone', 'Siltstone', 'Shale', 'Sandstone_2', 'Schist', 'Gneiss') }, ) elif name_model in subset_list_4: ### Model 7 - Graben ### gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_1": 'Fault_1', "Fault_2": 'Fault_2', "Strat_Series": ('Sandstone', 'Siltstone', 'Shale', 'Sandstone_2', 'Schist', 'Gneiss') }, ) gp.set_is_fault(geo_data, ['Fault_1', 'Fault_2']) else: print('You would never reach this point. Look for the bug') # Interpolation and Computation sol = gp.compute_model( gempy_model=geo_data, engine_config=gp.data.GemPyEngineConfig(backend=gp.data.AvailableBackends.PYTORCH) ) if plot_section is True: # 2D Plot gpv.plot_2d(geo_data, cell_number=['mid'], direction='y', show_data=True) gpv.plot_3d(geo_data, image=False) return geo_data.structural_frame # %% # Discordant layering 1 # ===================== create_example('Model 1') # %% # Discordant layering 2 # ===================== create_example('Model 2') # %% # Discordant layering 3 # ===================== create_example('Model 3') # %% # One normal Fault 1 # ================== create_example('Model 5') # %% # Fold # ==== create_example('Model 6') # %% # Graben # ====== create_example('Model 7') # %% # One normal Fault 2 # =================== create_example('Model 8') # %% # Horizontal tilted # ================= create_example('Model 9') # %% # generate_all_models(['Model 1', 'Model 2', 'Model 3', # 'Model 5', 'Model 6', 'Model 7', # 'Model 8', 'Model 9']) ================================================ FILE: examples/examples/real/Alesmodel.py ================================================ """ Model of Ales, France: Plotting Sections and Maps ====================================== """ # %% # .. admonition:: Explanation # # This model is generally quite unstable and requires float64 precision to determine a solution. # The lack of data in one corner for the TRIAS and LIAS series causes the model to bend unrealistically, # eroding the CARBO layer, which disappears in that section. # import gempy as gp import gempy_viewer as gpv import os # %% # Setting up paths cwd = os.getcwd() data_path = os.path.join(cwd, 'examples') if 'examples' not in cwd else os.path.join(cwd, '../..') path_interf = os.path.join(data_path, "data/input_data/AlesModel/2018_interf.csv") path_orient = os.path.join(data_path, "data/input_data/AlesModel/2018_orient_clust_n_init5_0.csv") path_dem = os.path.join(data_path, "data/input_data/AlesModel/_cropped_DEM_coarse.tif") # %% # Creating the geological model geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Claudius', extent=[729550.0, 751500.0, 1913500.0, 1923650.0, -1800.0, 800.0], resolution=None, refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_orient, path_to_surface_points=path_interf, ) ) # %% # Setting up the section grid gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section1': ([732000, 1916000], [745000, 1916000], [200, 150]) } ) # %% # Sorting lithologies gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ 'fault_left': 'fault_left', 'fault_right': 'fault_right', 'fault_lr': 'fault_lr', 'Trias_Series': ('TRIAS', 'LIAS'), 'Carbon_Series': 'CARBO', 'Basement_Series': 'basement' }, remove_unused_series=True ) # %% # Changing colors geo_model.structural_frame.get_element_by_name("LIAS").color = "#015482" geo_model.structural_frame.get_element_by_name("TRIAS").color = "#9f0052" geo_model.structural_frame.get_element_by_name("CARBO").color = "#ffbe00" # %% # Plotting the 2D model gpv.plot_2d(geo_model, direction='y') # %% # Plotting section traces gpv.plot_section_traces(geo_model) # %% # Setting faults gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=[ geo_model.structural_frame.get_group_by_name('fault_left'), geo_model.structural_frame.get_group_by_name('fault_right'), geo_model.structural_frame.get_group_by_name('fault_lr') ], change_color=True ) # %% # Setting topography from file gp.set_topography_from_file( grid=geo_model.grid, filepath=path_dem, crop_to_extent=[729550.0, 751500.0, 1913500.0, 1923650.0] ) # Plotting 3D model with topography gpv.plot_3d(geo_model, show_topography=True, ve=1, image=True) # %% # Getting the Carbon Series carbo = geo_model.structural_frame.get_group_by_name("Carbon_Series") # %% # Modifying interpolation options for better model fitting geo_model.interpolation_options.number_octree_levels_surface = 4 geo_model.interpolation_options.kernel_options.range = 0.8 gp.modify_surface_points( geo_model=geo_model, elements_names=["CARBO", "LIAS", "TRIAS"], nugget=0.005 ) # %% # Displaying the structural frame print(geo_model.structural_frame) geo_model.structural_frame # %% # Explanation of model characteristics and adjustments # This model has characteristics that make it difficult to get the right default values: # - It is large, and we want high resolution # - Some series have a large conditional number (i.e., the model input is not very stable) # To address these issues: # - Reduce the chunk size during evaluation to trade speed for memory # - Reduce the std of the error parameter in octree refinement, which evaluates fewer voxels but may leave some without refinement # Enable debugging options to help tune these parameters. # %% # Setting verbose and condition number options for debugging geo_model.interpolation_options.evaluation_options.verbose = True geo_model.interpolation_options.kernel_options.compute_condition_number = True # %% # Observations and parameter adjustments # The octree refinement is making the octree grid almost dense, and smaller chunks are needed to avoid running out of memory. # Adjusting parameters accordingly: geo_model.interpolation_options.evaluation_options.octree_error_threshold = 0.5 geo_model.interpolation_options.evaluation_options.evaluation_chunk_size = 50_000 # %% # Computing the model with the adjusted settings geo_model.interpolation_options.mesh_extraction = False _ = gp.compute_model( geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, use_gpu=True, dtype="float64" ) ) # %% # Plotting the 2D model with and without topography gpv.plot_2d(geo_model, show_topography=False, section_names=['topography'], show_lith=True) gpv.plot_2d(geo_model, cell_number=[4], direction=['y'], show_topography=True, show_data=True) gpv.plot_2d(geo_model, cell_number=[-4], direction=['y'], show_topography=True, show_data=True) # %% # Setting thumbnail number for Sphinx-Gallery # sphinx_gallery_thumbnail_number = -1 gpv.plot_3d(geo_model, show_lith=True, show_topography=True, kwargs_plot_structured_grid={'opacity': 0.8}) ================================================ FILE: examples/examples/real/Claudius.py ================================================ """ Geomodeling benchmark: the "Claudius"-Model ======== This model is part of a geomodeling benchmaring effort. More information (and, hopefully, publication) coming. """ # %% import sys, os # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import pandas as pn # %% # Loading data from repository: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # With pandas we can do it directly from the web and with the right args # we can directly tidy the data in gempy style: # # %% data_path = os.path.abspath('../../data/input_data/Claudius') reduce_data_by = 30 dfs = [] for letter in 'ABCD': dfs.append( pn.read_csv( filepath_or_buffer=f"{data_path}/{letter}Points.csv", sep=';', names=['X', 'Y', 'Z', 'surface', 'cutoff'], header=0 )[::reduce_data_by] ) # Add fault: dfs.append( pn.read_csv( filepath_or_buffer=f"{data_path}/Fault.csv", names=['X', 'Y', 'Z', 'surface'], header=0, sep=',' ) ) surface_points = pn.concat(dfs, sort=True) surface_points['surface'] = surface_points['surface'].astype('str') surface_points.reset_index(inplace=True, drop=False) surface_points.tail() # %% surface_points.dtypes # %% # How many points are per surface # # %% surface_points.groupby('surface').count() # %% # Now we do the same with the orientations: # # %% dfs = [] for surf in ['0', '330']: o = pn.read_csv( filepath_or_buffer=f"{data_path}/Dips.csv", sep=';', names=['X', 'Y', 'Z', 'G_x', 'G_y', 'G_z', '-'], header=1 ) # Orientation needs to belong to a surface. This is mainly to categorize to which series belong and to # use the same color o['surface'] = surf dfs.append(o) orientations = pn.concat(dfs, sort=True) orientations.reset_index(inplace=True, drop=False) orientations.tail() # %% orientations.dtypes # %% # Data initialization: # ~~~~~~~~~~~~~~~~~~~~ # # Suggested size of the axis-aligned modeling box: Origin: 548800 7816600 # -8400 Maximum: 552500 7822000 -11010 # # Suggested resolution: 100m x 100m x -90m (grid size 38 x 55 x 30) # # %% # Number of voxels: np.array([38, 55, 30]).prod() surface_points_table: gp.data.SurfacePointsTable = gp.data.SurfacePointsTable.from_arrays( x=surface_points['X'].values, y=surface_points['Y'].values, z=surface_points['Z'].values, names=surface_points['surface'].values ) orientations_table: gp.data.OrientationsTable = gp.data.OrientationsTable.from_arrays( x=orientations['X'].values, y=orientations['Y'].values, z=orientations['Z'].values, G_x=orientations['G_x'].values, G_y=orientations['G_y'].values, G_z=orientations['G_z'].values, names=orientations['surface'].values, name_id_map=surface_points_table.name_id_map # ! Make sure that ids and names are shared ) structural_frame: gp.data.StructuralFrame = gp.data.StructuralFrame.from_data_tables( surface_points=surface_points_table, orientations=orientations_table ) geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Claudius', extent=[548800, 552500, 7816600, 7822000, -11010, -8400], resolution=[38, 55, 30], refinement=5, structural_frame=structural_frame ) group_fault = gp.data.StructuralGroup( name='Fault1', elements=[geo_model.structural_frame.structural_elements.pop(-2)], structural_relation=gp.data.StackRelationType.FAULT, fault_relations=gp.data.FaultsRelationSpecialCase.OFFSET_ALL ) geo_model.structural_frame.get_group_by_name("default_formation").elements.pop(-1) # Insert the fault group into the structural frame: geo_model.structural_frame.insert_group(0, group_fault) gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=[geo_model.structural_frame.get_group_by_name('Fault1')] ) print(geo_model) # %% # We are going to increase the smoothness (nugget) of the data to increase # the conditional number of the matrix: # # %% gp.modify_surface_points(geo_model, nugget=0.01) # %% # Also the original poles are pointing downwards. We can change the # direction by calling the following: # # %% gp.modify_orientations(geo_model, polarity=-1) # %% # We need an orientation per series/fault. The faults does not have # orientation so the easiest is to create an orientation from the surface # points availablle: # element = geo_model.structural_frame.get_element_by_name("Claudius_fault") new_orientations: gp.data.OrientationsTable = gp.create_orientations_from_surface_points_coords( xyz_coords=element.surface_points.xyz ) gp.add_orientations( geo_model=geo_model, x=new_orientations.data['X'], y=new_orientations.data['Y'], z=new_orientations.data['Z'], pole_vector=new_orientations.grads, elements_names="Claudius_fault" ) # %% gpv.plot_2d(geo_model, direction='y') # %% # We will need to separate with surface belong to each series: # gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ 'Default series': ('0', '60', '250'), 'Fault': 'Claudius_fault', 'Uncomformity': '330', } ) # %% # So far we did not specify which series/faults are actula faults: # # %% gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=[geo_model.structural_frame.get_group_by_name('Fault')] ) geo_model.structural_frame # %% geo_model.interpolation_options.kernel_options.range = 1 gp.compute_model( geo_model, gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy, use_gpu=False, dtype='float64' ) ) # %% sect = ['mid'] gpv.plot_2d(geo_model, cell_number=sect, series_n=1, show_scalar=True, direction='x') # %% gpv.plot_2d(geo_model, cell_number=sect, show_data=True, direction='x') # %% gpv.plot_2d(geo_model, cell_number=[28], series_n=0, direction='y', show_scalar=True) gpv.plot_2d(geo_model, cell_number=[28], series_n=1, direction='y', show_scalar=True) gpv.plot_2d(geo_model, cell_number=[28], series_n=2, direction='y', show_scalar=True) # %% gpv.plot_2d(geo_model, cell_number=[28], show_data=True, direction='y') # %% # sphinx_gallery_thumbnail_number = 8 gpv.plot_3d(geo_model, show_lith=True, show_data=True, show_boundaries=True) ================================================ FILE: examples/examples/real/Greenstone.py ================================================ """ Greenstone. =========== """ import os # Importing gempy import gempy as gp import gempy_viewer as gpv print(gp.__version__) # %% data_path = os.path.abspath('../../data/input_data/tut_SandStone') # Importing the data from csv geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Greenstone', extent=[696000, 747000, 6863000, 6930000, -20000, 200], # * Here we define the extent of the model refinement=6, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/SandStone_Foliations.csv", path_to_surface_points=data_path + "/SandStone_Points.csv", hash_surface_points=None, hash_orientations=None ) ) # %% gpv.plot_2d(geo_model, direction=['z']) # %% gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "EarlyGranite_Series": 'EarlyGranite', "BIF_Series": ('SimpleMafic2', 'SimpleBIF'), "SimpleMafic_Series": 'SimpleMafic1', 'Basement': 'basement' } ) # %% gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, cell_number=[-1], direction=['z'], show_data=False) # %% gpv.plot_2d(geo_model, cell_number=['mid'], direction='x') # %% # sphinx_gallery_thumbnail_number = -1 gpv.plot_3d(geo_model) ================================================ FILE: examples/examples/real/Hecho.py ================================================ """ Geomodeling benchmark: the "Hecho"-Model ======== This model is part of a geomodeling benchmaring effort. More information (and, hopefully, publication) coming. """ import os import numpy as np # %% # Aux imports import pandas as pn from gempy.modules.serialization.save_load import _validate_serialization # Importing gempy import gempy as gp import gempy_viewer as gpv # %% # Loading surface points from repository: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # With pandas we can do it directly from the web and with the right args # we can directly tidy the data in gempy style: # # %% data_path = os.path.abspath('../../data/input_data/Hecho') dfs = [] # First stratigraphic data for letter in range(1, 10): dfs.append(pn.read_csv( filepath_or_buffer=data_path + '/H' + str(letter) + '.csv', sep=';', names=['X', 'Y', 'Z', 'surface', '_'], header=0 )) # Also faults for f in range(1, 4): fault_df = pn.read_csv( filepath_or_buffer=data_path + '/F' + str(f) + 'Line.csv', sep=';', names=['X', 'Y', 'Z'], header=0 ) fault_df['surface'] = 'f' + str(f) dfs.append(fault_df) # We put all the surfaces points together because is how gempy likes it: surface_points = pn.concat(dfs, sort=True) surface_points.reset_index(inplace=True, drop=False) surface_points.tail() # %% # Now we do the same with the orientations: # # %% orientations = pn.read_csv( filepath_or_buffer=data_path + '/Dips.csv', sep=';', names=['X', 'Y', 'Z', 'G_x', 'G_z', '_'], header=0 ) # Orientation needs to belong to a surface. This is mainly to categorize to which series belong and to # use the same color orientations['surface'] = 0 # We fill the laking direction with a dummy value: orientations['G_y'] = 0 # Replace -99999.00000 with NaN orientations.replace(-99999.00000, np.nan, inplace=True) # Drop irrelevant columns orientations.drop(columns=['_'], inplace=True) # Remove rows containing NaN orientations.dropna(inplace=True) # %% # Data initialization: # ~~~~~~~~~~~~~~~~~~~~ # # Suggested size of the axis-aligned modeling box: Origin: 0 -0.5 0 # Maximum: 16 0.5 4.5 # # Suggested resolution: 0.05m (grid size 321 x 21 x 91) # # %% surface_points_table: gp.data.SurfacePointsTable = gp.data.SurfacePointsTable.from_arrays( x=surface_points['X'].values, y=surface_points['Y'].values, z=surface_points['Z'].values, names=surface_points['surface'].values.astype(str) ) orientations_table: gp.data.OrientationsTable = gp.data.OrientationsTable.from_arrays( x=orientations['X'].values, y=orientations['Y'].values, z=orientations['Z'].values, G_x=orientations['G_x'].values, G_y=orientations['G_y'].values, G_z=orientations['G_z'].values, names=orientations['surface'].values.astype(str), name_id_map=surface_points_table.name_id_map # ! Make sure that ids and names are shared ) structural_frame: gp.data.StructuralFrame = gp.data.StructuralFrame.from_data_tables( surface_points=surface_points_table, orientations=orientations_table ) geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Moureze', extent=[0, 16, -0.5, 0.5, 0, 4.5], resolution=[321, 21, 91], structural_frame=structural_frame ) gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section': ((0., 0.), (16., 0.), (321, 91)) }, ) # %% # We need an orientation per series/fault. The faults does not have # orientation so the easiest is to create an orientation from the surface # points availablle: # # %% f_names = ['f1', 'f2', 'f3'] for fn in f_names: element = geo_model.structural_frame.get_element_by_name(fn) new_orientations = gp.create_orientations_from_surface_points_coords( xyz_coords=element.surface_points.xyz ) gp.add_orientations( geo_model=geo_model, x=new_orientations.data['X'], y=new_orientations.data['Y'], z=new_orientations.data['Z'], pole_vector=new_orientations.grads, elements_names=fn, name_id_map=element.surface_points.name_id_map ) # %% # Now we can see how the data looks so far: # # %% gpv.plot_2d(geo_model) # %% # By default all surfaces belong to one unique series. # # %% geo_model.structural_frame # %% # We will need to separate with surface belong to each series: # # %% gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={'Fault1': 'f1', 'Fault2': 'f2', 'Fault3': 'f3'} ) # %% # However if we want the faults to offset the “Default series”, they will # need to be more recent (higher on the pile). We can modify the order by: # # %% # %% # Lastly, so far we did not specify which series/faults are actula faults: # # %% gp.set_is_fault( frame=geo_model, fault_groups=['Fault1', 'Fault2', 'Fault3'] ) # %% # The default range is always the diagonal of the extent. Since in this # model data is very close we will need to reduce the range to 5-10% of # that value: # # %% geo_model.interpolation_options.kernel_options.range *= 0.2 # %% # Explanation of model characteristics and adjustments # This model has characteristics that make it difficult to get the right default values: # - It is large, and we want high resolution # - Some series have a large conditional number (i.e., the model input is not very stable) # To address these issues: # - Reduce the chunk size during evaluation to trade speed for memory # - Reduce the std of the error parameter in octree refinement, which evaluates fewer voxels but may leave some without refinement # Enable debugging options to help tune these parameters. # %% # Setting verbose and condition number options for debugging geo_model.interpolation_options.kernel_options.compute_condition_number = True # %% gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, dtype='float64' ), validate_serialization=True ) # %% gpv.plot_2d(geo_model, cell_number=[10], series_n=3, show_scalar=True) # %% gpv.plot_2d(geo_model, cell_number=[10], show_data=True) # %% gpv.plot_2d(geo_model, section_names=['section'], show_data=True) # %% # sphinx_gallery_thumbnail_number = 3 gpv.plot_3d(geo_model, kwargs_plot_structured_grid={'opacity': .2}) ================================================ FILE: examples/examples/real/Moureze.py ================================================ """ Geomodeling benchmark: the "Moureze"-Model ========================================== This model is part of a geomodeling benchmaring effort. More information (and, hopefully, publication) coming. """ import os # %% # These two lines are necessary only if gempy is not installed # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import pandas as pd from gempy_engine.config import AvailableBackends # %% # Loading surface points from repository: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # With pandas we can do it directly from the web and with the right args # we can directly tidy the data in gempy style: # # %% data_path = os.path.abspath('../../data/input_data/Moureze') Moureze_points = pd.read_csv( filepath_or_buffer=data_path + '/Moureze_Points.csv', sep=';', names=['X', 'Y', 'Z', 'G_x', 'G_y', 'G_z', '_'], header=0, ) Sections_EW = pd.read_csv( filepath_or_buffer=data_path + '/Sections_EW.csv', sep=';', names=['X', 'Y', 'Z', 'ID', '_'], header=1 ).dropna() Sections_NS = pd.read_csv( filepath_or_buffer=data_path + '/Sections_NS.csv', sep=';', names=['X', 'Y', 'Z', 'ID', '_'], header=1 ).dropna() # %% # Extracting the orientatins: # # %% mask_surfpoints = Moureze_points['G_x'] < -9999 surface_points = Moureze_points[mask_surfpoints][::10] orientations = Moureze_points[~mask_surfpoints][::10] # %% # Giving an arbitrary value name to the surface # # %% surface_points['surface'] = '0' orientations['surface'] = '0' # %% surface_points.tail() # %% orientations.tail() # %% # Data initialization: # ~~~~~~~~~~~~~~~~~~~~ # # Suggested size of the axis-aligned modeling box: # # Origin: -5 -5 -200 # # Maximum: 305 405 -50 # # Suggested resolution: 2m (grid size 156 x 206 x 76) # # %% # Only using one orientation because otherwhise it gets a mess # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # %% # Number voxels np.array([156, 206, 76]).prod() # %% resolution_requ = [156, 206, 76] resolution = [77, 103, 38] resolution_low = [45, 51, 38] surface_points_table: gp.data.SurfacePointsTable = gp.data.SurfacePointsTable.from_arrays( x=surface_points['X'].values, y=surface_points['Y'].values, z=surface_points['Z'].values, names=surface_points['surface'].values.astype(str) ) orientations_table: gp.data.OrientationsTable = gp.data.OrientationsTable.from_arrays( x=orientations['X'].values, y=orientations['Y'].values, z=orientations['Z'].values, G_x=orientations['G_x'].values, G_y=orientations['G_y'].values, G_z=orientations['G_z'].values, names=orientations['surface'].values.astype(str), name_id_map=surface_points_table.name_id_map # ! Make sure that ids and names are shared ) structural_frame: gp.data.StructuralFrame = gp.data.StructuralFrame.from_data_tables( surface_points=surface_points_table, orientations=orientations_table ) geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Moureze', extent=[-5, 305, -5, 405, -200, -50], # resolution=resolution_low, refinement=5, structural_frame=structural_frame ) # %% # Now we can see how the data looks so far: # # %% gpv.plot_2d(geo_model, direction='y') # %% # The default range is always the diagonal of the extent. Since in this # model data is very close we will need to reduce the range to 5-10% of # that value: # # %% geo_model.interpolation_options.kernel_options.range *= 0.2 geo_model.interpolation_options.evaluation_options.verbose = True geo_model.interpolation_options.evaluation_options.octree_error_threshold = 1.5 geo_model.interpolation_options.evaluation_options.number_octree_levels_surface = 5 # %% gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( use_gpu=False, dtype='float32', backend=AvailableBackends.PYTORCH ) ) # %% # Time # ~~~~ # # 300k voxels 3.5k points # ^^^^^^^^^^^^^^^^^^^^^^^ # # - Nvidia 2080: 500 ms ± 1.3 ms per loop (mean ± std. dev. of 7 runs, 1 # loop each), Memory 1 Gb # - CPU 14.2 s ± 82.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop # each), Memory: 1.3 Gb # # 2.4 M voxels, 3.5k points # ^^^^^^^^^^^^^^^^^^^^^^^^^ # # - CPU 2min 33s ± 216 ms per loop (mean ± std. dev. of 7 runs, 1 loop # each) Memory: 1.3 GB # - Nvidia 2080: 1.92 s ± 6.74 ms per loop (mean ± std. dev. of 7 runs, 1 # loop each) 1 Gb # # 2.4 M voxels, 3.5k points 3.5 k orientations # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ # # - Nvidia 2080: 2.53 s ± 1.31 ms per loop (mean ± std. dev. of 7 runs, 1 # loop each) # # %% gpv.plot_2d(geo_model, cell_number='mid', series_n=0, show_scalar=True) # %% gpv.plot_2d(geo_model, cell_number='mid', show_data=True, direction='y') # %% # sphinx_gallery_thumbnail_number = 4 gpv.plot_3d(geo_model) ================================================ FILE: examples/examples/real/Perth_basin.py ================================================ """ A geological model of the Perth basin, Australia ============ """ import os # Importing GemPy import gempy as gp import gempy_viewer as gpv # Importing auxiliary libraries import matplotlib matplotlib.rcParams['figure.figsize'] = (20.0, 10.0) os.environ["aesara_FLAGS"] = "mode=FAST_RUN,device=cuda" # %% cwd = os.getcwd() if 'examples' not in cwd: data_path = os.getcwd() + '/examples' else: data_path = cwd + '/../..' # %% geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Perth_Basin', extent=[337000, 400000, 6640000, 6710000, -18000, 1000], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/perth_basin/Paper_GU2F_sc_faults_topo_Foliations.csv", path_to_surface_points=data_path + "/data/input_data/perth_basin/Paper_GU2F_sc_faults_topo_Points.csv", ) ) # %% geo_model.structural_frame # %% del_surfaces = ['Cadda', 'Woodada_Kockatea', 'Cattamarra'] for s in del_surfaces: gp.remove_element_by_name(geo_model, s) geo_model.structural_frame # %% gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "fault_Abrolhos_Transfer": ["Abrolhos_Transfer"], "fault_Coomallo": ["Coomallo"], "fault_Eneabba_South": ["Eneabba_South"], "fault_Hypo_fault_W": ["Hypo_fault_W"], "fault_Hypo_fault_E": ["Hypo_fault_E"], "fault_Urella_North": ["Urella_North"], "fault_Darling": ["Darling"], "fault_Urella_South": ["Urella_South"], "Sedimentary_Series": ['Cretaceous', 'Yarragadee', 'Eneabba', 'Lesueur', 'Permian'] } ) # %% # Select which series are faults # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # gp.set_is_fault( geo_model, fault_groups=[ "fault_Abrolhos_Transfer", "fault_Coomallo", "fault_Eneabba_South", "fault_Hypo_fault_W", "fault_Hypo_fault_E", "fault_Urella_North", "fault_Darling", "fault_Urella_South" ], ) # %% # gp.set_fault_relation(geo_model, fr) print(geo_model.structural_frame.fault_relations) # %% # %matplotlib inline gpv.plot_2d(geo_model, direction=['z']) # %% gp.set_topography_from_random(geo_model.grid) # %% gpv.plot_3d(geo_model) # %% gp.compute_model( gempy_model=geo_model, engine_config= gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, dtype="float64", ) ) # %% gpv.plot_2d(geo_model, cell_number="mid") # %% gpv.plot_2d(geo_model, cell_number="mid", series_n=-1, show_scalar=True) # %% gpv.plot_2d(geo_model, cell_number=[12], direction=["y"], show_data=True, show_topography=True) # %% # sphinx_gallery_thumbnail_number = 6 gpv.plot_3d(geo_model, show_topography=True) ================================================ FILE: examples/examples/real/README.rst ================================================ Real case studies ----------------- These models are built with real data ================================================ FILE: examples/examples/real/__init__.py ================================================ ================================================ FILE: examples/examples/real/mik.py ================================================ """ Unknown Model: Importing Borehole Data and Building a 3D Geological Model with GemPy ==================================================================================== """ # %% # In this section, we will explore how to take borehole or drillhole data and convert it into a format compatible with GemPy, # creating a 3D geological model. Borehole data is commonly collected in the mining, oil, and gas industries and contains # information about subsurface geological formations, including lithologies, stratigraphy, and the geometry of layers or faults. # # For this, we will rely on several helper functions from the `subsurface` package to extract borehole data and translate it # into a 3D structure that GemPy can use for modeling. # We will cover: # # - Downloading the borehole data # - Processing the data using `subsurface` # - Visualizing borehole locations and lithology data in 3D # # Downloading Borehole Data # """"""""""""""""""""""""" # The borehole data is hosted online, and we can use the `pooch` library to download it directly. `pooch` is a library for # fetching datasets from the internet. We will download a CSV file that contains the borehole information, including collar # positions, survey data, and lithology logs. # # Let's start by downloading the dataset and inspecting its content. # %% # sphinx_gallery_thumbnail_number = -1 # List of relative paths used during the workshop import numpy as np import pandas as pd import pooch import pyvista from subsurface.core.geological_formats import Collars, Survey, BoreholeSet from subsurface.core.geological_formats.boreholes._combine_trajectories import MergeOptions from subsurface.core.reader_helpers.readers_data import GenericReaderFilesHelper from subsurface.core.structs.base_structures.base_structures_enum import SpecialCellCase from subsurface.modules.reader.wells.read_borehole_interface import read_collar, read_survey, read_lith import subsurface as ss from subsurface.modules.visualization import to_pyvista_points, pv_plot, to_pyvista_line, init_plotter # Importing GemPy import gempy as gp # %% md # We use `pooch` to download the dataset into a temp file: # %% url = "https://raw.githubusercontent.com/softwareunderground/subsurface/main/tests/data/borehole/kim_ready.csv" known_hash = "a91445cb960526398e25d8c1d2ab3b3a32f7d35feaf33e18887629b242256ab6" # Your code here: raw_borehole_data_csv = pooch.retrieve(url, known_hash) # %% md # Now we can use `subsurface` function to help us reading csv files into pandas dataframes that the package can understand. # Since the combination of styles data is provided can highly vary from project to project, `subsurface` provides some *helpers* # functions to parse different combination of .csv # %% # Read the collar data from the CSV collar_df: pd.DataFrame = read_collar( GenericReaderFilesHelper( file_or_buffer=raw_borehole_data_csv, index_col="name", usecols=['x', 'y', 'altitude', "name"], columns_map={ "name": "id", # ? Index name is not mapped "X": "x", "Y": "y", "altitude": "z" } ) ) # Convert to UnstructuredData unstruc: ss.UnstructuredData = ss.UnstructuredData.from_array( vertex=collar_df[["x", "y", "z"]].values, cells=SpecialCellCase.POINTS ) points = ss.PointSet(data=unstruc) collars: Collars = Collars( ids=collar_df.index.to_list(), collar_loc=points ) # %% # Visualizing the Borehole Collars # """""""""""""""""""""""""""""""" # Once we have the borehole collars data, we can visualize them in 3D using the `pyvista` package. This gives us a good # overview of where the boreholes are located in space. In this visualization, each borehole will be represented by a point, # and we will label the boreholes using their IDs. well_mesh = to_pyvista_points(collars.collar_loc) # Plot the collar points pv_plot([well_mesh], image_2d=False) # %% # Reading Borehole Survey Data # """""""""""""""""""""""""""" # Borehole surveys give us information about the trajectory of each borehole, including its depth (measured depth). # The survey data allows us to compute the full 3D path of each wellbore. We will use the `read_survey` function from # `subsurface` to read this data. # %% # Create the Survey object survey_df: pd.DataFrame = read_survey( GenericReaderFilesHelper( file_or_buffer=raw_borehole_data_csv, index_col="name", usecols=["name", "md"] ) ) survey: Survey = Survey.from_df(survey_df) survey # %% # Reading Lithology Data # """""""""""""""""""""" # Next, we will read the lithology data. Lithology logs describe the rock type or geological unit encountered at different # depths within each borehole. Using `read_lith`, we will extract the lithology data, which includes the top and base depths # of each geological formation within the borehole, as well as the formation name. # %% # Your code here: lith = read_lith( GenericReaderFilesHelper( file_or_buffer=raw_borehole_data_csv, usecols=['name', 'top', 'base', 'formation'], columns_map={ 'top': 'top', 'base': 'base', 'formation': 'component lith', } ) ) # Update survey data with lithology information survey.update_survey_with_lith(lith) lith # %% # Creating a Borehole Set and Visualizing in 3D # """"""""""""""""""""""""""""""""""""""""""""" # Now that we have both the collar data and the lithology logs, we can combine them into a `BoreholeSet` object. This object # combines the collar, survey, and lithology data and allows us to create a 3D visualization of the borehole trajectories and # their associated lithologies. # # We will use `pyvista` to plot the borehole trajectories as lines, and we will color them according to their lithologies. # Additionally, we will label the collars for easy identification. # Combine collar and survey into a BoreholeSet borehole_set = BoreholeSet( collars=collars, survey=survey, merge_option=MergeOptions.INTERSECT ) # %% # Visualize boreholes with pyvista import matplotlib.pyplot as plt well_mesh = to_pyvista_line( line_set=borehole_set.combined_trajectory, active_scalar="lith_ids", radius=40 ) p = init_plotter() # Set colormap for lithologies boring_cmap = plt.get_cmap(name="viridis", lut=14) p.add_mesh(well_mesh, cmap=boring_cmap) collar_mesh = to_pyvista_points(collars.collar_loc) p.add_mesh(collar_mesh, render_points_as_spheres=True) p.add_point_labels( points=collars.collar_loc.points, labels=collars.ids, point_size=10, shape_opacity=0.5, font_size=12, bold=True ) p.show() # %% md # Structural Elements from Borehole Set # """"""""""""""""""""""""""""""""""""" # # Now that we have successfully imported and visualized the borehole data, we can move on to creating the geological # formations (or structural elements) based on the borehole data. Each lithological unit will be associated with a unique # identifier and a color, allowing us to distinguish between different formations when we visualize the model. # # GemPy offers the function `gempy.structural_elements_from_borehole_set`, which extracts these structural elements from # the borehole data and associates each one with a name, ID, and color. # %% # Initialize the color generator for formations colors_generator = gp.data.ColorsGenerator() # Define formations and colors elements = gp.structural_elements_from_borehole_set( borehole_set=borehole_set, elements_dict={ "Basement": { "id": -1, "color": next(colors_generator) }, "etchgoin": { "id": 1, "color": next(colors_generator) }, "macoma": { "id": 2, "color": next(colors_generator) }, "chanac": { "id": 3, "color": next(colors_generator) }, "mclure": { "id": 4, "color": next(colors_generator) }, "santa_margarita": { "id": 5, "color": next(colors_generator) }, "fruitvale": { "id": 6, "color": next(colors_generator) }, "round_mountain": { "id": 7, "color": next(colors_generator) }, "olcese": { "id": 8, "color": next(colors_generator) }, "freeman_jewett": { "id": 9, "color": next(colors_generator) }, "vedder": { "id": 10, "color": next(colors_generator) }, "eocene": { "id": 11, "color": next(colors_generator) }, "cretaceous": { "id": 12, "color": next(colors_generator) }, } ) # %% md # Initializing the GemPy Model # """""""""""""""""""""""""""" # After defining the geological formations, we need to initialize the GemPy model. The first step in this process is to # create a `GeoModel` object, which serves as the core container for all data related to the geological model. # # We will also define a **regular grid** to interpolate the geological layers. GemPy uses a meshless interpolator to # create geological models in 3D space, but grids are convenient for visualization and computation. # # GemPy supports various grid types, such as regular grids for visualization, custom grids, topographic grids, and more. # For this example, we will use a regular grid with a medium resolution. # %% import gempy_viewer as gpv # Create a structural group with the elements group = gp.data.StructuralGroup( name="Stratigraphic Pile", elements=elements, structural_relation=gp.data.StackRelationType.ERODE ) # Define the structural frame structural_frame = gp.data.StructuralFrame( structural_groups=[group], color_gen=colors_generator ) # %% md # Defining Model Extent and Grid Resolution # """"""""""""""""""""""""""""""""""""""""" # We now determine the extent of our model based on the surface points provided. This ensures that the grid covers the # entire area where the geological data points are located. Additionally, we set a grid resolution of 50x50x50 for a # balance between performance and model detail. all_surface_points_coords: gp.data.SurfacePointsTable = structural_frame.surface_points_copy extent_from_data = all_surface_points_coords.xyz.min(axis=0), all_surface_points_coords.xyz.max(axis=0) # Initialize GeoModel geo_model = gp.data.GeoModel.from_args( name="Stratigraphic Pile", structural_frame=structural_frame, grid=gp.data.Grid( extent=[extent_from_data[0][0], extent_from_data[1][0], extent_from_data[0][1], extent_from_data[1][1], extent_from_data[0][2], extent_from_data[1][2]], resolution=(50, 50, 50) ), interpolation_options=gp.data.InterpolationOptions.from_args( range=5, c_o=10, mesh_extraction=True, number_octree_levels=3, ), ) # %% md # 3D Visualization of the Model # """"""""""""""""""""""""""""" # After initializing the GeoModel, we can proceed to visualize it in 3D using GemPy's `plot_3d` function. This function # allows us to see the full 3D geological model with all the defined formations. gempy_plot = gpv.plot_3d( model=geo_model, kwargs_pyvista_bounds={ 'show_xlabels': False, 'show_ylabels': False, }, show=True, image=False ) # %% md # Adding Boreholes and Collars to the Visualization # """"""""""""""""""""""""""""""""""""""""""""""""" # To enhance the 3D model, we can combine the geological formations with the borehole trajectories and collar points that we # visualized earlier. This will give us a complete picture of the subsurface, showing both the lithological units and the borehole paths. sp_mesh: pyvista.PolyData = gempy_plot.surface_points_mesh pyvista_plotter = init_plotter() pyvista_plotter.show_bounds(all_edges=True) # Set limits for the units to visualize units_limit = [0, 13] pyvista_plotter.add_mesh( well_mesh.threshold(units_limit), cmap="tab20c", clim=units_limit ) # Add collar points pyvista_plotter.add_mesh( collar_mesh, point_size=10, render_points_as_spheres=True ) # Label the collars with their names pyvista_plotter.add_point_labels( points=collars.collar_loc.points, labels=collars.ids, point_size=10, shape_opacity=0.5, font_size=12, bold=True ) # Add surface points from the geological model pyvista_plotter.add_actor(gempy_plot.surface_points_actor) # Show the final 3D plot pyvista_plotter.show() # %% md # Step-by-Step Model Building # """"""""""""""""""""""""""" # When building a geological model, it's often better to proceed step by step, adding one surface at a time, rather # than trying to interpolate all formations at once. This allows for better control over the model and helps avoid # potential issues from noisy or irregular data. # # %% md # Adding Surfaces and Formations # """""""""""""""""""""""""""""" # In GemPy, surfaces mark the bottom of each geological unit. For our model, we will add the first two formations # along with the basement, which always needs to be defined. After this, we can visualize the surfaces in 2D. # %% group = gp.data.StructuralGroup( name="Stratigraphic Pile Top", elements=elements[:3], structural_relation=gp.data.StackRelationType.ERODE ) geo_model.structural_frame.structural_groups[0] = group # Visualize the surfaces in 2D g2d = gpv.plot_2d(geo_model) # %% g2d.fig # %% md # Minimum Input Data for Interpolation # """""""""""""""""""""""""""""""""""" # To interpolate the geological layers, GemPy requires at least: # # - Two surface points per geological unit # - One orientation measurement per series # # Let's add an orientation for one of the units. gp.add_orientations( x=[300000], y=[3930000], z=[0], elements_names=elements[0].name, pole_vector=np.array([0, 0, 1]), geo_model=geo_model ) # %% md # Model Computation # """"""""""""""""" # Now that we have the necessary surface points and orientations, we can compute the final geological model. The # `compute_model` function will take all the input data and perform the interpolation to generate the 3D subsurface structure. geo_model.interpolation_options # %% gp.compute_model(geo_model) # %% md # Final 3D Visualization # """""""""""""""""""""" # Let's take a look at the final model, combining the borehole data and geological formations in 3D. g3d = gpv.plot_3d(geo_model, show_lith=False, show=False) g3d.p.add_mesh(well_mesh) g3d.p.show() # %% md # Conclusion # """""""""" # # In this tutorial, we have demonstrated how to take borehole data and create a 3D geological model in GemPy. We explored # how to extract structural elements from borehole data, set up a regular grid for interpolation, and visualize the # resulting model in both 2D and 3D. # # GemPy's flexibility allows you to iteratively build models and refine your inputs for more accurate results, and it # integrates seamlessly with borehole data for subsurface geological modeling. # # For further reading and resources, check out: # # # Extra Resources # """"""""""""""" # Page: # https://www.gempy.org/ # # Paper: # https://www.gempy.org/theory # # Gitub: # https://github.com/cgre-aachen/gempy # # Further training and collaborations # """"""""""""""""""""""""""""""""""" # https://www.terranigma-solutions.com/ # # # ================================================ FILE: examples/integrations/README.rst ================================================ Integrations ============ Here there are examples showing GemPy working together with other libraries of geoscientific stack. This needs to grow! ================================================ FILE: examples/integrations/__init__.py ================================================ ================================================ FILE: examples/integrations/gempy_export_MOOSE.py ================================================ """ Export a geological model from GemPy to use in MOOSE ==================================================== """ # %% import gempy as gp # %% # Creating a geological model # --------------------------- # # The procedure of generating a geological model is presented in detail in # `Chapter # 1-1 `__ # of the GemPy tutorials, so it will only be briefly presented here # # %% # Initiate a model geo_model = gp.create_model('tutorial_moose_exp') data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' # %% # Import data from CSV-files with setting the resolution and model extent gp.init_data(geo_model, [0, 2000., 0, 2000., 0, 2000.], [50, 50, 80], path_o=data_path + "/data/input_data/tut_chapter1/simple_fault_model_orientations.csv", path_i=data_path + "/data/input_data/tut_chapter1/simple_fault_model_points.csv", default_values=True) # %% # present the units and series geo_model.surfaces # %% # combine units in series and make two series, as the fault needs its own gp.map_stack_to_surfaces(geo_model, {"Fault_Series": 'Main_Fault', "Strat_Series": ('Sandstone_2', 'Siltstone', 'Shale', 'Sandstone_1', 'basement')}, remove_unused_series=True) # set the fault series to be fault object geo_model.set_is_fault(['Fault_Series'], change_color=False) # %% # check whether series were assigned correctly geo_model.surfaces # %% # Model generation # ---------------- # # After loading in the data, we set it up for interpolation and compute # the model. # # %% # set up interpolator gp.set_interpolator(geo_model, compile_aesara=True, aesara_optimizer='fast_compile', verbose=[]) # %% # compute the model gp.compute_model(geo_model, compute_mesh=False); # %% # have a look at the data and computed model gp.plot_3d(geo_model) # %% # Exporting the Model to MOOSE # ---------------------------- # # The voxel-model above already is the same as a model discretized in a # hexahedral grid, so my immediately be used as input in a simulation # tool, e.g. `MOOSE `__. For this, we need to # access to the unit IDs assigned to each voxel in GemPy. The array # containing these IDs is called ``lith_block``. # # %% ids = geo_model.solutions.lith_block print(ids) # %% # This array has the shape of ``(x,)`` and would be immediately useful, if # GemPy and the chosen simulation code would *populate* a grid in the same # way. Of course, however, that is not the case. This is why we have to # restructure the ``lith_block`` array, so it can be read correctly by # MOOSE. # # %% # model resolution nx, ny, nz = geo_model.grid.octree_grid.resolution # model extent xmin, xmax, ymin, ymax, zmin, zmax = geo_model.grid.octree_grid.extent # %% # These two parameters are important to, a) restructure ``lith_block``, # and b) write the input file for MOOSE correctly. For a), we need to # reshape ``lith_block`` again to its three dimensions and *re-flatten* it # in a *MOOSE-conform* way. # # %% # reshape to 3D array units = ids.reshape((nx, ny, nz)) # flatten MOOSE conform units = units.flatten('F') # %% # | The importance of ``nx, ny, nz`` is apparent from the cell above. But # what about ``xmin``, …, ``zmax``? # | A MOOSE input-file for mesh generation has the following syntax: # # .. code:: python # # [MeshGenerators] # [./gmg] # type = GeneratedMeshGenerator # dim = 3 # nx = 50 # ny = 50 # nz = 80 # xmin = 0.0 # xmax = 2000.0 # yim = 0.0 # ymax = 2000.0 # zmin = 0.0 # zmax = 2000.0 # block_id = '1 2 3 4 5 6' # block_name = 'Main_Fault Sandstone_2 Siltstone Shale Sandstone_1 basement' # [../] # # [./subdomains] # type = ElementSubdomainIDGenerator # input = gmg # subdomain_ids = ' ' # here you paste the transformed lith_block vector # [../] # [] # # [Mesh] # type = MeshGeneratorMesh # [] # # So these parameters are required inputs in the ``[MeshGenerators]`` # object in the MOOSE input file. ``GemPy`` has a method to directly # create such an input file, stored in ``gempy.utils.export.py``. # # The following cell shows how to call the method: # # %% # sphinx_gallery_thumbnail_path = '_static/GemPy_model_combined.png' import gempy_plugins.utils.export as export export.export_moose_input(geo_model, path='') # %% # This method automatically stores a file # ``geo_model_units_moose_input.i`` at the specified path. Either this # input file could be extended with parameters to directly run a # simulation, or it is used just for creating a mesh. In the latter case, # the next step would be, to run the compiled MOOSE executable witch the # optional flag ``--mesh-only``. # # E.g. with using the `PorousFlow # module `__: # # .. code:: bash # # $path_to_moose/moose/modules/porous_flow/porous_flow-opt -i pct_voxel_mesh.i --mesh-only # # How to compile MOOSE is described in their # `documentation `__. # # The now generated mesh with the name # ``geo_model_units_moose_input_in.e`` can be used as input for another # MOOSE input file, which contains the main simulation parameters. To call # the file with the grid, the following part has to be added in the MOOSE # simulation input file: # # .. code:: python # # [Mesh] # file = geo_model_units_moose_input_in.e # [] # # .. raw:: html # #
# # The final output of the simulation may also be such an ``.e``, which # can, for instance, be opened with # `paraview `__. A simulated temperature field # (purely conductive) of the created model would look like this: # # .. figure:: https://raw.githubusercontent.com/Japhiolite/a-Moose-and-you/master/imgs/GemPy_model_combined.png # :alt: gempy_temperature # # ================================================ FILE: examples/integrations/gempy_subsurface.py ================================================ """ GemPy - Subsurface Link ======================= """ import pooch import numpy as np import pandas as pd import subsurface as sb from subsurface.reader import read_netcdf data_url = "https://raw.githubusercontent.com/softwareunderground/subsurface/main" \ "/examples/tutorials/wells_unstructured.nc" data_hash = "206290db4e563e379361725349ebf4a02628f4700d361599aedff37fab9cf5b9" borehole_unstructured_data_file = pooch.retrieve(url=data_url, known_hash=data_hash) unstruct = read_netcdf.read_unstruct(borehole_unstructured_data_file) unstruct # %% element = sb.LineSet(unstruct) lines_mesh = sb.visualization.to_pyvista_line(element, radius=50) # Plot default LITH sb.visualization.pv_plot([lines_mesh]) # %% md # Findig the boreholes bases # -------------------------- # GemPy interpolates the bottom of a unit, therefore we need to be able to extract those points to be able tointerpolate them. # xarray, pandas and numpy are using the same type of memory representation what makes possible to use the same or at least similar methods to manipulate the data to our will. # Lets find the base points of each well: # %% # Creating references to the xarray.DataArray cells_attr = unstruct.data.cell_attrs cells = unstruct.data.cells vertex = unstruct.data.vertex # Find vertex points at the boundary of two units # Marking each vertex bool_prop_change = cells_attr.values[1:] != cells_attr.values[:-1] # Getting the index of the vertex args_prop_change = np.where(bool_prop_change)[0] # Getting the attr values at those points vals_prop_change = cells_attr[args_prop_change] vals_prop_change.to_pandas() # %% # Getting the vertex values at those points vertex_args_prop_change = cells[args_prop_change, 1] interface_points = vertex[vertex_args_prop_change] interface_points # %% # Creating a new UnstructuredData interf_us= sb.UnstructuredData.from_array(vertex=interface_points.values, cells="points", cells_attr=vals_prop_change.to_pandas()) interf_us # %% md # This new UnstructuredData object instead containing data that represent lines, contain point data at the bottom of each # unit. We can plot it very similar as before: element = sb.PointSet(interf_us) point_mesh = sb.visualization.to_pyvista_points(element) sb.visualization.pv_plot([lines_mesh, point_mesh]) # %% md # GemPy: Initialize model # ----------------------- # The first step to create a GemPy model is create a gempy. # %% import gempy as gp geo_model = gp.create_model("getting started") geo_model.set_regular_grid(extent=[275619, 323824, 3914125, 3961793, -3972.6, 313.922], resolution=[50,50,50]) gp.set_interpolator(geo_model, aesara_optimizer='fast_compile', verbose=[]) # %% md # Making a model step by step. # ---------------------------- # The temptation at this point is to bring all the points into gempy and just interpolate. However, often that strategy # results in ill posed problems due to noise or irregularities in the data. gempy has been design to being able to # iterate rapidly and therefore a much better workflow use to be creating the model step by step. # # To do that, lets define a function that we can pass the name of the formation and get the assotiated vertex. Grab from # the interf_us the XYZ coordinates of the first layer: # %% def get_interface_coord_from_surfaces(surface_names: list, verbose=False): df = pd.DataFrame(columns=["X", "Y", "Z", "surface"]) for e, surface_name in enumerate(surface_names): # The properties in subsurface start at 1 val_property = formations.index(surface_name) + 1 # Find the cells with the surface id args_from_first_surface = np.where(vals_prop_change == val_property)[0] if verbose: print(args_from_first_surface) # Find the vertex points_from_first_surface = interface_points[args_from_first_surface] if verbose: print(points_from_first_surface) # xarray.DataArray to pandas.DataFrame surface_pandas = points_from_first_surface.to_pandas() # Add formation column surface_pandas["surface"] = surface_name df = df.append(surface_pandas) return df.reset_index() # %% md # Surfaces # ++++++++ formations = ["topo", "etchegoin", "macoma", "chanac", "mclure", "santa_margarita", "fruitvale", "round_mountain", "olcese", "freeman_jewett", "vedder", "eocene", "cretaceous", "basement", "null"] # %% geo_model.add_features("Formations") one_formation_every = 3 geo_model.add_surfaces(formations[0:4*one_formation_every:one_formation_every]) geo_model.map_stack_to_surfaces({"Formations": ["etchegoin", "macoma", "chanac", "mclure"], "Default series": ["topo"]}, set_series=False) # %% gempy_surface_points = get_interface_coord_from_surfaces(formations[0:3*one_formation_every:one_formation_every]) # %% geo_model.set_surface_points(gempy_surface_points, update_surfaces=False) geo_model.update_to_interpolator() # %% md # Adding orientations # ------------------- # %% # find neighbours neighbours = gp.select_nearest_surfaces_points(geo_model, geo_model._surface_points.df, 2) # calculate all fault orientations gp.set_orientation_from_neighbours_all(geo_model, neighbours) # %% md # Using the flag to subsurface, the result of the interpolation will get stored in `subsurface` data objects. In the # future exporting to subsurface will be the default behaviour. # %% gp.compute_model(geo_model, to_subsurface=True) # %% p3d = gp.plot_3d(geo_model) # %% geo_model.solutions.s_regular_grid # %% geo_model.solutions.meshes ================================================ FILE: examples/integrations/geo_model_units_moose_input.i ================================================ [MeshGenerators] [./gmg] type = GeneratedMeshGenerator dim = 3 nx = 50 ny = 50 nz = 80 xmin = 0.0 xmax = 2000.0 yim = 0.0 ymax = 2000.0 zmin = 0.0 zmax = 2000.0 block_id = '1 2 3 4 5 6' block_name = 'Main_Fault Sandstone_2 Siltstone Shale Sandstone_1 basement' [../] [./subdomains] type = ElementSubdomainIDGenerator input = gmg subdomain_ids = '6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2' [../] [] [Mesh] type = MeshGeneratorMesh [] ================================================ FILE: examples/integrations/pflotran_perth_bassin.in ================================================ #Sample simulation of the flow in the Perth bassin modeled with gempy #Illustrate how to set up properly a PFLOTRAN simulation with the # meshes outputted by gempy #Note: formation properties are not realistic SIMULATION SIMULATION_TYPE SUBSURFACE PROCESS_MODELS SUBSURFACE_FLOW flow MODE RICHARDS / / END SUBSURFACE #=========================== discretization =================================== ################################################ #Import mesh from GemPy in ASCII format GRID TYPE UNSTRUCTURED ./perth_basin_mesh.ugi #path to the grid outputted by gempy END #for each stratigraphic formation, create a PFLOTRAN region #and assign the right gempy file REGION Permian FILE ./Permian.vs END REGION Lesueur FILE ./Lesueur.vs END REGION Eneabba FILE ./Eneabba.vs END REGION Cretaceous FILE ./Cretaceous.vs END REGION basement FILE ./basement.vs END REGION Yarragadee FILE ./Yarragadee.vs END #create a region corresponding to the topographic surface (z normal faces) REGION topo_surface FILE topography_surface.ss END ################################################ #Import mesh from GemPy in HDF5 format SKIP GRID TYPE UNSTRUCTURED ./perth_basin_mesh.h5 END REGION Permian FILE ./perth_basin_mesh.h5 END REGION Lesueur FILE ./perth_basin_mesh.h5 END REGION Eneabba FILE ./perth_basin_mesh.h5 END REGION Cretaceous FILE ./perth_basin_mesh.h5 END REGION basement FILE ./perth_basin_mesh.h5 END REGION Yarragadee FILE ./perth_basin_mesh.h5 END REGION Topography_surface FILE ./perth_basin_mesh.h5 END NOSKIP ################################################ #create region on the model boundary to further apply a boundary condition REGION xmin COORDINATES 337000. -1e20 -1e20 337000. 1e20 1e20 / END REGION xmax COORDINATES 400000. -1e20 -1e20 400000. 1e20 1e20 / END REGION all COORDINATES -1e20 -1e20 -1e20 1e20 1e20 1e20 / END #=========================== material properties ============================== #Define material property for each formation MATERIAL_PROPERTY Permian ID 1 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 1e-12 / END MATERIAL_PROPERTY Lesueur ID 2 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 5e-12 / END MATERIAL_PROPERTY Eneabba ID 3 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 5e-14 / END MATERIAL_PROPERTY Cretaceous ID 4 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 1e-13 / END MATERIAL_PROPERTY Yarragadee ID 5 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 1e-12 / END MATERIAL_PROPERTY basement ID 6 SATURATION_FUNCTION default POROSITY 0.3 PERMEABILITY PERM_ISO 5e-13 / END #=========================== characteristic curves ============================ CHARACTERISTIC_CURVES default DEFAULT END #=========================== output options =================================== OUTPUT FORMAT HDF5 VARIABLES PERMEABILITY_X / NO_PRINT_INITIAL END #=========================== times ============================================ TIME FINAL_TIME 50 y INITIAL_TIMESTEP_SIZE 50 y MAXIMUM_TIMESTEP_SIZE 1e3 y END #=========================== flow conditions ================================== FLOW_CONDITION initial TYPE PRESSURE hydrostatic / DATUM 0 0 20000. GRADIENT PRESSURE -0.01 0. 0. / PRESSURE 101325. END FLOW_CONDITION rain TYPE FLUX NEUMANN / FLUX 1.757d-9 ! [m/s] END #=========================== condition couplers =============================== # initial condition INITIAL_CONDITION FLOW_CONDITION initial REGION all END BOUNDARY_CONDITION west FLOW_CONDITION initial REGION xmin END BOUNDARY_CONDITION east FLOW_CONDITION initial REGION xmax END #BOUNDARY_CONDITION topo #apply rain on the topography # FLOW_CONDITION rain # REGION topo_surface #END #=========================== stratigraphy couplers ============================ #Couple the PFLOTRAN region and material STRATA REGION Permian MATERIAL Permian END STRATA REGION Lesueur MATERIAL Lesueur END STRATA REGION Eneabba MATERIAL Eneabba END STRATA REGION Cretaceous MATERIAL Cretaceous END STRATA REGION Yarragadee MATERIAL Yarragadee END STRATA REGION basement MATERIAL basement END END_SUBSURFACE ================================================ FILE: examples/tutorials/README.rst ================================================ GemPy Tutorials =============== Here you will find a selection of examples showing what can you do and how you can do it in GemPy ================================================ FILE: examples/tutorials/__init__.py ================================================ ================================================ FILE: examples/tutorials/a_getting_started/README.rst ================================================ Getting Started --------------- Here you can see how to run a simple GemPy example. ================================================ FILE: examples/tutorials/a_getting_started/__init__.py ================================================ ================================================ FILE: examples/tutorials/a_getting_started/get_started.py ================================================ """ Getting Started =============== """ # %% # Welcome to our introductory notebook on GemPy! Here, we will cover the essentials of GemPy, introducing you to the core concepts of # geomodeling and demonstrating how you can leverage these to create your own geological models. We will guide you through building a # model from scratch, based on a conceptual 2D cross-section with boreholes. This simple example will highlight key workflow steps # and structural features that GemPy can model. # # Installation # """""""""""" # # https://docs.gempy.org/installation.html # # Setting Up Our Environment: Importing Libraries # """"""""""""""""""""""""""""""""""""""""""""""" # # To work with Python packages in our notebook, we need to import them first. Let's start with that. In the following cell, we will # import GemPy and its GemPy viewer module, which we will be using extensively. Additionally, we will use NumPy for various functions, # as well as Matplotlib and some of its specific modules/functions for visualizing our data and results in 2D and 3D. # %% # Set environmental variable DEFAULT_BACKEND = PYTORCH import os os.environ["DEFAULT_BACKEND"] = "PYTORCH" # Importing GemPy and viewer import gempy as gp import gempy_viewer as gpv # Auxiliary libraries import numpy as np import matplotlib.pyplot as plt import matplotlib.image as mpimg # sphinx_gallery_thumbnail_number = 11 # %% md # Main Classes and Objects in GemPy # """"""""""""""""""""""""""""""""" # GemPy uses Python classes and objects to store and manipulate the data used for modeling. This object-oriented approach helps make # the code more modular, reusable, and easier to understand. Each class represents a different aspect of the geological modeling process, # and objects are instances of these classes that contain specific data and methods to operate on that data. # # Here are the main data classes: # # - :obj:`gempy.core.data.GeoModel` # - :obj:`gempy.core.data.StructuralFrame` # - :obj:`gempy.core.data.StructuralGroup` # - :obj:`gempy.core.data.StructuralElement` # - :obj:`gempy.core.data.SurfacePointsTable` # - :obj:`gempy.core.data.OrientationsTable` # - :obj:`gempy.core.data.Grid` # # Setting Up a Model: Initializing Objects and Input Data # """"""""""""""""""""""""""""""""""""""""""""""""""""""" # Before computing a geological model, we need to set up the relevant objects and input data on which the model will be based. Data can # be input in various ways. One way is to start from scratch and manually input surface points and orientations. Another way is to import # existing data from a file, such as a CSV. Here, we will start with the first method to showcase the essential elements and rules needed # to build a model in GemPy. # # Starting a Model from Scratch Based on a Cross-Section # """""""""""""""""""""""""""""""""""""""""""""""""""""" # This first example will be based on a conceptual cross-section that includes data from three boreholes in a line. Let's start by loading # the image of this cross-section and plotting it using Matplotlib. For this example, we assume that the size of the image corresponds to # the real extent of the data. We will see that extent in the plot and also return it by looking at the shape of the image file: # %% img = mpimg.imread('boreholes_concept.png') plt.imshow(img, origin='upper', alpha=.8) img.shape[:2] # %% md # OK, so we will base our model creation on this cross-section. Let's get started. To initialize our model, we create a `gempy.Model` object. # This object will contain all other data structures and necessary functionality. Here’s what we will do: # # 1. **Name the Model**: Assign a name to our model. # # 2. **Define Extent**: Specify the extent in x, y, and z. The extent should make sense depending on your use case and should enclose all # relevant data in a representative space. For this example, we align the extent with the cross-section we imported: # # - **X** is parallel to the section. # - **Y** is perpendicular. Since we have no data along y, a narrow extent makes sense. We choose an extent of 400, defining it as -200 to 200, # placing the cross-section at y=0 (in the middle). # - **Z** representing depth, takes a negative value since we are modeling the subsurface. # # 3. **Initialize Structural Framework**: Set up a default structural framework. # # 4. **Define either resolution or refinement**: In GemPy 3, you can use either regular grids or octrees. # - **Regular grids**: Define a resolution (and refinement=None). A medium resolution of 50x50x50, for example, results in 125,000 voxels. # Model voxels are prisms, not cubes, so resolution can differ from extent. Avoid exceeding 100 cells in each direction (1,000,000 voxels) # to prevent high computational costs. # - **Octrees**: Define a level of refinement (and resolution=None). Higher refinement levels increase computational costs. # # .. admonition:: Note on choice of modeling grids # # Which type of grid is used depends on the use case. Note that as of the current version of GemPy 3, # the rendering of surfaces uses dual-contouring, which is based on octrees. So even if you choose regular grids, octree-based computing will # be executed additionally in order to render the surfaces in 3D. # %% geo_model = gp.create_geomodel( project_name='Model1', extent=[0, 780, -200, 200, -582, 0], resolution=(50, 50, 50), # refinement=4, # We will use octrees structural_frame=gp.data.StructuralFrame.initialize_default_structure() ) # %% md # The `geo_model` Object # """""""""""""""""""""" # The :obj:`gempy.core.data.GeoModel` object we just initialized contains all the essential information for constructing our model, # such as the parameters defined above, # and the input data we will introduce further below. You can access different types of information by accessing the attributes. For instance, you # can retrieve the coordinates of our modeling grid as follows: # %% geo_model.grid # %% md # The `geo_model` object also contains the structural frame of our model, i.e., information about our main structural groups (also referred to as # series or stacks in our model), and their sequential and geological relationships with one another. Each group can contain several elements, # which can be surfaces representing the **bottom** interfaces of lithological units or fault planes. Each structural group also has a relation # type that defines the relation of the structural elements to others. The relation type is 'erode' by default but can also be 'onlap' or 'fault' # (more about this later). The structural frame also contains information about fault relationships, i.e., which elements are affected by which # faults. Let's look at our default structural frame: # %% geo_model.structural_frame # %% md # As you can see, by default, there is one element called 'surface 1' and no faults. However, by default, GemPy actually not only starts off # with this 'surface 1' but also a 'basement' unit which is always present. We can see this using the following function: # %% geo_model.structural_frame.structural_elements # %% md # We can also rename our structural elements and assign colors as needed. This will later become relevant for the legend in our plots of the # data and generated model. Let's assume we already know our uppermost surface, 'surface 1,' is a limestone unit. Let's also ensure it is # represented by the same color as displayed in the cross-section. For this, we input hex color codes. # %% geo_model.structural_frame.structural_elements[0].color = '#33ABFF' # Set 'surface 1' color to blue. geo_model.structural_frame.structural_elements[1].color = '#570987' # Set basement color to purple. geo_model.structural_frame.structural_elements[0].name = 'Limestone' # Renaming 'surface 1' to 'Limestone'. geo_model.structural_frame.structural_elements[0] # %% geo_model.structural_frame.structural_groups[0].name = 'Deposit. Series' # %% md # Manually Inputting Data # """"""""""""""""""""""" # Now that the `geo_model` object has been created and our first structural element renamed, we can start inputting data by reading it from # the cross-section. We start with location points that represent the boundaries between two lithological units. Let's look at the cross-section # again. This time we use a `gempy_viewer` function to create a plot that can include the cross-section image, as well as data in the object # `geo_model` - which is for now empty but we will start adding data next. Let's also add a grid to better read the location of points. # # The image cross-section indicates that there are three lithological boundaries, with one dot for each boundary shown in the first two boreholes. # The third borehole doesn't go as deep and only provides one dot, i.e., information about the first boundary. These dots represent the location # of a boundary surface in depth. Remember also that in GemPy, each surface represents the bottom of the unit it is assigned to. # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # Looking at the plot, we can read the location of the surface points and start adding them to our `geo_model` object. For now, let's focus on # only the uppermost layer, the limestone, with its bottom boundary represented by the blue dots. Using the function `add_surface_points`, # we can start adding the positional points to our `geo_model` object. Let's start with only one. From looking at the plot, the first blue # point seems to be located at approximately 250 in the x direction and around 95 meters in depth. Since we assume the section to be at y=0, # we can leave y as 0. We can input that as follows: # %% gp.add_surface_points( geo_model=geo_model, x=[225], y=[0], z=[-95], elements_names=['Limestone'] ) # %% md # Now let's plot the data with the section and see how we did: # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # Great! As you can see, the data point we entered sits right on top of the blue dot on the borehole. Now let's do the same for the other # borehole dots. Conveniently, we can use the same function to add several points at a time: # %% gp.add_surface_points( geo_model=geo_model, x=[460, 617], y=[0, 0], z=[-100, -10], elements_names=['Limestone', 'Limestone'] ) p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # Minimum Data for Model Computation # """""""""""""""""""""""""""""""""" # Ok, good! Now we have added the position of the bottom of this top layer for each borehole. But is this enough to compute our first layer? # Well, no. GemPy's approach is based on an implicit interpolation method that requires the following minimum data: # # - **Two surface points** for at least one surface in a structural group/series # - **One orientation** per structural group/series # # Thanks to GemPy's global interpolation approach, once you have one surface defined by two surface points and an orientation in a structural # group, you can add more surfaces (in the same group) with the minimum of one surface point, as it will now take its orientation information # from the other surface. # # So, we are missing an orientation. Let's go ahead and add one. It seems that we can assume a horizontal orientation between the first two # surface points (apparent, as we have no information about the y-direction). Let's add a corresponding orientation using the function # `add_orientations`: # %% gp.add_orientations( geo_model=geo_model, x=[350], y=[0], z=[-120], elements_names=['Limestone'], pole_vector=[np.array([0, 0, 1])] ) p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # Alright, now we actually have sufficient input data to compute the first version of our model. Let's go ahead and do that using `compute_model`: # %% geo_model.update_transform(gp.data.GlobalAnisotropy.NONE) # %% gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% md # Now, the model has been computed and is ready to be visualized. Let's see what it looks like in a 2D section: # %% # 2D visualization: gpv.plot_2d(geo_model, cell_number='mid') # %% md # We can also plot it together with our cross-section image. By using transparency on the cross-section image, we can overlay it over the 2D model # visualization. # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # You can see how the computed interface runs through the points we defined and is furthermore determined by the one orientation we placed. # Now, let's look at our 3D model: # %% # 3D visualization: gpv.plot_3d(geo_model, show_surfaces=True, image=False) # %% md # Very good, we have successfully computed the first iteration of our model including one lithological interface. You could now go ahead and # fine-tune the model by adding further points or orientations. For now, let's continue. # # About Scalar Fields # """"""""""""""""""" # GemPy's global interpolation approach uses scalar fields to compute models. Each structural group or series has its own scalar field, which # is defined by the data input to all of its elements and at least the minimum data mentioned above. Given that alone, a scalar field will # already be created "globally", i.e., for the full extent of the modeling space. The defined surface follows one value along that field as # an isosurface. A separate structural element will follow a different isosurface, and once you input additional points and orientations, # the scalar field will be altered accordingly. # # As mentioned, each structural group has its own scalar field. These can be combined to achieve more complex structures and relationships, # as we will see later. # # Let's take a look at the current scalar field for our current group by plotting it in 2D. Keep it in mind as we go ahead and add additional # elements and data. # %% p2d = gpv.plot_2d( model=geo_model, series_n=0, show_data=True, show_scalar=True, show_lith=False ) plt.show() # %% md # Adding a Second Lithological Unit # """"""""""""""""""""""""""""""""" # To add another unit to our model, we can define it as another structural element and then append it to our `geo_model` object. We do this # for the second unit in the following steps. See how we can already give it a name (let's assume this is a siltstone now), a color corresponding # to the dot colors in the cross-section, as well as define surface points and orientations. By appending it to `structural_groups[0]`, we are # adding it to our first (and currently only) structural group/series, i.e., it will be in the same stack as our limestone. # %% element2 = gp.data.StructuralElement( name='Siltstone', color='#FFA833', # color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([460]), y=np.array([0]), z=np.array([-280]), names='Siltstone' ), orientations=gp.data.OrientationsTable.initialize_empty() ) geo_model.structural_frame.structural_groups[0].append_element(element2) # %% md # Now, we can see that this siltstone unit is part of our structural frame. Note below, that it has by default been added below the limestone. # The order of structural elements within one group only affects the default color assigned. We recommend being consistent in the way you # choose to order them, and to order them in accordance with geological age. The order of structural groups actually represents geological # time relationships, with groups at the top being the youngest and lower ones being older. This, together with their `StackRelationType`, # decides how they affect each other via their individual scalar fields, as we will see later. # %% geo_model.structural_frame # %% gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% p2d = gpv.plot_2d(geo_model, cell='mid', show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% md # The 2D visualization of our updated model now shows that the next surface follows the respective point we added. Based on the implicit # modeling approach GemPy uses, given this sparse information we have put in, the siltstone bottom interface otherwise follows the course # and orientation of the limestone we defined earlier. This is due to the scalar field which was defined by the data input for the structural # group as a whole. In our 2D plot, we can see that this fits quite well with the first borehole, too. Still, let's add the remaining point, # and while we are at it, let's also add the third lithological unit marked in green. # %% # First, we add the two missing points to the Siltstone gp.add_surface_points( geo_model=geo_model, x=[225], y=[0], z=[-270], elements_names=['Siltstone'] ) element3 = gp.data.StructuralElement( name='Sandstone', color='#72A533', # next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([225, 460]), y=np.array([0, 0]), z=np.array([-436, -441]), names='Sandstone' ), orientations=gp.data.OrientationsTable.initialize_empty() ) geo_model.structural_frame.structural_groups[0].append_element(element3) # %% gp.compute_model(geo_model) # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% # 3D visualization: gpv.plot_3d(geo_model, show_surfaces=True, image=False) # %% md # Discontinuities: Combining Scalar Fields # """""""""""""""""""""""""""""""""""""""" # # Now that we have created all the lithological units and added all the surface points we got from the boreholes, we have created a very # simple geological model. However, geological scenarios are usually more complex. In GemPy, you can not only combine numerous surface # points and orientations to create elaborate structures but also create various structural groups that affect each other through combinations # of their scalar fields. In the following part, we will look at the right side of our cross-section, where we only have limited data, and # see how we can add a new structural group to create various types of discontinuities, and with that, possibly even meaningful alternative # model hypotheses. # # So, let's define another structural element that will serve to showcase the different types of discontinuities we can implement in GemPy: # %% element_discont = gp.data.StructuralElement( name='Discont_Surface', color='#990000', # next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([550, 650]), y=np.array([0, 0]), z=np.array([-30, -200]), names='Discont_Surface' ), orientations=gp.data.OrientationsTable.from_arrays( x=np.array([600]), y=np.array([0]), z=np.array([-100]), G_x=np.array([.3]), G_y=np.array([0]), G_z=np.array([.3]), names='Discont_Surface' ) ) # %% md # To place the discontinuity element in a separate structural group, we need to create one. This is what we do next. Note that we directly # add the element to the group as we create it, and we define the group's structural relation type as the default 'erode'. We can then insert # the group into the structural frame. # %% group_discont = gp.data.StructuralGroup( name='Discontinuity', elements=[element_discont], structural_relation=gp.data.StackRelationType.ERODE, ) # Insert the fault group into the structural frame: geo_model.structural_frame.insert_group(0, group_discont) # %% md # Let's take a quick look at the state of our structural frame. # %% geo_model.structural_frame # %% md # We can now see the two different structural groups: the default one containing the deposition series, and the group containing the # discontinuity. Let's go ahead and compute the model. Once the model has been computed, we can plot the scalar fields of both structural # groups independently. # %% gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% p2d = gpv.plot_2d( model=geo_model, series_n=1, # This setting will now plot the scalar field used for the fault show_data=True, show_scalar=True, show_lith=False ) plt.show() # %% p2d = gpv.plot_2d( model=geo_model, series_n=0, # This setting will plot the scalar field used for the discontinuity. show_data=True, show_scalar=True, show_lith=False ) plt.show() # %% md # We now have two very different scalar fields. Note how they are each defined by the input data assigned to their respective structural # elements. Multiple scalar fields in GemPy influence each other depending on (1) their order and (2) their `StackRelationType`. The latter # defines how a younger (upper) structural group will relate to the older (lower) structural groups and possibly affect their scalar field. # # The parameter `StackRelationType` can take the following values: # # - `BASEMENT`: Treats all lower groups as the basement. # - `ERODE`: Defines erosive contact/unconformity. # - `ONLAP`: Defines the younger group to be onlapping onto the older groups. # - `FAULT`: Defines the group to be a fault. # # We will now take a look at each of these relation types except for the basement type. # %% md # Erosive Contact # """"""""""""""" # For this, we don't have to change anything now, as we already set the `StackRelationType` to be `ERODE`. If we now plot it, we will see # how this younger structural group erodes all older elements and basically "cuts them out" in our model. # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% # 3D visualization: gpv.plot_3d(geo_model, show_surfaces=True, image=False, show_lith=False) # %% md # We can see how all units of the depositional series stop at the contact with the new discontinuity group. However, this doesn't look # quite right, and it in particular doesn't fit the surface point that was observed in the third borehole. So let's try another relation type. # # Onlapping # """"""""" # Let's change the relation type from `ERODE` to `ONLAP` to achieve a different type of discontinuity and then plot it. # %% geo_model.structural_frame.structural_groups[0].structural_relation = gp.data.StackRelationType.ONLAP # %% gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% # 3D visualization: gpv.plot_3d(geo_model, show_surfaces=True, image=False, show_lith=False) # %% md # Now the unit defined as part of the discontinuity group is onlapping onto the uppermost surface of the default group and ends there. # This also doesn't really make sense considering the data given, so let's try the last relation type. # # Faults # """""" # Let's change the relation type to `FAULT` and plot the results. For a fault, we also need to make use of the function `set_is_fault`. # %% geo_model.structural_frame.structural_groups[0].structural_relation = gp.data.StackRelationType.FAULT # %% gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=['Discontinuity'] ) # %% md # See that the fault relations field in the structural frame now indicates that the fault affects the default formation, i.e., offsets it. # Let's compute our model including the fault and see what that looks like. # %% gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% p2d = gpv.plot_2d(geo_model, show=False) p2d.axes[0].imshow(img, origin='upper', alpha=.8, extent=(0, 780, -582, 0)) # Enable grid with minor ticks p2d.axes[0].grid(which='both') # Enable both major and minor grids p2d.axes[0].minorticks_on() # Enable minor ticks # Customize the appearance of the grid if needed p2d.axes[0].grid(which='major', linestyle='--', linewidth='0.8', color='gray') p2d.axes[0].grid(which='minor', linestyle=':', linewidth='0.4', color='gray') plt.show() # %% # 3D visualization: gpv.plot_3d(geo_model, show_surfaces=True, image=False, show_lith=False) # %% md # In the 2D and 3D visualizations, we can now see how the insertion of a fault has created a viable alternative hypothesis that fits the # original data in the cross-section. Instead of a larger syncline structure and upward-bending of the whole depositional series, we can # now explain the shallower depth of the limestone in the third borehole by the effects of a reverse fault. In this model realization, # all lithological units are oriented near-horizontal but are offset by the fault. Note that in GemPy, the degree of offset is defined # by the location of the surface points on each side. If there is no data on one side of a fault, a very large offset will be assumed. # # Note also that by implementing a fault, the scalar field of the depositional series has been affected by the offset. # %% p2d = gpv.plot_2d( model=geo_model, series_n=1, # This will plot the scalar field used for the fault show_data=True, show_scalar=True, show_lith=False ) plt.show() # %% md # Topography and Geological Maps # """""""""""""""""""""""""""""" # In GemPy, we can add more grid types for different purposes, such as to add topography to our model. In this following section, # we will exemplify this by creating a random topography grid which allows us to intersect the surfaces as well as compute a high-resolution # geological map. GemPy has a built-in function to generate random topography. After executing it, a topography grid will be added to the # `geo_model`. It can be directly visualized in 2D and 3D. # %% # GemPy offers built-in tools to manage topographic data through gdal. # For demonstration, we'll create a random topography: gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.9, d_z=np.array([-150, 0]), topography_resolution=np.array([200, 200]) ) # %% gpv.plot_2d(geo_model, show_topography=True) # %% gpv.plot_3d(geo_model, show_surfaces=True, image=False, show_topography=True, show_lith=False) # %% md # If we now also re-compute our geological model, the generated topography grid will display the lithological units that intersect it, # i.e., which outcrop at the surface. We can therefore display a geological map based on our topography and the underlying 3D geological model. # To plot a top-down view of this map, you can pass the arguments `section_names=['topography']` and `show_topography=True` in the plotting # function as shown below. # %% gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, section_names=['topography'], show_topography=True) # %% gpv.plot_3d(geo_model, show_surfaces=True, image=False, show_topography=True) # %% md # We can now see how the topography displays the color of the lithologies outcropping at the surface, together with topographical contour lines. # # While this topography is random, GemPy also has the capability to include real topography files and arrays via the functions # `set_topography_from_file` and `set_topography_from_arrays`. # %% md # Extracting Model Solutions # """""""""""""""""""""""""" # Once you have built a model, you might not only want to visualize it, but also further analyze it or export it for further utilization. # For this, it is good to know that the solutions from modeling are stored in `geo_model.solutions` and can be returned from there. This # includes the following outputs in particular: # - `geo_model.solutions.dc_meshes`: A list of the surface meshes in the model with the location of vertices and edges for each. # - `geo_model.solutions.raw_arrays`: An object containing numerous arrays that define various parts of the model. Of particular importance # are the lithology block (`lith_block`), the fault block (`fault_block`), and the scalar field matrix (`scalar_field_matrix`). # # Mesh Solutions # """""""""""""" # Let's take a quick look at how we can return some key information from `geo_model.solutions`. Starting with meshes, we can see that the list # `dc_meshes` can be indexed to return specific meshes and their respective vertices or edges. Please note that the order will be the same as # in our `structural_frame`, i.e., the index `[0]` will return the first and top surface, in our case, the discontinuity surface. # %% vertices_0 = geo_model.solutions.dc_meshes[0].vertices edges_0 = geo_model.solutions.dc_meshes[0].edges print(type(vertices_0), vertices_0, edges_0) # %% md # We can see that the vertices for this mesh were returned as a Numpy array with values for *x*, *y*, and *z* positions for each vertex. # However, the values don't correspond with our model extent. That is because they have been transformed in GemPy. To return the values # corresponding to the original coordinate system, we can invert this transformation as follows: # %% geo_model.input_transform.apply_inverse(vertices_0) # %% md # Lithology Block # """"""""""""""" # The lithology block is an array that, for a given model realization/solution, returns the ID of the lithology for each voxel. Note below # that the `lith_block` first returns all values in the shape of one row. You might need to reshape it as shown below. For a regular grid, # you can reshape it using the resolution used in `geo_model`. # # %% lith_block = geo_model.solutions.raw_arrays.lith_block print(lith_block.shape, lith_block) # %% lith_block = lith_block.reshape(50, 50, 50) print(lith_block.shape, lith_block) # %% md # Grid Values # """"""""""" # Apart from these solutions, you might also need to return grid values. You can access the values for each grid in your `geo_model` # object via `geo_model.grid` as shown below. # %% geo_model.grid.regular_grid.values # %% geo_model.grid.topography.values ================================================ FILE: examples/tutorials/ch1_fundamentals/README.rst ================================================ Chapter 1: GemPy fundamentals ----------------------------- These examples show the basic functionality to create geometries. ================================================ FILE: examples/tutorials/ch1_fundamentals/__init__.py ================================================ ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_1_basics.py ================================================ """ 1.1 -Basics of geological modeling with GemPy ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ """ import numpy as np # %% # Importing Necessary Libraries # """""""""""""""""""""""""""""" import gempy as gp import gempy_viewer as gpv # %% # Importing and Defining Input Data # """"""""""""""""""""""""""""""""" # :obj:`gempy.core.data.GeoModel` # GemPy uses Python objects to store the data that builds the geological model. The main data classes include: # # - :obj:`gempy.core.data.GeoModel` # - :obj:`gempy.core.data.StructuralFrame` # - :obj:`gempy.core.data.StructuralGroup` # - :obj:`gempy.core.data.StructuralElement` # - :obj:`gempy.core.data.SurfacePointsTable` # - :obj:`gempy.core.data.OrientationsTable` # - :obj:`gempy.core.data.Grid` # # You can also create data from raw CSV files (comma-separated values). This could be useful if you are exporting model data # from a different program or creating it in a spreadsheet software like Microsoft Excel or LibreOffice Calc. # # In this tutorial, we'll use CSV files to generate input data. You can find these example files in the `gempy data` # repository on GitHub. The data consists of x, y, and z positional values for all surface points and orientation # measurements. Additional data includes poles, azimuth and polarity (or the gradient components). Surface points are # assigned a formation, which can be a lithological unit (like "Sandstone") or a structural feature (like "Main Fault"). # # It's important to note that, in GemPy, interface position points mark the **bottom** of a layer. If you need points # to represent the top of a formation (for example, when modeling an intrusion), you can define an inverted orientation measurement. # # While generating data from CSV files, we also need to define the model's real extent in x, y, and z. This extent # defines the area used for interpolation and many of the plotting functions. We also set a resolution to establish a # regular grid right away. This resolution will dictate the number of voxels used during modeling. We're using a medium # resolution of 50x50x50 here, which results in 125,000 voxels. The model extent should enclose all relevant data in a # representative space. As our model voxels are prisms rather than cubes, the resolution can differ from the extent. # However, it is recommended to avoid going beyond 100 cells in each direction (1,000,000 voxels) to prevent excessive # computational costs. # # # %% data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Tutorial_ch1_1_Basics', extent=[0, 2000, 0, 2000, 0, 750], refinement=6, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/getting_started/simple_fault_model_orientations.csv", path_to_surface_points=data_path + "/data/input_data/getting_started/simple_fault_model_points.csv", hash_surface_points="4cdd54cd510cf345a583610585f2206a2936a05faaae05595b61febfc0191563", hash_orientations="7ba1de060fc8df668d411d0207a326bc94a6cdca9f5fe2ed511fd4db6b3f3526" ) ) # %% # .. admonition:: New in GemPy 3! # # GemPy 3 has introduced the ``ImporterHelper`` class to streamline importing data from various sources. This class # simplifies the process of passing multiple arguments needed for importing data and will likely see further # extensions in the future. Currently, one of its uses is to handle `pooch` arguments for downloading data from the internet. # # # # Reviewing the Imported Data # """"""""""""""""""""""""""" # Now that the `geo_model` object is set up and the data imported from the CSV files, we review the data imported using the properties `surface_points_copy` and `orientations_copy`. # # Using `structural_frame.element_id_name_map`, we can see which ID corresponds to which structural element name in the data. # %% geo_model.surface_points_copy # %% geo_model.orientations_copy # %% # Declaring the Sequential Order of Structural Elements (Geological Formations) # """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" # In our model, we want the geological units to appear in the correct chronological order. This order could be determined by a sequence # of stratigraphic deposition, unconformities due to erosion, or other lithological genesis events like igneous intrusions. A similar # age-related order is declared for faults in our model. In GemPy, we use the function `gempy.map_stack_to_surfaces` to assign formations # or faults to different sequential series by declaring them in a Python dictionary. # # # The correct ordering of series is crucial for model construction! It's possible to assign several surfaces to one series. The order of # units within a series only affects the color code, so we recommend maintaining consistency. The order can be defined by simply changing # the order of the lists within the `gempy.core.data.StructuralFrame.structural_groups` and `gempy.core.data.StructuralGroups.elements` attributes. # # Faults are treated as independent groups and must be younger than the groups they affect. The relative order between different faults # defines their tectonic relationship (the first entry is the youngest). # # For a model with simple sequential stratigraphy, all layer formations can be assigned to one series without an issue. All unit # boundaries and their order would then be determined by interface points. However, to model more complex lithostratigraphical # relations and interactions, separate series definitions become important. For example, modeling an unconformity or an intrusion # that disrupts older stratigraphy would require declaring a younger series. # # By default, a simple sequence/group is created inferred from the data as shown above. # # Our example model comprises four main layers (plus an underlying basement that is automatically generated by GemPy) and one main # normal fault displacing those layers. Assuming a simple stratigraphy where each younger unit was deposited onto the underlying # older one, we can assign these layer formations to one structural group called "Strat_Series". For the fault, we declare a # respective "Fault_Series" as the first key entry in the mapping dictionary. We could give any other names to these series; # the formations, however, have to be referred to as named in the input data. # # In the following, we map the "Main Fault" to the "Fault Series" and the individual formations to the "Strat Series". # %% gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object= # TODO: This mapping I do not like it too much. We should be able to do it passing the data objects directly { "Fault_Series": 'Main_Fault', "Strat_Series": ('Sandstone_2', 'Siltstone', 'Shale', 'Sandstone_1') } ) # %% # Note how the structural frame still indicates the "Fault Series" group to have a relation type "erode". # We still need to tell GemPy that we want this group to be a fault. We do this using the function `set_is_fault`. # %% gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=['Fault_Series'] ) # %% # Now, all surfaces have been assigned to a series and are displayed in the correct order # (from young to old). # # Returning Information from Our Input Data # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Our model input data, named "geo_model", contains all essential information for constructing # our model. You can access different types of information by accessing the attributes. # For instance, you can retrieve the coordinates of our modeling grid as follows: # %% geo_model.grid # %% # # Visualizing input data # ~~~~~~~~~~~~~~~~~~~~~~ # # Since we have already imported our input data, we can go ahead and visualize it in 2D and 3D. This can be useful to check if all points # and orientations are defined the way we want them to be. Using the function `gempy_viewer.plot2d`, we obtain a 2D projection of our # data points onto a plane of the chosen *direction* (we can choose this attribute to be either x, y or z, with the default being y). # Below, we can freely switch the direction and check out the projection from different sides to get a good idea. # %% plot = gpv.plot_2d(geo_model, show_lith=False, show_boundaries=False) # %% # Beyond 2D, however, we can also visualize our input data in full 3D using `gempy_viewer.plot_3d`. Note that direct 3D visualization # in GemPy requires [the Visualization Toolkit](https://www.vtk.org/) (VTK) to be installed. # %% gpv.plot_3d(geo_model, image=False, plotter_type='basic') # %% # Model Generation # ~~~~~~~~~~~~~~~~ # Once we've correctly defined all our primary information in our `gempy.core.data.GeoModel` object (referred to as `geo_model` # in these tutorials), we can proceed with the model computation step. We can go ahead and save the solution of a specific computation # as we do below, but solutions are also stored within the `gempy.core.data.GeoModel` object for future reference. # # # .. admonition:: New in GemPy 3! Numpy and TensorFlow backend # # Unlike previous versions, GemPy 3 doesn't rely on `theano` or `asera`. # Instead, it utilizes `numpy` or `tensorflow`. Consequently, we no longer need # to recompile all theano functions (TensorFlow uses eager execution; we found no # notable speed difference after profiling the XLA compiler). # %% # The parameters used for the interpolation are stored in # `gempy.core.data.GeoModel.interpolation_options`. These parameters have sensible default values # that you can modify if necessary. However, we advise caution when changing these parameters # unless you fully understand their implications. # %% # Display the current interpolation options geo_model.interpolation_options # %% # With all our prerequisites in place, we can now compute our complete geological model # using :func:`gempy.compute_model`. This function returns a :obj:`gempy.core.data.Solutions` object. # # The following sections illustrate these different model solutions and how to utilize them. # %% # Compute the geological model and get the solutions sol = gp.compute_model(geo_model) sol # %% # Solutions are also stored within the :obj:`gempy.core.data.GeoModel` object, for future reference. # %% geo_model.solutions # %% # Direct model visualization in GemPy # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Model solutions can be easily visualized in 2D sections in GemPy # directly. Let's take a look at our lithology block: # # %% gpv.plot_2d(geo_model, show_data=True, cell_number="mid", direction='y') # %% # With ``cell_number=mid``, we have chosen a section going through # the middle of our block. We have moved in ``direction='y'``, # the plot thus depicts a plane parallel to the :math:`x`- and # :math:`y`-axes. Setting ``show_data=True``, we could plot original data # together with the results. Changing the values for ``cell_number`` and # ``direction``, we can move through our 3D block model and explore it by # looking at different 2D planes. # # We can do the same with the underlying scalar-field solution: # # %% gpv.plot_2d( model=geo_model, series_n=0, # This will plot the scalar field used for the fault show_data=False, show_scalar=True, show_lith=False ) # %% gpv.plot_2d( model=geo_model, series_n=1, # This will plot the scalar field used for the stratigraphy show_data=False, show_scalar=True, show_lith=False ) # %% # Dual Contouring and vtk visualization # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # In addition to 2D sections we can extract surfaces to visualize in 3D # renderers. Surfaces can be visualized as 3D triangle complexes in VTK # (see function plot\_surfaces\_3D below). To create these triangles, we # need to extract respective vertices and simplices from the potential # fields of lithologies and faults. This process is automatized in GemPy # using dual contouring in the :obj:`gempy_engine`. # # .. admonition:: New in GemPy 3! Dual Contouring # # GemPy 3 uses dual contouring to extract surfaces from the scalar fields. The method is completely coded in :obj:`gempy_engine` what also # enables further improvements in the midterm. This method is more efficient to use # together with octrees and suited better the new capabilities of gempy3. # %% gpv.plot_3d(geo_model, show_data=False, image=False, plotter_type='basic') # %% # Adding topography # ~~~~~~~~~~~~~~~~~~~~~~~~~~~ # In gempy we can add more grid types for different purposes. We will explore this concept in more detail in the # next tutorials (:doc:`ch1_3a_grids`). For now, we will just add a topography grid to our model. This grid allows us to intersect the # surfaces as well as compute a high resolution geological mal. # %% gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.2, d_z=np.array([350, 750]), topography_resolution=np.array([50, 50]), ) gp.compute_model(geo_model) gpv.plot_2d(geo_model, show_topography=True) gpv.plot_3d( model=geo_model, plotter_type='basic', show_topography=True, show_surfaces=True, show_lith=True, image=False ) # %% # Compute at a given location # ~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # This is done by modifying the grid to a custom grid and recomputing. # # %% x_i = np.array([[1000, 1000, 1000]]) lith_values_at_coords: np.ndarray = gp.compute_model_at( gempy_model=geo_model, at=x_i ) lith_values_at_coords # %% # Therefore if we just want the value at **x\_i**: # %% geo_model.solutions.raw_arrays.custom # %% # .. admonition:: Work in progress # # GemPy3 model serialization is currently being redisigned. Therefore, at the current version, there is not a build in # method to save the model. However, since now the data model should be completely robust, you should be able to save the # :obj:`gempy.core.data.GeoModel` and all its attributes using the standard python library [pickle](https://docs.python.org/3/library/pickle.html) # # sphinx_gallery_thumbnail_number = -2 ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_3a_grids.py ================================================ """ 1.3a: Grids. ============ """ import numpy as np import matplotlib.pyplot as plt import gempy as gp from gempy.core.data import Grid from gempy.core.data.grid_modules import RegularGrid np.random.seed(55500) # %% # The Grid Class # -------------- # # The Grid class interacts with the rest of the data classes and grid # subclasses. Its main purpose is to feed coordinates XYZ to the # interpolator. # # %% grid = Grid() # %% # The most important attribute of Grid is ``values`` (and ``values_r`` # which are the values rescaled) which are the 3D points in space that # kriging will be evaluated on. This array will be fed by "grid types" on # a **composition** relation with Grid: # # %% # .. image:: /_static/grids.jpg # # %% print(grid.values) # %% # At the moment of writing this tutorial, there are 5 grid types. The # number of grid types is scalable, and down the road we aim to connect # other grid packages (like `Discretize `_) as an extra Grid type. # # %% # This is an enum now print(grid.GridTypes) # %% # Each grid contains its own ``values`` attribute as well as other # methods to manipulate them depending on the type of grid. # # %% print(grid.values) # %% # We can see which grids are activated (i.e. they are going to be # interpolated and therefore will live on ``Grid().values``) by: # # %% print(grid.active_grids) # %% # By default, only the *regular grid* (``grid.regular_grid``) is active. However, since the regular # grid is still empty, ``Grid().values`` is empty too. # # %% print(grid.values) # %% # The last important attribute of Grid is the length: # # %% print(grid.length) # %% # Length gives back the interface indices between grids on the # ``Grid().values`` attribute. This can be used after interpolation to # know which interpolated values and coordinates correspond to each grid # type. You can use the method ``get_grid_args`` to return the indices by # name: # # %% print(grid.topography) # %% # By now all is a bit confusing because we have no values. Let's start # adding values to the different grids: # # %% # Regular Grid # ~~~~~~~~~~~~ # # The ``Grid`` class has a bunch of methods to set each grid type and # activate them. # # %% help(RegularGrid) # %% extent = np.array([0, 100, 0, 100, -100, 0]) resolution = np.array([20, 20, 20]) grid.dense_grid = RegularGrid(extent, resolution) print(grid.regular_grid) # RegularGrid will return either dense grid or octree grid depending on what is set # %% # Now the regular grid object composed in ``Grid`` has been filled: # # %% print(grid.regular_grid.values) # %% # And the regular grid has been set active (it was already active in any # case): # # %% print(grid.active_grids) # %% # Therefore, the grid values will be equal to the regular grid: # # %% print(grid.values) # %% # And the indices to extract the different arrays: # # %% print(grid.length) # %% # Custom Grid # ~~~~~~~~~~~ # # Completely free XYZ values. # # %% gp.set_custom_grid(grid, np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])) # %% # Again, ``set_any_grid`` will create a grid and activate it. So now the # composed object will contain values: # # %% print(grid.custom_grid.values) # %% # And since it is active, it will be added to the grid.values stack: # # %% print(grid.active_grids) # %% print(grid.values.shape) # %% # We can still recover those values with ``get_grid`` or by getting the # slicing args: # # %% print(grid.custom_grid) # %% print(grid.custom_grid.values) # %% # Topography # ~~~~~~~~~~ # # Now we can set the topography. :class:`Topography ` # contains methods to create manual topographies as well as using gdal for # dealing with raster data. By default, we will create a random topography: # # %% gp.set_topography_from_random(grid) # %% print(grid.active_grids) # %% # Now the grid values will contain both the regular grid and topography: # # %% print(grid.values, grid.length) # %% print(grid.topography.values) # %% # We can compare it to the topography.values: # # %% print(grid.topography.values) # %% # Now that we have more than one grid, we can activate and deactivate any # of them in real time: # # %% grid.active_grids ^= grid.GridTypes.TOPOGRAPHY grid.active_grids ^= grid.GridTypes.DENSE # %% # Since now all grids are deactivated, the values will be empty: # # %% print(grid.values) # %% grid.active_grids |= grid.GridTypes.TOPOGRAPHY # %% print(grid.values, grid.values.shape) # %% grid.active_grids |= grid.GridTypes.DENSE # %% print(grid.values) # %% # Centered Grid # ~~~~~~~~~~~~~ # # This grid contains an irregular grid where the majority of voxels are # centered around a value (or values). This type of grid is usually used # to compute certain types of forward physics where the influence # decreases with distance (e.g. gravity: Check `tutorial 2.2-Cell-selection `_ # ) # # %% gp.set_centered_grid( grid, centers=np.array([[300, 0, 0], [0, 0, 0]]), resolution=[10, 10, 20], radius=np.array([100, 100, 100]) ) # %% # Resolution and radius create a geometrically spaced kernel (blue dots) which # will be used to create a grid around each of the center points (red # dots): # # %% fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter( grid.centered_grid.values[:, 0], grid.centered_grid.values[:, 1], grid.centered_grid.values[:, 2], '.', alpha=.2 ) ax.scatter( np.array([[300, 0, 0], [0, 0, 0]])[:, 0], np.array([[300, 0, 0], [0, 0, 0]])[:, 1], np.array([[300, 0, 0], [0, 0, 0]])[:, 2], c='r', alpha=1, s=30 ) ax.set_xlim(-100, 400) ax.set_ylim(-100, 100) ax.set_zlim(-120, 0) ax.set_xlabel('X Label') ax.set_ylabel('Y Label') ax.set_zlabel('Z Label') plt.show() # %% # Section Grid # ~~~~~~~~~~~~ # # This grid type has its own tutorial. See :doc:`ch1_3b_cross_sections` # ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_3b_cross_sections.py ================================================ """ 1.3b: 2-D sections ================== """ # %% # Importing import gempy as gp import gempy_viewer as gpv import numpy as np np.random.seed(1234) # %% # Setup the model # --------------- # # %% # Importing the data from CSV-files and setting extent and resolution data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Tutorial_ch1_1_Basics', extent=[0, 2000, 0, 2000, 0, 750], resolution=[20, 20, 20], # * Here we define the resolution of the voxels refinement=4, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/getting_started/simple_fault_model_orientations.csv", path_to_surface_points=data_path + "/data/input_data/getting_started/simple_fault_model_points.csv", hash_surface_points="4cdd54cd510cf345a583610585f2206a2936a05faaae05595b61febfc0191563", hash_orientations="7ba1de060fc8df668d411d0207a326bc94a6cdca9f5fe2ed511fd4db6b3f3526" ) ) gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object= # TODO: This mapping I do not like it too much. We should be able to do it passing the data objects directly { "Fault_Series": 'Main_Fault', "Strat_Series": ('Sandstone_2', 'Siltstone', 'Shale', 'Sandstone_1') } ) gp.set_is_fault( frame=geo_model.structural_frame, fault_groups=['Fault_Series'] ) # %% # Add sections # ~~~~~~~~~~~~ # # %% # pass section dictionary with startpoint, endpoint and resolution for # every section: # # %% gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section1': ([0, 0], [2000, 2000], [100, 80]), 'section2': ([800, 0], [800, 2000], [150, 100]), 'section3': ([0, 200], [1500, 500], [200, 150]) } # p1,p2,resolution ) # %% # Add topography # ~~~~~~~~~~~~~~ # # %% gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.2, d_z=np.array([300, 750]), topography_resolution=np.array([50, 50]) ) # %% # Active grids: # # %% geo_model.grid.active_grids # %% gpv.plot_section_traces(geo_model) # %% # %% geo_model.interpolation_options.mesh_extraction = False sol = gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, section_names=['topography']) # %% gpv.plot_2d(geo_model, section_names=['section1']) # %% gpv.plot_2d( model=geo_model, section_names=['section1', 'section2', 'section3', 'topography'], show_topography=True ) # sphinx_gallery_thumbnail_number = 4 ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_3c_topography.py ================================================ """ 1.3c: Adding topography to geological models ============================================ """ # %% import gempy as gp import gempy_viewer as gpv import numpy as np import os # %% # 1. The common procedure to set up a model: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # %% data_path = os.path.abspath('../../') geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Single_layer_topo', extent=[450000, 460000, 70000, 80000, -1000, 500], resolution=[50, 50, 50], refinement=4, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/tut-ch1-7/onelayer_orient.csv", path_to_surface_points=data_path + "/data/input_data/tut-ch1-7/onelayer_interfaces.csv", ) ) # %% # %% gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section1': ([450000, 75000], [460000, 75500], [100, 100]), } ) # %% # 2. Adding topography # ~~~~~~~~~~~~~~~~~~~~ # # %% # 2 a. Load from raster file # ^^^^^^^^^^^^^^^^^^^^^^^^^^ # # # .. admonition:: Coming soon: Importing raster data # # This feature is not yet available in the current version of GemPy. Probably will be moved to `subsurface` since # coupling it with the geological model does not add much value. # # %% # This is to make it work in sphinx gallery # cwd = os.getcwd() # if not 'examples' in cwd: # path_dir = os.getcwd() + '/examples/tutorials/ch5_probabilistic_modeling' # else: # path_dir = cwd # # fp = path_dir + "/../../data/input_data/tut-ch1-7/bogota.tif" # # # %% # geo_model.set_topography(source='gdal', filepath=fp) # gp.plot_2d(geo_model, show_topography=True, section_names=['topography'], show_lith=False, # show_boundaries=False, # kwargs_topography={'cmap': 'gray', 'norm': None} # ) # plt.show() # %% # 2 b. create fun topography # ^^^^^^^^^^^^^^^^^^^^^^^^^^ # # %% # If there is no topography file, but you think that your model with # topography would look significantly cooler, you can use gempys # :meth:`set_topography ` function # to generate a random topography based on a fractal grid: # # %% # sphinx_gallery_thumbnail_number = 2 gp.set_topography_from_random(grid=geo_model.grid) gpv.plot_2d(geo_model, show_topography=True, section_names=['topography']) # %% # It has additional keywords to play around with: # # * fd: fractal dimension: # defaults to 2.0. The higher (try 2.9), the rougher the landscape will # be. # # * d\_z: height difference: # If none, last 20% of the model in z # direction. # # * extent: # extent in xy direction. If none, # ``geo_model.grid.extent`` is used. # # * resolution: # resolution of the topography array. # If none, ``geo_model.grid.resoution`` is used. Increasing the resolution leads to # much nicer geological maps! # # # %% gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.9, d_z=np.array([0, 250]), topography_resolution=np.array([200, 200]) ) # %% # Compute model # ~~~~~~~~~~~~~ # # %% gp.compute_model(geo_model) # %% # Visualize: # ^^^^^^^^^^ # # Now, the solutions object does also contain the computed geological map. # It can be visualized using the 2D and 3D plotting functionality: # # %% gpv.plot_2d(geo_model, show_topography=True, section_names=['topography'], show_boundaries=False, show_data=True) # %% gpv.plot_2d(geo_model, show_topography=True, section_names=['section1']) # %% g3d = gpv.plot_3d( model=geo_model, show_topography=True, show_lith=False, show_surfaces=False, show_results=False, ve=5 ) # %% # sphinx_gallery_thumbnail_number = 3 g3d = gpv.plot_3d( model=geo_model, show_topography=True, show_lith=True, show_surfaces=True, ve=5 ) ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_4_onlap_relations.py ================================================ """ 1.4: Unconformity relationships =============================== """ # sphinx_gallery_thumbnail_number = 2 # %% # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import os from gempy_engine.config import AvailableBackends np.random.seed(1515) # %% # We import a model from an existing folder, representing a subduction # zone with onlap relationships. data_path = os.path.abspath('../../') geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Onlap_relations', extent=[-200, 1000, -500, 500, -1000, 0], resolution=[50, 50, 50], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/tut-ch1-4/tut_ch1-4_orientations.csv", path_to_surface_points=data_path + "/data/input_data/tut-ch1-4/tut_ch1-4_points.csv", ) ) gp.set_topography_from_random(grid=geo_model.grid, d_z=np.array([-600, -100])) # %% gpv.plot_2d(geo_model) # %% # %% # Raw structural frame geo_model.structural_frame # %% geo_model.input_transform.apply_anisotropy(gp.data.GlobalAnisotropy.NONE) gp.add_structural_group( model=geo_model, group_index=0, structural_group_name="seafloor_series", elements=[geo_model.structural_frame.get_element_by_name("seafloor")], structural_relation=gp.data.StackRelationType.ERODE, ) gp.add_structural_group( model=geo_model, group_index=1, structural_group_name="right_series", elements=[ geo_model.structural_frame.get_element_by_name("rock1"), geo_model.structural_frame.get_element_by_name("rock2"), ], structural_relation=gp.data.StackRelationType.ONLAP ) gp.add_structural_group( model=geo_model, group_index=2, structural_group_name="onlap_series", elements=[geo_model.structural_frame.get_element_by_name("onlap_surface")], structural_relation=gp.data.StackRelationType.ERODE ) gp.add_structural_group( model=geo_model, group_index=3, structural_group_name="left_series", elements=[geo_model.structural_frame.get_element_by_name("rock3")], structural_relation=gp.data.StackRelationType.BASEMENT ) gp.remove_structural_group_by_name(model=geo_model, group_name="default_formation") # Final structural frame geo_model.structural_frame # %% s = gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=AvailableBackends.PYTORCH ) ) # %% gpv.plot_2d(geo_model, show_data=True) gpv.plot_3d( model=geo_model, show_surfaces=True, show_data=True, image=True, show_topography=True, kwargs_plot_structured_grid={'opacity': .2} ) # %% gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix[0], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix[1], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix[2], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix[3], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) # %% gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[0], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[1], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[2], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[3], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_5_fault_relations.py ================================================ """ 1.5: Fault relations ==================== """ # %% # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import os np.random.seed(1515) # %% # We import a model from an existing folder. # # %% data_path = os.path.abspath('../../') geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Faults_relations', extent=[0, 1000, 0, 1000, -1000, -400], resolution=[20, 20, 20], refinement=6, # * For this model is better not to use octrees because we want to see what is happening in the scalar fields importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/tut-ch1-5/tut_ch1-5_orientations.csv", path_to_surface_points=data_path + "/data/input_data/tut-ch1-5/tut_ch1-5_points.csv", ) ) print(geo_model) # %% # One fault model # --------------- # %% # Setting the structural frame fault1: gp.data.StructuralElement = geo_model.structural_frame.get_element_by_name("fault1") fault2: gp.data.StructuralElement = geo_model.structural_frame.get_element_by_name("fault2") # Remove the faults from the default group default_group: gp.data.StructuralGroup = geo_model.structural_frame.get_group_by_name("default_formation") default_group.elements.remove(fault1) default_group.elements.remove(fault2) # Add a new group for the fault gp.add_structural_group( model=geo_model, group_index=0, structural_group_name="fault_series_1", elements=[fault1], structural_relation=gp.data.StackRelationType.FAULT, fault_relations=gp.data.FaultsRelationSpecialCase.OFFSET_ALL ) print(geo_model.structural_frame) # %% geo_model.input_transform.apply_anisotropy(gp.data.GlobalAnisotropy.NONE) gp.compute_model(geo_model) # %% print(geo_model.solutions.raw_arrays.block_matrix[0]) # This contains the block values for the fault1 print(geo_model.solutions.raw_arrays.block_matrix[1]) # This contains the block values for the formations # %% gpv.plot_2d(geo_model, show_data=True) gpv.plot_3d(geo_model, show_data=True, kwargs_plot_structured_grid={'opacity': .2}) # %5 # Graben example # -------------- # %% gp.add_structural_group( model=geo_model, group_index=1, structural_group_name="fault_series_2", elements=[fault2], structural_relation=gp.data.StackRelationType.FAULT, fault_relations=gp.data.FaultsRelationSpecialCase.OFFSET_ALL ) print(geo_model.structural_frame) gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, show_data=True) gpv.plot_3d(geo_model, show_data=True, image=True, kwargs_plot_structured_grid={'opacity': .2}) # %% gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=0) gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=1) gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=2) # %% # Finite Faults # ------------- # %% # Faults relations # ---------------- # %% # Let's split the formations in two groups gp.add_structural_group( model=geo_model, group_index=2, structural_group_name="series_1", elements=[ geo_model.structural_frame.get_element_by_name("rock4"), geo_model.structural_frame.get_element_by_name("rock3") ], structural_relation=gp.data.StackRelationType.ERODE ) default_group.elements.remove(geo_model.structural_frame.get_element_by_name("rock4")) default_group.elements.remove(geo_model.structural_frame.get_element_by_name("rock3")) gp.set_fault_relation( frame=geo_model.structural_frame, rel_matrix=np.array([ [0, 1, 1, 1], [0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0] ] ) ) print(geo_model.structural_frame) # %% gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, show_data=True) gpv.plot_3d(geo_model, show_data=True, image=False, kwargs_plot_structured_grid={'opacity': .2}) ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_6_2d_visualization.py ================================================ """ 1.6: 2D Visualization. ====================== """ # %% import os # Importing auxiliary libraries import numpy as np # Importing GemPy import gempy as gp import gempy_viewer as gpv # sphinx_gallery_thumbnail_number = -1 np.random.seed(1515) # %% # Model interpolation # ~~~~~~~~~~~~~~~~~~~ # # %% # Data Preparation data_path = os.path.abspath('../../') geo_data: gp.data.GeoModel = gp.create_geomodel( project_name='viz_2d', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[10, 10, 10], refinement=4, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/jan_models/model5_orientations.csv", path_to_surface_points=data_path + "/data/input_data/jan_models/model5_surface_points.csv", ) ) gp.set_topography_from_random(grid=geo_data.grid, d_z=np.array([500, 1000])) # %% gpv.plot_2d(geo_data) # %% section_dict = {'section1': ([0, 0], [1000, 1000], [100, 80]), 'section2': ([800, 0], [800, 1000], [150, 100]), 'section3': ([50, 200], [100, 500], [200, 150])} # %% gp.set_section_grid(geo_data.grid, section_dict) gpv.plot_section_traces(geo_data) # %% geo_data.grid.sections # %% # %% gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_Series": 'fault', "Strat_Series": ('rock2', 'rock1') } ) gp.set_is_fault( frame=geo_data.structural_frame, fault_groups=['Fault_Series'] ) # %% geo_data.grid.active_grids # %% gp.compute_model(geo_data) # %% # new plotting api gpv.plot_2d(geo_data, section_names=['section1']) # %% # Plot API # -------- # # %% # If nothing is passed, a Plot2D object is created and therefore you are # in the same situation as above: # # %% p3 = gpv.plot_2d(geo_data) # %% # Alternatively you can pass section\_names, cell\_numbers + direction or # any combination of the above: # # %% gpv.plot_2d(geo_data, section_names=['topography']) # %% gpv.plot_2d(geo_data, section_names=['section1']) # %% gpv.plot_2d(geo_data, section_names=['section1', 'section2']) # %% gpv.plot_2d(geo_data, figsize=(15, 15), section_names=['section1', 'section2', 'topography'], cell_number='mid') ================================================ FILE: examples/tutorials/ch1_fundamentals/ch1_7_3d_visualization.py ================================================ """ 1.7: 3-D Visualization ====================== """ # %% # Importing GemPy import gempy as gp import gempy_viewer as gpv from gempy import generate_example_model from gempy.core.data.enumerators import ExampleModel import dotenv dotenv.load_dotenv() # sphinx_gallery_thumbnail_number = -1 # %% # Loading an example geomodel # ~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # %% geo_model = generate_example_model(ExampleModel.GRABEN) gp.compute_model(geo_model) # %% # Basic plotting API # ------------------ # # %% # Data plot # ~~~~~~~~~ # # %% gpv.plot_3d( model=geo_model, show_surfaces=False, show_data=True, show_lith=False, image=False ) # %% # Geomodel plot # ~~~~~~~~~~~~~ # # %% gpv.plot_3d(geo_model, image=False) # %% # LiquidEarth Integration # ~~~~~~~~~~~~~~~~~~~~~~~ # Beyond the classical plotting capabilities introduced in GemPy v3, users can now also upload models to LiquidEarth. # `LiquidEarth `_ is a collaborative platform designed for 3D visualization, # developed by many of the main `gempy` maintainers, with a strong focus on collaboration and sharing. # This makes it an excellent tool for sharing your models with others and viewing them across different platforms. # To upload a model to LiquidEarth, you must have an account and a user token. Once your model is uploaded, # you can easily share the link with anyone. # %% link = gpv.plot_to_liquid_earth( geo_model=geo_model, space_name="[PUBLIC] GemPy Tutorial 1.7: 3-D Visualization", file_name="gempy_model", user_token=None, # If None, it will try to grab it from the environment grab_link=True, make_new_space=False ) print(f"Generated Link: {link}") # %% # Now we can use `this link `_ to visualize the model in Liquid Earth. # %% # .. image:: /_static/gp_model_in_le.png ================================================ FILE: examples/tutorials/ch2-Geophysics/README.rst ================================================ Chapter 2: Forward Geophysics ----------------------------- These examples show how to use some of the in built functionality for forward geophysics. At this date GemPy is not meant to be a package for classical geophysical inversion rather to allow probabilistic inversion. This means that we need algorithms that can be fast, differentiable but still capable to estimate the right answer! ================================================ FILE: examples/tutorials/ch2-Geophysics/ch2_1_gravity.py ================================================ """ 2.1 Forward Gravity: Simple example ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ """ # %% # Importing gempy import gempy as gp import gempy_viewer as gpv # Aux imports import numpy as np import pandas as pd import os import matplotlib.pyplot as plt np.random.seed(1515) pd.set_option('display.precision', 2) # %% data_path = os.path.abspath('../../data/input_data/tut_SandStone') # Importing the data from csv geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Greenstone', extent=[696000, 747000, 6863000, 6930000, -20000, 200], # * Here we define the extent of the model refinement=5, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/SandStone_Foliations.csv", path_to_surface_points=data_path + "/SandStone_Points.csv", hash_surface_points=None, hash_orientations=None ) ) # %% gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "EarlyGranite_Series": 'EarlyGranite', "BIF_Series": ('SimpleMafic2', 'SimpleBIF'), "SimpleMafic_Series": 'SimpleMafic1', 'Basement': 'basement' } ) # %% gpv.plot_2d(geo_model) # %% # %% # Creating grid # ~~~~~~~~~~~~~ # # %% # First we need to define the location of the devices. For this example we # can make a map: # # %% grav_res = 20 X = np.linspace(7.050000e+05, 747000, grav_res) Y = np.linspace(6863000, 6925000, grav_res) Z = 300 xyz = np.meshgrid(X, Y, Z) xy_ravel = np.vstack(list(map(np.ravel, xyz))).T xy_ravel # %% # We can see the location of the devices relative to the model data: # # %% gpv.plot_2d(geo_model, direction='z', show=False) plt.scatter(xy_ravel[:, 0], xy_ravel[:, 1], s=1) plt.show() # %% # Now we need to create the grid centered on the devices (see: # https://github.com/cgre-aachen/gempy/blob/master/notebooks/tutorials/ch1-3-Grids.ipynb) # # %% # geo_model.set_centered_grid(xy_ravel, resolution=[10, 10, 15], radius=5000) gp.set_centered_grid( grid=geo_model.grid, centers=xy_ravel, resolution=np.array([10, 10, 15]), radius=np.array([5000, 5000, 5000]) ) # %% geo_model.grid.centered_grid.kernel_grid_centers # %% # Now we need to compute the component tz (see # https://github.com/cgre-achen/gempy/blob/master/notebooks/tutorials/ch2-2-Cell_selection.ipynb) # # %% gravity_gradient = gp.calculate_gravity_gradient(geo_model.grid.centered_grid) gravity_gradient # %% geo_model.geophysics_input = gp.data.GeophysicsInput( tz=gravity_gradient, densities=np.array([2.61, 2.92, 3.1, 2.92, 2.61]), ) # %% # Once we have created a gravity interpolator we can call it from compute # model as follows: # # %% geo_model.interpolation_options.mesh_extraction = False sol = gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy, dtype='float32' ) ) grav = sol.gravity # %% gpv.plot_2d(geo_model, cell_number=[-1], direction=['z'], show_data=False) # %% gpv.plot_2d(geo_model, cell_number=['mid'], direction='x') # %% gpv.plot_2d(geo_model, direction=['z'], height=7, show_results=False, show_data=True, show=False) plt.scatter(xy_ravel[:, 0], xy_ravel[:, 1], s=1) plt.imshow(sol.gravity.reshape(grav_res, grav_res), extent=(xy_ravel[:, 0].min() + (xy_ravel[0, 0] - xy_ravel[1, 0]) / 2, xy_ravel[:, 0].max() - (xy_ravel[0, 0] - xy_ravel[1, 0]) / 2, xy_ravel[:, 1].min() + (xy_ravel[0, 1] - xy_ravel[30, 1]) / 2, xy_ravel[:, 1].max() - (xy_ravel[0, 1] - xy_ravel[30, 1]) / 2), cmap='viridis_r', origin='lower') plt.show() # %% # Plotting lithologies # ^^^^^^^^^^^^^^^^^^^^ # # If we want to compute the lithologies we will need to create a normal # interpolator object as seen in the Chapter 1 of the tutorials # # %% # Now we can plot all together (change the alpha parameter to see the # gravity overlying): # # %% gpv.plot_2d(geo_model, cell_number=[-1], direction=['z'], show=False, kwargs_regular_grid={'alpha': .5}) plt.scatter(xy_ravel[:, 0], xy_ravel[:, 1], s=1) plt.imshow(grav.reshape(grav_res, grav_res), extent=(xy_ravel[:, 0].min() + (xy_ravel[0, 0] - xy_ravel[1, 0]) / 2, xy_ravel[:, 0].max() - (xy_ravel[0, 0] - xy_ravel[1, 0]) / 2, xy_ravel[:, 1].min() + (xy_ravel[0, 1] - xy_ravel[30, 1]) / 2, xy_ravel[:, 1].max() - (xy_ravel[0, 1] - xy_ravel[30, 1]) / 2), cmap='viridis_r', origin='lower', alpha=.8) cbar = plt.colorbar() cbar.set_label(r'$\mu$gal') plt.show() # sphinx_gallery_thumbnail_number = -2 ================================================ FILE: examples/tutorials/ch2-Geophysics/ch2_2_cell_selection.py ================================================ """ 2.2: Centered Grid. ^^^^^^^^^^^^^^^^^^^ """ # %% # # Concept of a measurement-centered grid # """""""""""""""""""""""""""""""""""""" # # Geophysics Preprocessing builds on the centered grid # (https://github.com/cgre-aachen/gempy/blob/master/notebooks/tutorials/ch1-3-Grids.ipynb) # to precompute the constant part of forward physical computations as for # example gravity: # .. math:: # F_z = G_{\\rho} ||| x \\ln(y+r) + y \\ln (x+r) - z \\arctan (\\frac{x y}{z r}) |^{x_2}_{x_1}|^{y_2}_{y_1}|^{ # z_2}_{z_1} # where we can compress the grid dependent terms as # .. math:: # t_z = ||| x \ln (y+r) + y \ln (x+r)-z \\arctan ( \\frac{x y}{z r} ) |^{x_2}_{x_1}|^{y_2}_{y_1}|^{z_2}_{z_1} # By doing this decomposition an keeping the grid constant we can compute # the forward gravity by simply operate: # .. math:: # F_z = G_{\\rho} \cdot t_z # %% # Importing gempy import gempy as gp # Aux imports import numpy as np import pandas as pd import matplotlib.pyplot as plt np.random.seed(1515) pd.set_option('display.precision', 2) # %% from gempy_engine.core.data.centered_grid import CenteredGrid centered_grid = CenteredGrid( centers=np.array([0,0,0]), resolution=[10, 10, 20], radius=100 ) # %% # ``create_irregular_grid_kernel`` will create a constant kernel around # the point 0,0,0. This kernel will be what we use for each device. # # %% centered_grid.kernel_grid_centers # %% # :math:`t_z` is only dependent on distance and therefore we can use the # kerenel created on the previous cell # # %% gravity_gradient = gp.calculate_gravity_gradient(centered_grid) gravity_gradient # %% # To compute tz we also need the edges of each voxel. The distance to the # edges are stored on ``kernel_dxyz_left`` and ``kernel_dxyz_right``. We # can plot all the data as follows: # # %% a, b, c = centered_grid.kernel_grid_centers, centered_grid.left_voxel_edges, centered_grid.right_voxel_edges tz = gravity_gradient # %% fig = plt.figure(figsize=(13, 7)) plt.quiver(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), np.zeros(231), tz.reshape(11, 11, 21)[5, :, :].ravel(), label='$t_z$', alpha=.3 ) plt.plot(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), 'o', alpha=.3, label='Centers') plt.plot(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel() - b[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), '.', alpha=.3, label='Lefts') plt.plot(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel() - b[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), '.', alpha=.6, label='Ups') plt.plot(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel() + c[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), '.', alpha=.3, label='Rights') plt.plot(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel() + c[:, 2].reshape(11, 11, 21)[5, :, :].ravel(), '.', alpha=.3, label='Downs') plt.xlim(-200, 200) plt.ylim(-200, 0) plt.legend() plt.show() # %% # Just the quiver: # # %% fig = plt.figure(figsize=(13, 7)) plt.quiver(a[:, 0].reshape(11, 11, 21)[5, :, :].ravel(), a[:, 2].reshape(11, 11, 21)[:, 5, :].ravel(), np.zeros(231), tz.reshape(11, 11, 21)[5, :, :].ravel() ) plt.show() # %% # Remember this is happening always in 3D: # # %% fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(a[:, 0], a[:, 1], a[:, 2], c=tz) ax.set_xlabel('X Label') ax.set_ylabel('Y Label') ax.set_zlabel('Z Label') plt.show() ================================================ FILE: examples/tutorials/ch3-Interpolations/README.rst ================================================ Chapter 3: Domain Kriging ------------------------- GemPy uses Kriging to interpolate the scalar field to construct the structural model. However to populate petrophysical data within each domain we also provide functionality to interpolate data in 3D. ================================================ FILE: examples/tutorials/ch3-Interpolations/ch3_1_kriging_interpolation_and_simulation.py ================================================ """ 3.1: Simple example of kriging in gempy ======================================= """ # %% # In this notebook it will be shown how to create a kriged or simulated # field in a simple geological model in gempy. We start by creating a # simple model with three horizontally layered units, as shown in the # gempy examples. # # %% # Importing GemPy import gempy as gp import gempy_viewer as gpv # Importing auxiliary libraries import numpy as np import matplotlib.pyplot as plt import os # new for this from gempy_plugins.kriging import kriging np.random.seed(5555) # %% # Creating the model by importing the input data and displaying it: # # %% data_path = os.path.abspath('../../') geo_data: gp.data.GeoModel = gp.create_geomodel( project_name='kriging', extent=[0, 1000, 0, 50, 0, 1000], resolution=[50, 10, 50], refinement=1, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/jan_models/model1_orientations.csv", path_to_surface_points=data_path + "/data/input_data/jan_models/model1_surface_points.csv", ) ) # %% # Setting and ordering the units and series: # # %% gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Strat_Series": ('rock2', 'rock1'), "Basement_Series": ('basement') } ) # %% # Calculating the model: # # %% # no mesh computed as basically 2D model sol = gp.compute_model(geo_data) # %% # So here is the very simple, basically 2D model that we created: # # %% gpv.plot_2d(geo_data, cell_number=0, show_data=False) # %% # 1) Creating domain # ------------------ # # Let us assume we have a couple of measurements in a domain of interest # within our model. In our case the unit of interest is the central rock # layer (rock1). In the kriging module we can define the domain by # handing over a number of surfaces by id - in this case the id of rock1 # is 2. In addition we define four input data points in cond_data, each # defined by x,y,z coordinate and a measurement value. # # %% # conditioning data (data measured at locations) cond_data = np.array([[100, .5, 500, 2], [900, .5, 500, 1], [500, .5, 550, 1], [300, .5, 400, 5]]) # %% # creating a domain object from the gempy solution, a defined domain conditioning data domain = kriging.Domain( model_solutions=sol, transform=geo_data.input_transform, domain=[2], data=cond_data ) # %% # 2) Creating a variogram model # ----------------------------- # # %% variogram_model = kriging.VariogramModel( theoretical_model='exponential', range_=200, sill=np.var(cond_data[:, 3]) ) # %% variogram_model.plot(type_='both', show_parameters=True) plt.show() # %% # 3) Kriging interpolation # ------------------------ # # %% # In the following we define an object called kriging_model and set all # input parameters. Finally we generate the kriged field. # # %% kriging_solution = kriging.create_kriged_field(domain, variogram_model) # %% # The result of our calculation is saved in the following dataframe, # containing an estimated value and the kriging variance for each point in # the grid: # # %% kriging_solution.results_df.head() # %% # It is also possible to plot the results in cross section similar to the # way gempy models are plotted. # # %% from gempy_viewer.modules.plot_2d.visualization_2d import Plot2D plot_2d: Plot2D = gpv.plot_2d( model=geo_data, cell_number=0, show_data=False, show=False, kwargs_lithology={ 'alpha': 0.5 } ) kriging.plot_kriging_results( geo_data=geo_data, kriging_solution=kriging_solution, plot_2d=plot_2d, title='Kriging interpolation: Estimated values', result_column=['estimated value'] ) # %% plot_2d_both = gpv.plot_2d( model=geo_data, cell_number=[0, 0], show_data=False, show=False, kwargs_lithology={ 'alpha': 0.5 } ) kriging.plot_kriging_results( geo_data=geo_data, kriging_solution=kriging_solution, plot_2d=plot_2d_both, title='Kriging interpolation: Estimated values', result_column=['estimated value', 'estimation variance'] ) # %% # 4) Simulated field # ------------------ # # Based on the same objects (domain and varigoram model) also a simulated # field (stationary Gaussian Field) can be generated. A Sequential # Gaussian Simulation approach is applied in this module: # # %% solution_sim = kriging.create_gaussian_field(domain, variogram_model) # %% solution_sim.results_df.head() # %% solution_sim.results_df['estimated value'] # %% plot_2d: Plot2D = gpv.plot_2d( model=geo_data, cell_number=0, show_data=False, show=False, kwargs_lithology={ 'alpha': 0.5 } ) kriging.plot_kriging_results( geo_data=geo_data, kriging_solution=solution_sim, plot_2d=plot_2d, title='Kriging interpolation: Estimated values', result_column=['estimated value'] ) # %% plot_2d_both = gpv.plot_2d( model=geo_data, cell_number=[0, 0], show_data=False, show=False, kwargs_lithology={ 'alpha': 0.5 } ) kriging.plot_kriging_results( geo_data=geo_data, kriging_solution=solution_sim, plot_2d=plot_2d_both, title='Kriging interpolation: Estimated values', result_column=['estimated value', 'estimation variance'] ) # sphinx_gallery_thumbnail_number = 3 ================================================ FILE: examples/tutorials/ch4-Topology/README.rst ================================================ Chapter 4: Topological analysis ------------------------------- One of the reasons to perform structural modeling is to analyse the topology of the system, i.e. the connectivity between layers. GemPy provide built-in functionality to calculate and analyse this aspect of each geological modeling ================================================ FILE: examples/tutorials/ch4-Topology/__init__.py ================================================ ================================================ FILE: examples/tutorials/ch4-Topology/ch4-1-Topology.py ================================================ """ Chapter 4: Analyzing Geomodel Topology ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ """ import gempy as gp import gempy_viewer as gpv from gempy_viewer.modules.plot_2d.visualization_2d import Plot2D from gempy_plugins.topology_analysis import topology as tp import os import warnings warnings.filterwarnings("ignore") # %% # Load example Model # ^^^^^^^^^^^^^^^^^^ # # First let's set up a very simple example model. For that we initialize # the geo_data object with the correct model extent and the resolution we # like. Then we load our data points from csv files and set the series and # order the formations (stratigraphic pile). # # %% data_path = os.path.abspath('../../') geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Model_Tutorial6', extent= [0, 3000, 0, 20, 0, 2000], resolution=[50, 10, 67], refinement=1, # * For this model is better not to use octrees because we want to see what is happening in the scalar fields importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/tut_chapter6/ch6_data_fol.csv", path_to_surface_points=data_path + "/data/input_data/tut_chapter6/ch6_data_interf.csv", ) ) gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object= { "fault": "Fault", "Rest": ('Layer 2', 'Layer 3', 'Layer 4', 'Layer 5') } ) gp.set_is_fault(geo_model, ['fault']) geo_model.interpolation_options.mesh_extraction = False sol = gp.compute_model(geo_model) # %% gpv.plot_2d(geo_model, cell_number=[5]) # %% # Analyzing Topology # ^^^^^^^^^^^^^^^^^^ # # GemPy sports in-built functionality to analyze the topology of its # models. All we need for this is our geo_data object, lithology block and # the fault block. We input those into *gp.topology_compute* and get # several useful outputs: # # - an adjacency graph **G**, representing the topological relationships # of the model # - the **centroids** of the all the unique topological regions in the # model (x,y,z coordinates of their center) # - a list of all the unique labels (labels_unique) # - two look-up-tables from the lithology id's to the node labels, and # vice versa # # %% edges, centroids = tp.compute_topology(geo_model) # %% # The first output of the topology function is the ``set`` of edges # representing topology relationships between unique geobodies of the # block model. An edge is represented by a ``tuple`` of two ``int`` # geobody (or node) labels: # # %% edges # %% # The second output is the centroids ``dict``, mapping the unique geobody # id's (graph node id's) to the geobody centroid position in grid # coordinates: # # %% centroids # %% # After computing the model topology, we can overlay the topology graph # over a model section: # # %% # Visualizing topology # ~~~~~~~~~~~~~~~~~~~~ # # 2-D Visualization of the Topology Graph # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # %% gpv.plot_topology( regular_grid=geo_model.grid.regular_grid, edges=edges, centroids=centroids ) # %% plot_2d: Plot2D = gpv.plot_2d(geo_model, cell_number=[5], show=False) gpv.plot_topology( regular_grid=geo_model.grid.regular_grid, edges=edges, centroids=centroids, ax=plot_2d.axes[0] ) # %% # Adjacency Matrix # ~~~~~~~~~~~~~~~~ # # Another way to encode and visualize the geomodel topology is using an # adjacency graph: # # %% M = tp.get_adjacency_matrix(geo_model, edges, centroids) print(M) # %% tp.plot_adjacency_matrix(geo_model, M) # %% # Look-up tables # ~~~~~~~~~~~~~~ # # %% # The ``topology`` asset provides several look-up tables to work with the # unique geobody topology id's. # # Mapping node id's back to lithology / surface id's: # # %% lith_lot = tp.get_lot_node_to_lith_id(geo_model, centroids) lith_lot # %% # Figuring out which nodes are in which fault block: # # %% fault_lot = tp.get_lot_node_to_fault_block(geo_model, centroids) fault_lot # %% # We can also easily map the lithology id to the corresponding topology # id's: # # %% tp.get_lot_lith_to_node_id(lith_lot) # %% # Detailed node labeling # ~~~~~~~~~~~~~~~~~~~~~~ # # %% # sphinx_gallery_thumbnail_number = 4 dedges, dcentroids = tp.get_detailed_labels(geo_model, edges, centroids) # %% plot_2d: Plot2D = gpv.plot_2d(geo_model, cell_number=[5], show=False) gpv.plot_topology( regular_grid=geo_model.grid.regular_grid, edges=dedges, centroids=dcentroids, ax=plot_2d.axes[0] ) # %% dedges # %% dcentroids # %% # Checking adjacency # ~~~~~~~~~~~~~~~~~~ # # %% # So lets say we want to check if the purple layer (id 5) is connected # across the fault to the yellow layer (id 3). For this we can make easy # use of the detailed labeling and the ``check_adjacency`` function: # # %% tp.check_adjacency(dedges, "5_1", "3_0") # %% # We can also check all geobodies that are adjacent to the purple layer # (id 5) on the left side of the fault (fault id 1): # # %% tp.get_adjacencies(dedges, "5_1") # %% ================================================ FILE: examples/tutorials/z_other_tutorials/README.rst ================================================ Video tutorials --------------- Compilation of tutorials for videos on the `gempy` YouTube channel https://www.youtube.com/@GemPy3D. ================================================ FILE: examples/tutorials/z_other_tutorials/__init__.py ================================================ ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/01_surface_points_io.py ================================================ """ Tutorial for JSON I/O operations in GemPy - Surface Points ======================================================= This tutorial demonstrates how to save and load surface points data using JSON files in GemPy. """ import json import numpy as np import gempy as gp from gempy.modules.json_io import JsonIO # Create a sample surface points dataset # ------------------------------------ # Create some sample surface points x = np.array([0, 1, 2, 3, 4]) y = np.array([0, 1, 2, 3, 4]) z = np.array([0, 1, 2, 3, 4]) ids = np.array([0, 0, 1, 1, 2]) # Three different surfaces nugget = np.array([0.00002, 0.00002, 0.00002, 0.00002, 0.00002]) # Create name to id mapping name_id_map = {f"surface_{id}": id for id in np.unique(ids)} # Create a SurfacePointsTable surface_points = gp.data.SurfacePointsTable.from_arrays( x=x, y=y, z=z, names=[f"surface_{id}" for id in ids], nugget=nugget, name_id_map=name_id_map ) # Create a JSON file with the surface points data # --------------------------------------------- # Create the JSON structure json_data = { "metadata": { "name": "sample_model", "creation_date": "2024-03-19", "last_modification_date": "2024-03-19", "owner": "tutorial" }, "surface_points": [ { "x": float(x[i]), "y": float(y[i]), "z": float(z[i]), "id": int(ids[i]), "nugget": float(nugget[i]) } for i in range(len(x)) ], "orientations": [], "faults": [], "series": [], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 4, 0, 4, 0, 4], "octree_levels": None }, "interpolation_options": {} } # Save the JSON file with open("sample_surface_points.json", "w") as f: json.dump(json_data, f, indent=4) # Load the surface points from JSON # ------------------------------- # Load the model from JSON loaded_surface_points = JsonIO._load_surface_points(json_data["surface_points"]) # Verify the loaded data print("\nOriginal surface points:") print(surface_points) print("\nLoaded surface points:") print(loaded_surface_points) # Verify the data matches print("\nVerifying data matches:") print(f"X coordinates match: {np.allclose(surface_points.xyz[:, 0], loaded_surface_points.xyz[:, 0])}") print(f"Y coordinates match: {np.allclose(surface_points.xyz[:, 1], loaded_surface_points.xyz[:, 1])}") print(f"Z coordinates match: {np.allclose(surface_points.xyz[:, 2], loaded_surface_points.xyz[:, 2])}") print(f"IDs match: {np.array_equal(surface_points.ids, loaded_surface_points.ids)}") print(f"Nugget values match: {np.allclose(surface_points.nugget, loaded_surface_points.nugget)}") # Print the name_id_maps to compare print("\nName to ID mappings:") print(f"Original: {surface_points.name_id_map}") print(f"Loaded: {loaded_surface_points.name_id_map}") ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/02_horizontal_stratigraphic.py ================================================ """ Tutorial: Loading a Horizontal Stratigraphic Model using JSON I/O =============================================================== This tutorial demonstrates how to load a horizontal stratigraphic model using GemPy's JSON I/O functionality. The model consists of two horizontal layers (rock1 and rock2) with surface points and orientations. """ # %% # Import necessary libraries import matplotlib matplotlib.use('Agg') # Use non-interactive backend import gempy as gp import gempy_viewer as gpv import numpy as np import json from pathlib import Path import matplotlib.pyplot as plt from datetime import datetime # %% # Define the model data model_data = { "metadata": { "name": "Horizontal Stratigraphic Model", "creation_date": "2024-03-24", "last_modification_date": datetime.now().strftime("%Y-%m-%d"), "owner": "GemPy Team" }, "surface_points": [ {"x": 0.0, "y": 0.0, "z": 0.0, "id": 1, "nugget": 0.0}, {"x": 1.0, "y": 0.0, "z": 0.0, "id": 1, "nugget": 0.0}, {"x": 0.0, "y": 1.0, "z": 0.0, "id": 1, "nugget": 0.0}, {"x": 1.0, "y": 1.0, "z": 0.0, "id": 1, "nugget": 0.0}, {"x": 0.0, "y": 0.0, "z": 1.0, "id": 2, "nugget": 0.0}, {"x": 1.0, "y": 0.0, "z": 1.0, "id": 2, "nugget": 0.0}, {"x": 0.0, "y": 1.0, "z": 1.0, "id": 2, "nugget": 0.0}, {"x": 1.0, "y": 1.0, "z": 1.0, "id": 2, "nugget": 0.0} ], "orientations": [ {"x": 0.5, "y": 0.5, "z": 0.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 1, "nugget": 0.0, "polarity": 1}, {"x": 0.5, "y": 0.5, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 2, "nugget": 0.0, "polarity": 1} ], "series": [ { "name": "series1", "surfaces": ["layer1", "layer2"], "structural_relation": "ERODE", "colors": ["#ff0000", "#00ff00"] } ], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0.0, 1.0, 0.0, 1.0, 0.0, 1.0], "octree_levels": None }, "interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10 }, "mesh_extraction": True, "number_octree_levels": 1 }, "fault_relations": None, "id_name_mapping": { "name_to_id": { "layer1": 1, "layer2": 2 } } } # %% # Save the model data to a JSON file tutorial_dir = Path(__file__).parent json_file = tutorial_dir / "horizontal_stratigraphic.json" with open(json_file, "w") as f: json.dump(model_data, f, indent=4) # %% # Load the model from JSON model = gp.modules.json_io.JsonIO.load_model_from_json(str(json_file)) # %% # Compute the geological model gp.compute_model(model) # %% # Plot the model # Plot the initial geological model in the y direction without results fig, ax = plt.subplots(figsize=(10, 6)) gpv.plot_2d(model, direction=['y'], show_results=False, ax=ax) plt.title("Initial Geological Model (y direction)") plt.savefig('initial_model_y.png') plt.close() # Plot the result of the model in the x and y direction with data and without boundaries fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(15, 6)) gpv.plot_2d(model, direction=['x'], show_data=True, show_boundaries=False, ax=ax1) ax1.set_title("Model with Data (x direction)") gpv.plot_2d(model, direction=['y'], show_data=True, show_boundaries=False, ax=ax2) ax2.set_title("Model with Data (y direction)") plt.tight_layout() plt.savefig('model_with_data.png') plt.close() ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/03_multiple_series_faults.py ================================================ """ Tutorial: Loading a Model with Multiple Series and Faults using JSON I/O ===================================================================== This tutorial demonstrates how to load a geological model with multiple series and faults using GemPy's JSON I/O functionality. The model consists of two layers (rock1, rock2) and a fault that offsets them. """ # %% # Import necessary libraries import matplotlib # matplotlib.use('Agg') # Use non-interactive backend import gempy as gp import gempy_viewer as gpv import numpy as np import json from pathlib import Path import matplotlib.pyplot as plt from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.modules.json_io.json_operations import JsonIO # Updated import path from datetime import datetime # %% # Define the model data model_data = { "metadata": { "name": "Multiple Series and Faults Model", "creation_date": "2024-03-24", # Fixed creation date "last_modification_date": datetime.now().strftime("%Y-%m-%d"), # Current date only "owner": "GemPy Team" }, "surface_points": [ # rock1 points {"x": 0, "y": 200, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 0, "y": 500, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 0, "y": 800, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 200, "y": 200, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 200, "y": 500, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 200, "y": 800, "z": 600, "id": 0, "nugget": 0.00002}, {"x": 800, "y": 200, "z": 200, "id": 0, "nugget": 0.00002}, {"x": 800, "y": 500, "z": 200, "id": 0, "nugget": 0.00002}, {"x": 800, "y": 800, "z": 200, "id": 0, "nugget": 0.00002}, {"x": 1000, "y": 200, "z": 200, "id": 0, "nugget": 0.00002}, {"x": 1000, "y": 500, "z": 200, "id": 0, "nugget": 0.00002}, {"x": 1000, "y": 800, "z": 200, "id": 0, "nugget": 0.00002}, # rock2 points {"x": 0, "y": 200, "z": 800, "id": 1, "nugget": 0.00002}, {"x": 0, "y": 800, "z": 800, "id": 1, "nugget": 0.00002}, {"x": 200, "y": 200, "z": 800, "id": 1, "nugget": 0.00002}, {"x": 200, "y": 800, "z": 800, "id": 1, "nugget": 0.00002}, {"x": 800, "y": 200, "z": 400, "id": 1, "nugget": 0.00002}, {"x": 800, "y": 800, "z": 400, "id": 1, "nugget": 0.00002}, {"x": 1000, "y": 200, "z": 400, "id": 1, "nugget": 0.00002}, {"x": 1000, "y": 800, "z": 400, "id": 1, "nugget": 0.00002}, # fault points {"x": 500, "y": 500, "z": 500, "id": 2, "nugget": 0.00002}, {"x": 450, "y": 500, "z": 600, "id": 2, "nugget": 0.00002}, {"x": 500, "y": 200, "z": 500, "id": 2, "nugget": 0.00002}, {"x": 450, "y": 200, "z": 600, "id": 2, "nugget": 0.00002}, {"x": 500, "y": 800, "z": 500, "id": 2, "nugget": 0.00002}, {"x": 450, "y": 800, "z": 600, "id": 2, "nugget": 0.00002} ], "orientations": [ # rock2 orientations {"x": 100, "y": 500, "z": 800, "G_x": 0, "G_y": 0, "G_z": 1, "id": 1, "nugget": 0.00002, "polarity": 1}, {"x": 900, "y": 500, "z": 400, "G_x": 0, "G_y": 0, "G_z": 1, "id": 1, "nugget": 0.00002, "polarity": 1}, # rock1 orientations {"x": 100, "y": 500, "z": 600, "G_x": 0, "G_y": 0, "G_z": 1, "id": 0, "nugget": 0.00002, "polarity": 1}, {"x": 900, "y": 500, "z": 200, "G_x": 0, "G_y": 0, "G_z": 1, "id": 0, "nugget": 0.00002, "polarity": 1}, # fault orientation (60-degree dip) {"x": 500, "y": 500, "z": 500, "G_x": 0.866, "G_y": 0, "G_z": 0.5, "id": 2, "nugget": 0.00002, "polarity": 1} ], "series": [ { "name": "Fault_Series", "surfaces": ["fault"], "structural_relation": "FAULT", "colors": ["#ffbe00"] }, { "name": "Strat_Series", "surfaces": ["rock2", "rock1"], "structural_relation": "ERODE", "colors": ["#015482", "#9f0052"] } ], "grid_settings": { "regular_grid_resolution": [50, 50, 50], "regular_grid_extent": [0, 1000, 0, 1000, 0, 1000], "octree_levels": None }, "interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10 }, "mesh_extraction": True, "number_octree_levels": 1 }, "fault_relations": [[0, 1], [0, 0]], # Fault series affects Strat_Series "id_name_mapping": { "name_to_id": { "rock1": 0, "rock2": 1, "fault": 2 } } } # %% # Save the model data to a JSON file tutorial_dir = Path(__file__).parent json_file = tutorial_dir / "multiple_series_faults.json" with open(json_file, "w") as f: json.dump(model_data, f, indent=4) # %% # Load the model from JSON model = JsonIO.load_model_from_json(str(json_file)) # Print metadata to verify it's properly loaded print("\nModel Metadata:") print(f"Name: {model.meta.name}") print(f"Creation Date: {model.meta.creation_date}") print(f"Last Modification Date: {model.meta.last_modification_date}") print(f"Owner: {model.meta.owner}") # Print structural groups print("\nStructural Groups:") print(model.structural_frame.structural_groups) # %% # Compute the geological model gp.compute_model(model) # Print scalar field values to verify they are calculated print("\nScalar Field Values (Fault Series):") print(f"Shape: {model.solutions.raw_arrays.scalar_field_matrix.shape}") print(f"Min value: {model.solutions.raw_arrays.scalar_field_matrix[0].min()}") print(f"Max value: {model.solutions.raw_arrays.scalar_field_matrix[0].max()}") print(f"Mean value: {model.solutions.raw_arrays.scalar_field_matrix[0].mean()}") # %% # Save the computed model to a new JSON file computed_json_file = tutorial_dir / "multiple_series_faults_computed.json" JsonIO.save_model_to_json(model, str(computed_json_file)) print(f"\nSaved computed model to: {computed_json_file}") # %% # Load the computed model back to verify metadata is preserved reloaded_model = JsonIO.load_model_from_json(str(computed_json_file)) print("\nReloaded Model Metadata:") print(f"Name: {reloaded_model.meta.name}") print(f"Creation Date: {reloaded_model.meta.creation_date}") print(f"Last Modification Date: {reloaded_model.meta.last_modification_date}") print(f"Owner: {reloaded_model.meta.owner}") # %% # Create plots with proper configuration # Plot 1: Cross-section in Y direction (XZ plane) fig = plt.figure(figsize=(10, 8)) ax = fig.add_subplot(111) gpv.plot_2d( model, cell_number=25, # Middle of the model direction='y', show_data=True, show_boundaries=True, show_results=True, ax=ax ) plt.title("Geological Model - Y Direction (XZ plane)") plt.savefig('model_y_direction.png', dpi=300, bbox_inches='tight') plt.close() # Plot 2: Cross-section in X direction (YZ plane) fig = plt.figure(figsize=(10, 8)) ax = fig.add_subplot(111) gpv.plot_2d( model, cell_number=25, # Middle of the model direction='x', show_data=True, show_boundaries=True, show_results=True, ax=ax ) plt.title("Geological Model - X Direction (YZ plane)") plt.savefig('model_x_direction.png', dpi=300, bbox_inches='tight') plt.close() # Plot 3: Scalar field of the fault plt.figure(figsize=(10, 8)) ax = plt.gca() # Get scalar field values and reshape to grid scalar_field = model.solutions.raw_arrays.scalar_field_matrix[0].reshape(50, 50, 50) # Plot middle slice in Y direction middle_slice = scalar_field[:, 25, :] im = ax.imshow(middle_slice.T, extent=[0, 1000, 0, 1000], origin='lower', cmap='RdBu', aspect='equal') # Add colorbar plt.colorbar(im, ax=ax, label='Scalar Field Value') # Plot surface points fault_element = model.structural_frame.get_element_by_name("fault") if fault_element and fault_element.surface_points is not None: fault_points_coords = fault_element.surface_points.xyz # Filter points near the slice (Y around 500) mask = np.abs(fault_points_coords[:, 1] - 500) < 100 filtered_points = fault_points_coords[mask] if len(filtered_points) > 0: ax.scatter(filtered_points[:, 0], filtered_points[:, 2], c='red', s=50, label='Surface Points') ax.legend() ax.set_xlabel('X') ax.set_ylabel('Z') ax.set_title('Fault Scalar Field - Y Direction (Middle Slice)') # Save plot plt.savefig('fault_scalar_field.png', dpi=300, bbox_inches='tight') plt.close() print("\nPlot saved as fault_scalar_field.png") # Plot 4: 3D visualization (optional) PLOT_3D = False # Set to True to enable 3D plotting if PLOT_3D: try: import pyvista as pv p = pv.Plotter(notebook=False, off_screen=True) gpv.plot_3d( model, show_data=True, show_surfaces=True, show_boundaries=True, plotter=p ) p.screenshot('model_3d.png', transparent_background=False) p.close() except Exception as e: print(f"Could not create 3D plot: {e}") # %% ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/04_combination_model.py ================================================ # %% """ Combination Model with JSON I/O ============================== This example demonstrates how to create a model combining faults and unconformities using GemPy's JSON I/O functionality. The model is based on the g07_combination.py example, featuring a folded domain with an unconformity and a fault. Part 1: Create and save the initial model structure Part 2: Load the model, compute it, and visualize results """ import gempy as gp import gempy_viewer as gpv import numpy as np import os from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy_engine.config import AvailableBackends from gempy.modules.json_io.json_operations import JsonIO # %% # Part 1: Create and save the initial model structure # ------------------------------------------------- # Define paths data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" json_file = "combination_model.json" computed_json_file = "combination_model_computed.json" # Create the model with data import model = gp.create_geomodel( project_name='Combination Model', extent=[0, 2500, 0, 1000, 0, 1000], resolution=[20, 20, 20], refinement=6, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model7_orientations.csv", path_to_surface_points=path_to_data + "model7_surface_points.csv" ) ) # Set metadata model.meta.creation_date = "2024-03-24" model.meta.last_modification_date = "2024-03-24" # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=model, mapping_object={ "Fault_Series": ('fault',), "Strat_Series1": ('rock3',), "Strat_Series2": ('rock2', 'rock1'), } ) # Set structural relations model.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT model.structural_frame.fault_relations = np.array([ [0, 1, 1], [0, 0, 0], [0, 0, 0] ]) # Set colors for visualization model.structural_frame.get_element_by_name("fault").color = "#015482" model.structural_frame.get_element_by_name("rock3").color = "#9f0052" model.structural_frame.get_element_by_name("rock2").color = "#ffbe00" model.structural_frame.get_element_by_name("rock1").color = "#728f02" # Set interpolation options model.interpolation_options.number_octree_levels_surface = 5 # Save the model data to a JSON file JsonIO.save_model_to_json(model, json_file) print(f"\nSaved initial model to: {os.path.abspath(json_file)}") # %% # Part 2: Load the model and compute # --------------------------------- print("\nLoading model from JSON...") model = JsonIO.load_model_from_json(json_file) print("\nModel Metadata:") print(f"Name: {model.meta.name}") print(f"Creation Date: {model.meta.creation_date}") # TODO: This does not update here when running. In 03 you have a current date time setter print(f"Last Modified: {model.meta.last_modification_date}") print("\nStructural Groups:") print(model.structural_frame) # Compute the model print("\nComputing the model...") s = gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=AvailableBackends.numpy ) ) # Save the computed model # TODO: This is identical to the file saved before computation (no results stored) JsonIO.save_model_to_json(model, computed_json_file) print(f"\nSaved computed model to: {os.path.abspath(computed_json_file)}") #%% # Plot the results print("\nGenerating plots...") # 2D plots gpv.plot_2d(model, direction='y', show_results=False) gpv.plot_2d(model, direction='y', show_data=True, show_boundaries=True) gpv.plot_2d(model, direction='x', show_data=True) # Plot the blocks accounting for fault blocks gpv.plot_2d( model=model, override_regular_grid=model.solutions.raw_arrays.litho_faults_block, show_data=True, kwargs_lithology={'cmap': 'Set1', 'norm': None} ) # 3D plot gpv.plot_3d(model) print("\nDone! The model has been:") print("1. Created and saved to:", json_file) print("2. Loaded from JSON") print("3. Computed") print("4. Saved with computation results to:", computed_json_file) print("5. Visualized with various plots") ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/05_minimal_json.py ================================================ """ Tutorial: Minimal JSON I/O with default metadata, interpolation options, and grid settings This tutorial demonstrates how to use the JSON I/O functionality with minimal input, relying on default metadata values, interpolation options, and grid settings. """ # %% import numpy as np from datetime import datetime import gempy as gp import gempy_viewer as gpv import json import pyvista as pv from gempy.modules.json_io.json_operations import JsonIO # Updated import path # %% # Create the corresponding minimal JSON model model_data = { "surface_points": [ { "x": 50.0, "y": 0.0, "z": -20.0, "id": 0, } ], "orientations": [ { "x": 50.0, "y": 0.0, "z": -20.0, "G_x": 1.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "polarity": 1 } ], "grid_settings": { "regular_grid_resolution": [100, 2, 100], "regular_grid_extent": [0, 150, -10, 10, -100, 0] } } # %% # Save the minimal model to JSON with open("minimal_model.json", "w") as f: json.dump(model_data, f, indent=4) # Load the model from JSON geo_model = JsonIO.load_model_from_json("minimal_model.json") # Compute the geological model gp.compute_model(geo_model) p2d = gpv.plot_2d(geo_model) # %% # Print the model metadata (should use default values) print("\nModel Metadata:") print(f"Name: {geo_model.meta.name}") print(f"Creation Date: {geo_model.meta.creation_date}") print(f"Last Modification Date: {geo_model.meta.last_modification_date}") print(f"Owner: {geo_model.meta.owner}") # Print the interpolation options (should use default values) print("\nInterpolation Options:") print(f"Range: {geo_model.interpolation_options.kernel_options.range}") print(f"Mesh Extraction: {geo_model.interpolation_options.mesh_extraction}") # Print the grid settings (should use default values) print("\nGrid Settings:") print(f"Resolution: {geo_model.grid._dense_grid.resolution}") print(f"Extent: {geo_model.grid._dense_grid.extent}") # Print the structural groups print("\nStructural Groups:") for group in geo_model.structural_frame.structural_groups: print(group) # Save the loaded model to verify the metadata, interpolation options, and grid settings are preserved JsonIO.save_model_to_json(geo_model, "minimal_model_loaded.json") # %% ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/05c_minimal_comparison.py ================================================ """ Tutorial: Compare minimal GemPy model with JSON representation This tutorial demonstrates how to create a minimal GemPy model and compare it with its JSON representation. """ # %% import gempy as gp import gempy_viewer as gpv import json import numpy as np from gempy.modules.json_io.json_operations import JsonIO # %% # Set up the basic model geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Model1', extent=[0, 150, -10, 10, -100, 0], resolution=[100, 2, 100], structural_frame=gp.data.StructuralFrame.initialize_default_structure() ) # Add a surface point gp.add_surface_points( geo_model=geo_model, x=[50], y=[0], z=[-20], elements_names=['surface1'] ) # Add an orientation gp.add_orientations( geo_model=geo_model, x=[50], y=[0], z=[-68], elements_names=['surface1'], pole_vector=[[1, 0, 1]] ) # Set interpolation options geo_model.interpolation_options.kernel_options.range = 10. geo_model.interpolation_options.kernel_options.c_o = 5. geo_model.interpolation_options.mesh_extraction = True geo_model.interpolation_options.number_octree_levels = 2 geo_model.update_transform(gp.data.GlobalAnisotropy.NONE) gp.compute_model(geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% # Plot the model p2d = gpv.plot_2d(geo_model) # %% # Create the corresponding minimal JSON model json_model_data = { "surface_points": [ { "x": 50.0, "y": 0.0, "z": -20.0, "id": 0 } ], "orientations": [ { "x": 50.0, "y": 0.0, "z": -68.0, "G_x": 1.0, "G_y": 0.0, "G_z": 1.0, "id": 0 } ], "grid_settings": { "regular_grid_resolution": [100, 2, 100], "regular_grid_extent": [0, 150, -10, 10, -100, 0] }, "interpolation_options": { "kernel_options": { "range": 10.0, "c_o": 5.0 }, "mesh_extraction": True, "number_octree_levels": 2 }, "series": [ { "name": "default_formations", "surfaces": ["surface1"], "structural_relation": "ERODE" } ] } # Save the JSON model with open("minimal_model.json", "w") as f: json.dump(json_model_data, f, indent=4) # Load the model from JSON json_geo_model = JsonIO.load_model_from_json("minimal_model.json") # Compute the JSON model gp.compute_model(json_geo_model, engine_config=gp.data.GemPyEngineConfig()) # %% # Compare the models print("\nComparing GemPy and JSON models:") print("\n1. Surface Points:") print("GemPy model:") print(geo_model.surface_points_copy) print("\nJSON model:") print(json_geo_model.surface_points_copy) print("\n2. Orientations:") print("GemPy model:") print(geo_model.orientations_copy) print("\nJSON model:") print(json_geo_model.orientations_copy) print("\n3. Grid Settings:") print("GemPy model:") print(f"Resolution: {geo_model.grid._dense_grid.resolution}") print(f"Extent: {geo_model.grid._dense_grid.extent}") print("\nJSON model:") print(f"Resolution: {json_geo_model.grid._dense_grid.resolution}") print(f"Extent: {json_geo_model.grid._dense_grid.extent}") print("\n4. Interpolation Options:") print("GemPy model:") print(f"Range: {geo_model.interpolation_options.kernel_options.range}") print(f"C_o: {geo_model.interpolation_options.kernel_options.c_o}") print(f"Mesh Extraction: {geo_model.interpolation_options.mesh_extraction}") print(f"Number Octree Levels: {geo_model.interpolation_options.number_octree_levels}") print("\nJSON model:") print(f"Range: {json_geo_model.interpolation_options.kernel_options.range}") print(f"C_o: {json_geo_model.interpolation_options.kernel_options.c_o}") print(f"Mesh Extraction: {json_geo_model.interpolation_options.mesh_extraction}") print(f"Number Octree Levels: {json_geo_model.interpolation_options.number_octree_levels}") print("\n5. Structural Groups:") print("GemPy model:") for group in geo_model.structural_frame.structural_groups: print(group) print("\nJSON model:") for group in json_geo_model.structural_frame.structural_groups: print(group) # %% # Plot both models side by side p2d_gempy = gpv.plot_2d(geo_model, title="GemPy Model") p2d_json = gpv.plot_2d(json_geo_model, title="JSON Model") # %% ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/horizontal_stratigraphic.json ================================================ { "metadata": { "name": "horizontal_stratigraphic", "creation_date": "2024-03-19", "last_modification_date": "2024-03-19", "owner": "tutorial" }, "surface_points": [ { "x": 100.0, "y": 200.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 500.0, "y": 200.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 900.0, "y": 200.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 100.0, "y": 800.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 500.0, "y": 800.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 900.0, "y": 800.0, "z": 600.0, "id": 1, "nugget": 2e-05 }, { "x": 100.0, "y": 200.0, "z": 400.0, "id": 0, "nugget": 2e-05 }, { "x": 500.0, "y": 200.0, "z": 400.0, "id": 0, "nugget": 2e-05 }, { "x": 900.0, "y": 200.0, "z": 400.0, "id": 0, "nugget": 2e-05 }, { "x": 100.0, "y": 800.0, "z": 400.0, "id": 0, "nugget": 2e-05 }, { "x": 500.0, "y": 800.0, "z": 400.0, "id": 0, "nugget": 2e-05 }, { "x": 900.0, "y": 800.0, "z": 400.0, "id": 0, "nugget": 2e-05 } ], "orientations": [ { "x": 500.0, "y": 500.0, "z": 600.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 1, "nugget": 0.01, "polarity": 1 }, { "x": 500.0, "y": 500.0, "z": 400.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "nugget": 0.01, "polarity": 1 } ], "series": [ { "name": "Strat_Series", "surfaces": [ "rock2", "rock1" ] } ], "grid_settings": { "regular_grid_resolution": [ 10, 10, 10 ], "regular_grid_extent": [ 0, 1000, 0, 1000, 0, 1000 ], "octree_levels": null }, "interpolation_options": {} } ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/minimal_model.json ================================================ { "surface_points": [ { "x": 50.0, "y": 0.0, "z": -20.0, "id": 0 } ], "orientations": [ { "x": 50.0, "y": 0.0, "z": -68.0, "G_x": 1.0, "G_y": 0.0, "G_z": 1.0, "id": 0 } ], "grid_settings": { "regular_grid_resolution": [ 100, 2, 100 ], "regular_grid_extent": [ 0, 150, -10, 10, -100, 0 ] }, "interpolation_options": { "kernel_options": { "range": 10.0, "c_o": 5.0 }, "mesh_extraction": true, "number_octree_levels": 2 }, "series": [ { "name": "default_formations", "surfaces": [ "surface1" ], "structural_relation": "ERODE" } ] } ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/minimal_model_loaded.json ================================================ { "metadata": { "name": "GemPy Model", "creation_date": "2025-03-28", "last_modification_date": "2025-03-28", "owner": "GemPy Modeller" }, "surface_points": [ { "x": 50.0, "y": 0.0, "z": -20.0, "id": 34966260, "nugget": 0.0 } ], "orientations": [ { "x": 50.0, "y": 0.0, "z": -20.0, "G_x": 1.0, "G_y": 0.0, "G_z": 1.0, "id": 34966260, "nugget": 0.01, "polarity": 1 } ], "series": [ { "name": "Strat_Series", "surfaces": [ "surface_0" ], "structural_relation": "ERODE", "colors": [ "#015482" ] } ], "grid_settings": { "regular_grid_resolution": [ 100, 2, 100 ], "regular_grid_extent": [ 0.0, 150.0, -10.0, 10.0, -100.0, 0.0 ], "octree_levels": null }, "interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0 }, "mesh_extraction": true, "number_octree_levels": 4 }, "fault_relations": [ [ 0 ] ], "id_name_mapping": { "name_to_id": { "surface_0": 34966260, "basement": 91927817 } } } ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/multiple_series_faults.json ================================================ { "metadata": { "name": "multiple_series_faults", "creation_date": "2024-03-19", "last_modification_date": "2024-03-19", "owner": "tutorial" }, "surface_points": [ { "x": 0.0, "y": 200.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 0.0, "y": 500.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 0.0, "y": 800.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 200.0, "y": 200.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 200.0, "y": 500.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 200.0, "y": 800.0, "z": 600.0, "id": 2, "nugget": 2e-05 }, { "x": 800.0, "y": 200.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 800.0, "y": 500.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 800.0, "y": 800.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 1000.0, "y": 200.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 1000.0, "y": 500.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 1000.0, "y": 800.0, "z": 200.0, "id": 2, "nugget": 2e-05 }, { "x": 0.0, "y": 200.0, "z": 800.0, "id": 1, "nugget": 2e-05 }, { "x": 0.0, "y": 800.0, "z": 800.0, "id": 1, "nugget": 2e-05 }, { "x": 200.0, "y": 200.0, "z": 800.0, "id": 1, "nugget": 2e-05 }, { "x": 200.0, "y": 800.0, "z": 800.0, "id": 1, "nugget": 2e-05 }, { "x": 800.0, "y": 200.0, "z": 400.0, "id": 1, "nugget": 2e-05 }, { "x": 800.0, "y": 800.0, "z": 400.0, "id": 1, "nugget": 2e-05 }, { "x": 1000.0, "y": 200.0, "z": 400.0, "id": 1, "nugget": 2e-05 }, { "x": 1000.0, "y": 800.0, "z": 400.0, "id": 1, "nugget": 2e-05 }, { "x": 500.0, "y": 500.0, "z": 500.0, "id": 0, "nugget": 2e-05 }, { "x": 450.0, "y": 500.0, "z": 600.0, "id": 0, "nugget": 2e-05 }, { "x": 500.0, "y": 200.0, "z": 500.0, "id": 0, "nugget": 2e-05 }, { "x": 450.0, "y": 200.0, "z": 600.0, "id": 0, "nugget": 2e-05 }, { "x": 500.0, "y": 800.0, "z": 500.0, "id": 0, "nugget": 2e-05 }, { "x": 450.0, "y": 800.0, "z": 600.0, "id": 0, "nugget": 2e-05 } ], "orientations": [ { "x": 100.0, "y": 500.0, "z": 800.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 1, "nugget": 0.01, "polarity": 1 }, { "x": 100.0, "y": 500.0, "z": 600.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 2, "nugget": 0.01, "polarity": 1 }, { "x": 500.0, "y": 500.0, "z": 500.0, "G_x": 0.8, "G_y": 0.0, "G_z": 0.6, "id": 0, "nugget": 0.01, "polarity": 1 }, { "x": 900.0, "y": 500.0, "z": 400.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 1, "nugget": 0.01, "polarity": 1 }, { "x": 900.0, "y": 500.0, "z": 200.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 2, "nugget": 0.01, "polarity": 1 } ], "series": [ { "name": "Fault_Series", "surfaces": [ "fault" ], "structural_relation": "FAULT", "color": "#015482" }, { "name": "Strat_Series", "surfaces": [ "rock2", "rock1" ], "structural_relation": "ERODE", "colors": [ "#ffbe00", "#9f0052" ] } ], "grid_settings": { "regular_grid_resolution": [ 90, 30, 30 ], "regular_grid_extent": [ 0, 1000, 0, 1000, 0, 1000 ], "octree_levels": null }, "interpolation_options": {} } ================================================ FILE: examples/tutorials/z_other_tutorials/json_io/sample_surface_points.json ================================================ { "metadata": { "name": "sample_model", "creation_date": "2024-03-19", "last_modification_date": "2024-03-19", "owner": "tutorial" }, "surface_points": [ { "x": 0.0, "y": 0.0, "z": 0.0, "id": 0, "nugget": 2e-05 }, { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0, "nugget": 2e-05 }, { "x": 2.0, "y": 2.0, "z": 2.0, "id": 1, "nugget": 2e-05 }, { "x": 3.0, "y": 3.0, "z": 3.0, "id": 1, "nugget": 2e-05 }, { "x": 4.0, "y": 4.0, "z": 4.0, "id": 2, "nugget": 2e-05 } ], "orientations": [], "faults": [], "series": [], "grid_settings": { "regular_grid_resolution": [ 10, 10, 10 ], "regular_grid_extent": [ 0, 4, 0, 4, 0, 4 ], "octree_levels": null }, "interpolation_options": {} } ================================================ FILE: examples/tutorials/z_other_tutorials/video_tutorial_model_1.py ================================================ """ Video Tutorial "code-along": Modeling step by step ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ """ # %% # This tutorial demonstrates step-by-step geological modeling using the `gempy` and `gempy_viewer` libraries. # It follows the Video tutorial series available on the `gempy YouTube channel `_. # %% # Video tutorial 1: Introduction # """""""""""""""""""""""""""""" # # The first video is an introduction to GemPy - please view online before starting the tutorial. # # # %% #.. raw:: html # # # %% # Video tutorial 2: Input data # """""""""""""""""""""""""""" # %% #.. raw:: html # # # Required imports import gempy as gp import gempy_viewer as gpv # %% # Path to input data data_path = "https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/" path_to_data = data_path + "/data/input_data/video_tutorials_v3/" # %% # Create instance of geomodel geo_model = gp.create_geomodel( project_name = 'tutorial_model', extent=[0,2500,0,1000,0,1000], resolution=[100,40,40], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data+"tutorial_model_orientations.csv", path_to_surface_points=path_to_data+"tutorial_model_surface_points.csv" ) ) # %% # Display a basic cross section of input data gpv.plot_2d(geo_model) # %% # Manually add a surface point gp.add_surface_points( geo_model=geo_model, x=[2250], y=[500], z=[750], elements_names=['rock1'] ) # %% # Show added point in cross section gpv.plot_2d(geo_model) # %% # Video tutorial 3: Structural frame # """""""""""""""""""""""""""""""""" # %% #.. raw:: html # # # View structural frame geo_model.structural_frame # %% # View structural elements geo_model.structural_frame.structural_elements # %% # Define structural groups and age/stratigraphic relationship gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "Strat_Series2": ("rock3"), "Strat_Series1": ("rock2", "rock1") } ) # %% # Video tutorial 4: Computation and results # """"""""""""""""""""""""""""""""""""""""" # %% #.. raw:: html # # # View interpolation options geo_model.interpolation_options # %% # Compute a solution for the model gp.compute_model(geo_model) # %% # Display the result in 2d section gpv.plot_2d(geo_model, cell_number=20) # %% # Some examples of how to access results print(geo_model.solutions.raw_arrays.lith_block) print(geo_model.grid.dense_grid.values) # %% # Video tutorial 5: 2D visualization # """""""""""""""""""""""""""""""""" # %% #.. raw:: html # # # 2d plotting options gpv.plot_2d(geo_model, show_value=True, show_lith=False, show_scalar=True, series_n=1, cell_number=25) # %% # Create custom section lines gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section1': ([0, 0], [2500, 1000], [100, 50]), 'section2': ([1000, 1000], [1500, 0], [100, 100]), } ) # %% # Show custom cross-section traces gpv.plot_section_traces(geo_model) # %% # Recompute model as a new grid was added gp.compute_model(geo_model) # %% # Display custom cross-sections gpv.plot_2d(geo_model, section_names=['section1', 'section2'], show_data=False) # %% # Video tutorial 6: 3D visualization # """""""""""""""""""""""""""""""""" # %% #.. raw:: html # # # Display the result in 3d gpv.plot_3d(geo_model, show_lith=True, show_boundaries=True, ve=None) # %% # How to access DC meshes geo_model.solutions.dc_meshes[0].dc_data # transform mesh vertices to original coordinate system back_transformed_vertices = geo_model.input_transform.apply_inverse(geo_model.solutions.dc_meshes[0].vertices) # %% # Video tutorial 7: Topography # """"""""""""""""""""""""""""""" # %% #.. raw:: html # # # Setting a randomly generated topography import numpy as np gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.2, d_z=np.array([700, 900]), topography_resolution=np.array([250, 100]) ) # %% # Recompute model as a new grid was added gp.compute_model(geo_model) # %% # Display a cross-section with topography gpv.plot_2d(geo_model, show_topography=True) # %% # Displaying a geological map gpv.plot_2d(geo_model, show_topography=True, section_names=['topography'], show_boundaries=False, show_data=False) # %% # Display the 3d model with topography gpv.plot_3d(geo_model, show_lith=True, show_topography=True) # sphinx_gallery_thumbnail_number = -1 ================================================ FILE: examples/tutorials/z_other_tutorials/video_tutorial_model_2_faults.py ================================================ """ Video Tutorial "code-along": Faults ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ """ # %% # This tutorial demonstrates step-by-step how to add faults to our geological models created with `gempy`. # It follows the Video tutorial series available on the [gempy YouTube channel](https://www.youtube.com/@GemPy3D). # Please follow the first part of the tutorial to learn the basics of modeling with gempy before diving into this tutorial. # %% # Video tutorial faults: Introduction # """""""""""""""""""""""""""""""""""" # # The first video introduces the concept of modeling faults with GemPy - please view online before starting the tutorial. # # # %% # .. raw:: html # # # # # %% # Required imports import gempy as gp import gempy_viewer as gpv import numpy as np # %% # Path to input data data_path = "https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/" path_to_data = data_path + "/data/input_data/video_tutorials_v3/" # %% # Create instance of geomodel geo_model = gp.create_geomodel( project_name = 'tutorial_model_faults', extent=[0,3000,0,1000,0,1000], resolution=[90,30,30], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "tutorial_model_faults_1_orientations.csv", path_to_surface_points=path_to_data + "tutorial_model_faults_1_surface_points.csv" ) ) # %% # Display a basic cross section of input data gpv.plot_2d(geo_model); # %% # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "Fault_Series1" : ('fault'), "Strat_Series1": ('rock3'), "Strat_Series2": ('rock2', 'rock1'), } ) # %% # Define youngest structural group as fault gp.set_is_fault(geo_model, ["Fault_Series1"]) # %% # Compute a solution for the model gp.compute_model(geo_model) # %% # Display the result in 2d section gpv.plot_2d(geo_model, cell_number=20) # gpv.plot_3d(geo_model) # %% # Display the scalar field of the fault in 2d section gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=0) gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=1) gpv.plot_2d(geo_model, show_scalar=True, show_lith=False, series_n=2) # %% # Video tutorial 9: Fault relations # """""""""""""""""""""""""""" # %% # .. raw:: html # # # # # ***Warning***: In the following section we will make several changes to the existing model. This includes adding new elements, groups, surface points and orientation and reordering the structural frame. Executing these cells more than once can lead to errors as things will be added twice. # %% # Creating a new strucutral element with surface point and orientation data new_element = gp.data.StructuralElement( name='fault0', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([2750, 2750, 2750]), y=np.array([0, 500, 1000]), z=np.array([400, 400, 400]), names=['fault0']*3 ), orientations=gp.data.OrientationsTable.from_arrays( x=np.array([2750]), y=np.array([500]), z=np.array([400]), G_x=np.array([0.8]), G_y=np.array([0]), G_z=np.array([0.6]), names=['fault0'] ) ) # Creating a new structural group that contains the new element group_fault0 = gp.data.StructuralGroup( name='Fault_Series0', elements=[new_element], structural_relation=gp.data.StackRelationType.ERODE, ) # Insert the fault group into the structural frame at first position (index 0) geo_model.structural_frame.insert_group(index=0, group=group_fault0); # %% # Define youngest structural group as fault gp.set_is_fault(geo_model, ["Fault_Series0"]) # %% # Add additional information for exisitng elements on other side of fault gp.add_surface_points( geo_model=geo_model, x=[2950, 2950, 2950], y=[0, 500, 1000], z=[500, 500, 500], elements_names=['rock2']*3 ); gp.add_surface_points( geo_model=geo_model, x=[2950, 2950, 2950], y=[0, 500, 1000], z=[350, 350, 350], elements_names=['rock1']*3 ); gp.add_surface_points( geo_model=geo_model, x=[2950, 2950, 2950], y=[0, 500, 1000], z=[550, 500, 500], elements_names=['rock3']*3 ); # %% # Display input data with the new fault and the additional input data for the other elements gpv.plot_2d(geo_model, show_data=True, show_boundaries=False, show_lith=False) # %% # Recompute the model with the new information gp.compute_model(geo_model) # %% # Display the new result gpv.plot_2d(geo_model) # %% # Switching the order by adding a new group containing rock3 on top gp.add_structural_group( model=geo_model, group_index=0, structural_group_name="Strat_Series0", elements=[ geo_model.structural_frame.get_element_by_name("rock3") ], structural_relation=gp.data.StackRelationType.ERODE ) # Removing the old group that contained rock3 gp.remove_structural_group_by_name(geo_model, group_name="Strat_Series1") # %% # Recompute the model with new order gp.compute_model(geo_model) # %% # Display the new result gpv.plot_2d(geo_model) # %% # Set fault relations manually gp.set_fault_relation( frame=geo_model.structural_frame, rel_matrix=np.array([ [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 1], [0, 0, 0, 0] ] ) ) # %% # Recompute model gp.compute_model(geo_model) # %% # Display result gpv.plot_2d(geo_model) # %% # Video tutorial 10: Fault groups and cross-cutting faults # """""""""""""""""""""""""""""""""""" # %% # .. raw:: html # # # # # %% # Create instance of new geomodel geo_model_cross = gp.create_geomodel( project_name = 'tutorial_model_faults_2', extent=[0,1000,0,500,0,1000], resolution=[50,25,50], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "tutorial_model_faults_2_orientations.csv", path_to_surface_points=path_to_data + "tutorial_model_faults_2_surface_points.csv" ) ) # %% # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model_cross, mapping_object={ "Fault_Series2" : ('fault3', 'fault2'), "Fault_Series1" : ('fault1'), "Strat_Series": ('rock3', 'rock2', 'rock1'), } ) # Define youngest structural group as fault gp.set_is_fault(geo_model_cross, ["Fault_Series1", "Fault_Series2"]) # Change color of basement for better visibility geo_model_cross.structural_frame.basement_color="#F7B529" geo_model_cross.structural_frame.structural_elements[0].color = '#000000' geo_model_cross.structural_frame.structural_elements[1].color = '#36454F' geo_model_cross.structural_frame.structural_elements[2].color = '#D3D3D3' # %% geo_model_cross.structural_frame # %% # Set fault relations manually gp.set_fault_relation( frame=geo_model_cross.structural_frame, rel_matrix=np.array([ [0, 1, 1], [0, 0, 1], [0, 0, 0], ] ) ) # %% # Display input data on cross section gpv.plot_2d(geo_model_cross) # %% # Compute model gp.compute_model(geo_model_cross) # %% # Display reusult on cross section gpv.plot_2d(geo_model_cross) # sphinx_gallery_thumbnail_number = -1 ================================================ FILE: examples/tutorials/z_other_tutorials/video_tutorial_model_3_onlap.py ================================================ """ Video Tutorial "code-along": Onlap relations ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ """ # %% # This tutorial demonstrates step-by-step how to incorporate onlap relations to our geological models created with gempy. # It follows the Video tutorial series available on the [gempy YouTube channel](https://www.youtube.com/@GemPy3D). # Please follow the first and second part of the tutorials to learn the basics of modeling with gempy before diving into this tutorial. # %% # Video tutorial 11: Basic onlap scenario # """""""""""""""""""""""""""""""""""" # %% # .. raw:: html # # # # # %% # Required imports import gempy as gp import gempy_viewer as gpv import numpy as np # %% # Path to input data data_path = "https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/" path_to_data = data_path + "/data/input_data/video_tutorials_v3/" # %% # Create instance of geomodel geo_model_onlap = gp.create_geomodel( project_name = 'tutorial_model_onlap_1', extent=[0,2000,0,1000,0,1000], resolution=[100,50,50], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data+"tutorial_model_onlap_1_orientations.csv", path_to_surface_points=path_to_data+"tutorial_model_onlap_1_surface_points.csv" ) ) # %% # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model_onlap, mapping_object={ "Young_Series": ("basin_fill_2", "basin_fill_1"), "Old_Series": ("basin_top", "basin_bottom") } ) # Alternative way of mapping geological series to surfaces # gp.map_stack_to_surfaces( # gempy_model=geo_model_onlap, # mapping_object={ # "Young_Series": ("basin_fill_2", "basin_fill_1"), # "Onlap_Series": ("basin_top"), # "Old_Series": ("basin_bottom") # } # ) # %% # Display a basic cross section of input data gpv.plot_2d(geo_model_onlap, show_data=True) # %% # Compute a solution for the model gp.compute_model(geo_model_onlap) # %% # Display the result in 2d section gpv.plot_2d(geo_model_onlap, show_boundaries=False) # %% # Set the relation of the youngest group to Onlap from gempy_engine.core.data.stack_relation_type import StackRelationType geo_model_onlap.structural_frame.structural_groups[0].structural_relation = StackRelationType.ONLAP # %% # Display updated strucutral frame geo_model_onlap.structural_frame # %% # Compute a solution for the model gp.compute_model(geo_model_onlap) # %% # Display the result in 2d section gpv.plot_2d(geo_model_onlap, show_boundaries=False) # %% # Video tutorial 12: Advanced onlap - Subduction zone # """""""""""""""""""""""""""" # %% # .. raw:: html # # # # # %% # Create instance of geomodel geo_model_subduction = gp.create_geomodel( project_name = 'tutorial_model_onlap_2', extent=[0,2000,0,1000,0,1000], resolution=[100,50,50], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data+"tutorial_model_onlap_2_orientations.csv?", path_to_surface_points=path_to_data+"tutorial_model_onlap_2_surface_points.csv?" ) ) # %% # Display a basic cross section of input data gpv.plot_2d(geo_model_subduction) # %% # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model_subduction, mapping_object={ "Top": ("continental_top"), "Continental_Series": ("continental_shallow", "continental_deep"), "Oceanic_Series": ("oceanic_top", "oceanic_bottom") } ) # %% # Set the realtion of the youngest and second youngest group to Onlap geo_model_subduction.structural_frame.structural_groups[0].structural_relation = StackRelationType.ONLAP geo_model_subduction.structural_frame.structural_groups[1].structural_relation = StackRelationType.ONLAP # %% # Display updated structural frame geo_model_subduction.structural_frame # %% # Create a simple topography using numpy # Define grid spacing spacing = 20 # Generate grid x = np.arange(geo_model_subduction.grid.regular_grid.extent[0], geo_model_subduction.grid.regular_grid.extent[1] + spacing, spacing) y = np.arange(geo_model_subduction.grid.regular_grid.extent[2], geo_model_subduction.grid.regular_grid.extent[3] + spacing, spacing) X, Y = np.meshgrid(x, y) # Define elevation (z) based on x, creating a simple mountain range Z = np.ones_like(X) * 590 # Default elevation Z[(X >= 570) & (X < 1000)] = 590 + (200 * (X[(X >= 570) & (X < 1000)] - 600) / 400) Z[(X >= 1000) & (X < 1300)] = 810 - (250 * (X[(X >= 1000) & (X < 1300)] - 1000) / 300) Z[X >= 1300] = 540 # Flatten the data into (N,3) shape topography_points = np.vstack((X.ravel(), Y.ravel(), Z.ravel())).T # %% # Set topography from numpy array gp.set_topography_from_arrays(grid=geo_model_subduction.grid, xyz_vertices=topography_points) # %% # Compute a solution for the model gp.compute_model(geo_model_subduction) # %% # Display the result in 2d section gpv.plot_2d(geo_model_subduction, show_topography=True, show_boundaries=False) # %% # Display 3d plot of final model gpv.plot_3d(geo_model_subduction, show_topography=True, image=True) # sphinx_gallery_thumbnail_number = -1 ================================================ FILE: gempy/API/__init__.py ================================================ # Initialization API from .initialization_API import ( create_data_legacy, create_geomodel, structural_elements_from_borehole_set ) # Compute API from .compute_API import ( compute_model, compute_model_at ) # Map stack to surfaces API from .map_stack_to_surfaces_API import map_stack_to_surfaces # Grid API from .grid_API import ( set_active_grid, set_custom_grid, set_section_grid, set_centered_grid, set_topography_from_random, set_topography_from_file, set_topography_from_subsurface_structured_grid, set_topography_from_arrays ) # Examples generator from .examples_generator import generate_example_model # Faults API from .faults_API import ( set_fault_relation, set_is_fault, set_is_finite_fault ) # Data manipulation: points from ..modules.data_manipulation.manipulate_points import ( add_orientations, add_surface_points, delete_orientations, delete_surface_points, modify_orientations, modify_surface_points ) # Data manipulation: orientations from surface points from ..modules.data_manipulation.orientations_from_surface_points import ( create_orientations_from_surface_points_coords ) # Data manipulation: structural frame from ..modules.data_manipulation.manipulate_structural_frame import ( add_structural_group, remove_structural_group_by_index, remove_structural_group_by_name, remove_element_by_name ) from ..modules.serialization.save_load import save_model, load_model # Geophysics from gempy_engine.modules.geophysics.gravity_gradient import calculate_gravity_gradient __all__ = [ 'create_data_legacy', 'create_geomodel', 'structural_elements_from_borehole_set', 'compute_model', 'compute_model_at', 'map_stack_to_surfaces', 'set_section_grid', 'set_active_grid', 'set_topography_from_random', 'set_topography_from_file', 'set_topography_from_subsurface_structured_grid', 'set_topography_from_arrays', 'set_custom_grid', 'set_centered_grid', 'generate_example_model', 'set_fault_relation', 'set_is_fault', 'set_is_finite_fault', 'add_surface_points', 'add_orientations', 'delete_surface_points', 'delete_orientations', 'create_orientations_from_surface_points_coords', 'modify_surface_points', 'modify_orientations', 'add_structural_group', 'remove_structural_group_by_index', 'remove_structural_group_by_name', 'remove_element_by_name', 'calculate_gravity_gradient', 'save_model', 'load_model' ] ================================================ FILE: gempy/API/_version.py ================================================ ================================================ FILE: gempy/API/compute_API.py ================================================ import dotenv import numpy as np import os from typing import Optional import gempy_engine from gempy_engine.config import AvailableBackends from gempy_engine.core.backend_tensor import BackendTensor from gempy_engine.core.data import Solutions from .grid_API import set_custom_grid from ..core.data import StructuralGroup from ..core.data.gempy_engine_config import GemPyEngineConfig from ..core.data.geo_model import GeoModel from ..modules.data_manipulation import interpolation_input_from_structural_frame from ..modules.optimize_nuggets import nugget_optimizer dotenv.load_dotenv() def compute_model(gempy_model: GeoModel, engine_config: Optional[GemPyEngineConfig] = None, **kwargs) -> Solutions: """ Compute the geological model given the provided GemPy model. Args: gempy_model (GeoModel): The GemPy model to compute. engine_config (Optional[GemPyEngineConfig]): Configuration for the computational engine. Defaults to None, in which case a default configuration will be used. Raises: ValueError: If the provided backend in the engine_config is not supported. Returns: Solutions: The computed geological model. """ engine_config = engine_config or GemPyEngineConfig(use_gpu=False) match engine_config.backend: case AvailableBackends.numpy | AvailableBackends.PYTORCH: BackendTensor.change_backend_gempy( engine_backend=engine_config.backend, use_gpu=engine_config.use_gpu, dtype=engine_config.dtype ) # TODO: To decide what to do with this. interpolation_input = interpolation_input_from_structural_frame(gempy_model) gempy_model.taped_interpolation_input = interpolation_input # * This is used for gradient tape gempy_model.solutions = gempy_engine.compute_model( interpolation_input=interpolation_input, options=gempy_model.interpolation_options, data_descriptor=gempy_model.input_data_descriptor, geophysics_input=gempy_model.geophysics_input, ) case _: raise ValueError(f'Backend {engine_config} not supported') if os.getenv("VALIDATE_SERIALIZATION", "False") == "True" and kwargs.get("validate_serialization", True): from ..modules.serialization.save_load import save_model import tempfile with tempfile.NamedTemporaryFile(mode='w+', delete=True) as tmp: save_model(model=gempy_model, path=tmp.name, validate_serialization=True) return gempy_model.solutions def compute_model_at(gempy_model: GeoModel, at: np.ndarray, engine_config: Optional[GemPyEngineConfig] = None) -> np.ndarray: """ Compute the geological model at specific coordinates. Note: This function sets a custom grid and computes the model so be wary of side effects. Args: gempy_model (GeoModel): The GemPy model to compute. at (np.ndarray): The coordinates at which to compute the model. engine_config (Optional[GemPyEngineConfig], optional): Configuration for the computational engine. Defaults to None, in which case a default configuration will be used. Returns: np.ndarray: The computed geological model at the specified coordinates. """ print("WARNING: This function sets a custom grid and computes the model so be wary of side effects.") set_custom_grid( grid=gempy_model.grid, xyz_coord=at, reset=True ) sol = compute_model(gempy_model, engine_config, validate_serialization=True) return sol.raw_arrays.custom def optimize_nuggets(geo_model: GeoModel, engine_config: GemPyEngineConfig, max_epochs: int = 10, convergence_criteria: float = 1e5, only_groups:list[StructuralGroup] | None = None) -> GeoModel: """ Optimize the nuggets of the interpolation input of the provided model. """ if engine_config.backend != AvailableBackends.PYTORCH: raise ValueError(f'Only PyTorch backend is supported for optimization. Received {engine_config.backend}') geo_model = nugget_optimizer( target_cond_num=convergence_criteria, engine_cfg=engine_config, model=geo_model, max_epochs=max_epochs, only_groups=only_groups ) return geo_model def optimize_and_compute(geo_model: GeoModel, engine_config: GemPyEngineConfig, max_epochs: int = 10, convergence_criteria: float = 1e5): optimize_nuggets(geo_model, engine_config, max_epochs, convergence_criteria) geo_model.solutions = gempy_engine.compute_model( interpolation_input=geo_model.taped_interpolation_input, options=geo_model.interpolation_options, data_descriptor=geo_model.input_data_descriptor, geophysics_input=geo_model.geophysics_input, ) return geo_model.solutions ================================================ FILE: gempy/API/examples_generator.py ================================================ import os import numpy as np import gempy as gp from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.core.data.enumerators import ExampleModel def generate_example_model(example_model: ExampleModel, compute_model: bool = True) -> gp.data.GeoModel: match example_model: case ExampleModel.HORIZONTAL_STRAT: return _generate_horizontal_stratigraphic_model(compute_model) case ExampleModel.ANTICLINE: return _generate_anticline_model(compute_model) case ExampleModel.ONE_FAULT: return _generate_one_fault_model(compute_model) case ExampleModel.TWO_AND_A_HALF_D: return _generate_2_5d_model(compute_model) case ExampleModel.COMBINATION: return _generate_combination_model(compute_model) case ExampleModel.ONE_FAULT_GRAVITY: return _generate_one_fault_model_gravity(compute_model) case ExampleModel.GRABEN: return _generate_graben_model(compute_model) case ExampleModel.GREENSTONE: return _generate_greenstone_model(compute_model) case ExampleModel.FAULT_RELATION: return _generate_fault_relation_model(compute_model) case _: raise NotImplementedError(f"Example model {example_model} not implemented.") def _generate_2_5d_model(compute_model: bool) -> gp.data.GeoModel: geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Model1', extent=[0, 791, -200, 200, -582, 0], resolution=[50, 50, 50], refinement=1, structural_frame=gp.data.StructuralFrame.initialize_default_structure() ) gp.add_surface_points( geo_model=geo_model, x=[223, 458, 612], y=[0.01, 0, 0], z=[-94, -197, -14], elements_names='surface1' ) gp.add_orientations( geo_model=geo_model, x=[350], y=[1], z=[-300], elements_names=['surface1'], pole_vector=[[0, 0, 1]] ) geo_model.update_transform(gp.data.GlobalAnisotropy.NONE) # * Remove the auto anisotropy for this 2.5D model element2 = gp.data.StructuralElement( name='surface2', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([225, 459]), y=np.array([0, 0]), z=np.array([-269, -279]), names='surface2' ), orientations=gp.data.OrientationsTable.initialize_empty() ) geo_model.structural_frame.structural_groups[0].append_element(element2) element3 = gp.data.StructuralElement( name='surface3', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([225, 464, 619]), y=np.array([0, 0, 0]), z=np.array([-439, -456, -433]), names='surface3' ), orientations=gp.data.OrientationsTable.initialize_empty() ) geo_model.structural_frame.structural_groups[0].append_element(element3) element_fault = gp.data.StructuralElement( name='fault1', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([550, 650]), y=np.array([0, 0]), z=np.array([-30, -200]), names='fault1' ), orientations=gp.data.OrientationsTable.from_arrays( x=np.array([600]), y=np.array([0]), z=np.array([-100]), G_x=np.array([.3]), G_y=np.array([0]), G_z=np.array([.3]), names='fault1' ) ) group_fault = gp.data.StructuralGroup( name='Fault1', elements=[element_fault], structural_relation=gp.data.StackRelationType.FAULT, fault_relations=gp.data.FaultsRelationSpecialCase.OFFSET_ALL ) geo_model.structural_frame.insert_group(0, group_fault) # * We are placing it already in the right place so we do not need to map anything gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.9, d_z=np.array([-150, 0]), topography_resolution=np.array([50, 40]) ) if compute_model: gp.compute_model(geo_model) return geo_model def _generate_horizontal_stratigraphic_model(compute_model: bool) -> gp.data.GeoModel: """ Function to create a geological model of horizontally stacked layers, map the geological series to surfaces, and compute the geological model. """ # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' # Create a GeoModel instance geo_data = gp.create_geomodel( project_name='horizontal', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[50, 5, 50], refinement=3, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/jan_models/model1_orientations.csv", path_to_surface_points=data_path + "/data/input_data/jan_models/model1_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) if compute_model: # Compute the geological model gp.compute_model(geo_data) return geo_data def _generate_anticline_model(compute_model: bool) -> gp.data.GeoModel: """ Function to create a geological model of an anticline structure, map the geological series to surfaces, and compute the geological model. """ # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance geo_data: gp.data.GeoModel = gp.create_geomodel( project_name='fold', extent=[0, 1000, 0, 1000, 0, 1000], refinement=5, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model2_orientations.csv", path_to_surface_points=path_to_data + "model2_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) if compute_model: # Compute the geological model gp.compute_model(geo_data) return geo_data def _generate_one_fault_model(compute_model: bool) -> gp.data.GeoModel: """ Function to create a simple fault model, map the geological series to surfaces, and compute the geological model. """ # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance geo_data = gp.create_geomodel( project_name='fault', extent=[0, 1000, 0, 1000, 0, 1000], refinement=6, # resolution=[20, 20, 20], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model5_orientations.csv", path_to_surface_points=path_to_data + "model5_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_Series": 'fault', "Strat_Series": ('rock2', 'rock1') } ) # Define fault groups geo_data.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT geo_data.structural_frame.fault_relations = np.array([[0, 1], [0, 0]]) gp.set_is_fault( frame=geo_data, fault_groups=['Fault_Series'] ) if compute_model: # Compute the geological model gp.compute_model(geo_data) return geo_data def _generate_combination_model(compute_model: bool) -> gp.data.GeoModel: """ Function to create a model with a folded domain featuring an unconformity and a fault, map the geological series to surfaces, and compute the geological model. """ # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance geo_data = gp.create_geomodel( project_name='combination', extent=[0, 2500, 0, 1000, 0, 1000], refinement=4, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model7_orientations.csv", path_to_surface_points=path_to_data + "model7_surface_points.csv" ), legacy_octree_init=False ) geo_data.interpolation_options.evaluation_options.number_octree_levels_surface = 4 # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_Series" : ('fault'), "Strat_Series1": ('rock3'), "Strat_Series2": ('rock2', 'rock1'), } ) # Define the structural relation geo_data.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT geo_data.structural_frame.fault_relations = np.array( [[0, 1, 1], [0, 0, 0], [0, 0, 0]] ) # Compute the geological model if compute_model: gp.compute_model( gempy_model=geo_data, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy ) ) return geo_data def _generate_one_fault_model_gravity(compute_model): from gempy_engine.core.backend_tensor import BackendTensor from gempy.optional_dependencies import require_pandas pd = require_pandas() resolution = [150, 10, 150] extent = [0, 200, -100, 100, -100, 0] # %% # Configure GemPy for geological modeling with PyTorch backend BackendTensor.change_backend_gempy(engine_backend=gp.data.AvailableBackends.PYTORCH, dtype="float64") geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Fault model', extent=extent, resolution=resolution, structural_frame=gp.data.StructuralFrame.initialize_default_structure() ) interpolation_options = geo_model.interpolation_options interpolation_options.mesh_extraction = False interpolation_options.kernel_options.range = .7 interpolation_options.kernel_options.c_o = 3 interpolation_options.kernel_options.compute_condition_number = True gp.add_surface_points( geo_model=geo_model, x=[40, 60, 120, 140], y=[0, 0, 0, 0], z=[-50, -50, -60, -60], elements_names=['surface1', 'surface1', 'surface1', 'surface1'] ) gp.add_orientations( geo_model=geo_model, x=[130], y=[0], z=[-50], elements_names=['surface1'], pole_vector=[[0, 0, 1.]] ) # Define second element element2 = gp.data.StructuralElement( name='surface2', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([120]), y=np.array([0]), z=np.array([-40]), names='surface2' ), orientations=gp.data.OrientationsTable.initialize_empty() ) # Add second element to structural frame geo_model.structural_frame.structural_groups[0].append_element(element2) # add fault # Calculate orientation from point values fault_point_1 = (80, -20) fault_point_2 = (110, -80) # calculate angle angle = np.arctan((fault_point_2[0] - fault_point_1[0]) / (fault_point_2[1] - fault_point_1[1])) x = np.cos(angle) z = - np.sin(angle) element_fault = gp.data.StructuralElement( name='fault1', color=next(geo_model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([fault_point_1[0], fault_point_2[0]]), y=np.array([0, 0]), z=np.array([fault_point_1[1], fault_point_2[1]]), names='fault1' ), orientations=gp.data.OrientationsTable.from_arrays( x=np.array([fault_point_1[0]]), y=np.array([0]), z=np.array([fault_point_1[1]]), G_x=np.array([x]), G_y=np.array([0]), G_z=np.array([z]), names='fault1' ) ) group_fault = gp.data.StructuralGroup( name='Fault1', elements=[element_fault], structural_relation=gp.data.StackRelationType.FAULT, fault_relations=gp.data.FaultsRelationSpecialCase.OFFSET_ALL ) # Insert the fault group into the structural frame: geo_model.structural_frame.insert_group(0, group_fault) # %% md ## Compute model # %% geo_model.update_transform(gp.data.GlobalAnisotropy.NONE) interesting_columns = pd.DataFrame() # x_vals = np.arange(20, 191, 10) x_vals = np.linspace(20, 191, 6) interesting_columns['X'] = x_vals interesting_columns['Y'] = np.zeros_like(x_vals) # Configuring the data correctly is key for accurate gravity calculations. device_location = interesting_columns[['X', 'Y']] device_location['Z'] = 0 # Add a Z-coordinate # Set up a centered grid for geophysical calculations # This grid will be used for gravity gradient calculations. gp.set_centered_grid( grid=geo_model.grid, centers=device_location, resolution=np.array([75 / 3, 5, 150 / 3]), radius=np.array([150, 10, 300]) ) # Calculate the gravity gradient using GemPy # Gravity gradient data is critical for geophysical modeling and inversion. gravity_gradient = gp.calculate_gravity_gradient(geo_model.grid.centered_grid) densities_tensor = BackendTensor.t.array([2., 2., 3., 2.]) densities_tensor.requires_grad = True # Set geophysics input for the GemPy model # Configuring this input is crucial for the forward gravity calculation. geo_model.geophysics_input = gp.data.GeophysicsInput( tz=BackendTensor.t.array(gravity_gradient), densities=densities_tensor ) # %% # Compute the geological model with geophysical data # This computation integrates the geological model with gravity data. if compute_model: sol = gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, dtype='float32', use_gpu=True ) ) grav = - sol.gravity grav[0].backward() return geo_model def _generate_graben_model(compute_model: bool) -> gp.data.GeoModel: # Data path is in root/examples/data # script_dir = os.path.dirname(os.path.abspath(__file__)) # data_path = os.path.join(script_dir, '.../examples/') # n_model = 7 # https: // github.com / gempy - project / gempy / blob / 279 # bbe904283e16320c54d868fe74be873177cca / examples / data / input_data / lisa_models / interfaces7.csv # csv_ = data_path + "/data/input_data/lisa_models/foliations" + n_model + ".csv" data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/lisa_models/" geo_data: gp.data.GeoModel = gp.create_geomodel( project_name="Graben", extent=[0, 2000, 0, 2000, 0, 1600], resolution=[50, 50, 50], refinement=6, # * For this model is better not to use octrees because we want to see what is happening in the scalar fields importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "foliations7.csv", path_to_surface_points=path_to_data + "interfaces7.csv" ) ) gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={ "Fault_1" : 'Fault_1', "Fault_2": 'Fault_2', "Strat_Series": ('Sandstone', 'Siltstone', 'Shale', 'Sandstone_2', 'Schist', 'Gneiss') }, ) gp.set_is_fault(geo_data, ['Fault_1', 'Fault_2']) if compute_model: sol = gp.compute_model(gempy_model=geo_data) return geo_data def _generate_greenstone_model(compute_model: bool) -> gp.data.GeoModel: test_dir = os.path.dirname(os.path.abspath(__file__)) # Build the path relative to the test file location path = os.path.join(test_dir, '..', '..', 'examples', 'data', 'gempy_models', 'Greenstone.gempy') with open(path, 'rb') as f: binary_file = f.read() from gempy.modules.serialization.save_load import _load_model_from_bytes geo_model: gp.data.GeoModel = _load_model_from_bytes(binary_file) if compute_model: sol = gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy, dtype='float32' ) ) return geo_model def _generate_fault_relation_model(compute_model: bool) -> gp.data.GeoModel: # Path to input data test_dir = os.path.dirname(os.path.abspath(__file__)) data_path = os.path.join(test_dir, '..', '..', 'examples', 'data', 'input_data', 'tests') # data_path = os.path.join(test_dir, "..\\..\\examples\\data\\input_data\\tests\\") # Create instance of new geomodel geo_model = gp.create_geomodel( project_name='fault_reations_test', extent=[0, 1000, 0, 1000, -1000, -400], resolution=[20, 20, 20], refinement=4, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/fault_relations_test_ori.csv", path_to_surface_points=data_path + "/fault_relations_test_surf.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "fault_series_1": ('fault1'), "fault_series_2": ('fault2'), "series_1" : ('rock4', 'rock3'), "default_series": ('rock2', 'rock1') } ) gp.set_is_fault(geo_model, ["fault_series_1", "fault_series_2"]) gp.set_fault_relation( frame=geo_model.structural_frame, rel_matrix=np.array([ [0, 1, 1, 1], [0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0] ] ) ) geo_model.input_transform.apply_anisotropy(gp.data.GlobalAnisotropy.NONE) if compute_model: sol = gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy, dtype='float32' ), validate_serialization=False ) return geo_model ================================================ FILE: gempy/API/faults_API.py ================================================ from typing import Union import numpy as np from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.core.data import GeoModel, StructuralFrame from gempy.core.data.structural_group import StructuralGroup, FaultsRelationSpecialCase def set_is_fault(frame: Union[GeoModel, StructuralFrame], fault_groups: Union[list[str], list[StructuralGroup]], faults_relation_type: FaultsRelationSpecialCase = FaultsRelationSpecialCase.OFFSET_FORMATIONS, change_color: bool = True) -> StructuralFrame: """ Sets given groups as fault in the structural frame of the GeoModel. It can optionally change the color of these groups. Args: frame (Union[GeoModel, StructuralFrame]): GeoModel or its StructuralFrame to be modified. fault_groups (Union[list[str], list[StructuralGroup]]): Groups to be set as faults. faults_relation_type (FaultsRelationSpecialCase, optional): Faults relation type to be set. Defaults to FaultsRelationSpecialCase.OFFSET_FORMATIONS. change_color (bool, optional): If True, changes the color of the fault groups. Defaults to True. Returns: StructuralFrame: The updated StructuralFrame object. """ if isinstance(frame, GeoModel): frame = frame.structural_frame frame = _find_and_set_fields( frame=frame, fault_groups=fault_groups, faults_relation_type=faults_relation_type, stack_relation_type=StackRelationType.FAULT, change_color=change_color ) # * TODO: Set the fault colors return frame def unset_is_fault(frame: Union[GeoModel, StructuralFrame], fault_groups: Union[list[str], list[StructuralGroup]]) -> StructuralFrame: """ Unsets given groups as fault in the structural frame of the GeoModel. Args: frame (Union[GeoModel, StructuralFrame]): GeoModel or its StructuralFrame to be modified. fault_groups (Union[list[str], list[StructuralGroup]]): Groups to be unset as faults. Returns: StructuralFrame: The updated StructuralFrame object. """ if isinstance(frame, GeoModel): frame = frame.structural_frame frame = _find_and_set_fields( frame=frame, fault_groups=fault_groups, faults_relation_type=FaultsRelationSpecialCase.OFFSET_NONE, stack_relation_type=StackRelationType.ERODE, change_color=False ) return frame def set_fault_relation(frame: Union[GeoModel, StructuralFrame], rel_matrix: np.ndarray) -> StructuralFrame: """ Sets the fault relations in the structural frame of the GeoModel. Args: frame (Union[GeoModel, StructuralFrame]): GeoModel or its StructuralFrame to be modified. rel_matrix (np.ndarray): Fault relation matrix to be set. Returns: StructuralFrame: The updated StructuralFrame object. """ if isinstance(frame, GeoModel): frame = frame.structural_frame frame.fault_relations = rel_matrix return frame def set_is_finite_fault(self, series_fault=None, toggle: bool = True): """""" raise NotImplementedError s = self._faults.set_is_finite_fault(series_fault, toggle) # change df in Fault obj # change shared aesara variable for infinite factor self._interpolator.set_aesara_shared_is_finite() return s # TODO: Move to a faults module def _find_and_set_fields(frame: StructuralFrame, fault_groups: list[StructuralGroup], faults_relation_type: FaultsRelationSpecialCase, stack_relation_type: StackRelationType, change_color: bool) -> StructuralFrame: for index, group in enumerate(fault_groups): if isinstance(group, str): group = next((g for g in frame.structural_groups if g.name == group), None) if isinstance(group, StructuralGroup): group.structural_relation = stack_relation_type group.fault_relations = faults_relation_type # * Set the default fault relations if change_color: for element in group.elements: element.color = '#527682' else: raise ValueError(f"Could not find group '{group}' in structural frame.") return frame ================================================ FILE: gempy/API/gp2_gp3_compatibility/__init__.py ================================================ ================================================ FILE: gempy/API/gp2_gp3_compatibility/gp3_to_gp2_input.py ================================================ from gempy.core.data import GeoModel from gempy.core.data.orientations import OrientationsTable from gempy.core.data.surface_points import SurfacePointsTable from gempy.optional_dependencies import require_gempy_legacy def gempy3_to_gempy2(geo_model: GeoModel) -> "gempy_legacy.Project": gl = require_gempy_legacy() legacy_model: "gempy_legacy.Project" = gl.create_model(project_name=geo_model.meta.name) surface_points: SurfacePointsTable = geo_model.structural_frame.surface_points surface_points_df = surface_points.df # This is a property surface_points_df['surfaces'] = surface_points_df['id'].map(geo_model.structural_frame.element_id_name_map) orientations: OrientationsTable = geo_model.structural_frame.orientations orientations_df = orientations.df orientations_df['surfaces'] = orientations_df['id'].map(geo_model.structural_frame.element_id_name_map) # * Set data gl.init_data( geo_model=legacy_model, extent=geo_model.grid.regular_grid.extent, resolution=geo_model.grid.regular_grid.resolution, surface_points_df=surface_points_df, orientations_df=orientations_df ) # # * Map StructuralFrame mapper: dict[str, list[str]] = geo_model.structural_frame.groups_to_mapper gl.map_stack_to_surfaces( geo_model=legacy_model, mapping_object=mapper ) legacy_model.add_surfaces("basement") return legacy_model ================================================ FILE: gempy/API/gp2_gp3_compatibility/gp3_to_gp2_output.py ================================================ import numpy as np from gempy import Project, Solution from gempy_engine.core.data.dual_contouring_mesh import DualContouringMesh from gempy_engine.core.data.octree_level import OctreeLevel from gempy_engine.core.data.solutions import Solutions from gempy_engine.modules.octrees_topology.octrees_topology_interface import get_regular_grid_value_for_level def set_gp3_solutions_to_gp2_solution(gp3_solution: Solutions, geo_model: Project) -> Solution: octree_lvl = -1 octree_output: OctreeLevel = gp3_solution.octrees_output[octree_lvl] regular_grid_scalar = get_regular_grid_value_for_level(gp3_solution.octrees_output).astype("int8") _set_block_matrix(geo_model, octree_output) _set_lith_block(geo_model, octree_output) _set_scalar_field(geo_model, octree_output) _set_scalar_field_at_surface_points(geo_model, octree_output) meshes: list[DualContouringMesh] = gp3_solution.dc_meshes geo_model.set_surface_order_from_solution() if meshes: _set_surfaces_meshes(geo_model, meshes) return geo_model.solutions def _set_surfaces_meshes(geo_model: Project, meshes: list[DualContouringMesh]) -> Project: geo_model.solutions.vertices = [mesh.vertices for mesh in meshes] geo_model.solutions.edges = [mesh.edges for mesh in meshes] rescaling_factor: float = geo_model._additional_data.rescaling_data.df.loc['values', 'rescaling factor'] shift: np.array = geo_model._additional_data.rescaling_data.df.loc['values', 'centers'] surfaces_df = geo_model.solutions.surfaces.df idx_of_vertices = surfaces_df.columns.get_loc('vertices') idx_of_edges = surfaces_df.columns.get_loc('edges') # flip mesh 4 and 5 # meshed_flipped = [ meshes[0], meshes[1], meshes[2], meshes[4], meshes[3]] bug: meshes are not in the right order yet in_ = meshes for i in range(0, len(meshes)): surfaces_df.iloc[i, idx_of_vertices] = [(in_[i].vertices - 0.5001) * rescaling_factor + shift] # ! remember the 0.5001 surfaces_df.iloc[i, idx_of_edges] = [in_[i].edges] return geo_model def _set_block_matrix(geo_model: Project, octree_output: OctreeLevel) -> Project: temp_list = [] for i in range(octree_output.number_of_outputs): temp_list.append(octree_output.outputs[i].values_block) block_matrix_stacked = np.vstack(temp_list) geo_model.solutions.block_matrix = block_matrix_stacked return geo_model def _set_scalar_field(geo_model: Project, octree_output: OctreeLevel) -> Project: temp_list = [] for i in range(octree_output.number_of_outputs): temp_list.append(octree_output.outputs[i].scalar_fields.exported_fields.scalar_field) scalar_field_stacked = np.vstack(temp_list) geo_model.solutions.scalar_field_matrix = scalar_field_stacked return geo_model def _set_scalar_field_at_surface_points(geo_model: Project, octree_output: OctreeLevel) -> Project: temp_list = [] for i in range(octree_output.number_of_outputs): temp_list.append(octree_output.outputs[i].scalar_fields.exported_fields.scalar_field_at_surface_points) geo_model.solutions.scalar_field_at_surface_points = temp_list return geo_model def _set_lith_block(geo_model: Project, octree_output: OctreeLevel) -> Project: block = octree_output.last_output_center.ids_block block[block == 0] = block.max() + 1 geo_model.solutions.lith_block = block return geo_model ================================================ FILE: gempy/API/grid_API.py ================================================ from typing import Union, Sequence import numpy as np from ..core.data import Grid from ..core.data.grid_modules import CustomGrid, Sections from ..core.data.grid_modules.topography import Topography from ..modules.grids.create_topography import create_random_topography from ..optional_dependencies import require_subsurface def set_section_grid(grid: Grid, section_dict: dict): if grid.sections is None: grid.sections = Sections( z_ext=grid.regular_grid.extent[4:], section_dict=section_dict ) else: grid.sections.set_sections(section_dict, regular_grid=grid.regular_grid) set_active_grid(grid, [Grid.GridTypes.SECTIONS]) return grid.sections def set_topography_from_random(grid: Grid, fractal_dimension: float = 2.0, d_z: Union[Sequence, None] = None, topography_resolution: Union[Sequence, None] = None): """ Sets the topography of the grid using a randomly generated topography. Args: grid (Grid): The grid object on which to set the topography. fractal_dimension (float, optional): The fractal dimension of the random topography. Defaults to 2.0. d_z (Union[Sequence, None], optional): The sequence of elevation increments for the random topography. If None, a default sequence will be used. Defaults to None. topography_resolution (Union[Sequence, None], optional): The resolution of the random topography. If None, the resolution of the grid's regular grid will be used. Defaults to None. Returns: The topography object that was set on the grid. Example: >>> grid = Grid() >>> set_topography_from_random(grid, fractal_dimension=1.5, d_z=[0.1, 0.2, 0.3], topography_resolution=[10, 10]) Note: If topography_resolution is None, the resolution of the grid's regular grid will be used. If d_z is None, a default sequence of elevation increments will be used. """ if topography_resolution is None: topography_resolution = grid.regular_grid.resolution random_topography: np.ndarray = create_random_topography( extent=grid.regular_grid.extent, resolution=topography_resolution, dz=d_z, fractal_dimension=fractal_dimension ) grid.topography = Topography( _regular_grid=grid.regular_grid, values_2d=random_topography ) set_active_grid(grid, [Grid.GridTypes.TOPOGRAPHY]) return grid.topography def set_topography_from_subsurface_structured_grid(grid: Grid, struct: "subsurface.StructuredData"): grid.topography = Topography.from_subsurface_structured_data(struct, grid.regular_grid) set_active_grid(grid, [Grid.GridTypes.TOPOGRAPHY]) return grid.topography def set_topography_from_arrays(grid: Grid, xyz_vertices: np.ndarray): grid.topography = Topography.from_unstructured_mesh(grid.regular_grid, xyz_vertices) set_active_grid(grid, [Grid.GridTypes.TOPOGRAPHY]) return grid.topography def set_topography_from_file(grid: Grid, filepath: str, crop_to_extent: Union[Sequence, None] = None): ss = require_subsurface() struct: ss.StructuredData = ss.modules.reader.read_structured_topography( path=filepath, crop_to_extent=crop_to_extent ) return set_topography_from_subsurface_structured_grid(grid, struct) def set_custom_grid(grid: Grid, xyz_coord: np.ndarray, reset: bool = False): custom_grid = CustomGrid(values=xyz_coord) grid.custom_grid = custom_grid set_active_grid(grid, grid_type=[Grid.GridTypes.CUSTOM], reset=reset) return grid.custom_grid def set_centered_grid(grid: Grid, centers: np.ndarray, resolution: Sequence[float], radius: Union[float, Sequence[float]]): from gempy_engine.core.data.centered_grid import CenteredGrid centered_grid = CenteredGrid( centers=centers, resolution=resolution, radius=radius ) grid.centered_grid = centered_grid set_active_grid(grid, [Grid.GridTypes.CENTERED]) return grid.centered_grid def set_topography_from_gdal(): raise NotImplementedError("This is not implemented yet") def set_topography_from_array(): raise NotImplementedError("This is not implemented yet") def set_active_grid(grid: Grid, grid_type: list[Grid.GridTypes], reset: bool = False): if reset is True: grid.active_grids = Grid.GridTypes.NONE for grid_type in grid_type: grid.active_grids |= grid_type grid._update_values() print(f'Active grids: {grid.active_grids}') return grid ================================================ FILE: gempy/API/implicit_functions.py ================================================ from ..modules.custom_implicit_functions.ellipsoid_implicit_function import ellipsoid_3d_factory __all__ = ['ellipsoid_3d_factory'] ================================================ FILE: gempy/API/initialization_API.py ================================================ import warnings from typing import Union, Hashable, Literal import numpy as np from numpy import ndarray from gempy.API.io_API import read_surface_points, read_orientations from gempy_engine.core.data import InterpolationOptions from ..core.data import StructuralElement from ..core.data.geo_model import GeoModel from ..core.data.grid import Grid from ..core.data.importer_helper import ImporterHelper from ..core.data.options import InterpolationOptionsType from ..core.data.orientations import OrientationsTable from ..core.data.structural_frame import StructuralFrame from ..core.data.surface_points import SurfacePointsTable from ..optional_dependencies import require_pooch from ..optional_dependencies import require_subsurface def create_geomodel( *, project_name: str = 'default_project', extent: Union[list, ndarray] = None, resolution: Union[list, ndarray] = None, refinement: int = 1, structural_frame: StructuralFrame = None, importer_helper: ImporterHelper = None, intpolation_options_tye: InterpolationOptionsType = InterpolationOptionsType.OCTREE, **kwargs ) -> GeoModel: # ? Do I need to pass pandas read kwargs? """ Creates a geological model based on input parameters, spatial configuration, and interpolation options. This function initializes a geological model by defining the grid (dense grid or octree-based), selecting interpolation options based on the desired type, and configuring the structural frame using either a provided structural frame or an importer helper instance. The geological model is tailored for specific project-based requirements and can be either dense or with variable resolution depending on the refinement level. Args: project_name (str): Name of the geological model project. Defaults to 'default_project'. extent (list, ndarray): Spatial extent of the geological model in the form of [min_x, max_x, min_y, max_y, min_z, max_z]. resolution (list, ndarray): Resolution of the model grid in the form [x_res, y_res, z_res]. If not provided, the function will default to octree initialization. refinement (int): Refinement level for the octree grid. Ignored if resolution is provided. Defaults to 1. structural_frame (StructuralFrame): Pre-configured instance of StructuralFrame for the geological model. If not provided, an importer_helper must be supplied. importer_helper (ImporterHelper): Helper object for initializing a structural frame if none is explicitly provided. intpolation_options_tye (InterpolationOptionsType): Enum representing the desired type of interpolation options. Defaults to InterpolationOptionsType.OCTREE. Returns: GeoModel: An initialized geological model with specified spatial configuration and interpolation properties. Raises: ValueError: If neither structural_frame nor importer_helper is provided. ValueError: If the interpolation options type is unrecognized. """ # init resolutions well if resolution is None: grid: Grid = Grid.init_octree_grid( extent=extent, octree_levels=refinement, legacy=kwargs.get('legacy_octree_init', False) ) else: grid: Grid = Grid.init_dense_grid( extent=extent, resolution=resolution ) match intpolation_options_tye: case InterpolationOptionsType.DENSE_GRID: interpolation_options: InterpolationOptions = InterpolationOptions.init_dense_grid_options() case InterpolationOptionsType.OCTREE: interpolation_options: InterpolationOptions = InterpolationOptions.init_octree_options(refinement=refinement) case _: raise ValueError(f"Interpolation options type {intpolation_options_tye} not recognized. Use InterpolationOptionsType.DENSE_GRID or InterpolationOptionsType.OCTREE.") match (structural_frame, importer_helper): case (None, None): # ? For now my gut feeling is that is better to pass the structural frame explicitly raise ValueError("Either structural_frame or importer_helper must be provided. You can use StructuralFrame.initialize_default_structure() to create a default structural frame.") structural_frame = StructuralFrame.initialize_default_structure() case (None, _): structural_frame = _initialize_structural_frame(importer_helper) case _: pass geo_model: GeoModel = GeoModel.from_args( name=project_name, structural_frame=structural_frame, grid=grid, interpolation_options=interpolation_options ) return geo_model def structural_elements_from_borehole_set( borehole_set: "subsurface.core.geological_formats.BoreholeSet", elements_dict: dict, group_by: Literal['component lith', 'lith_ids'] = 'lith_ids' ) -> list[StructuralElement]: """Creates a list of StructuralElements from a BoreholeSet. Args: borehole_set (subsurface.core.geological_formats.BoreholeSet): The BoreholeSet object containing the boreholes. elements_dict (dict): A dictionary containing the properties of the structural elements to be created. Returns: list[StructuralElement]: A list of StructuralElement objects created from the borehole set. Raises: ValueError: If a top lithology ID specified in `elements_dict` is not found in the borehole set. """ ss = require_subsurface() borehole_set: ss.core.geological_formats.BoreholeSet elements = [] component_lith: dict[Hashable, np.ndarray] = borehole_set.get_bottom_coords_for_each_lith(group_by=group_by) for name, properties in elements_dict.items(): top_coordinates = component_lith.get(properties['id']) if top_coordinates is None: raise ValueError(f"Top lithology {properties['id']} not found in borehole set.") element = StructuralElement( name=name, id=properties['id'], color=properties['color'], surface_points=SurfacePointsTable.from_arrays( x=top_coordinates[:, 0], y=top_coordinates[:, 1], z=top_coordinates[:, 2], names=[name], name_id_map={name: properties['id']} ), orientations=OrientationsTable(np.zeros(0, dtype=OrientationsTable.dt)) ) elements.append(element) # Reverse the list to have the oldest rocks at the bottom return elements def create_data_legacy( *, project_name: str = 'default_project', extent: Union[list, ndarray] = None, resolution: Union[list, ndarray] = None, path_i: str = None, path_o: str = None) -> GeoModel: # ? Do I need to pass pandas read kwargs? warnings.warn("This method is deprecated. Use create_geomodel instead.", DeprecationWarning) return create_geomodel( project_name=project_name, extent=extent, resolution=resolution, importer_helper=ImporterHelper( path_to_surface_points=path_i, path_to_orientations=path_o ) ) def _initialize_structural_frame(importer_helper: ImporterHelper) -> StructuralFrame: surface_points, orientations = _read_input_points(importer_helper) return StructuralFrame.from_data_tables(surface_points, orientations) def _read_input_points(importer_helper: ImporterHelper) -> (SurfacePointsTable, OrientationsTable): orientations_file, surface_points_file = _fetch_data_with_pooch( orientations_hash=importer_helper.hash_orientations, orientations_path=importer_helper.path_to_orientations, surface_points_hash=importer_helper.hash_surface_points, surface_points_path=importer_helper.path_to_surface_points ) surface_points: SurfacePointsTable = read_surface_points( path=surface_points_file, coord_x_name=importer_helper.coord_x_name, coord_y_name=importer_helper.coord_y_name, coord_z_name=importer_helper.coord_z_name, surface_name=importer_helper.surface_name, pandas_kwargs=importer_helper.pandas_reader_kwargs ) orientations: OrientationsTable = read_orientations( path=orientations_file, coord_x_name=importer_helper.coord_x_name, coord_y_name=importer_helper.coord_y_name, coord_z_name=importer_helper.coord_z_name, surface_name=importer_helper.surface_name, gx_name=importer_helper.gx_name, gy_name=importer_helper.gy_name, gz_name=importer_helper.gz_name, pandas_kwargs=importer_helper.pandas_reader_kwargs, name_id_map=surface_points.name_id_map ) return surface_points, orientations def _fetch_data_with_pooch(orientations_hash, orientations_path, surface_points_hash, surface_points_path): def is_url(url): from urllib.parse import urlparse try: result = urlparse(url) return all([result.scheme, result.netloc]) except ValueError: return False pooch = require_pooch() if is_url(surface_points_path) or is_url(orientations_path) else None # * Fetch or define path for surface points if is_url(surface_points_path): surface_points_file = pooch.retrieve( url=surface_points_path, known_hash=surface_points_hash ) print("Surface points hash: ", pooch.file_hash(surface_points_file)) else: surface_points_file = surface_points_path # * Fetch or define path for orientations if is_url(orientations_path): orientations_file = pooch.retrieve( url=orientations_path, known_hash=orientations_hash ) print("Orientations hash: ", pooch.file_hash(orientations_file)) else: orientations_file = orientations_path return orientations_file, surface_points_file ================================================ FILE: gempy/API/io_API.py ================================================ from typing import Optional import numpy as np from gempy.core.data.orientations import OrientationsTable from gempy.core.data.surface_points import SurfacePointsTable from gempy.optional_dependencies import require_pandas def read_surface_points(path: str, coord_x_name="X", coord_y_name="Y", coord_z_name="Z", surface_name="formation", name_id_map: Optional[dict[str, int]] = None, pandas_kwargs: dict = None) -> SurfacePointsTable: pandas_kwargs = pandas_kwargs or {} if 'sep' not in pandas_kwargs: pandas_kwargs['sep'] = ',' pd = require_pandas() csv = pd.read_csv(path, **pandas_kwargs) csv = _standardize(csv) surface_points: SurfacePointsTable = SurfacePointsTable.from_arrays( x=csv[coord_x_name].values, y=csv[coord_y_name].values, z=csv[coord_z_name].values, names=csv[surface_name].values, # TODO: This we will have to map it with StructuralFrame name_id_map=name_id_map ) return surface_points def read_orientations( path: str, coord_x_name="X", coord_y_name="Y", coord_z_name="Z", gx_name="G_x", gy_name="G_y", gz_name="G_z", surface_name="formation", name_id_map: Optional[dict[str, int]] = None, pandas_kwargs: dict = None ) -> OrientationsTable: pandas_kwargs = pandas_kwargs or {} if 'sep' not in pandas_kwargs: pandas_kwargs['sep'] = ',' pd = require_pandas() csv = pd.read_csv(path, **pandas_kwargs) csv_standardized = _standardize(csv) csv_with_gradient = _add_gradient_columns(csv_standardized) orientations: OrientationsTable = OrientationsTable.from_arrays( x=csv_with_gradient[coord_x_name].values, y=csv_with_gradient[coord_y_name].values, z=csv_with_gradient[coord_z_name].values, G_x=csv_with_gradient[gx_name].values, G_y=csv_with_gradient[gy_name].values, G_z=csv_with_gradient[gz_name].values, names=csv_with_gradient[surface_name].values, # TODO: This we will have to map it with StructuralFrame name_id_map=name_id_map ) return orientations COLUMN_NAME_MAPPING = { "X" : ["X", "x"], "Y" : ["Y", "y"], "Z" : ["Z", "z"], "azimuth" : ["azimuth", "Azimuth"], "dip" : ["dip", "Dip"], "polarity" : ["polarity", "Polarity"], "formation": ["formation", "Formation", "surface"], "G_x" : ["G_x", "gradient_x"], "G_y" : ["G_y", "gradient_y"], "G_z" : ["G_z", "gradient_z"], } def _standardize(df: 'pandas.DataFrame'): for column in df.columns: for standard_name, possible_names in COLUMN_NAME_MAPPING.items(): if column in possible_names: df.rename(columns={column: standard_name}, inplace=True) return df def _add_gradient_columns(df): if "azimuth" in df.columns and "dip" in df.columns and "polarity" in df.columns: # Convert azimuth, dip, polarity to gradient df['G_x'] = np.sin(np.deg2rad(df['dip'])) * np.sin(np.deg2rad(df['azimuth'])) * df['polarity'] df['G_y'] = np.sin(np.deg2rad(df['dip'])) * np.cos(np.deg2rad(df['azimuth'])) * df['polarity'] df['G_z'] = np.cos(np.deg2rad(df['dip'])) * df['polarity'] return df ================================================ FILE: gempy/API/map_stack_to_surfaces_API.py ================================================ from typing import Union from gempy_engine.core.data.stack_relation_type import StackRelationType from ..core.data.geo_model import GeoModel from ..core.data.structural_frame import StructuralFrame from ..core.data.structural_group import StructuralGroup def map_stack_to_surfaces(gempy_model: GeoModel, mapping_object: Union[dict[str, list[str]] | dict[str, tuple]], set_series: bool = True, remove_unused_series=True, series_data: list = None) -> StructuralFrame: """ Map stack (series) to surfaces by reorganizing elements between groups in a GeoModel's structural frame. This function reorganizes structural elements (surfaces) based on a mapping object and updates the structural frame of the GeoModel. It can also create new series and remove unused ones. Args: gempy_model (GeoModel): The GeoModel object whose structural frame is to be modified. mapping_object (Union[dict[str, list[str]] | dict[str, tuple]]): Dictionary mapping group names to element names. set_series (bool, optional): If True, creates new series for groups not present in the GeoModel. Defaults to True. remove_unused_series (bool, optional): If True, removes groups without any elements. Defaults to True. series_data (list, optional): List of series data from JSON containing structural relations. Defaults to None. Returns: StructuralFrame: The updated StructuralFrame object. """ structural_groups: list[StructuralGroup] = gempy_model.structural_frame.structural_groups for index, (group_name, elements) in enumerate(mapping_object.items()): # region Create new series if needed group_already_exists = any(group.name == group_name for group in structural_groups) if set_series and not group_already_exists: # Get structural relation from series_data if available structural_relation = StackRelationType.ERODE # Default value if series_data: for series in series_data: if series['name'] == group_name: structural_relation = StackRelationType[series['structural_relation']] break new_group = StructuralGroup( name=group_name, elements=[], structural_relation=structural_relation ) structural_groups.insert(index, new_group) # endregion # Make sure elements is a list or tuple if isinstance(elements, str): elements = [elements] for element_name in elements: # Here we need to find out the current group of the element. # This can be done by looking up the element in each group. from_group_name = None for group in structural_groups: if any(element.name == element_name for element in group.elements): from_group_name = group.name break # If we've found the group, we can proceed with moving the element. if from_group_name: _move_element( structural_groups=structural_groups, element_name=element_name, from_group_name=from_group_name, to_group_name=group_name ) else: print(f"Could not find element '{element_name}' in any group.") # Remove empty groups if remove_unused_series: structural_groups = [group for group in structural_groups if group.elements] gempy_model.structural_frame.structural_groups = structural_groups return gempy_model.structural_frame def _move_element(structural_groups: list[StructuralGroup], element_name: str, from_group_name: str, to_group_name: str): # Find the source and destination groups from_group = next((group for group in structural_groups if group.name == from_group_name), None) to_group = next((group for group in structural_groups if group.name == to_group_name), None) # Check if both groups exist if from_group is None or to_group is None: raise ValueError("One or both group names are not found.") # Find the element in the source group element = next((element for element in from_group.elements if element.name == element_name), None) # Check if element exists if element is None: raise ValueError(f"Element '{element_name}' not found in group '{from_group_name}'.") # Remove the element from the source group and add it to the destination group from_group.elements.remove(element) to_group.elements.append(element) ================================================ FILE: gempy/__init__.py ================================================ """ Module initialisation for GemPy Created on 06.19.2023 @author: Miguel de la Varga """ import sys from . import config # =================== CORE =================== from .core import data from .core.color_generator import ColorsGenerator # =================== API =================== from .API import * from .API import implicit_functions # * Assert at least pyton 3.10 assert sys.version_info[0] >= 3 and sys.version_info[1] >= 10, "GemPy requires Python 3.10 or higher" from ._version import __version__ if __name__ == '__main__': pass ================================================ FILE: gempy/_version.py ================================================ # file generated by setuptools_scm # don't change, don't track in version control TYPE_CHECKING = False if TYPE_CHECKING: from typing import Tuple, Union VERSION_TUPLE = Tuple[Union[int, str], ...] else: VERSION_TUPLE = object version: str __version__: str __version_tuple__: VERSION_TUPLE version_tuple: VERSION_TUPLE __version__ = version = '2024.2.0.3.dev0+gf344a731.d20240626' __version_tuple__ = version_tuple = (2024, 2, 0, 3, 'dev0', 'gf344a731.d20240626') ================================================ FILE: gempy/config.py ================================================ import os from dotenv import load_dotenv # Define the paths for the .env files script_dir = os.path.dirname(os.path.abspath(__file__)) dotenv_path = os.path.join(script_dir, '../.env') dotenv_gempy_engine_path = os.path.expanduser('~/.env') # Check if the .env files exist and prioritize the local .env file if os.path.exists(dotenv_path): load_dotenv(dotenv_path) elif os.path.exists(dotenv_gempy_engine_path): load_dotenv(dotenv_gempy_engine_path) else: load_dotenv() ================================================ FILE: gempy/core/__init__.py ================================================ if __name__ == '__main__': pass ================================================ FILE: gempy/core/color_generator.py ================================================ from dataclasses import dataclass from functools import cached_property from typing import Optional import numpy as np from pydantic import Field @dataclass class ColorsGenerator: """ Object that handles the color management. """ _gempy_default_colors = [ '#015482', '#9f0052', '#ffbe00', '#728f02', '#443988', '#ff3f20', '#5DA629', '#b271d0', '#72e54a', '#583bd1', '#d0e63d', '#b949e2', '#95ce4b', '#6d2b9f', '#60eb91', '#d746be', '#52a22e', '#5e63d8', '#e5c339', '#371970', '#d3dc76', '#4d478e', '#43b665', '#d14897', '#59e5b8', '#e5421d', '#62dedb', '#df344e', '#9ce4a9', '#d94077', '#99c573', '#842f74', '#578131', '#708de7', '#df872f', '#5a73b1', '#ab912b', '#321f4d', '#e4bd7c', '#142932', '#cd4f30', '#69aedd', '#892a23', '#aad6de', '#5c1a34', '#cfddb4', '#381d29', '#5da37c', '#d8676e', '#52a2a3', '#9b405c', '#346542', '#de91c9', '#555719', '#bbaed6', '#945624', '#517c91', '#de8a68', '#3c4b64', '#9d8a4d', '#825f7e', '#2c3821', '#ddadaa', '#5e3524', '#a3a68e', '#a2706b', '#686d56' ] # source: https://medialab.github.io/iwanthue/ hex_colors: list[str] = Field( default=_gempy_default_colors, exclude=True ) _index: int = 0 def __post_init__(self): self.regenerate_color_palette() @staticmethod def _random_hexcolor() -> str: """Generates a random hex color string.""" return f"#{np.random.randint(0, 0xffffff):06x}" def regenerate_color_palette(self, seaborn_palettes: Optional[list[str]] = None): try: import seaborn as sns seaborn_installed = True except ImportError: seaborn_installed = False if seaborn_palettes and seaborn_installed: hex_colors = [] for palette in seaborn_palettes: # for each palette hex_colors += sns.color_palette(palette).as_hex() # get all colors in palette and add to list elif seaborn_palettes and not seaborn_installed: raise ImportError("Seaborn is not installed. Please install it to use color palettes.") else: hex_colors = list(self._gempy_default_colors) self.hex_colors = hex_colors def __iter__(self) -> 'ColorsGenerator': """Returns the object itself as an iterator.""" return self def __next__(self) -> str: """Generator that yields the next color.""" color = self.up_next() self._index += 1 del self._next_color return color def up_next(self) -> str: """Returns the next color without incrementing the index.""" return self._next_color @cached_property def _next_color(self) -> str: if self._index < len(self.hex_colors): return self.hex_colors[self._index] return self._random_hexcolor() ================================================ FILE: gempy/core/data/DEP_xsolution.py ================================================ from typing import Union from gempy.core.data_modules.stack import Stack from gempy import Surfaces, Grid try: import xarray as xr import subsurface from subsurface.structs.base_structures.common_data_utils import to_netcdf except: print("Not subsurface compatibility available") import numpy as np import pandas as pd class XSolution(object): """This class stores the output of the interpolation and the necessary objects to visualize and manipulate this data using xarray as backend. Depending on the activated grid (see :class:`Grid`) a different number of properties are returned returned: Args: grid (Grid): [s0] surfaces (Surfaces): [s1] series (Series): [s2] Attributes: grid (Grid) surfaces (Surfaces) series (Series) weights_vector (numpy.array): [s3] scalar_field_at_surface_points (numpy.array): [s4] block_at_surface_points (numpy.array): [s5] mask_at_surface_points (numpy.array): [s6] values_at_surface_points (numpy.array): [s7] lith_block (numpy.array): [s8] scalar_field_matrix (numpy.array): [s9] block_matrix (numpy.array): [s10] mask_matrix (numpy.array): [s11] mask_matrix_pad (numpy.array): mask matrix padded 2 block in order to guarantee that the layers intersect each other after marching cubes values_matrix (numpy.array): [s12] vertices (list[numpy.array]): [s13] edges (list[numpy.array]): [s14] geological_map (numpy.array): [s15] """ def __init__(self, grid: Grid, surfaces: Surfaces = None, stack: Stack = None, ): self.grid = grid self.stack = stack self.surfaces = surfaces # Used to store ver/sim there # Define xarrays self.weights_vector = None self.at_surface_points = None self.s_regular_grid = None # xr.Dataset() self.s_custom_grid = None # xr.Dataset() self.s_topography = None # xr.Dataset() self.s_at_surface_points = None # xr.Dataset() self.s_sections = dict() self.meshes = None # xr.Dataset() def set_meshes(self, surfaces: Surfaces = None): """Create xarray from the Surfaces object. In GemPy Engine we will set them directly. """ surf_ver_sim = surfaces.df[['id', 'vertices', 'edges']] vertex = [] simplex = [] ids = [] last_idx = 0 self.extract_each_surface_representations(ids, last_idx, simplex, surf_ver_sim, vertex) vertex_array = np.concatenate(vertex) simplex_array = np.concatenate(simplex) ids_array = np.concatenate(ids) self.meshes = subsurface.UnstructuredData.from_array( vertex=vertex_array, cells=simplex_array, attributes=pd.DataFrame(ids_array, columns=['id']) ) return self.meshes @staticmethod def extract_each_surface_representations(ids, last_idx, simplex, surf_ver_sim, vertex): for index, row in surf_ver_sim.iterrows(): v_ = row['vertices'] e_ = row['edges'] + last_idx if v_ is not np.nan and e_ is not np.nan: i_ = np.ones(e_.shape[0]) * row['id'] vertex.append(v_) simplex.append(e_) ids.append(i_) last_idx = e_[-20:].max() + 1 def set_values(self, values: list, active_features=None, surf_properties=None, ): """ At this stage we should split values into the different grids Args: values: Returns: """ # Get an array with all the indices for each grid l = self.grid.length coords_base, xyz = self.prepare_common_args(active_features, surf_properties) self.weights_vector = values[3] if self.grid.active_grids_bool[0]: self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) if self.grid.active_grids_bool[1]: self.set_values_to_custom_grid(values, l[1], l[2], coords_base.copy(), xyz=xyz) if self.grid.active_grids_bool[2]: self.set_values_to_topography(values, l[2], l[3], coords_base.copy()) if self.grid.active_grids_bool[3]: self.set_values_to_sections(values, l[3], l[4], coords_base.copy()) if self.grid.active_grids_bool[4]: self.set_values_to_centered() # TODO: Add xyz from surface points self.set_values_to_surface_points_(values, l[-1], coords_base, xyz=None) def prepare_common_args(self, active_features, surf_properties): if active_features is None and self.stack is not None: active_features = self.stack.df.groupby('isActive').get_group(True).index if surf_properties is None and self.surfaces is not None: surf_properties = self.surfaces.properties_val coords_base = dict() if active_features is not None: coords_base['Features'] = active_features.to_list() if surf_properties is not None: coords_base['Properties'] = surf_properties.to_list() if self.grid.custom_grid is not None: xyz = self.grid.custom_grid.values else: xyz = None return coords_base, xyz def set_values_to_centered(self): return def set_values_to_surface_points_(self, values, l0, coords_base, xyz=None): coords = coords_base l1 = values[0].shape[-1] arrays = self.create_unstruct_xarray(values, l0, l1, xyz) self.s_at_surface_points = xr.Dataset( data_vars=arrays, coords=coords ) return self.s_at_surface_points @staticmethod def create_struc_xarrays(values, l0, l1, res: Union[list, np.ndarray]): arrays = dict() n_dim = len(res) xyz = ['X', 'Y', 'Z'][:n_dim] if values[0] is not None: # This encompass lith_block and values matrix property_matrix = xr.DataArray( data=values[0][:, l0:l1].reshape(-1, *res), dims=['Properties', *xyz], ) arrays['property_matrix'] = property_matrix if values[1] is not None: # This is the block matrix i, j, _ = values[1].shape block_matrix = xr.DataArray( data=values[1][:, :, l0:l1].reshape(i, j, *res), dims=['Features', 'Properties', *xyz], ) arrays['block_matrix'] = block_matrix # Fault block? if values[4] is not None: # Scalar field matrix scalar_matrix = xr.DataArray( data=values[4][:, l0:l1].reshape(-1, *res), dims=['Features', *xyz], ) arrays['scalar_field_matrix'] = scalar_matrix if values[6] is not None: # Mask matrix mask_matrix = xr.DataArray( data=values[6][:, l0:l1].reshape(-1, *res), dims=['Features', *xyz], ) arrays['mask_matrix'] = mask_matrix if values[7] is not None: # Fault mask matrix fault_mask = xr.DataArray( data=values[7][:, l0:l1].reshape(-1, *res), dims=['Features', *xyz], ) arrays['fault_mask'] = fault_mask return arrays @staticmethod def create_unstruct_xarray(values, l0, l1, xyz): arrays = dict() if xyz is not None: cartesian_matrix = xr.DataArray( data=xyz, dims=['Point', 'XYZ'], coords={'XYZ': ['X', 'Y', 'Z']} ) arrays['cartesian_matrix'] = cartesian_matrix if values[0] is not None: # Values and lith block property_v3 = xr.DataArray( data=values[0][:, l0:l1], dims=['cell_attr', 'cell'], ) arrays['property'] = property_v3 if values[1] is not None: # block block_v3 = xr.DataArray( data=values[1][:, :, l0:l1], dims=['Features', 'cell_attr', 'cell'], ) arrays['block'] = block_v3 if values[4] is not None: # Scalar field scalar_field_v3 = xr.DataArray( data=values[4][:, l0:l1], dims=['Features', 'cell'], ) arrays['scalar_field'] = scalar_field_v3 if values[6] is not None: # Scalar field mask_v3 = xr.DataArray( data=values[6][:, l0:l1], dims=['Features', 'cell'], ) arrays['mask'] = mask_v3 return arrays def set_values_to_custom_grid(self, values: list, l0, l1, coords_base: dict, xyz=None): coords = coords_base arrays = self.create_unstruct_xarray(values, l0, l1, xyz=None) self.s_custom_grid = subsurface.UnstructuredData.from_array( vertex=xyz, cells="points", cells_attr=arrays, coords=coords, default_cells_attr_name="block" ) return self.s_custom_grid def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) def add_cartesian_coords(self, coords_base): coords = coords_base coords['X'] = self.grid.regular_grid.x coords['Y'] = self.grid.regular_grid.y coords['Z'] = self.grid.regular_grid.z return coords def set_values_to_topography(self, values: list, l0, l1, coords_base): coords = coords_base coords['X'] = self.grid.topography.x coords['Y'] = self.grid.topography.y resolution = self.grid.topography.resolution arrays = self.create_struc_xarrays(values, l0, l1, resolution) self.s_topography = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) return self.s_topography def set_values_to_sections(self, values: list, l0, l1, coords_base): coords = coords_base sections = self.grid.sections for e, axis_coord in enumerate(sections.generate_axis_coord()): resolution = sections.resolution[e] l0_s = sections.length[e] l1_s = sections.length[e + 1] name, xy = axis_coord coords['X'] = xy[:, 0] coords['Y'] = xy[:, 1] arrays = self.create_struc_xarrays(values, l0 + l0_s, l0 + l1_s, resolution) self.s_sections[name] = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) return self.s_sections @property def data_structures(self): # TODO: Add sections args = [self.s_regular_grid, self.s_custom_grid, self.s_topography, self.meshes] names = ['regular_grid', 'custom_grid', 'topography', 'meshes'] return zip(args, names) def to_netcdf(self, path, name, **kwargs): for a, n in self.data_structures: if a is not None: to_netcdf(a, f'{path}/{name}_{n}.nc', **kwargs) ================================================ FILE: gempy/core/data/__init__.py ================================================ from .geo_model import GeoModel from .structural_frame import StructuralFrame from .structural_group import StructuralGroup from .structural_element import StructuralElement from .orientations import OrientationsTable from .surface_points import SurfacePointsTable from .grid import Grid, Topography from .importer_helper import ImporterHelper from .gempy_engine_config import GemPyEngineConfig from .structural_group import FaultsRelationSpecialCase from ..color_generator import ColorsGenerator from gempy_engine.core.data.interpolation_input import InterpolationInput from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy_engine.core.data.options import InterpolationOptions from gempy_engine.core.data.solutions import Solutions from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution from gempy_engine.core.data.transforms import GlobalAnisotropy, Transform from gempy_engine.core.data.kernel_classes.faults import FaultsData, FiniteFaultData from gempy_engine.config import AvailableBackends from gempy_engine.core.data.geophysics_input import GeophysicsInput __all__ = [ # From gempy 'GeoModel', 'StructuralFrame', 'StructuralGroup', 'StructuralElement', 'OrientationsTable', 'SurfacePointsTable', 'Grid', 'Topography', 'ImporterHelper', 'GemPyEngineConfig', 'FaultsRelationSpecialCase', 'ColorsGenerator', # From gempy engine 'InterpolationInput','StackRelationType', 'InterpolationOptions', 'Solutions', 'RawArraysSolution', 'GlobalAnisotropy', 'Transform', 'FaultsData', 'FiniteFaultData', 'AvailableBackends', 'GeophysicsInput' ] ================================================ FILE: gempy/core/data/_data_points_helpers.py ================================================ import hashlib import sys from typing import Sequence import numpy as np def structural_element_hasher(i: int, name: str, hash_length: int = 8) -> int: # Get the last 'hash_length' digits from the hash name_hash = int(hashlib.md5(name.encode('utf-8')).hexdigest(), 16) % (10 ** hash_length) return i * (10 ** hash_length) + name_hash def generate_ids_from_names(name_id_map, names, x): name_id_map = name_id_map or {name: structural_element_hasher(i, name) for i, name in enumerate(np.unique(names))} if isinstance(names, str): ids = np.array([name_id_map[names]] * len(x)) elif isinstance(names, Sequence) or isinstance(names, np.ndarray): ids = np.array([name_id_map[name] for name in names]) elif type(names).__module__.startswith('pandas') and type(names).__name__ == 'StringArray': ids = np.array([name_id_map[name] for name in names]) else: raise TypeError(f"Names should be a string or a NumPy array, not {type(names)}") return ids, name_id_map ================================================ FILE: gempy/core/data/core_utils.py ================================================ import numpy as np from gempy.optional_dependencies import require_scipy def calculate_line_coordinates_2points(p1, p2, res): if isinstance(p1, list) or isinstance(p1, tuple): p1 = np.array(p1) if isinstance(p2, list) or isinstance(p2, tuple): p2 = np.array(p2) v = p2 - p1 # vector pointing from p1 to p2 u = v / np.linalg.norm(v) # normalize it distance = distance_2_points(p1, p2) steps = np.linspace(0, distance, res) values = p1.reshape(2, 1) + u.reshape(2, 1) * steps.ravel() return values.T def distance_2_points(p1, p2): return np.sqrt(np.diff((p1[0], p2[0])) ** 2 + np.diff((p1[1], p2[1])) ** 2) def interpolate_zvals_at_xy(xy, topography, method='DEP'): """ Interpolates DEM values on a defined section. Args: xy (np.ndarray): Array of shape (n, 2) containing x (EW) and y (NS) coordinates of the profile. topography (Topography): An instance of Topography containing the DEM data. Returns: np.ndarray: z values, i.e., topography along the profile. """ scipy = require_scipy() xj = topography.values_2d[:, 0, 0] yj = topography.values_2d[0, :, 1] zj = topography.values_2d[:, :, 2] spline = scipy.interpolate.RectBivariateSpline(xj, yj, zj) zi = spline.ev(xy[:, 0], xy[:, 1]) return zi ================================================ FILE: gempy/core/data/encoders/__init__.py ================================================ ================================================ FILE: gempy/core/data/encoders/binary_encoder.py ================================================ import numpy as np from ..surface_points import SurfacePointsTable from ..orientations import OrientationsTable def deserialize_input_data_tables(binary_array: bytes, name_id_map: dict, sp_binary_length_: int, ori_binary_length_: int) -> tuple[OrientationsTable, SurfacePointsTable]: """ Deserializes binary data into two tables: OrientationsTable and SurfacePointsTable. This function takes a binary array, a mapping of names to IDs, and lengths for specific parts of the binary data to extract and deserialize two distinct data tables: OrientationsTable and SurfacePointsTable. It uses the provided lengths to split the binary data accordingly and reconstructs the table contents from their respective binary representations. Args: binary_array (bytes): A bytes array containing the serialized data for both the OrientationsTable and SurfacePointsTable. name_id_map (dict): A dictionary mapping names to IDs which is used to help reconstruct the table objects. sp_binary_length_ (int): The length of the binary segment corresponding to the SurfacePointsTable data. ori_binary_length_ (int): The length of the binary segment corresponding to the OrientationsTable data. Returns: tuple[OrientationsTable, SurfacePointsTable]: A tuple containing two table objects: first the OrientationsTable, and second the SurfacePointsTable. """ sp_binary = binary_array[:sp_binary_length_] ori_binary = binary_array[sp_binary_length_:sp_binary_length_+ori_binary_length_] # Reconstruct arrays sp_data: np.ndarray = np.frombuffer(sp_binary, dtype=SurfacePointsTable.dt) ori_data: np.ndarray = np.frombuffer(ori_binary, dtype=OrientationsTable.dt) surface_points_table = SurfacePointsTable(data=sp_data, name_id_map=name_id_map) orientations_table = OrientationsTable(data=ori_data, name_id_map=name_id_map) return orientations_table, surface_points_table def deserialize_grid(binary_array:bytes, custom_grid_length: int, topography_length: int) -> tuple[np.ndarray, np.ndarray]: """ Deserialize binary grid data into two numpy arrays. This function takes a binary array representing a grid and splits it into two separate numpy arrays: one for the custom grid and one for the topography. The binary array is segmented based on the provided lengths for the custom grid and topography. Args: binary_array: The binary data representing the combined custom grid and topography data. custom_grid_length: The length of the custom grid data segment in bytes. topography_length: The length of the topography data segment in bytes. Returns: A tuple where the first element is a numpy array representing the custom grid, and the second element is a numpy array representing the topography data. Raises: ValueError: If input lengths do not match the specified boundaries or binary data. """ custom_grid_binary = binary_array[:custom_grid_length] topography_binary = binary_array[custom_grid_length:custom_grid_length + topography_length] custom_grid = np.frombuffer(custom_grid_binary, dtype=np.float64) topography = np.frombuffer(topography_binary) return custom_grid, topography ================================================ FILE: gempy/core/data/encoders/converters.py ================================================ from typing import Annotated from contextlib import contextmanager from contextvars import ContextVar import numpy as np from pydantic import BeforeValidator def convert_to_arrays(values, keys): for key in keys: if key in values and not isinstance(values[key], np.ndarray): values[key] = np.array(values[key]) return values def validate_numpy_array(v): return np.array(v) if v is not None else None short_array_type = Annotated[np.ndarray, (BeforeValidator(lambda v: np.array(v) if v is not None else None))] def instantiate_if_necessary(data: dict, key: str, type: type) -> None: """ Creates instances of the specified type for a dictionary key if the key exists and its current type does not match the specified type. This function modifies the dictionary in place by converting the value associated with the key into an instance of the given type. This is typically used when a dictionary contains data that needs to be represented as objects of a specific class type. Args: data (dict): The dictionary containing the key-value pair to inspect and possibly convert. key (str): The key in the dictionary whose value should be inspected and converted if necessary. type (type): The type to which the value of `key` should be converted, if it is not already an instance of the type. Returns: None """ if key in data and not isinstance(data[key], type): data[key] = type(**data[key]) numpy_array_short_validator = BeforeValidator(validate_numpy_array) # First, create a context variable loading_model_context = ContextVar('loading_model_context', default={}) @contextmanager def loading_model_from_binary(input_binary: bytes, grid_binary: bytes): token = loading_model_context.set({ 'input_binary': input_binary, 'grid_binary': grid_binary }) try: yield finally: loading_model_context.reset(token) ================================================ FILE: gempy/core/data/encoders/json_geomodel_encoder.py ================================================ import numpy as np def encode_numpy_array(array: np.ndarray): # Check length if array.size > 10: return [] return array.tolist() ================================================ FILE: gempy/core/data/enumerators.py ================================================ from enum import Enum, auto class ExampleModel(Enum): TWO_AND_A_HALF_D = auto() HORIZONTAL_STRAT = auto() ANTICLINE = auto() ONE_FAULT = auto() COMBINATION = auto() ONE_FAULT_GRAVITY = auto() GRABEN = auto() GREENSTONE = auto() FAULT_RELATION = auto() ================================================ FILE: gempy/core/data/gempy_engine_config.py ================================================ from dataclasses import dataclass from typing import Optional from gempy_engine import config from gempy_engine.config import AvailableBackends @dataclass class GemPyEngineConfig: backend: AvailableBackends = config.DEFAULT_BACKEND # ? This can be grabbed from gempy.config file? use_gpu: bool = False dtype: Optional[str] = None #: The data type used in the engine. If None, the default data type of the backend is used. ================================================ FILE: gempy/core/data/geo_model.py ================================================ import datetime import numpy as np import pprint import warnings from dataclasses import dataclass from pydantic import BaseModel, ConfigDict, Field, PrivateAttr, computed_field, model_validator, ValidationError from pydantic.functional_validators import ModelWrapValidatorHandler from typing import Sequence, Optional, Union from gempy_engine.core.data import InterpolationOptions from gempy_engine.core.data import Solutions from gempy_engine.core.data.engine_grid import EngineGrid from gempy_engine.core.data.geophysics_input import GeophysicsInput from gempy_engine.core.data.input_data_descriptor import InputDataDescriptor from gempy_engine.core.data.interpolation_input import InterpolationInput from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution from gempy_engine.core.data.transforms import Transform, GlobalAnisotropy from .encoders.converters import instantiate_if_necessary from .encoders.json_geomodel_encoder import encode_numpy_array from .grid import Grid from .orientations import OrientationsTable from .structural_frame import StructuralFrame from .surface_points import SurfacePointsTable from ...modules.data_manipulation import interpolation_input_from_structural_frame """ TODO: - [ ] StructuralFrame will all input points chunked on Elements. Here I will need a property to put all together to feed to InterpolationInput """ @dataclass class GeoModelMeta: """ Container for metadata associated with a GeoModel. Attributes: name (str): Name of the geological model. creation_date (str): Date of creation of the model. last_modification_date (str): Last modification date of the model. owner (str): Owner of the geological model. """ name: str creation_date: str last_modification_date: str | None owner: str | None class GeoModel(BaseModel): """ Class representing a geological model. """ meta: GeoModelMeta = Field(exclude=False) #: Meta-information about the geological model, like its name, creation and modification dates, and owner. structural_frame: StructuralFrame = Field(exclude=False) #: The structural information of the geological model. grid: Grid = Field(exclude=False, default=None) #: The general grid used in the geological model. # region GemPy engine data types _interpolation_options: InterpolationOptions #: The interpolation options provided by the user. geophysics_input: GeophysicsInput | None = Field(default=None, exclude=False) #: The geophysics input of the geological model. input_transform: Transform = Field(default=None, exclude=False) #: The transformation used in the geological model for input points. interpolation_grid: EngineGrid = Field(default=None, exclude=True) #: ptional grid used for interpolation. Can be seen as a cache field. _interpolationInput: InterpolationInput = PrivateAttr(default=None) #: Input data for interpolation. Fed by the structural frame and can be seen as a cache field. _input_data_descriptor: InputDataDescriptor = PrivateAttr(default=None) #: Descriptor of the input data. Fed by the structural frame and can be seen as a cache field. # endregion _solutions: Solutions = PrivateAttr(init=False, default=None) #: The computed solutions of the geological model. _taped_interpolation_input: InterpolationInput | None = PrivateAttr(default=None) def __repr__(self): # TODO: Improve this return pprint.pformat(self.__dict__) # region Properties @computed_field(alias="_interpolation_options") @property def interpolation_options(self) -> InterpolationOptions: self._infer_dense_grid_solution() self._interpolation_options.cache_model_name = self.meta.name return self._interpolation_options @interpolation_options.setter def interpolation_options(self, value): self._interpolation_options = value @property def solutions(self) -> Solutions: return self._solutions @solutions.setter def solutions(self, value: Solutions): # * This is set from the gempy engine self._solutions = value # * Set solutions per element for e, element in enumerate(self.structural_frame.structural_elements[:-1]): # * Ignore basement element.scalar_field_at_interface = value.scalar_field_at_surface_points[e] if self._solutions.dc_meshes is None: continue dc_mesh = self._solutions.dc_meshes[e] if dc_mesh is None: continue # TODO: These meshes are in the order of the scalar field world_coord_vertices = self.input_transform.apply_inverse(dc_mesh.vertices) world_coord_vertices = self.grid.transform.apply_inverse_with_cached_pivot(world_coord_vertices) element.vertices = world_coord_vertices element.edges = (dc_mesh.edges if dc_mesh is not None else None) # * Reordering the elements according to the scalar field for e, order_per_structural_group in enumerate(self._solutions._ordered_elements): elements = self.structural_frame.structural_groups[e].elements reordered_elements = [elements[i] for i in order_per_structural_group] self.structural_frame.structural_groups[e].elements = reordered_elements @property def surface_points_copy(self): """This is a copy! Returns a SurfacePointsTable for all surface points across the structural elements""" surface_points_table = self.structural_frame.surface_points_copy return surface_points_table @property def surface_points_copy_transformed(self) -> SurfacePointsTable: og_sp = self.surface_points_copy og_sp.xyz_view = self.grid.transform.apply_with_cached_pivot(og_sp.xyz) og_sp.xyz_view = self.input_transform.apply(og_sp.xyz) return og_sp @property def surface_points(self): raise AttributeError("This property can only be set, not read. You can access the copy with `surface_points_copy` or" "the original on the individual structural elements.") @surface_points.setter def surface_points(self, value): self.structural_frame.surface_points = value @property def orientations_copy(self) -> OrientationsTable: """This is a copy! Returns a OrientationsTable for all orientations across the structural elements""" orientations_table = self.structural_frame.orientations_copy return orientations_table @property def orientations_copy_transformed(self) -> OrientationsTable: # ! This is not done og_or = self.orientations_copy total_transform: Transform = self.input_transform + self.grid.transform og_or.xyz_view = self.grid.transform.apply_with_cached_pivot(og_or.xyz) og_or.xyz_view = self.input_transform.apply(og_or.xyz) og_or.grads_view = total_transform.transform_gradient(og_or.grads) return og_or @property def regular_grid_coordinates(self) -> np.ndarray: return self.grid.regular_grid.get_values_vtk_format(orthogonal=False) @property def regular_grid_coordinates_transformed(self) -> np.ndarray: values_transformed = self.grid.regular_grid.get_values_vtk_format(orthogonal=True) values_transformed = self.input_transform.apply(values_transformed) return values_transformed @property def orientations(self) -> OrientationsTable: raise AttributeError("This property can only be set, not read. You can access the copy with `orientations_copy` or" "the original on the individual structural elements.") @orientations.setter def orientations(self, value): self.structural_frame.orientations = value @property def project_bounds(self) -> np.ndarray: return self.grid.bounding_box @property def extent_transformed_transformed_by_input(self) -> np.ndarray: transformed = self.input_transform.apply(self.project_bounds) # ! grid already has the grid transform applied new_extents = np.array([transformed[:, 0].min(), transformed[:, 0].max(), transformed[:, 1].min(), transformed[:, 1].max(), transformed[:, 2].min(), transformed[:, 2].max()]) return new_extents @property def interpolation_input_copy(self): warnings.warn("This property is deprecated. Use directly " "`interpolation_input_from_structural_frame` instead.", DeprecationWarning) if self.structural_frame.is_dirty is False: return self._interpolationInput self._interpolationInput = interpolation_input_from_structural_frame( geo_model=self ) return self._interpolationInput @property def input_data_descriptor(self) -> InputDataDescriptor: # TODO: This should have the exact same dirty logic as interpolation_input return self.structural_frame.input_data_descriptor @property def taped_interpolation_input(self) -> InterpolationInput: return self._taped_interpolation_input @taped_interpolation_input.setter def taped_interpolation_input(self, value: InterpolationInput): self._taped_interpolation_input = value # endregion # region Constructors @classmethod def from_args(cls, name: str, structural_frame: StructuralFrame, grid: Grid, interpolation_options: InterpolationOptions): # TODO: Fill the arguments properly meta = GeoModelMeta( name=name, creation_date=datetime.datetime.now().isoformat(), last_modification_date=None, owner=None ) structural_frame = structural_frame # ? This could be Optional grid = grid _interpolation_options = interpolation_options input_transform = Transform.from_input_points( surface_points=structural_frame.surface_points_copy, orientations=structural_frame.orientations_copy ) model = GeoModel( meta=meta, structural_frame=structural_frame, grid=grid, input_transform=input_transform, _interpolation_options=_interpolation_options ) return model # endregion # region Methods def update_transform(self, auto_anisotropy: GlobalAnisotropy = GlobalAnisotropy.NONE, anisotropy_limit: Optional[np.ndarray] = None): """Update the transformation of the geological model. This function updates the transformation of the geological model using the provided surface points and orientations. It also applies anisotropy based on the specified type and limit. Args: auto_anisotropy (GlobalAnisotropy): The type of anisotropy to apply. Defaults to GlobalAnisotropy.NONE. anisotropy_limit (Optional[np.ndarray]): Anisotropy limit values. If None, no limit is applied. """ self.input_transform = Transform.from_input_points( surface_points=self.surface_points_copy, orientations=self.orientations_copy ) self.input_transform.apply_anisotropy(anisotropy_type=auto_anisotropy, anisotropy_limit=anisotropy_limit) def add_surface_points(self, X: Sequence[float], Y: Sequence[float], Z: Sequence[float], surface: Sequence[str], nugget: Optional[Sequence[float]] = None) -> None: raise NotImplementedError("This method is deprecated. Use `gp.add_surface_points` instead") # endregion # region Pydantic serialization model_config = ConfigDict( arbitrary_types_allowed=True, use_enum_values=False, json_encoders={ np.ndarray: encode_numpy_array, } ) @model_validator(mode='wrap') @classmethod def deserialize_properties(cls, data: Union["GeoModel", dict], constructor: ModelWrapValidatorHandler["GeoModel"]) -> "GeoModel": match data: case GeoModel(): return data case dict(): # instance: GeoModel = constructor(data) instantiate_if_necessary( data=data, key="_interpolation_options", type=InterpolationOptions ) instance._interpolation_options = data.get("_interpolation_options") # * Reset geophysics if necessary centered_grid = instance.grid.centered_grid if centered_grid is not None and instance.geophysics_input is not None: from gempy_engine.modules.geophysics.gravity_gradient import calculate_gravity_gradient instance.geophysics_input.tz = calculate_gravity_gradient(centered_grid) return instance case _: raise ValidationError # endregion def _infer_dense_grid_solution(self): octrees_set: bool = Grid.GridTypes.OCTREE in self.grid.active_grids dense_set: bool = Grid.GridTypes.DENSE in self.grid.active_grids # Create a tuple representing the conditions match (octrees_set, dense_set): case (True, False): self._interpolation_options.block_solutions_type = RawArraysSolution.BlockSolutionType.OCTREE case (True, True): warnings.warn("Both octree levels and resolution are set. The default grid for the `raw_array_solution`" "and plots will be the dense regular grid. To use octrees instead, set resolution to None in the " "regular grid.") self._interpolation_options.block_solutions_type = RawArraysSolution.BlockSolutionType.DENSE_GRID case (False, True): self._interpolation_options.block_solutions_type = RawArraysSolution.BlockSolutionType.DENSE_GRID case (False, False): self._interpolation_options.block_solutions_type = RawArraysSolution.BlockSolutionType.NONE ================================================ FILE: gempy/core/data/grid.py ================================================ import dataclasses import enum import numpy as np from pydantic import Field, model_validator, computed_field, ValidationError from pydantic.functional_validators import ModelWrapValidatorHandler from typing import Optional, Annotated, Union from gempy_engine.core.data.centered_grid import CenteredGrid from gempy_engine.core.data.options import EvaluationOptions from gempy_engine.core.data.transforms import Transform from .encoders.binary_encoder import deserialize_grid from .encoders.converters import loading_model_context from .grid_modules import RegularGrid, CustomGrid, Sections from .grid_modules.topography import Topography @dataclasses.dataclass(init=True) class Grid: class GridTypes(enum.Flag): OCTREE = 2 ** 0 DENSE = 2 ** 1 CUSTOM = 2 ** 2 TOPOGRAPHY = 2 ** 3 SECTIONS = 2 ** 4 CENTERED = 2 ** 5 NONE = 2 ** 10 # ? What should we do with the extent? values: Annotated[np.ndarray, Field(exclude=True)] = dataclasses.field(default_factory=lambda: np.empty((0, 3))) length: Annotated[np.ndarray, Field(exclude=True)] = dataclasses.field(default_factory=lambda: np.empty(0)) _octree_grid: Optional[RegularGrid] = None _dense_grid: Optional[RegularGrid] = None _custom_grid: Optional[CustomGrid] = None _topography: Optional[Topography] = None _sections: Optional[Sections] = None _centered_grid: Optional[CenteredGrid] = None _active_grids = GridTypes.NONE _transform: Optional[Transform] = None _octree_levels: int = -1 def __init__(self, extent=None, resolution=None): self.values = np.empty((0, 3)) self.length = np.empty(0) # Init basic grid empty if extent is not None and resolution is not None: self.dense_grid = RegularGrid(extent, resolution) def __setattr__(self, name, value): if name == 'active_grids': self._active_grids = value self._update_values() else: super().__setattr__(name, value) @model_validator(mode='wrap') @classmethod def deserialize_properties(cls, data: Union["Grid", dict], constructor: ModelWrapValidatorHandler["Grid"]) -> "Grid": try: match data: case Grid(): return data case dict(): grid: Grid = constructor(data) grid._active_grids = Grid.GridTypes(data["active_grids"]) # TODO: Digest binary data metadata = data.get('binary_meta_data', {}) context = loading_model_context.get() if 'grid_binary' in context: custom_grid_vals, topography_vals = deserialize_grid( binary_array=context['grid_binary'], custom_grid_length=metadata["custom_grid_binary_length"], topography_length=metadata["topography_binary_length"] ) if grid.custom_grid is not None: grid.custom_grid.values = custom_grid_vals.reshape(-1, 3) if grid.topography is not None: grid.topography.set_values2d(values=topography_vals) if grid.octree_grid is not None: # * Update the octree grid values. In the future we should also serialize them. grid.octree_grid.set_regular_grid( extent=grid.octree_grid.extent, resolution=grid.octree_grid.resolution, transform=grid.octree_grid.transform ) grid._update_values() return grid case _: raise ValidationError except ValidationError: raise @property def grid_binary(self): custom_grid_bytes = self._custom_grid.values.astype("float64").tobytes() if self._custom_grid else b'' topography_bytes = self._topography.values.astype("float64").tobytes() if self._topography else b'' return custom_grid_bytes + topography_bytes @computed_field def binary_meta_data(self) -> dict: return { 'custom_grid_binary_length': len(self._custom_grid.values.astype("float64").tobytes()) if self._custom_grid else 0, 'topography_binary_length' : len(self._topography.values.astype("float64").tobytes()) if self._topography else 0, } @computed_field(alias="active_grids") @property def active_grids(self) -> GridTypes: return self._active_grids @active_grids.setter def active_grids(self, value: GridTypes): self._active_grids = value self._update_values() @classmethod def init_octree_grid(cls, extent, octree_levels, legacy: bool = False): grid = cls() if legacy: base_resolution = (np.array([2, 2, 2])) else: lengths = np.array([ extent[1] - extent[0], # x extent[3] - extent[2], # y extent[5] - extent[4] # z ]) min_length = np.min(lengths) base_resolution = np.round(lengths / min_length).astype(int) * 2 grid._octree_grid = RegularGrid.octree_init( extent=extent, octree_levels=octree_levels, base_resolution=base_resolution ) grid.active_grids |= grid.GridTypes.OCTREE grid._update_values() return grid @classmethod def init_dense_grid(cls, extent, resolution): return cls(extent, resolution) def __str__(self): active_grid_types_str = [g_type for g_type in self.GridTypes if self.active_grids & g_type] grid_summary = [f"{g_type} (active: {getattr(self, g_type + '_grid_active')}): {len(getattr(self, g_type + '_grid').values)} points" for g_type in active_grid_types_str] grid_summary_str = "\n".join(grid_summary) return f"Grid Object:\n{grid_summary_str}" @property def transform(self) -> Transform: if self.dense_grid is not None: return self.dense_grid.transform elif self.octree_grid is not None: return self.octree_grid.transform else: return Transform.init_neutral() @transform.setter def transform(self, value: Transform): self._transform = value @property def extent(self): if self.dense_grid is not None: return self.dense_grid.extent elif self.octree_grid is not None: return self.octree_grid.extent else: raise AttributeError('Extent is not defined') @property def corner_min(self): return self.extent[::2] @property def corner_max(self): return self.extent[1::2] @property def bounding_box(self): extents = self.extent # Define 3D points of the bounding box corners based on extents bounding_box_points = np.array([[extents[0], extents[2], extents[4]], # min x, min y, min z [extents[0], extents[2], extents[5]], # min x, min y, max z [extents[0], extents[3], extents[4]], # min x, max y, min z [extents[0], extents[3], extents[5]], # min x, max y, max z [extents[1], extents[2], extents[4]], # max x, min y, min z [extents[1], extents[2], extents[5]], # max x, min y, max z [extents[1], extents[3], extents[4]], # max x, max y, min z [extents[1], extents[3], extents[5]]]) # max x, max y, max z return bounding_box_points @property def dense_grid(self) -> RegularGrid: return self._dense_grid @dense_grid.setter def dense_grid(self, value): self._dense_grid = value self.active_grids |= self.GridTypes.DENSE self._update_values() @property def octree_grid(self): return self._octree_grid @octree_grid.setter def octree_grid(self, value): raise AttributeError('Octree grid is not allowed to be set directly. Use init_octree_grid instead') def set_octree_grid(self, regular_grid: RegularGrid): self._octree_grid = regular_grid self.active_grids |= self.GridTypes.OCTREE self._update_values() def set_octree_grid_by_levels(self, octree_levels: int, evaluation_options: EvaluationOptions, extent: Optional[np.ndarray] = None): if extent is None: extent = self.extent self._octree_grid = RegularGrid( extent=extent, resolution=np.array([2 ** octree_levels] * 3), ) evaluation_options.number_octree_levels = octree_levels self.active_grids |= self.GridTypes.OCTREE self._update_values() @property def octree_levels(self): return self._octree_levels @octree_levels.setter def octree_levels(self, value): raise AttributeError('Octree levels are not allowed to be set directly. Use set_octree_grid instead') @property def custom_grid(self): return self._custom_grid @custom_grid.setter def custom_grid(self, value): self._custom_grid = value self.active_grids |= self.GridTypes.CUSTOM self._update_values() @property def topography(self): return self._topography @topography.setter def topography(self, value): self._topography = value self.active_grids |= self.GridTypes.TOPOGRAPHY self._update_values() @property def sections(self): return self._sections @sections.setter def sections(self, value): self._sections = value self.active_grids |= self.GridTypes.SECTIONS self._update_values() @property def centered_grid(self): return self._centered_grid @centered_grid.setter def centered_grid(self, value): self._centered_grid = value self.active_grids |= self.GridTypes.CENTERED self._update_values() @property def regular_grid(self): dense_grid_exists_and_active = self.dense_grid is not None and self.GridTypes.DENSE in self.active_grids octree_grid_exists_and_active = self.octree_grid is not None and self.GridTypes.OCTREE in self.active_grids if dense_grid_exists_and_active and octree_grid_exists_and_active: raise AttributeError('Both dense_grid and octree_grid are active. This is not possible.') elif dense_grid_exists_and_active: return self.dense_grid elif octree_grid_exists_and_active: return self.octree_grid else: return None # noinspection t def _update_values(self): values = [] if self.GridTypes.OCTREE in self.active_grids: if self.octree_grid is None: raise AttributeError('Octree grid is active but not defined') values.append(self.octree_grid.values) if self.GridTypes.DENSE in self.active_grids: if self.dense_grid is None: raise AttributeError('Dense grid is active but not defined') values.append(self.dense_grid.values) if self.GridTypes.CUSTOM in self.active_grids: if self.custom_grid is None: raise AttributeError('Custom grid is active but not defined') values.append(self.custom_grid.values) if self.GridTypes.TOPOGRAPHY in self.active_grids: if self.topography is None: raise AttributeError('Topography grid is active but not defined') values.append(self.topography.values) if self.GridTypes.SECTIONS in self.active_grids: if self.sections is None: raise AttributeError('Sections grid is active but not defined') values.append(self.sections.values) if self.GridTypes.CENTERED in self.active_grids: if self.centered_grid is None: raise AttributeError('Centered grid is active but not defined') values.append(self.centered_grid.values) # make sure values is not empty if len(values) == 0: return self.values self.values = np.concatenate(values) return self.values def get_section_args(self, section_name: str): # TODO: This method should be part of the sections # assert type(section_name) is str, 'Only one section type can be retrieved' l0, l1 = self.get_grid_args('sections') where = np.where(self.sections.names == section_name)[0][0] return l0 + self.sections.length[where], l0 + self.sections.length[where + 1] ================================================ FILE: gempy/core/data/grid_modules/__init__.py ================================================ from .regular_grid import RegularGrid from .custom_grid import CustomGrid from .sections_grid import Sections from .topography import Topography ================================================ FILE: gempy/core/data/grid_modules/custom_grid.py ================================================ import dataclasses import numpy as np from pydantic import Field @dataclasses.dataclass class CustomGrid: """Object that contains arbitrary XYZ coordinates. Args: xyx_coords (numpy.ndarray like): XYZ (in columns) of the desired coordinates Attributes: values (np.ndarray): XYZ coordinates """ values: np.ndarray = Field( exclude=True, default_factory=lambda: np.zeros((0, 3)), repr=False ) def __post_init__(self): custom_grid = np.atleast_2d(self.values) assert type(custom_grid) is np.ndarray and custom_grid.shape[1] == 3, \ 'The shape of new grid must be (n,3) where n is the number of' \ ' points of the grid' @property def length(self): return self.values.shape[0] ================================================ FILE: gempy/core/data/grid_modules/diamond_square.py ================================================ """Implementation of Diamond-Square algorithm This algorithm is often used for random topography generation, following Fournier et al., 1982 see https://en.wikipedia.org/wiki/Diamond-square_algorithm. Fournier, Alain; Fussell, Don; Carpenter, Loren (June 1982). "Computer rendering of stochastic models". Communications of the ACM. 25 (6): 371–384. Here the description from the wikipedia page: +++ begin Wikipedia +++ The diamond-square algorithm begins with a 2D square array of width and height 2n + 1. The four corner points of the array must first be set to initial values. The diamond and square steps are then performed alternately until all array values have been set. The diamond step: For each square in the array, set the midpoint of that square to be the average of the four corner points plus a random value. The square step: For each diamond in the array, set the midpoint of that diamond to be the average of the four corner points plus a random value. At each iteration, the magnitude of the random value should be reduced. During the square steps, points located on the edges of the array will have only three adjacent values set rather than four. There are a number of ways to handle this complication - the simplest being to take the average of just the three adjacent values. Another option is to 'wrap around', taking the fourth value from the other side of the array. When used with consistent initial corner values this method also allows generated fractals to be stitched together without discontinuities. +++ end Wikipedia +++ The implementations (in Python) I could find online were either difficult to understand or had many case selections, especially at edges. Here is a fully vectorized implementation, using padding at edges, to avoid all these case selections for a more straight-forward implementation (I hope). This implementation is also adjusted to work on non-square start matrices, and on reduced hierarchies with more initial (internal) points. Created on 10.04.2020 @author: Florian Wellmann """ import numpy as np import matplotlib.pyplot as plt class DiaomondSquare(object): def __init__(self, size: tuple = (16, 16), roughness: float = 0.5, z_min: float = 0, z_max: float = 1, r_type: chr = 'default', **kwds): """Implementation of vectorized Diaomnd-Square algorithm for random topography generation Args: size (int, int): shape of grid to interpolate; note: the standard diamond-square algorithm operates on a square grid with side length 2**n+1. This implementation is adjusted to non-square grids with (2**n+1, 2**m+1). If the input size (int, int) is not matching to the ideal dimension, the next bigger size is taken and the grid finally cut (lower left corner is kept); roughness: roughness parameter, [0,1]: 0: deterministic interpolation, 1: very rough and bumpy (in standard randomisation method - other options available in self.random_func()) z_min: minimum height of surface z_max: maximum height of surface seed: seed for random function to enable reproducibility and testing r_type: 'basic', 'level_scale' (See below for details) Options for the randomization function (self.r_type) are: - 'default': standard reduction - 'level_scale' : uniform distribution between z_min, z_max, scaled by (level + 1) """ self.size = size # Create mesh with optimal size (2**n+1, 2**m+1) # If the input size `self.size` does not match to these dimensions, then the next larger suitable # size is chosen. self.n = np.ceil(np.log2(self.size[0] - 1)).astype('int8') self.m = np.ceil(np.log2(self.size[1] - 1)).astype('int8') self.grid = np.zeros((2 ** self.n + 1, 2 ** self.m + 1)) self.roughness = roughness self.z_min = z_min self.z_max = z_max if 'seed' in kwds: np.random.seed(kwds['seed']) self.base_rand_range = 1 self.r_type = r_type def random_func(self, i, level_shape): """Define random function to adjust range for subsequent steps The random function type is defined on class level (self.r_type) """ if self.r_type == 'default': if self.roughness > 0: rand_range = self.base_rand_range * 2 ** (- (1 - self.roughness) * i) return np.random.uniform(-rand_range, rand_range, level_shape) else: return 0. if self.r_type == 'long_range': if self.roughness > 0: rand_range = self.base_rand_range * 16 ** (- (1 - self.roughness) * i) return np.random.uniform(-rand_range, rand_range, level_shape) else: return 0. elif self.r_type == 'level_scale': if self.roughness > 0: return np.random.uniform(self.z_min, self.z_max, level_shape) / (1 + i) else: return 0. elif self.r_type == 'deterministic': # No randomization at all - deterministic interpolation result return 0. else: raise NotImplementedError("Random function type %s not implemented" % self.r_type) def random_initialization(self, level='highest', verbose: bool=False): """Initialize cells on speicifc hierarchy with random values Args: level = 'hightest', int : hierarchy level for interpolation (default: highest) verbose: verbose output (default: False) With highest hierarchy, we refer here to the largest diamond-square step, i.e. the corner points for a square grid; Or, more formally: the diamond points for `min(self.n, self.m)` """ if level == 'highest': m_pow_max = min(self.n, self.m) else: m_pow_max = level step_size = int(2 ** m_pow_max) if verbose: print("Initialize on step size %d" % step_size) level_shape = self.grid[::step_size, ::step_size].shape self.grid[::step_size, ::step_size] = np.random.uniform(0, 1, level_shape) # self.random_func(0, level_shape) def interpolate(self, level='highest'): """Perform diamond-square interpolation Args: level = 'hightest', int : hierarchy level for interpolation (default: highest) This step follows the conventional procedure: Iterate over hierarchies and repeat: 2) Perform Diamond interpolation step 3) Perform Square interpolation step 4) Reduce roughness factor """ if level == 'highest': # determine highest hierarchy level (determined by shorter rectangle side) m_pow_max = min(self.n, self.m) else: m_pow_max = level for i, m_pow in enumerate(np.arange(m_pow_max)[::-1]): self.perform_diamond_step(i, m_pow) self.perform_square_step(i, m_pow) def reset_grid(self): """Reset grid back to zero values""" self.grid[:, :] = 0 def perform_diamond_step(self, i: int, m_pow: int): """Perform one diamond interpolation step on hierarchy m_pow Note: for more details on the vectorized selection, see self.get_selection_diamond() """ step_size = int(2 ** m_pow) # Diamond step # ---------------- # get shape of this step level_shape = self.grid[step_size::2 * step_size, step_size::2 * step_size].shape self.grid[step_size::2 * step_size, step_size::2 * step_size] = \ (self.grid[:-2 * step_size:2 * step_size, :-2 * step_size:2 * step_size] + self.grid[:-2 * step_size:2 * step_size, 2 * step_size::2 * step_size] + self.grid[2 * step_size::2 * step_size, :-2 * step_size:2 * step_size] + self.grid[2 * step_size::2 * step_size, 2 * step_size::2 * step_size]) / \ 4. + \ self.random_func(i, level_shape) # np.random.uniform(-rand_range, rand_range, level_shape) # self.d * 2**() # self.roughness ** i * (np.random.random(step_shape) - 0.5) # (np.random.random(step_shape) - 0.5) * i * self.roughness def perform_square_step(self, i: int, m_pow: int): """Perform one square interpolation step on hierarchy m_pow Note: for more details on the vectorized selection, see self.get_selection_square() """ step_size = int(2 ** m_pow) # pad cells with zero value z_pad = np.pad(self.grid, step_size, mode='constant') # also create a grid for division to divide only by 3 on borders grid_div = np.ones_like(self.grid[1:-1, 1:-1]) * 4. grid_div = np.pad(grid_div, step_size + 1, mode='constant', constant_values=3.) # Checkerboard odd # ---------------- # get shape of this step level_shape = grid_div[step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size].shape z_pad[step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] = \ (z_pad[step_size::2 * step_size, step_size:-2 * step_size:2 * step_size] + z_pad[step_size::2 * step_size, 3 * step_size:-step_size:2 * step_size] + z_pad[:-step_size:2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] + z_pad[2 * step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size]) / \ grid_div[step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] + \ self.random_func(i, level_shape) # np.random.uniform(-rand_range, rand_range, level_shape) # self.roughness ** i * (np.random.random(step_shape) - 0.5) # (np.random.random(step_shape) - 0.5) * i * self.roughness # Checkerboard even # ----------------- # get shape of this step level_shape = z_pad[2 * step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size].shape # check-even, values to interpolate: z_pad[2 * step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size] = \ (z_pad[2 * step_size:-2 * step_size:2 * step_size, :-2 * step_size:2 * step_size] + z_pad[2 * step_size:-2 * step_size:2 * step_size, 2 * step_size::2 * step_size] + z_pad[step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size] + z_pad[3 * step_size::2 * step_size, step_size:-step_size:2 * step_size]) / \ grid_div[2 * step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size] + \ self.random_func(i, level_shape) # np.random.uniform(-rand_range, rand_range, level_shape) # self.roughness ** i * (np.random.random(step_shape) - 0.5) # (np.random.random(step_shape) - 0.5) * i * self.roughness # assign results back to self.grid self.grid = z_pad[step_size:-step_size, step_size:-step_size] def get_selection_diamond(self, m_pow: int): """get selected points for diamond step on grid z on hierarchy m This method is mostly implemented for testing and visualization purposes. """ step_size = int(2 ** m_pow) z = np.zeros_like(self.grid, dtype='int8') # points to interpolate z[step_size::2 * step_size, step_size::2 * step_size] = 1 # top left z[:-2 * step_size:2 * step_size, :-2 * step_size:2 * step_size] = 2 # top right z[:-2 * step_size:2 * step_size, 2 * step_size::2 * step_size] = 2 # bottom left z[2 * step_size::2 * step_size, :-2 * step_size:2 * step_size] = 2 # bottom right z[2 * step_size::2 * step_size, 2 * step_size::2 * step_size] = 2 return z def get_selection_square(self, m_pow: int): """Plot selected points for square step on grid z on hierarchy m This method is mostly implemented for testing and visualization purposes. """ z = np.zeros_like(self.grid, dtype='int8') step_size = int(2 ** m_pow) # pad cells with zero value z_pad = np.pad(z, step_size, mode='constant') # Checkerboard odd # ---------------- # check-odd, values to interpolate: z_pad[step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] = 1 # check-odd, left z_pad[step_size::2 * step_size, step_size:-2 * step_size:2 * step_size] = 2 # check-odd, right z_pad[step_size::2 * step_size, 3 * step_size:-step_size:2 * step_size] = 2 # check-odd, top z_pad[:-step_size:2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] = 2 # check-odd, bottom z_pad[2 * step_size::2 * step_size, 2 * step_size:-2 * step_size:2 * step_size] = 2 # Checkerboard even # ----------------- # check-even, values to interpolate: z_pad[2 * step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size] = 1 # check-even, left: z_pad[2 * step_size:-2 * step_size:2 * step_size, :-2 * step_size:2 * step_size] = 2 # check-even, right: z_pad[2 * step_size:-2 * step_size:2 * step_size, 2 * step_size::2 * step_size] = 2 # check-even, top: z_pad[step_size:-2 * step_size:2 * step_size, step_size:-step_size:2 * step_size] = 2 # check-even, bottom: z_pad[3 * step_size::2 * step_size, step_size:-step_size:2 * step_size] = 2 return z_pad def plot_diamond_and_square(self, pad=False): """Plot selected points for diamond and square step for all hierarchies side by side""" m_pow_max = min(self.n, self.m) shape_ratio = self.n / self.m f, axes = plt.subplots(2, m_pow_max, figsize=(12, 12 * shape_ratio / m_pow_max * 2)) for i, m_pow in enumerate(np.arange(m_pow_max)[::-1]): m = 2 ** m_pow # z_zero = np.zeros_like(self.grid) z_diamond = self.get_selection_diamond(m_pow) z_square = self.get_selection_square(m_pow) if pad: z_pad = np.pad(z_diamond, m, mode='constant') axes[0, i].imshow(z_pad, cmap='viridis', vmin=0, vmax=2) axes[1, i].imshow(z_square, cmap='viridis', vmin=0, vmax=2) else: axes[0, i].imshow(z_diamond, cmap='viridis', vmin=0, vmax=2) axes[1, i].imshow(z_square[m:-m, m:-m], cmap='viridis', vmin=0, vmax=2) ================================================ FILE: gempy/core/data/grid_modules/regular_grid.py ================================================ import dataclasses from pydantic import model_validator, Field from typing import Optional, Sequence, Annotated import numpy as np from ..encoders.converters import numpy_array_short_validator from .... import optional_dependencies from gempy_engine.core.data.transforms import Transform @dataclasses.dataclass class RegularGrid: """ Class with the methods and properties to manage 3D regular grids where the model will be interpolated. """ resolution: Annotated[np.ndarray, numpy_array_short_validator] = dataclasses.field(default_factory=lambda: np.ones((0, 3), dtype='int64')) extent: Annotated[np.ndarray, numpy_array_short_validator] = dataclasses.field(default_factory=lambda: np.zeros(6, dtype='float64')) #: this is the ORTHOGONAL extent. If the grid is rotated, the extent will be different values: Annotated[np.ndarray, Field(exclude=True)] = dataclasses.field(default_factory=lambda: np.zeros((0, 3))) mask_topo: Annotated[np.ndarray, Field(exclude=True)] = dataclasses.field(default_factory=lambda: np.zeros((0, 3), dtype=bool)) _transform: Transform | None = None #: If a transform exists, it will be applied to the grid _base_resolution: Annotated[np.ndarray, numpy_array_short_validator] = dataclasses.field(default_factory=lambda: np.array([2,2,2], dtype='int64')) def __init__(self, extent: np.ndarray, resolution: np.ndarray, transform: Optional[Transform] = None): self.resolution = np.ones((0, 3), dtype='int64') self.extent = np.zeros(6, dtype='float64') self.values = np.zeros((0, 3)) self.mask_topo = np.zeros((0, 3), dtype=bool) self._base_resolution = np.array([2,2,2]) self.set_regular_grid(extent, resolution, transform) @classmethod def octree_init(cls, extent: np.ndarray, octree_levels: int, base_resolution: np.ndarray, transform: Optional[Transform] = None): grid = cls( extent=extent, resolution=base_resolution * 2 ** (octree_levels - 1), transform=transform ) grid._base_resolution = base_resolution return grid @property def base_resolution(self): return self._base_resolution @base_resolution.setter def base_resolution(self, value): self._base_resolution = value @model_validator(mode="after") def _validate_regular_grid(self): self._create_regular_grid_3d() return self def _create_regular_grid_3d(self): coords = self.x_coord, self.y_coord, self.z_coord g = np.meshgrid(*coords, indexing="ij") values = np.vstack(tuple(map(np.ravel, g))).T.astype("float64") # Transform the values if self.transform is not None: self.values = self.transform.apply_inverse_with_pivot( points=values, pivot=np.array([self.extent[0], self.extent[2], self.extent[4]]) ) else: self.values = values def set_regular_grid(self, extent: Sequence[float], resolution: Sequence[int], transform: Optional[Transform] = None): """ Set a regular grid into the values parameters for further computations Args: extent (list, np.ndarry): [x_min, x_max, y_min, y_max, z_min, z_max] resolution (list, np.ndarray): [nx, ny, nz] """ # * Check extent and resolution are not the same extent_equal = np.array_equal(extent, self.extent) resolution_equal = np.array_equal(resolution, self.resolution) if extent_equal and resolution_equal: return self.values self.extent = np.asarray(extent, dtype='float64') self.resolution = np.asarray(resolution) self.transform = transform self._create_regular_grid_3d() @property def transform(self) -> Transform: if self._transform is None: return Transform.init_neutral() return self._transform @transform.setter def transform(self, value: Transform): self._transform = value @classmethod def from_corners_box(cls, pivot: tuple, point_x_axis: tuple, distance_point3: float, zmin: float, zmax: float, resolution: np.ndarray, plot: bool = True): """Always rotate around the z axis towards the positive x axis. The distance_point3 is the distance from the pivot to the point3.""" def _calculate_rotated_box_val(v1, v2): # Check if the points are collinear # noinspection PyUnreachableCode cross = np.cross(v1[:2], v2[:2]) if np.isclose(cross, 0): raise ValueError("The points are collinear") # Check if v1 and v2 are perpendicular if not np.isclose(np.dot(v1, v2), 0, atol=1e-4): # Compute the closest valid p3 v1_norm = v1 / np.linalg.norm(v1) v2_projected = v2 - np.dot(v2, v1_norm) * v1_norm p3_corrected = np.array([x1, y1, 0]) + v2_projected x3, y3 = p3_corrected[:2] raise ValueError(f"The provided points are not perpendicular. Suggested corrected point3: ({x3}, {y3})") # Calculate the orthonormal basis v1_norm = v1 / np.linalg.norm(v1) v2_norm = v2 / np.linalg.norm(v2) # noinspection PyUnreachableCode # v3_norm = np.cross(v1_norm, v2_norm) v3_norm = np.array([0, 0, 1]) # ! We assume rotation is always around z axis return v1_norm, v2_norm, v3_norm # Define the coordinates of the three points x1, y1 = pivot x2, y2 = point_x_axis dx, dy = point_x_axis[0] - pivot[0], point_x_axis[1] - pivot[1] x3, y3 = (pivot[0] - dy * distance_point3 / np.hypot(dx, dy), pivot[1] + dx * distance_point3 / np.hypot(dx, dy)) # Calculate the vectors along the sides of the rectangle v1 = np.array([x2 - x1, y2 - y1, 0]) v2 = np.array([x3 - x1, y3 - y1, 0]) v1_norm, v2_norm, v3_norm = _calculate_rotated_box_val(v1, v2) # Create the rotation matrix rotation_matrix = np.array([ [v1_norm[0], v2_norm[0], v3_norm[0], 0], [v1_norm[1], v2_norm[1], v3_norm[1], 0], [v1_norm[2], v2_norm[2], v3_norm[2], 0], [0, 0, 0, 1] ]) inverted_rotation_matrix = np.linalg.inv(rotation_matrix) # Calculate the extents in the new coordinate system extent_x = np.linalg.norm(v1) extent_y = np.linalg.norm(v2) # We transform the origin point1 to the new coordinates origin_ = [x1, y1, zmin] xmin, ymin, zmin = origin_ xmax, ymax, zmax = xmin + extent_x, ymin + extent_y, zmin + zmax - zmin extent = np.array([xmin, xmax, ymin, ymax, zmin, zmax], dtype='float64') transform = Transform.from_matrix(inverted_rotation_matrix) transform.cached_pivot = origin_ grid = cls(extent=extent, resolution=resolution, transform=transform) if plot: cls.plot_rotation( regular_grid=grid, pivot=pivot, point_x_axis=point_x_axis, point_y_axis=(x3, y3) ) return grid @property def bounding_box(self) -> np.ndarray: extents = self.extent # Define 3D points of the bounding box corners based on extents bounding_box_points = np.array([[extents[0], extents[2], extents[4]], # min x, min y, min z [extents[0], extents[2], extents[5]], # min x, min y, max z [extents[0], extents[3], extents[4]], # min x, max y, min z [extents[0], extents[3], extents[5]], # min x, max y, max z [extents[1], extents[2], extents[4]], # max x, min y, min z [extents[1], extents[2], extents[5]], # max x, min y, max z [extents[1], extents[3], extents[4]], # max x, max y, min z [extents[1], extents[3], extents[5]]]) # max x, max y, max z return bounding_box_points @property def x_coord(self): return np.linspace(self.extent[0] + self.dx / 2, self.extent[1] - self.dx / 2, self.resolution[0], dtype="float64") @property def y_coord(self): return np.linspace(self.extent[2] + self.dy / 2, self.extent[3] - self.dy / 2, self.resolution[1], dtype="float64") @property def z_coord(self): return np.linspace(self.extent[4] + self.dz / 2, self.extent[5] - self.dz / 2, self.resolution[2], dtype="float64") @property def dx_dy_dz(self): dx = (self.extent[1] - self.extent[0]) / self.resolution[0] dy = (self.extent[3] - self.extent[2]) / self.resolution[1] dz = (self.extent[5] - self.extent[4]) / self.resolution[2] return dx, dy, dz @property def dx(self): return (self.extent[1] - self.extent[0]) / self.resolution[0] @property def dy(self): return (self.extent[3] - self.extent[2]) / self.resolution[1] @property def dz(self): return (self.extent[5] - self.extent[4]) / self.resolution[2] @property def values_vtk_format(self) -> np.ndarray: return self.get_values_vtk_format() def get_values_vtk_format(self, orthogonal: bool = False) -> np.ndarray: extent = self.extent resolution = self.resolution + 1 x = np.linspace(extent[0], extent[1], resolution[0], dtype="float64") y = np.linspace(extent[2], extent[3], resolution[1], dtype="float64") z = np.linspace(extent[4], extent[5], resolution[2], dtype="float64") xv, yv, zv = np.meshgrid(x, y, z, indexing="ij") g = np.vstack((xv.ravel(), yv.ravel(), zv.ravel())).T # Transform the values if self.transform is not None and orthogonal is False: g = self.transform.apply_inverse_with_pivot( points=g, pivot=np.array([self.extent[0], self.extent[2], self.extent[4]]) ) return g @staticmethod def plot_rotation(regular_grid, pivot, point_x_axis, point_y_axis): plt = optional_dependencies.require_matplotlib() x1, y1 = pivot x2, y2 = point_x_axis x3, y3 = point_y_axis # Plot the original corners plt.scatter([x1, x2, x3], [y1, y2, y3], c='r') # Plot lines with distance labels plt.plot([x1, x2], [y1, y2], 'r') plt.text((x1 + x2) / 2, (y1 + y2) / 2, f'{np.linalg.norm([x1 - x2, y1 - y2]):.2f}', color='r') plt.plot([x1, x3], [y1, y3], 'r') plt.text((x1 + x3) / 2, (y1 + y3) / 2, f'{np.linalg.norm([x1 - x3, y1 - y3]):.2f}', color='r') # Plot the transformed corners transformed_extent = regular_grid.extent bounding_box = regular_grid.bounding_box plt.scatter(bounding_box[:, 0], bounding_box[:, 1], c='b') # Plot lines with distance labels plt.plot([bounding_box[2, 0], bounding_box[0, 0]], [bounding_box[2, 1], bounding_box[0, 1]], 'b') plt.text((bounding_box[2, 0] + bounding_box[0, 0]) / 2, (bounding_box[2, 1] + bounding_box[0, 1]) / 2, f'{np.linalg.norm(bounding_box[2] - bounding_box[0]):.2f}', color='b') plt.plot([bounding_box[0, 0], bounding_box[4, 0]], [bounding_box[0, 1], bounding_box[4, 1]], 'b') plt.text((bounding_box[0, 0] + bounding_box[4, 0]) / 2, (bounding_box[0, 1] + bounding_box[4, 1]) / 2, f'{np.linalg.norm(bounding_box[0] - bounding_box[4]):.2f}', color='b') # Plot the values of the grid values = regular_grid.values plt.scatter(values[:, 0], values[:, 1], c='g') plt.show() ================================================ FILE: gempy/core/data/grid_modules/sections_grid.py ================================================ from __future__ import annotations # Python 3.7+ only import dataclasses import numpy as np from pydantic import Field from typing import Tuple, Dict, List, Optional, Any from ..core_utils import calculate_line_coordinates_2points from ..encoders.converters import short_array_type from ....optional_dependencies import require_pandas @dataclasses.dataclass class Sections: """ Object that creates a grid of cross sections between two points. Args: regular_grid: Model.grid.regular_grid section_dict: {'section name': ([p1_x, p1_y], [p2_x, p2_y], [xyres, zres])} """ """ Pydantic v2 model of your original Sections class. All computed fields are initialized with model_validator. """ # user‐provided inputs z_ext: Tuple[float, float] | short_array_type section_dict: Dict[ str, Tuple[ Tuple[float, float], # start Tuple[float, float], # stop Tuple[int, int] # resolution ] ] # computed/internal (will be serialized too unless excluded) names: short_array_type = Field(default=np.array([]), exclude=True) points: List[List[Tuple[float, float]]] = Field(default_factory=list, exclude=True) resolution: List[Tuple[int, int]] = Field(default_factory=list, exclude=True) length: np.ndarray = Field(default_factory=lambda: np.array([0]), exclude=True) dist: np.ndarray = Field(default_factory=lambda: np.array([]), exclude=True) df: Optional[Any] = Field(default=None, exclude=True) values: np.ndarray = Field(default_factory=lambda: np.empty((0, 3)), exclude=True) extent: Optional[np.ndarray] = Field(default=None, exclude=True) def __post_init__(self): self.initialize_computations() pass def initialize_computations(self): # copy names self.names = np.array(list(self.section_dict.keys())) # build points/resolution/length self._get_section_params() # compute distances self._calculate_all_distances() # re-build DataFrame pd = require_pandas() df = pd.DataFrame.from_dict( data=self.section_dict, orient="index", columns=["start", "stop", "resolution"], ) df["dist"] = self.dist self.df = df # compute the XYZ grid self._compute_section_coordinates() def _repr_html_(self): return self.df.to_html() def __repr__(self): return self.df.to_string() def show(self): pass def set_sections(self, section_dict, regular_grid=None, z_ext=None): pd = require_pandas() self.section_dict = section_dict if regular_grid is not None: self.z_ext = regular_grid.extent[4:] self.initialize_computations() def _get_section_params(self): self.points = [] self.resolution = [] self.length = [0] for i, section in enumerate(self.names): points = [self.section_dict[section][0], self.section_dict[section][1]] assert points[0] != points[ 1], 'The start and end points of the section must not be identical.' self.points.append(points) self.resolution.append(self.section_dict[section][2]) self.length = np.append(self.length, self.section_dict[section][2][0] * self.section_dict[section][2][1]) self.length = np.array(self.length).cumsum() def _calculate_all_distances(self): self.coordinates = np.array(self.points).ravel().reshape(-1, 4) # axis are x1,y1,x2,y2 self.dist = np.sqrt(np.diff(self.coordinates[:, [0, 2]]) ** 2 + np.diff( self.coordinates[:, [1, 3]]) ** 2) def _compute_section_coordinates(self): for i in range(len(self.names)): xy = calculate_line_coordinates_2points(self.coordinates[i, :2], self.coordinates[i, 2:], self.resolution[i][0]) zaxis = np.linspace(self.z_ext[0], self.z_ext[1], self.resolution[i][1], dtype="float64") X, Z = np.meshgrid(xy[:, 0], zaxis, indexing='ij') Y, _ = np.meshgrid(xy[:, 1], zaxis, indexing='ij') xyz = np.vstack((X.flatten(), Y.flatten(), Z.flatten())).T if i == 0: self.values = xyz else: self.values = np.vstack((self.values, xyz)) def generate_axis_coord(self): for i, name in enumerate(self.names): xy = calculate_line_coordinates_2points( self.coordinates[i, :2], self.coordinates[i, 2:], self.resolution[i][0] ) yield name, xy def get_section_args(self, section_name: str): where = np.where(self.names == section_name)[0][0] return self.length[where], self.length[where + 1] def get_section_grid(self, section_name: str): l0, l1 = self.get_section_args(section_name) return self.values[l0:l1] ================================================ FILE: gempy/core/data/grid_modules/topography.py ================================================ import dataclasses import warnings from pydantic import Field from typing import Optional, Tuple, Annotated import numpy as np from .regular_grid import RegularGrid from ....optional_dependencies import require_skimage, require_scipy from dataclasses import field, dataclass from ..encoders.converters import short_array_type @dataclass class Topography: """ Object to include topography in the model. Notes: This always assumes that the topography we pass fits perfectly the extent. """ _regular_grid: RegularGrid values_2d: Annotated[np.ndarray, Field(exclude=True)] = field(default_factory=lambda: np.zeros((0, 0, 3))) source: Optional[str] = None # Fields managed internally values: short_array_type = field(init=False, default_factory=lambda: np.zeros((0, 3))) resolution: Tuple[int, int] = Field(init=True, default=(0, 0)) raster_shape: Tuple[int, ...] = field(init=False, default_factory=tuple) _mask_topo: Optional[np.ndarray] = field(init=False, default=None, repr=False) _x: Optional[np.ndarray] = field(init=False, default=None, repr=False) _y: Optional[np.ndarray] = field(init=False, default=None, repr=False) def __post_init__(self): # if a non-empty array was provided, initialize the flattened values if self.values_2d.size: self.set_values(self.values_2d) @classmethod def from_subsurface_structured_data(cls, structured_data: 'subsurface.StructuredData', regular_grid: RegularGrid): """Creates a topography object from a subsurface structured data object Args: structured_data (subsurface.StructuredData): Structured data object Returns: :class:`gempy.core.grid_modules.topography.Topography` """ # Generate meshgrid for x and y coordinates ds = structured_data.data x_coordinates = ds['x'] y_coordinates = ds['y'] height_values = ds['topography'] return cls.from_arrays(regular_grid, x_coordinates, y_coordinates, height_values) @classmethod def from_unstructured_mesh(cls, regular_grid, xyz_vertices): """Creates a topography object from an unstructured mesh of XYZ vertices. Args: regular_grid (RegularGrid): The regular grid object. xyz_vertices (numpy.ndarray): Array of XYZ vertices of the unstructured mesh. Returns: :class:`gempy.core.grid_modules.topography.Topography` """ # Perform Delaunay triangulation on the vertices # Generate the regular grid points from scipy.interpolate import griddata x_regular, y_regular = np.meshgrid( np.linspace(regular_grid.extent[0], regular_grid.extent[1], regular_grid.resolution[0]), np.linspace(regular_grid.extent[2], regular_grid.extent[3], regular_grid.resolution[1]), indexing='ij' ) # Interpolate the z-values onto the regular grid z_regular = griddata( points=xyz_vertices[:, :2], values=xyz_vertices[:, 2], xi=(x_regular, y_regular), method='nearest', fill_value=np.nan # You can choose a different fill value or method ) # Reshape the grid for compatibility with existing structure values_2d = np.stack((x_regular, y_regular, z_regular), axis=-1) return cls(_regular_grid=regular_grid, values_2d=values_2d) @classmethod def from_arrays(cls, regular_grid, x_coordinates, y_coordinates, height_values,): x_vals, y_vals = np.meshgrid(x_coordinates, y_coordinates, indexing='ij') # Reshape arrays for stacking x_vals = x_vals[:, :, np.newaxis] # shape (73, 34, 1) y_vals = y_vals[:, :, np.newaxis] # shape (73, 34, 1) topography_vals = height_values.values[:, :, np.newaxis] # shape (73, 34, 1) # Stack along the last dimension result = np.concatenate([x_vals, y_vals, topography_vals], axis=2) # shape (73, 34, 3) return cls(_regular_grid=regular_grid, values_2d=result) @property def extent(self): return self._regular_grid.extent @property def regular_grid_resolution(self): return self._regular_grid.resolution @property def x(self): if self._x is not None: return self._x else: val = self.values[:, 0].copy() val.sort() return np.unique(val) @property def y(self): if self._y is not None: return self._y else: val = self.values[:, 1].copy() val.sort() return np.unique(val) def set_values(self, values_2d: np.ndarray): """General method to set topography Args: values_2d (numpy.ndarray[float,float, 3]): array with the XYZ values in 2D Returns: :class:`gempy.core.grid_modules.topography.Topography` """ # Original topography data self.values_2d = values_2d self.resolution = values_2d.shape[:2] # n,3 array self.values = values_2d.reshape((-1, 3), order='C') return self def set_values2d(self, values: np.ndarray) -> "Topography": """ Reconstruct the 2D topography (shape = resolution + [3]) from a flat Nx3 array (or from self.values if none is provided). """ # default to the already-flattened XYZ array # compute expected size nx, ny = self.resolution expected = nx * ny * 3 if values.size != expected: raise ValueError( f"Cannot reshape array of size {values.size} into shape {(nx, ny, 3)}." ) # reshape in C-order to (nx, ny, 3) self.set_values( values_2d=values.reshape(nx, ny, 3, order="C") ) # invalidate any cached mask self._mask_topo = None return self def set_values2d_(self, values: np.ndarray): resolution = (60, 60) self.values_2d = values.reshape(*resolution, 3) @property def topography_mask(self): """This method takes a topography grid of the same extent as the regular grid and creates a mask of voxels """ # * Check if the topography is the same as the cached one and if so, return the cached mask if self._mask_topo is not None: return self._mask_topo # interpolate topography values to the regular grid skimage = require_skimage() regular_grid_topo = skimage.transform.resize( image=self.values_2d, output_shape=(self.regular_grid_resolution[0], self.regular_grid_resolution[1]), mode='constant', anti_aliasing=False, preserve_range=True ) # Adjust the topography to be lower by half a voxel height # Assumes your voxel heights are uniform and can be calculated as the total height divided by resolution voxel_height = self._regular_grid.dz * 2 regular_grid_topo = regular_grid_topo - voxel_height # Reshape the Z values of the regular grid to 3d values_3d = self._regular_grid.values[:, 2].reshape(self.regular_grid_resolution) if regular_grid_topo.ndim == 3: regular_grid_topo_z = regular_grid_topo[:, :, [2]] elif regular_grid_topo.ndim == 2: regular_grid_topo_z = regular_grid_topo else: raise ValueError() mask = np.greater(values_3d[:, :, :], regular_grid_topo_z) self._mask_topo = mask return self._mask_topo def resize_topo(self): skimage = require_skimage() regular_grid_topo = skimage.transform.resize( self.values_2d, (self.regular_grid_resolution[0], self.regular_grid_resolution[1]), mode='constant', anti_aliasing=False, preserve_range=True) return regular_grid_topo def load_random_hills(self, **kwargs): warnings.warn('This function is deprecated. Use load_from_random instead', DeprecationWarning) if 'extent' in kwargs: self.extent = kwargs.pop('extent') if 'resolution' in kwargs: self.regular_grid_resolution = kwargs.pop('resolution') dem = _LoadDEMArtificial(extent=self.extent, resolution=self.regular_grid_resolution, **kwargs) self._x, self._y = dem.x, dem.y self.set_values(dem.get_values()) def save(self, path): np.save(path, self.values_2d) def load(self, path): self.set_values(np.load(path)) self._x, self._y = None, None return self.values def load_from_saved(self, *args, **kwargs): self.load(*args, **kwargs) class _LoadDEMArtificial: # * Cannot think of a good reason to be a class def __init__(self, grid=None, fd=2.0, extent=None, resolution=None, d_z=None): """Class to create a random topography based on a fractal grid algorithm. Args: fd: fractal dimension, defaults to 2.0 d_z: maximum height difference. If none, last 20% of the model in z direction extent: extent in xy direction. If none, geo_model.grid.extent resolution: desired resolution of the topography array. If none, geo_model.grid.resolution """ self.values_2d = np.array([]) self.resolution = grid.resolution[:2] if resolution is None else resolution assert all(np.asarray(self.resolution) >= 2), 'The regular grid needs to be at least of size 2 on all directions.' self.extent = grid.extent if extent is None else extent if d_z is None: self.d_z = np.array([self.extent[5] - (self.extent[5] - self.extent[4]) * 1 / 5, self.extent[5]]) print(self.d_z) else: self.d_z = d_z topo = self.fractalGrid(fd, n=self.resolution.max()) topo = np.interp(topo, (topo.min(), topo.max()), self.d_z) self.dem_zval = topo[:self.resolution[0], :self.resolution[1]] # crop fractal grid with resolution self.create_topo_array() @staticmethod def fractalGrid(fd, n=256): """ Modified after https://github.com/samthiele/pycompass/blob/master/examples/3_Synthetic%20Examples.ipynb Generate isotropic fractal surface image using spectral synthesis method [1, p.] References: 1. Yuval Fisher, Michael McGuire, The Science of Fractal Images, 1988 (cf. http://shortrecipes.blogspot.com.au/2008/11/python-isotropic-fractal-surface.html) **Arguments**: -fd = the fractal dimension -N = the size of the fractal surface/image """ h = 1 - (fd - 2) # X = np.zeros((N, N), complex) a = np.zeros((n, n), complex) powerr = -(h + 1.0) / 2.0 for i in range(int(n / 2) + 1): for j in range(int(n / 2) + 1): phase = 2 * np.pi * np.random.rand() if i != 0 or j != 0: rad = (i * i + j * j) ** powerr * np.random.normal() else: rad = 0.0 a[i, j] = complex(rad * np.cos(phase), rad * np.sin(phase)) if i == 0: i0 = 0 else: i0 = n - i if j == 0: j0 = 0 else: j0 = n - j a[i0, j0] = complex(rad * np.cos(phase), -rad * np.sin(phase)) a.imag[int(n / 2)][0] = 0.0 a.imag[0, int(n / 2)] = 0.0 a.imag[int(n / 2)][int(n / 2)] = 0.0 for i in range(1, int(n / 2)): for j in range(1, int(n / 2)): phase = 2 * np.pi * np.random.rand() rad = (i * i + j * j) ** powerr * np.random.normal() a[i, n - j] = complex(rad * np.cos(phase), rad * np.sin(phase)) a[n - i, j] = complex(rad * np.cos(phase), -rad * np.sin(phase)) scipy = require_scipy() itemp = scipy.fftpack.ifft2(a) itemp = itemp - itemp.min() return itemp.real / itemp.real.max() def create_topo_array(self): """for masking the lith block""" x = np.linspace(self.extent[0], self.extent[1], self.resolution[0]) y = np.linspace(self.extent[2], self.extent[3], self.resolution[1]) self.x = x self.y = y xx, yy = np.meshgrid(x, y, indexing='ij') self.values_2d = np.dstack([xx, yy, self.dem_zval]) def get_values(self): return self.values_2d ================================================ FILE: gempy/core/data/importer_helper.py ================================================ from dataclasses import dataclass from typing import Optional @dataclass class ImporterHelper: path_to_surface_points: Optional[str] path_to_orientations: Optional[str] hash_surface_points: Optional[str] = None hash_orientations: Optional[str] = None coord_x_name: Optional[str] = "X" coord_y_name: Optional[str] = "Y" coord_z_name: Optional[str] = "Z" surface_name: Optional[str] = "formation" gx_name: Optional[str] = "G_x" gy_name: Optional[str] = "G_y" gz_name: Optional[str] = "G_z" pandas_reader_kwargs: Optional[dict] = None # ? Add here pandas reader options ================================================ FILE: gempy/core/data/options.py ================================================ import enum class InterpolationOptionsType(enum.Enum): DENSE_GRID = enum.auto() OCTREE = enum.auto() ================================================ FILE: gempy/core/data/orientations.py ================================================ from dataclasses import dataclass from typing import Optional, Sequence, Union import numpy as np from gempy_engine.core.data.transforms import Transform from pydantic import Field from ...optional_dependencies import require_pandas from ._data_points_helpers import generate_ids_from_names DEFAULT_ORI_NUGGET = 0.01 # ? Maybe we should merge this with the SurfacePoints class from gempy_engine @dataclass(init=True) class OrientationsTable: """ A dataclass to represent a table of orientations in a geological model. """ dt = np.dtype([('X', 'f8'), ('Y', 'f8'), ('Z', 'f8'), ('G_x', 'f8'), ('G_y', 'f8'), ('G_z', 'f8'), ('id', 'i4'), ('nugget', 'f8')]) #: The custom data type for the data array. data: np.ndarray = Field( default=np.zeros(0, dtype=dt), exclude=True, description="A structured NumPy array holding the X, Y, Z coordinates, gradients G_x, G_y, G_z, id, and nugget of each orientation.", ) #: A structured NumPy array holding the X, Y, Z coordinates, id, and nugget of each surface point. name_id_map: Optional[dict[str, int]] = None #: A mapping between orientation names and ids. _model_transform: Optional[Transform] = None def __post_init__(self): # Check if the data array has the correct data type if self.data.dtype != OrientationsTable.dt: raise ValueError(f"Data array must have the following data type: {OrientationsTable.dt}") @classmethod def from_arrays(cls, x: np.ndarray, y: np.ndarray, z: np.ndarray, G_x: np.ndarray, G_y: np.ndarray, G_z: np.ndarray, names: Union[Sequence | str], nugget: Optional[np.ndarray] = None, name_id_map: Optional[dict[str, int]] = None) -> 'OrientationsTable': """Create an OrientationsTable from arrays. Args: x (np.ndarray): Array of x-coordinates. y (np.ndarray): Array of y-coordinates. z (np.ndarray): Array of z-coordinates. G_x (np.ndarray): Array of x-components of the gradients. G_y (np.ndarray): Array of y-components of the gradients. G_z (np.ndarray): Array of z-components of the gradients. names (Union[Sequence[str], str]): Sequence of names corresponding to each orientation. nugget (Optional[np.ndarray]): Array of nugget values. If None, defaults are used. name_id_map (Optional[dict[str, int]]): Mapping between names and ids. Returns: OrientationsTable: The created OrientationsTable. """ data, name_id_map = cls._data_from_arrays(x, y, z, G_x, G_y, G_z, names, nugget, name_id_map) return cls(data, name_id_map) @classmethod def _data_from_arrays(cls, x, y, z, G_x, G_y, G_z, names, nugget, name_id_map=None) -> tuple[np.ndarray, dict[str, int]]: if nugget is None: nugget = np.zeros_like(x) + DEFAULT_ORI_NUGGET if name_id_map is None: ids, name_id_map = generate_ids_from_names(name_id_map, names, x) else: ids = np.array([name_id_map[name] for name in names]) data = np.zeros(len(x), dtype=OrientationsTable.dt) data['X'], data['Y'], data['Z'], data['G_x'], data['G_y'], data['G_z'], data['id'], data['nugget'] = x, y, z, G_x, G_y, G_z, ids, nugget return data, name_id_map @classmethod def initialize_empty(cls) -> 'OrientationsTable': return cls(np.zeros(0, dtype=OrientationsTable.dt)) @property def xyz(self) -> np.ndarray: """Get the XYZ coordinates. Returns: np.ndarray: The XYZ coordinates. """ return np.array([self.data['X'], self.data['Y'], self.data['Z']]).T @property def xyz_view(self) -> np.ndarray: """Get a view of the XYZ coordinates. Returns: np.ndarray: A view of the XYZ coordinates. """ return self.data[['X', 'Y', 'Z']] @xyz_view.setter def xyz_view(self, value: np.ndarray): """Set the XYZ coordinates. Args: value (np.ndarray): The new XYZ coordinates. """ self.data['X'], self.data['Y'], self.data['Z'] = value.T @property def grads(self) -> np.ndarray: """Get the gradient components. Returns: np.ndarray: The gradient components. """ return np.array([self.data['G_x'], self.data['G_y'], self.data['G_z']]).T @property def grads_view(self) -> np.ndarray: """Get a view of the gradient components. Returns: np.ndarray: A view of the gradient components. """ return self.data[['G_x', 'G_y', 'G_z']] @grads_view.setter def grads_view(self, value: np.ndarray): """Set the gradient components. Args: value (np.ndarray): The new gradient components. """ self.data['G_x'], self.data['G_y'], self.data['G_z'] = value.T @property def nugget(self) -> np.ndarray: """Get the nugget values. Returns: np.ndarray: The nugget values. """ return self.data['nugget'] @property def ids(self) -> np.ndarray: """Get the IDs. Returns: np.ndarray: The IDs. """ return self.data['id'] def get_orientations_by_name(self, name: str) -> 'OrientationsTable': """Get orientations by name. Args: name (str): The name of the orientations. Returns: OrientationsTable: The orientations corresponding to the given name. """ return self.get_orientations_by_id(self.name_id_map[name]) def get_orientations_by_id(self, id: int) -> 'OrientationsTable': """Get orientations by ID. Args: id (int): The ID of the orientations. Returns: OrientationsTable: The orientations corresponding to the given ID. """ return OrientationsTable(self.data[self.data['id'] == id], self.name_id_map) def get_orientations_by_id_groups(self) -> list['OrientationsTable']: """Get orientations grouped by ID. Returns: list[OrientationsTable]: A list of OrientationsTable objects, each corresponding to a unique ID. """ ids = np.unique(self.data['id']) return [self.get_orientations_by_id(id) for id in ids] @classmethod def fill_missing_orientations_groups(cls, orientations_groups: list['OrientationsTable'], surface_points_groups: list['SurfacePointsTable']) -> list['OrientationsTable']: """ Fill Missing Orientations Groups Fills in missing orientations in a list of orientations groups based on a list of surface points. Args: """ # region Deal with elements without orientations if len(surface_points_groups) > len(orientations_groups): # Check the ids of the surface points and find the missing ones surface_points_ids = [surface_points_group.id for surface_points_group in surface_points_groups] orientations_ids = [orientations_group.id for orientations_group in orientations_groups] missing_ids = list(set(surface_points_ids) - set(orientations_ids)) empty_orientations = [cls(data=np.zeros(0, dtype=cls.dt)) for id in missing_ids] # Create empty orientations for empty_orientation, id in zip(empty_orientations, missing_ids): # Insert the empty orientations in the right position orientations_groups.insert(id, empty_orientation) # endregion return orientations_groups @classmethod def empty_orientation(cls, id: int) -> 'OrientationsTable': zeros = np.zeros(0, dtype=cls.dt) zeros['id'] = id return cls(data=zeros, name_id_map={}) @property def id(self) -> int: # Check id is the same in the whole column and return it or throw an error ids = np.unique(self.data['id']) if len(ids) > 1: raise ValueError(f"OrientationsTable contains more than one id: {ids}") if len(ids) == 0: raise ValueError(f"OrientationsTable contains no ids") return ids[0] @property def model_transform(self) -> Transform: if self._model_transform is None: raise ValueError("Model transform is not set. If you want to use this property use GeoModel.surface_points to get the SurfaceTable with transform attached.") return self._model_transform @model_transform.setter def model_transform(self, value: Transform): self._model_transform = value @property def df(self) -> 'pd.DataFrame': pd = require_pandas() return pd.DataFrame(self.data) def __str__(self): return "\n" + np.array2string(self.data, precision=2, separator=',', suppress_small=True) def __repr__(self): return f"OrientationsTable(data=\n{np.array2string(self.data, precision=2, separator=',', suppress_small=True)},\nname_id_map={self.name_id_map})" def _repr_html_(self): rows_to_display = 10 # Define the number of rows to display from beginning and end html = "" html += "" if len(self.data) > 2 * rows_to_display: for point in self.data[:rows_to_display]: html += "".format(*point) html += "" for point in self.data[-rows_to_display:]: html += "".format(*point) else: for point in self.data: html += "".format(*point) html += "
XYZG_xG_yG_zidnugget
{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{}{:.2f}
........................
{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{}{:.2f}
{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{:.2f}{}{:.2f}
" return html def __len__(self): return len(self.data) ================================================ FILE: gempy/core/data/structural_element.py ================================================ import re from dataclasses import dataclass, field from pydantic import Field from typing import Optional import numpy as np from .orientations import OrientationsTable from .surface_points import SurfacePointsTable """ TODO: - [ ] Add repr and _repr_html_ methods. Legacy representations depended on pandas, which is optional now """ @dataclass class StructuralElement: """ Class that represents a structural element in a geological model. """ name: str #: The name of the structural element. is_active: bool #: The active state of the structural element. _color: str #: The color of the structural element in hexadecimal format. surface_points: SurfacePointsTable #: The points on the surface of the structural element. orientations: OrientationsTable #: The orientations of the structural element. # Output # ? Should we extract this to a separate class? vertices: np.ndarray | None = Field(default=None, exclude=True) #: The vertices of the element in 3D space. edges: np.ndarray | None = Field(default=None, exclude=True) #: The edges of the element in 3D space. scalar_field_at_interface: float | None = None #: The scalar field value for the element. _id: int = -1 def __init__(self, name: str, surface_points: SurfacePointsTable, orientations: OrientationsTable, id: Optional[int] = -1, is_active: Optional[bool] = True, color: Optional[str] = None): self.name = name self.surface_points = surface_points self.orientations = orientations self.is_active = is_active self.color = color self._id = id @property def id(self): if self._id == -1: from gempy.core.data._data_points_helpers import structural_element_hasher return structural_element_hasher(0, self.name) return self._id def __repr__(self): r, g, b = int(self._color[1:3], 16), int(self._color[3:5], 16), int(self._color[5:7], 16) colored_color = f'\033[38;2;{r};{g};{b}m' + self._color + '\033[0m' return f"Element(\n\tname={self.name},\n\tcolor={colored_color},\n\tis_active={self.is_active}\n)" def _repr_html_(self): html = f"""
StructuralElement:
Name:{self.name}
""" return html def _repr_html_2(self): html = f"""
    StructuralElement:
      Name: {self.name}
      Color: 
Is Active: {'Yes' if self.is_active else 'No'}
""" return html @property def number_of_points(self) -> int: return len(self.surface_points) @property def number_of_orientations(self) -> int: return len(self.orientations) @property def color(self): return self._color @color.setter def color(self, value): if not isinstance(value, str) or not re.match("^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$", value): raise ValueError(f"Invalid color: {value}") self._color = value @property def is_basement(self): # ? Not sure if this will be necessary raise NotImplementedError @property def has_data(self): raise NotImplementedError @property def index(self): raise NotImplementedError @property def structural_group(self): raise NotImplementedError ================================================ FILE: gempy/core/data/structural_frame.py ================================================ import hashlib import numpy as np import warnings from dataclasses import dataclass from pydantic import model_validator, computed_field, ValidationError, Field from pydantic.functional_validators import ModelWrapValidatorHandler from typing import Generator, Union from gempy_engine.core.data.input_data_descriptor import InputDataDescriptor from gempy_engine.core.data.kernel_classes.faults import FaultsData from gempy_engine.core.data.stack_relation_type import StackRelationType from .encoders.binary_encoder import deserialize_input_data_tables from .encoders.converters import loading_model_context from .orientations import OrientationsTable from .structural_element import StructuralElement from .structural_group import StructuralGroup, FaultsRelationSpecialCase from .surface_points import SurfacePointsTable from ..color_generator import ColorsGenerator @dataclass class StructuralFrame: """ Represents a structural frame, which is a collection of structural groups that constitute a geological model. Attributes: structural_groups (list[StructuralGroup]): List of structural groups that constitute the geological model. color_generator (ColorsGenerator): Instance of ColorsGenerator used for assigning distinct colors to different structural elements. is_dirty (bool): Boolean flag indicating if the structural frame has been modified. """ structural_groups: list[StructuralGroup] color_generator: ColorsGenerator = Field(default_factory=ColorsGenerator) basement_color: str = None # ? Should I create some sort of structural options class? For example, the masking descriptor and faults relations pointer is_dirty: bool = True # region Constructor # def __init__(self, structural_groups: list[StructuralGroup], color_gen: ColorsGenerator): self.structural_groups = structural_groups # ? This maybe could be optional self.color_generator = color_gen def __post_init__(self): pass @classmethod def from_data_tables(cls, surface_points: SurfacePointsTable, orientations: OrientationsTable): surface_points_groups: list[SurfacePointsTable] = surface_points.get_surface_points_by_id_groups() colors_generator = ColorsGenerator() structural_elements = [] for i in range(len(surface_points_groups)): id_ = surface_points_groups[i].id orientation_i = orientations.get_orientations_by_id(id_) if len(orientation_i) == 0: orientation_i = OrientationsTable.empty_orientation(id_) structural_element: StructuralElement = StructuralElement( name=surface_points.id_to_name(i), id=id_, surface_points=surface_points_groups[i], orientations=orientation_i, color=next(colors_generator) ) structural_elements.append(structural_element) # * Structural groups definitions default_formation: StructuralGroup = StructuralGroup( name="default_formation", elements=structural_elements, structural_relation=StackRelationType.ERODE ) # ? Should I move this to the constructor? structural_frame: StructuralFrame = cls( structural_groups=[default_formation], color_gen=colors_generator ) return structural_frame @classmethod def initialize_default_structure(cls) -> 'StructuralFrame': """ Initialize the default structure. This method is used to initialize the default structure for a `StructuralFrame` object. Args: None Returns: 'StructuralFrame': A `StructuralFrame` object representing the default structure. Example: structural_frame = initialize_default_structure() """ color_gen = ColorsGenerator() structural_group = StructuralGroup( name="default_formations", elements=[ StructuralElement( name="surface1", surface_points=SurfacePointsTable.initialize_empty(), orientations=OrientationsTable.initialize_empty(), color=next(color_gen) ) ], structural_relation=StackRelationType.ERODE ) structural_frame = cls( structural_groups=[structural_group], color_gen=color_gen ) return structural_frame # endregion # region Methods def get_element_by_name(self, element_name: str) -> StructuralElement: elements: Generator = (group.get_element_by_name(element_name) for group in self.structural_groups) valid_elements: Generator = (element for element in elements if element is not None) element = next(valid_elements, None) if element is None: raise ValueError(f"Element with name {element_name} not found in the structural frame.") return element def get_group_by_name(self, group_name: str) -> StructuralGroup: groups: Generator = (group for group in self.structural_groups if group.name == group_name) group = next(groups, None) if group is None: raise ValueError(f"Group with name {group_name} not found in the structural frame.") return group def get_group_by_element(self, element: StructuralElement) -> StructuralGroup: groups: Generator = (group for group in self.structural_groups if element in group.elements) group = next(groups, None) if group is None: raise ValueError(f"Element {element.name} not found in any group in the structural frame.") return group def append_group(self, group: StructuralGroup): self.structural_groups.append(group) def insert_group(self, index: int, group: StructuralGroup): self.structural_groups.insert(index, group) def __repr__(self): structural_groups_repr = ',\n'.join([repr(g) for g in self.structural_groups]) fault_relations_str = np.array2string(self.fault_relations, precision=2, separator=', ', suppress_small=True) if self.fault_relations is not None else 'None' return (f"StructuralFrame(\n" f"\tstructural_groups=[\n{structural_groups_repr}\n],\n" f"\tfault_relations=\n{fault_relations_str},\n" ) def _repr_html_(self): structural_groups_html = '
'.join([g._repr_html_() for g in self.structural_groups]) if self.fault_relations is not None: # Define the colors for True and False values true_color = '#527682' false_color = '#FFB6C1' table_headers = '' + ''.join('{}'.format((g.name[:10] + '...') if len(g.name) > 10 else g.name) for g in self.structural_groups) table_rows = ''.join('{}{}'.format(self.structural_groups[i].name, ''.join(''.format(true_color if cell else false_color) for cell in row)) for i, row in enumerate(self.fault_relations)) fault_relations_str = '{}{}
'.format(table_headers, table_rows) else: fault_relations_str = 'None' # Define the legend legend = f"""
True
False
""" html = f"""
Structural Groups:{structural_groups_html}
Fault Relations:{fault_relations_str}
{legend}
""" return html # endregion # region Properties @property def structural_elements(self) -> list[StructuralElement]: """Returns a list of all structural elements across the structural groups.""" elements = [] for group in self.structural_groups: elements.extend(group.elements) elements.append(self._basement_element) return elements @property def n_elements(self) -> int: """Returns the total number of elements in the structural frame.""" return len(self.structural_elements) @property def _basement_element(self) -> StructuralElement: """Returns the basement structural element with a unique color.""" def _get_unique_basement_color(color_generator: ColorsGenerator, used_colors: list[str]) -> str: color = next(color_generator) if color in used_colors: return _get_unique_basement_color(color_generator, used_colors) return color elements = [] for group in self.structural_groups: elements.extend(group.elements) used_colors = [element.color for element in elements] if self.basement_color is None or self.basement_color in used_colors: self.basement_color = _get_unique_basement_color( color_generator=self.color_generator, used_colors=used_colors ) basement = StructuralElement( name="basement", surface_points=SurfacePointsTable(data=np.zeros(0, dtype=SurfacePointsTable.dt)), orientations=OrientationsTable(data=np.zeros(0, dtype=OrientationsTable.dt)), color=self.basement_color ) return basement # ? Should I move this property to StructuralGroup? @property def fault_relations(self) -> np.ndarray: """Returns a array describing the fault relations between the structural groups.""" # Initialize an empty boolean array with dimensions len(structural_groups) x len(structural_groups) fault_relations = np.zeros((len(self.structural_groups), len(self.structural_groups)), dtype=bool) # We assume that the list is ordered from older to younger # Iterate over the list of structural_groups for i, group in enumerate(self.structural_groups): match (group.structural_relation, group.fault_relations): case (StackRelationType.FAULT, FaultsRelationSpecialCase.OFFSET_ALL): # It affects all younger groups fault_relations[i, i + 1:] = True case (StackRelationType.FAULT, FaultsRelationSpecialCase.OFFSET_NONE): # It affects no groups pass case (StackRelationType.FAULT, FaultsRelationSpecialCase.OFFSET_FORMATIONS): # It affects all younger groups that are formations do_offset = [] for group_internal in self.structural_groups[i + 1:]: do_offset.append(group_internal.structural_relation != StackRelationType.FAULT) fault_relations[i, i + 1:] = do_offset case (StackRelationType.FAULT, list(fault_groups)) if fault_groups: # It affects only the specified groups for fault_group in fault_groups: j = self.structural_groups.index(fault_group) if j <= i: # Only consider groups that are raise ValueError(f"Fault {group.name} cannot affect older fault {fault_group.name}") fault_relations[i, j] = True case (StackRelationType.FAULT, _): raise ValueError(f"Fault {group.name} has an invalid fault relation") case _: pass # If not a fault or fault relation is not specified, do nothing return fault_relations @fault_relations.setter def fault_relations(self, matrix: np.ndarray): """Sets the fault relations between structural groups using the provided matrix.""" assert matrix.shape == (len(self.structural_groups), len(self.structural_groups)) # Iterate over each StructuralGroup for i, group in enumerate(self.structural_groups): affected_groups = matrix[i, :] # * If the group is a fault # If all younger groups are affected all_younger_groups_affected = np.all(affected_groups[i + 1:]) any_younger_groups_affected = np.any(affected_groups[i + 1:]) if all_younger_groups_affected: group.fault_relations = FaultsRelationSpecialCase.OFFSET_ALL elif not any_younger_groups_affected: group.fault_relations = FaultsRelationSpecialCase.OFFSET_NONE else: # * A specific set of groups are affected group.fault_relations = [g for j, g in enumerate(self.structural_groups) if affected_groups[j]] @property def group_is_fault(self) -> list[bool]: """Returns a list of booleans indicating if each structural element is a fault.""" return [group.is_fault for group in self.structural_groups] @property def group_is_lithology(self) -> list[bool]: """Returns a list of booleans indicating if each structural element is a lithology.""" return [group.is_lithology for group in self.structural_groups] @property def input_data_descriptor(self): """Returns a descriptor for the input data, detailing the relations and faults between groups.""" # TODO: This should have the exact same dirty logic as interpolation_input self._validate_faults_relations() return InputDataDescriptor.from_structural_frame( structural_frame=self, making_descriptor=self.groups_structural_relation, faults_relations=self.fault_relations, faults_input_data=self.faults_input_data ) @property def faults_input_data(self): """Returns a descriptor for the input data, detailing the relations and faults between groups.""" faults_input_data: list[FaultsData] = [group.faults_input_data for group in self.structural_groups] return faults_input_data @property def groups_structural_relation(self) -> list[StackRelationType]: """Returns a list of the structural relations for each group.""" groups_ = [group.structural_relation for group in self.structural_groups] groups_[-1] = StackRelationType.BASEMENT return groups_ @property def number_of_points_per_element(self) -> np.ndarray: """Returns an array with the number of points for each structural element.""" return np.array([element.number_of_points for element in self.structural_elements]) @property def number_of_points_per_group(self) -> np.ndarray: """Returns an array with the number of points for each structural group.""" return np.array([group.number_of_points for group in self.structural_groups]) @property def number_of_orientations_per_group(self) -> np.ndarray: """Returns an array with the number of orientations for each structural group.""" return np.array([group.number_of_orientations for group in self.structural_groups]) @property def number_of_elements_per_group(self) -> np.ndarray: """Returns an array with the number of elements for each structural group.""" return np.array([group.number_of_elements for group in self.structural_groups]) @property def surfaces(self) -> list[StructuralElement]: """Returns a list of all surfaces in the structural elements.""" return self.structural_elements @property def number_of_elements(self) -> int: """Returns the total number of elements in the structural frame.""" return len(self.structural_elements) @property def elements_names(self) -> list[str]: """Returns a list of names of all structural elements.""" return [element.name for element in self.structural_elements] @property def elements_ids(self) -> np.ndarray: """Returns an array of IDs for all structural elements.""" return np.arange(len(self.structural_elements)) + 1 @property def surface_points_copy(self) -> SurfacePointsTable: """Returns a SurfacePointsTable for all surface points across the structural elements. This is a copy!""" all_data: np.ndarray = np.concatenate([element.surface_points.data for element in self.structural_elements]) return SurfacePointsTable(data=all_data, name_id_map=self.element_name_id_map) @property def surface_points(self): raise AttributeError("This property can only be set, not read. You can access the copy with `surface_points_copy` or" "the original on the individual structural elements.") @surface_points.setter def surface_points(self, modified_surface_points: SurfacePointsTable) -> None: """Distributes the modified surface points back to the structural elements.""" for element in self.structural_elements: element.surface_points.data = modified_surface_points.get_surface_points_by_id(element.id).data @property def orientations_copy(self) -> OrientationsTable: """Returns an OrientationsTable for all orientations across the structural elements.""" all_data: np.ndarray = np.concatenate([element.orientations.data for element in self.structural_elements]) return OrientationsTable(data=all_data) @property def orientations(self) -> OrientationsTable: raise AttributeError("This property can only be set, not read. You can access the copy with `orientations_copy` or" "the original on the individual structural elements.") @orientations.setter def orientations(self, modified_orientations: OrientationsTable) -> None: """Distributes the modified orientations back to the structural elements.""" for element in self.structural_elements: element.orientations.data = modified_orientations.get_orientations_by_id(element.id).data @property def input_tables_binary(self): return self.surface_points_copy.data.tobytes() + self.orientations_copy.data.tobytes() @property def element_id_name_map(self) -> dict[int, str]: """Returns a dictionary mapping element IDs to names.""" return {element.id: element.name for i, element in enumerate(self.structural_elements)} @property def element_name_id_map(self) -> dict[str, int]: """Returns a dictionary mapping element names to IDs.""" return {element.name: element.id for i, element in enumerate(self.structural_elements)} @property def elements_colors(self) -> list[str]: """Returns a list of colors assigned to each structural element. Used in matplotlib""" # reversed return [element.color for element in self.structural_elements][::-1] @property def elements_colors_volumes(self) -> list[str]: """Returns a list of colors assigned to each structural element for volume representation. Used in pyvista""" return self.elements_colors @property def elements_colors_contacts(self) -> list[str]: """Returns a list of colors assigned to each structural element for contact representation. Used in many places""" points_ = [element.color for element in self.structural_elements if len(element.surface_points) > 0] return points_ @property def elements_colors_orientations(self) -> list[str]: """Returns a list of colors assigned to each structural element for orientation representation. Used to paint orientations in pyvista """ orientations_ = [element.color for element in self.structural_elements if len(element.orientations) > 0] return orientations_ @property def surface_points_colors_per_item(self) -> list[str]: """Returns a list of colors assigned to each surface point across structural elements. Used in matplotlib""" surface_points_colors = [element.color for element in self.structural_elements for _ in range(element.number_of_points)] return surface_points_colors @property def orientations_colors_per_item(self) -> list[str]: """Returns a list of colors assigned to each orientation across structural elements. Used in matplotlib""" orientations_colors = [element.color for element in self.structural_elements for _ in range(element.number_of_orientations)] return orientations_colors @property def groups_to_mapper(self) -> dict[str, list[str]]: """Returns a dictionary mapping each structural group to its corresponding elements.""" result_dict = {} for group in self.structural_groups: element_names = [element.name for element in group.elements] result_dict[group.name] = element_names return result_dict # region Depends on Pandas @property def surfaces_df(self) -> 'pd.DataFrame': """Returns a DataFrame representation of all surfaces across structural elements.""" # TODO: Loop every structural element. Each element should be a row in the dataframe # TODO: The columns have to be ['element, 'group', 'color'] raise NotImplementedError # endregion # endregion # region Pydantic @model_validator(mode="wrap") @classmethod def deserialize_binary(cls, data: Union["StructuralFrame", dict], constructor: ModelWrapValidatorHandler["StructuralFrame"]) -> "StructuralFrame": match data: case StructuralFrame(): return data case dict(): instance: StructuralFrame = constructor(data) metadata = data.get('binary_meta_data', {}) context = loading_model_context.get() if 'input_binary' not in context: return instance instance.orientations, instance.surface_points = deserialize_input_data_tables( binary_array=context['input_binary'], name_id_map=instance.surface_points_copy.name_id_map, sp_binary_length_=metadata["sp_binary_length"], ori_binary_length_=metadata["ori_binary_length"] ) return instance case _: raise ValidationError(f"Invalid data type for StructuralFrame: {type(data)}") # Access the context variable to get injected data @computed_field def binary_meta_data(self) -> dict: return { 'sp_binary_length': len(self.surface_points_copy.data.tobytes()), 'ori_binary_length': len(self.orientations_copy.data.tobytes()) , } # endregion def _validate_faults_relations(self): """Check that if there are any StackRelationType.FAULT in the structural groups the fault relation matrix is given and shape is the right one, i.e. a square matrix of size equals to len(groups)""" if any([group.structural_relation == StackRelationType.FAULT for group in self.structural_groups]): if self.fault_relations is None: raise ValueError("The fault relations matrix is not given") if self.fault_relations.shape != (len(self.structural_groups), len(self.structural_groups)): raise ValueError("The fault relations matrix is not the right shape") ================================================ FILE: gempy/core/data/structural_group.py ================================================ import pprint from abc import ABC from dataclasses import dataclass, field from enum import Enum, auto from typing import Optional, Union, Generator from gempy_engine.core.data.kernel_classes.faults import FaultsData from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.core.data.structural_element import StructuralElement class FaultsRelationSpecialCase(Enum): OFFSET_FORMATIONS = auto() OFFSET_NONE = auto() OFFSET_ALL = auto() @dataclass class StructuralGroup(ABC): """ An abstract base class that represents a structural group within a geological model. """ name: str #: The name of the structural group. elements: list[StructuralElement] = field(repr=False) #: A list of structural elements within the group. structural_relation: StackRelationType #: The type of relation between the structural elements in the group. #: Relations with other groups in terms of faults. fault_relations: Optional[Union[list["StructuralGroup"], FaultsRelationSpecialCase]] = field(default=None, repr=False) faults_input_data: Optional[FaultsData] = field(default=None, repr=False) solution: Optional[RawArraysSolution] = field(init=False, default=None, repr=False) #: Solution related to this group from geological computations. def __post_init__(self): if not isinstance(self.elements, list): raise TypeError("elements must be a list of StructuralElement objects.") for e in self.elements: if not isinstance(e, StructuralElement): raise TypeError("elements must be a list of StructuralElement objects.") def __repr__(self): elements_repr = ',\n'.join([repr(e) for e in self.elements]) return f"StructuralGroup(\n" \ f"\tname={self.name},\n" \ f"\tstructural_relation={self.structural_relation},\n" \ f"\telements=[\n{elements_repr}\n]\n)" def _repr_html_(self): elements_html = '
'.join([e._repr_html_() for e in self.elements]) html = f""" StructuralGroup:
Name:{self.name}
Structural Relation:{self.structural_relation}
Elements:{elements_html}
""" return html def append_element(self, element: StructuralElement): self.elements.append(element) def remove_element(self, element: StructuralElement): self.elements.remove(element) @property def id(self): raise NotImplementedError @property def is_fault(self)-> bool: return self.structural_relation == StackRelationType.FAULT @property def is_lithology(self)-> bool: return self.structural_relation == StackRelationType.ERODE or self.structural_relation == StackRelationType.ONLAP @property def number_of_points(self) -> int: return sum([element.number_of_points for element in self.elements]) @property def number_of_orientations(self) -> int: return sum([element.number_of_orientations for element in self.elements]) @property def number_of_elements(self) -> int: return len(self.elements) def get_element_by_name(self, element_name: str) -> StructuralElement | None: matched_elements: Generator = (element for element in self.elements if element.name == element_name) return next(matched_elements, None) # ? I think these two subclasses are not necessary @dataclass class Stack(StructuralGroup): def __int__(self, name: str, elements: list[StructuralElement]): super().__init__(name, elements) def __repr__(self): return pprint.pformat(self.__dict__) @dataclass class Fault(StructuralGroup): pass ================================================ FILE: gempy/core/data/surface_points.py ================================================ from dataclasses import dataclass from typing import Optional, Union, Sequence import numpy as np from gempy_engine.core.data.transforms import Transform from pydantic import Field from ._data_points_helpers import generate_ids_from_names from ...optional_dependencies import require_pandas DEFAULT_SP_NUGGET = 0.00002 # ? Maybe we should merge this with the SurfacePoints class from gempy_engine # ? It does not seem a good a idea because gempy_engine.SurfacePoints is too terse # ! ids are not used apparently @dataclass(init=True) class SurfacePointsTable: """ A dataclass to represent a table of surface points in a geological model. """ dt = np.dtype([('X', 'f8'), ('Y', 'f8'), ('Z', 'f8'), ('id', 'i4'), ('nugget', 'f8')]) #: The custom data type for the data array. data: np.ndarray = Field( default=np.zeros(0, dtype=dt), exclude=True, description="A structured NumPy array holding the X, Y, Z coordinates, id, and nugget of each surface point." ) #: A structured NumPy array holding the X, Y, Z coordinates, id, and nugget of each surface point. name_id_map: Optional[dict[str, int]] = None #: A mapping between surface point names and ids. _model_transform: Optional[Transform] = None def __post_init__(self): # Check if the data array has the correct data type if self.data.dtype != SurfacePointsTable.dt: raise ValueError(f"Data array must have the following data type: {SurfacePointsTable.dt}") def __str__(self): return "\n" + np.array2string(self.data, precision=2, separator=',', suppress_small=True) def __repr__(self): return f"SurfacePointsTable(data=\n{np.array2string(self.data, precision=2, separator=',', suppress_small=True)},\nname_id_map={self.name_id_map})" def _repr_html_(self): rows_to_display = 10 # Define the number of rows to display from beginning and end html = "" html += "" if len(self.data) > 2 * rows_to_display: for point in self.data[:rows_to_display]: html += "".format(*point) html += "" for point in self.data[-rows_to_display:]: html += "".format(*point) else: for point in self.data: html += "".format(*point) html += "
XYZidnugget
{:.2f}{:.2f}{:.2f}{}{:.2f}
...............
{:.2f}{:.2f}{:.2f}{}{:.2f}
{:.2f}{:.2f}{:.2f}{}{:.2f}
" return html @classmethod def from_arrays(cls, x: np.ndarray, y: np.ndarray, z: np.ndarray, names: Union[Sequence | str], nugget: Optional[np.ndarray] = None, name_id_map: Optional[dict[str, int]] = None ) -> 'SurfacePointsTable': """Create a SurfacePointsTable from arrays of coordinates and names. Args: x (np.ndarray): Array of x-coordinates. y (np.ndarray): Array of y-coordinates. z (np.ndarray): Array of z-coordinates. names (Union[Sequence, str]): Names of the surface points. nugget (Optional[np.ndarray]): Nugget values for the surface points. name_id_map (Optional[dict[str, int]]): Mapping between surface point names and ids. Returns: SurfacePointsTable: A new instance of SurfacePointsTable. """ data, name_id_map = cls._data_from_arrays(x, y, z, names, nugget, name_id_map) return cls(data, name_id_map) @classmethod def _data_from_arrays(cls, x: np.ndarray, y: np.ndarray, z: np.ndarray, names: Union[Sequence | str], nugget: Optional[np.ndarray] = None, name_id_map: dict[str, int] = None) -> tuple[np.ndarray, dict[str, int]]: if nugget is None: nugget = np.zeros_like(x) + DEFAULT_SP_NUGGET if name_id_map is None: ids, name_id_map = generate_ids_from_names(name_id_map, names, x) else: ids = np.array([name_id_map[name] for name in names]) data = np.zeros(len(x), dtype=SurfacePointsTable.dt) data['X'], data['Y'], data['Z'], data['id'], data['nugget'] = x, y, z, ids, nugget return data, name_id_map @classmethod def initialize_empty(cls) -> 'SurfacePointsTable': """Initialize an empty SurfacePointsTable. Returns: SurfacePointsTable: An empty instance of SurfacePointsTable. """ return cls(np.zeros(0, dtype=SurfacePointsTable.dt), {}) def id_to_name(self, id: int) -> str: """Get the name corresponding to a given id. Args: id (int): The id of the surface point. Returns: str: The name of the surface point. """ return list(self.name_id_map.keys())[id] @property def xyz(self) -> np.ndarray: return np.array([self.data['X'], self.data['Y'], self.data['Z']]).T @property def xyz_view(self) -> np.ndarray: return self.data[['X', 'Y', 'Z']] @xyz_view.setter def xyz_view(self, value: np.ndarray): self.data['X'], self.data['Y'], self.data['Z'] = value.T @property def nugget(self) -> np.ndarray: return self.data['nugget'] @nugget.setter def nugget(self, value: np.ndarray): self.data['nugget'] = value @property def model_transform(self) -> Transform: if self._model_transform is None: raise ValueError("Model transform is not set. If you want to use this property use GeoModel.surface_points to get the SurfaceTable with transform attached.") return self._model_transform @model_transform.setter def model_transform(self, value: Transform): self._model_transform = value def __len__(self): return len(self.data) def get_surface_points_by_name(self, name: str) -> 'SurfacePointsTable': """Get a SurfacePointsTable containing points with the specified name. Args: name (str): The name of the surface points. Returns: SurfacePointsTable: A new instance containing the specified surface points. """ return self.get_surface_points_by_id(self.name_id_map[name]) def get_surface_points_by_id(self, id: int) -> 'SurfacePointsTable': """Get a SurfacePointsTable containing points with the specified id. Args: id (int): The id of the surface points. Returns: SurfacePointsTable: A new instance containing the specified surface points. """ return SurfacePointsTable(self.data[self.data['id'] == id], self.name_id_map) def get_surface_points_by_id_groups(self) -> list['SurfacePointsTable']: """Get a list of SurfacePointsTable objects, each containing points with a unique id. Returns: list[SurfacePointsTable]: A list of SurfacePointsTable objects. """ ids = np.unique(self.data['id']) return [self.get_surface_points_by_id(id) for id in ids] @property def ids(self) -> np.ndarray: return self.data['id'] @property def id(self) -> int: # Check id is the same in the whole column and return it or throw an error ids = np.unique(self.data['id']) if len(ids) > 1: raise ValueError(f"OrientationsTable contains more than one id: {ids}") if len(ids) == 0: raise ValueError(f"OrientationsTable contains no ids") return ids[0] @property def df(self) -> 'pd.DataFrame': pd = require_pandas() return pd.DataFrame(self.data) ================================================ FILE: gempy/core/engine.rst ================================================ Design document for GemPy Engine 3 ================================== Early thoughts about how to redesign the interpolator classes. Some of the main specifications are: - ?Independent interpolator from the rest so we can use it as each own **microservice** via some sort of **sync** function that set up all the constant values - Compatibility with **TensorFlow** and **Numpy** - Outputs of the graph scalable - Independence of each scalar field - **No global constants**, e.g. each field will have its own range - **Scalar field injection**, any recursive value of one field into the next one can have an access point. - **Octtress** are Native. To deactive it, we just need to set the number of levels to 1 - Multiple solver (such as **sparse solver** easy to use) + cuda solver + gradient solver + sparse solver - Interpolator data stored in df and always updated. - Having several sets of coordinates systems to choose from when we call compute for **anisotropies** Graph Logic ~~~~~~~~~~~ Tensor super class ^^^^^^^^^^^^^^^^^^ aesara, numpy and tensorflow have a very similar syntax but not 100% exact. We could create a tensor wrapper that makes sure that it returns the right value. For example sin is the same in all 3: .. code-block:: python class GemPyTensor: def __init__(package='numpy') if package=='numpy': _tt = np elif package=='aesara': _tt = aesara.tensor # Same numpy-aesara easy def sin(x): return _tt.sin(x) # Different def set_subtensor(x: slice, new_slice) if package=='numpy': x = new_slice return x if package == 'aesara': return _tt.set_subtensor(x , new_slice) Advantages ---------- - Maintainability: Not having to write 3 different graphs - If we use aesara syntax as base for `GemPyTensor` we do not need to rewrite even the current graph - If a function exist in one package, we can mock it on the others using the correspondent wrappers. Disadvantages ------------- - How do we deal with control flow on run time that is done vastly different Data Flow ~~~~~~~~~ Scalable Output ^^^^^^^^^^^^^^^ In GemPy 2.1 we moved from having different interpolator objects with different graphs to having always one interpolator capable to select how much of the whole graph is going to be constructed at compile time. As I see it there some possible paths here: .. note:: GemPy-server design allows to have several engines up so we could have pretty much anything 1. We construct always the full graph. This will enable to choose in runtime what do we want to compute e.g. some gravity, without having to recompile. The cost is memory and as the graph gains in complexity with features that may not be used too often it will be a waste. 2. Caching, every time ... Independent Interpolator ^^^^^^^^^^^^^^^^^^^^^^^^ To obtain this we would need to split the interpolator in two classes. 1) One buffer class containing all the data 2) A graph class A sync function would feed the graph class *Which consequences has this for the* ``Model`` *methods?* The graph class could be in a different process or could be in the same process. ================================================ FILE: gempy/modules/__init__.py ================================================ """ GemPy modules package. """ from . import json_io from . import custom_implicit_functions from . import data_manipulation from . import grids from . import advance_pile __all__ = [ 'json_io', 'custom_implicit_functions', 'data_manipulation', 'grids', 'advance_pile' ] ================================================ FILE: gempy/modules/advance_pile/__init__.py ================================================ ================================================ FILE: gempy/modules/advance_pile/strat_definition.py ================================================ ================================================ FILE: gempy/modules/custom_implicit_functions/__init__.py ================================================ ================================================ FILE: gempy/modules/custom_implicit_functions/ellipsoid_implicit_function.py ================================================ import functools import numpy as np def ellipsoid_3d_factory(center: np.ndarray, radius: np.ndarray, max_slope: float) -> callable: """ Implicit 3D ellipsoid. """ implicit_ellipsoid = functools.partial( ellipsoid_scalar_field, center=center, radii=radius, k_factors=max_slope, ) return implicit_ellipsoid def ellipsoid_scalar_field(xyz, center, radii, k_factors): """Calculate scalar field value for given coordinates. Parameters: - xyz: numpy array of shape (N, 3), where N is the number of points - center: numpy array of shape (3,) representing the center of the ellipsoid - radii: numpy array of shape (3,) representing the semiaxes a, b, and c of the ellipsoid - k_factors: numpy array of shape (3,) representing the slope factors for x, y, and z directions. Returns: - A numpy array of shape (N,) containing the scalar field values. """ displacements = xyz - center values = ((displacements[:, 0] / (radii[0] * k_factors[0])) ** 2 + (displacements[:, 1] / (radii[1] * k_factors[1])) ** 2 + (displacements[:, 2] / (radii[2] * k_factors[2])) ** 2 - 1) return - sigmoid(values * np.prod(k_factors)) + 1 # multiplying by the product of k_factors to keep the transition sharper def sigmoid(x): """Standard sigmoid function.""" return 1 / (1 + np.exp(-x)) def _implicit_3d_ellipsoid_to_slope_(xyz: np.ndarray, center: np.ndarray, radius: np.ndarray, max_slope: float = 1000): """ Implicit 3D ellipsoid. """ # ! Finite faults needs quite a bit of fine tunning once we can compute models in real time # ! This function only works for elipses perpendicular to the cartesian axis scalar = - np.sum((xyz - center) ** 2.00 / (radius ** 2), axis=1) scalar_shifted = scalar - scalar.min() sigmoid_slope = 10 # ? This probably should be also public Z_x = scalar_shifted drift_0 = 4 # ? Making it a %. It depends on the radius scale_0 = max_slope scalar_final = scale_0 / (1 + np.exp(-sigmoid_slope * (Z_x - drift_0))) return scalar_final ================================================ FILE: gempy/modules/data_manipulation/__init__.py ================================================ from ._engine_factory import interpolation_input_from_structural_frame ================================================ FILE: gempy/modules/data_manipulation/_engine_factory.py ================================================ from typing import Optional import numpy as np from ...core.data.grid import Grid from ...core.data.structural_frame import StructuralFrame from gempy_engine.core.data import SurfacePoints, Orientations from gempy_engine.core.data import engine_grid from gempy_engine.core.data.interpolation_input import InterpolationInput from gempy_engine.core.data.transforms import Transform def interpolation_input_from_structural_frame(geo_model: "gempy.data.GeoModel") -> InterpolationInput: import gempy # ! This is important for type safety geo_model: gempy.data.GeoModel = geo_model _legacy_factor = 0 structural_frame: StructuralFrame = geo_model.structural_frame input_transform: Transform = geo_model.input_transform grid: Grid = geo_model.grid total_transform: Transform = input_transform + grid.transform surface_points_copy_transformed = geo_model.surface_points_copy_transformed surface_points: SurfacePoints = SurfacePoints( sp_coords=geo_model.surface_points_copy_transformed.xyz, nugget_effect_scalar=surface_points_copy_transformed.nugget ) orientations_copy_transformed = geo_model.orientations_copy_transformed orientations: Orientations = Orientations( dip_positions=orientations_copy_transformed.xyz, dip_gradients=orientations_copy_transformed.grads, nugget_effect_grad=orientations_copy_transformed.nugget ) grid: engine_grid.EngineGrid = _apply_input_transform_to_grids( grid=grid, input_transform=input_transform, extent_transformed=geo_model.extent_transformed_transformed_by_input ) weights = [] if geo_model.solutions is not None: for stack_sol in geo_model.solutions.root_output.outputs: weights.append(stack_sol.weights) interpolation_input: InterpolationInput = InterpolationInput( surface_points=surface_points, orientations=orientations, grid=grid, unit_values=structural_frame.elements_ids, # TODO: Here we will need to pass densities etc. weights=weights ) return interpolation_input def _apply_input_transform_to_grids(grid: Grid, input_transform: Transform, extent_transformed: np.ndarray) -> engine_grid.EngineGrid: new_extents = extent_transformed # Initialize all variables to None octree_grid: Optional[engine_grid.RegularGrid] = None regular_grid: Optional[engine_grid.RegularGrid] = None custom_values: Optional[engine_grid.GenericGrid] = None topography_values: Optional[engine_grid.GenericGrid] = None section_values: Optional[engine_grid.GenericGrid] = None centered_grid: Optional[engine_grid.CenteredGrid] = None if grid.GridTypes.DENSE in grid.active_grids: regular_grid = engine_grid.RegularGrid( orthogonal_extent=new_extents, regular_grid_shape=grid.dense_grid.resolution, ) if grid.GridTypes.CUSTOM in grid.active_grids and grid.custom_grid is not None: custom_values = engine_grid.GenericGrid(values=input_transform.apply(grid.custom_grid.values)) if grid.GridTypes.TOPOGRAPHY in grid.active_grids and grid.topography is not None: topography_values = engine_grid.GenericGrid(values=input_transform.apply(grid.topography.values)) if grid.GridTypes.SECTIONS in grid.active_grids and grid.sections is not None: section_values = engine_grid.GenericGrid(values=input_transform.apply(grid.sections.values)) if grid.GridTypes.CENTERED in grid.active_grids and grid.centered_grid is not None: centered_grid = engine_grid.CenteredGrid( centers=input_transform.apply(grid.centered_grid.centers), radius=input_transform.scale_points(np.atleast_2d(grid.centered_grid.radius))[0], resolution=grid.centered_grid.resolution ) if grid.octree_grid is not None: base_grid_resolution = grid.octree_grid.base_resolution else: base_grid_resolution = np.array([2, 2, 2]) octree_grid = engine_grid.RegularGrid( orthogonal_extent=new_extents, regular_grid_shape=base_grid_resolution ) grid: engine_grid.EngineGrid = engine_grid.EngineGrid( # * Here we convert the GemPy grid to the octree_grid=octree_grid, # BUG: Adapt the engine to deal with this dense_grid=regular_grid, topography=topography_values, sections=section_values, custom_grid=custom_values, geophysics_grid=centered_grid ) return grid ================================================ FILE: gempy/modules/data_manipulation/manipulate_points.py ================================================ from typing import Sequence, Optional, Union import numpy as np from ...core.data import GeoModel, StructuralFrame, SurfacePointsTable, StructuralElement, OrientationsTable from ...core.data.orientations import DEFAULT_ORI_NUGGET from ...core.data.surface_points import DEFAULT_SP_NUGGET def add_surface_points( geo_model: GeoModel, x: Sequence[float], y: Sequence[float], z: Sequence[float], elements_names: Sequence[str], nugget: Optional[Sequence[float]] = None ) -> StructuralFrame: """Add surface points to the geological model. This function adds surface points to the specified geological elements in the model. The points are grouped by element names, and optional nugget values can be specified for each point. Args: geo_model (GeoModel): The geological model to which the surface points will be added. x (Sequence[float]): Sequence of x-coordinates for the surface points. y (Sequence[float]): Sequence of y-coordinates for the surface points. z (Sequence[float]): Sequence of z-coordinates for the surface points. elements_names (Sequence[str]): Sequence of element names corresponding to each surface point. nugget (Optional[Sequence[float]]): Sequence of nugget values for each surface point. If not provided, a default value will be used for all points. Returns: StructuralFrame: The updated structural frame of the geological model. Raises: ValueError: If the length of the nugget sequence does not match the lengths of the other input sequences. """ elements_names = _validate_args(elements_names, x, y, z) # If nugget is not provided, create a Sequence filled with the default value if nugget is None: nugget = [DEFAULT_SP_NUGGET] * len(x) # Ensure nugget also has the same length as the other Sequences if len(nugget) != len(x): raise ValueError("The length of the nugget Sequence does not match the lengths of other input Sequences.") # * Split the sequences according to the elements_names x = np.array(x) y = np.array(y) z = np.array(z) elements_names = np.array(elements_names) nugget = np.array(nugget) unique_names = np.unique(elements_names) grouped_data = {} for name in unique_names: mask = (elements_names == name) grouped_data[name] = { 'x' : x[mask], 'y' : y[mask], 'z' : z[mask], 'nugget': nugget[mask] } # * Loop per element_name for element_name, data in grouped_data.items(): formatted_data, _ = SurfacePointsTable._data_from_arrays( x=data['x'], y=data['y'], z=data['z'], names=[element_name] * len(data['x']), nugget=data['nugget'], name_id_map=None ) element: StructuralElement = geo_model.structural_frame.get_element_by_name(element_name) element.surface_points.data = np.concatenate([ element.surface_points.data, formatted_data ]) return geo_model.structural_frame def delete_surface_points(): raise NotImplementedError def add_orientations(geo_model: GeoModel, x: Sequence[float], y: Sequence[float], z: Sequence[float], elements_names: Sequence[str], pole_vector: Optional[Union[Sequence[np.ndarray], np.ndarray]] = None, orientation: Optional[Union[Sequence[np.ndarray], np.ndarray]] = None, nugget: Optional[Sequence[float]] = None, name_id_map: Optional[dict[str, int]] = None #: A mapping between orientation names and ids. ) -> StructuralFrame: """Add orientation data to the geological model. This function adds orientation data to the specified geological elements in the model. The orientation can be provided directly as pole vectors or as orientation angles (azimuth, dip, polarity). Optional nugget values can also be specified for each orientation point. Args: geo_model (GeoModel): The geological model to which the orientations will be added. x (Sequence[float]): Sequence of x-coordinates for the orientation points. y (Sequence[float]): Sequence of y-coordinates for the orientation points. z (Sequence[float]): Sequence of z-coordinates for the orientation points. elements_names (Sequence[str]): Sequence of element names corresponding to each orientation point. pole_vector (Optional[Union[Sequence[np.ndarray], np.ndarray]]): Sequence of pole vectors for each orientation point. If is np.ndarray, it should have shape (n, 3). orientation (Optional[Union[Sequence[np.ndarray], np.ndarray]]): Sequence of orientation angles for each orientation point. If is np.ndarray, it should have shape (n, 3). nugget (Optional[Sequence[float]]): Sequence of nugget values for each orientation point. If not provided, a default value will be used for all points. Returns: StructuralFrame: The updated structural frame of the geological model. Raises: ValueError: If neither pole_vector nor orientation is provided, or if the length of the nugget sequence does not match the lengths of the other input sequences. """ if pole_vector is None and orientation is None: raise ValueError("Either pole_vector or orientation must be provided.") if orientation is not None: orientation = np.array(orientation, ndmin=2) pole_vector = convert_orientation_to_pole_vector( azimuth=orientation[:, 0], dip=orientation[:, 1], polarity=orientation[:, 2] ) else: pole_vector = np.array(pole_vector, ndmin=2) elements_names = _validate_args(elements_names, x, y, z, pole_vector) if nugget is None: # If nugget is not provided, create a Sequence filled with the default value nugget = [DEFAULT_ORI_NUGGET] * len(x) # Ensure nugget also has the same length as the other Sequences if len(nugget) != len(x): raise ValueError("The length of the nugget Sequence does not match the lengths of other input Sequences.") # * Split the sequences according to the elements_names x = np.array(x) y = np.array(y) z = np.array(z) elements_names = np.array(elements_names) pole_vector = np.array(pole_vector) nugget = np.array(nugget) unique_names = np.unique(elements_names) grouped_data = {} for name in unique_names: mask = (elements_names == name) grouped_data[name] = { 'x' : x[mask], 'y' : y[mask], 'z' : z[mask], 'pole_vector': pole_vector[mask], 'nugget' : nugget[mask] } # * Loop per element_name for element_name, data in grouped_data.items(): formatted_data, _ = OrientationsTable._data_from_arrays( x=data['x'], y=data['y'], z=data['z'], G_x=data['pole_vector'][..., 0], G_y=data['pole_vector'][..., 1], G_z=data['pole_vector'][..., 2], names=[element_name] * len(data['x']), nugget=data['nugget'], name_id_map=name_id_map ) element: StructuralElement = geo_model.structural_frame.get_element_by_name(element_name) element.orientations.data = np.concatenate([ element.orientations.data, formatted_data ]) return geo_model.structural_frame def modify_orientations(geo_model: GeoModel, slice: Optional[Union[int, slice]] = None, **orientation_field: Union[float, np.ndarray]) -> StructuralFrame: """ Modifies specified fields of all orientations in the structural frame. The keys of the orientation_field dictionary should match the field names in the orientations (e.g., "X", "Y", "Z", "G_x", "G_y", "G_z", "nugget"). Args: geo_model (GeoModel): The GeoModel instance to modify. slice (Optional[Union[int, slice]]): The slice of orientations to modify. If None, all orientations will be modified. Keyword Args: X (Union[float, np.ndarray]): X coordinates of the orientations. Y (Union[float, np.ndarray]): Y coordinates of the orientations. Z (Union[float, np.ndarray]): Z coordinates of the orientations. azimuth (Union[float, np.ndarray]): Azimuth angles of the orientations. dip (Union[float, np.ndarray]): Dip angles of the orientations. polarity (Union[float, np.ndarray]): Polarity values of the orientations. G_x (Union[float, np.ndarray]): X component of the gradient vector. G_y (Union[float, np.ndarray]): Y component of the gradient vector. G_z (Union[float, np.ndarray]): Z component of the gradient vector. nugget (Union[float, np.ndarray]): Nugget value of the orientations. Returns: StructuralFrame: The modified structural frame. """ orientations = geo_model.structural_frame.orientations_copy # If no slice is provided, target all rows; else, target specified slice target_rows = slice if slice is not None else np.s_[:] # Extract provided orientation fields without modifying the dictionary azimuth = orientation_field.pop('azimuth', None) dip = orientation_field.pop('dip', None) polarity = orientation_field.pop('polarity', None) # Update all the other fields for key, value in orientation_field.items(): if isinstance(value, np.ndarray) and len(value) != len(orientations.data[target_rows]): raise ValueError(f"Length mismatch: Expected size {len(orientations.data[target_rows])} for field {key}, but got {len(value)}.") orientations.data[key][target_rows] = value # Check if azimuth, dip, or polarity are provided any_polar_fields = azimuth is not None or dip is not None or polarity is not None all_polar_fields = azimuth is not None and dip is not None and polarity is not None match (any_polar_fields, all_polar_fields): case (True, True): # All polar fields provided, convert to gradients gx, gy, gz = convert_orientation_to_pole_vector(np.asarray(azimuth), np.asarray(dip), np.asarray(polarity)) orientations.data['G_x'][target_rows] = gx orientations.data['G_y'][target_rows] = gy orientations.data['G_z'][target_rows] = gz case (True, False): # Some polar fields missing, compute missing fields from gradients prev_azimuth, prev_dip, prev_polarity = compute_adp_from_gradients( orientations.data['G_x'], orientations.data['G_y'], orientations.data['G_z'] ) azimuth = np.asarray(azimuth) if azimuth is not None else prev_azimuth dip = np.asarray(dip) if dip is not None else prev_dip polarity = np.asarray(polarity) if polarity is not None else prev_polarity gradients = convert_orientation_to_pole_vector(azimuth, dip, polarity) orientations.data['G_x'][target_rows] = gradients[:, 0] orientations.data['G_y'][target_rows] = gradients[:, 1] orientations.data['G_z'][target_rows] = gradients[:, 2] case (_, _): pass geo_model.orientations = orientations return geo_model.structural_frame def modify_surface_points(geo_model: GeoModel, slice: Optional[Union[int, slice]] = None, elements_names: Optional[Sequence[str]] = None, **surface_points_field: Union[float, np.ndarray]) -> StructuralFrame: """ Modifies specified fields of all surface points in the structural frame. The keys of the surface_points_field dictionary should match the field names in the surface points (e.g., "X", "Y", "Z", "nugget"). Args: geo_model (GeoModel): The GeoModel instance to modify. slice (Optional[Union[int, slice]]): The slice of surface points to modify. If None, all surface points will be modified. Keyword Args: X (Union[float, np.ndarray]): X coordinates of the surface points. Y (Union[float, np.ndarray]): Y coordinates of the surface points. Z (Union[float, np.ndarray]): Z coordinates of the surface points. nugget (Union[float, np.ndarray]): Nugget value of the surface points. Returns: StructuralFrame: The modified structural frame. """ if elements_names is not None and slice is not None: raise ValueError("Cannot provide both elements_names and slice.") surface_points = geo_model.structural_frame.surface_points_copy if elements_names is not None: ids = [surface_points.name_id_map[element] for element in elements_names] slice = np.s_[np.isin(surface_points.data['id'], ids)] # If no slice is provided, target all rows; else, target specified slice target_rows = slice if slice is not None else np.s_[:] for key, value in surface_points_field.items(): if isinstance(value, np.ndarray) and len(value) != len(surface_points.data[target_rows]): raise ValueError(f"Length mismatch: Expected size {len(surface_points.data[target_rows])} for field {key}, but got {len(value)}.") surface_points.data[key][target_rows] = value geo_model.surface_points = surface_points return geo_model.structural_frame def delete_orientations(): raise NotImplementedError def convert_orientation_to_pole_vector(azimuth: Sequence[float], dip: Sequence[float], polarity: Sequence[float]) -> Sequence[np.ndarray]: # Convert sequences to numpy arrays for vectorized operations azimuth = np.array(azimuth) dip = np.array(dip) polarity = np.array(polarity) # Calculate gradient components G_x = np.sin(np.deg2rad(dip)) * np.sin(np.deg2rad(azimuth)) * polarity G_y = np.sin(np.deg2rad(dip)) * np.cos(np.deg2rad(azimuth)) * polarity G_z = np.cos(np.deg2rad(dip)) * polarity # Combine gradient components into an array of vectors gradients = np.vstack([G_x, G_y, G_z]).T return gradients def compute_adp_from_gradients(G_x: np.ndarray, G_y: np.ndarray, G_z: np.ndarray) -> tuple[np.ndarray, np.ndarray, np.ndarray]: # Calculate polarity (here assumed to be 1 for all, but you can adapt if needed) polarity = np.ones_like(G_x) # Calculate dip dip = np.rad2deg(np.nan_to_num(np.arccos(G_z / polarity))) # Calculate azimuth azimuth = np.rad2deg(np.nan_to_num(np.arctan2(G_x / polarity, G_y / polarity))) # Shift values from [-pi, 0] to [pi,2*pi] azimuth[azimuth < 0] += 360 # Adjust azimuth where dip is nearly zero, because if dip is zero, azimuth is undefined azimuth[dip < 0.001] = 0 return azimuth, dip, polarity def _validate_args(elements_names, *args): if isinstance(elements_names, str): elements_names = np.array([elements_names] * len(args[0])) elif isinstance(elements_names, Sequence) or isinstance(elements_names, np.ndarray): pass else: raise TypeError(f"Names should be a string or a NumPy array, not {type(elements_names)}") # Ensure all provided Sequences have the same length lengths = {len(arg) for arg in args} if len(lengths) != 1: raise ValueError("All input Sequences must have the same length.") return elements_names ================================================ FILE: gempy/modules/data_manipulation/manipulate_structural_frame.py ================================================ from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.core.data import StructuralGroup, GeoModel, FaultsRelationSpecialCase, StructuralElement, StructuralFrame def add_structural_group( model: GeoModel, group_index: int, structural_group_name: str, elements: list[StructuralElement], structural_relation: StackRelationType, fault_relations: FaultsRelationSpecialCase = FaultsRelationSpecialCase.OFFSET_ALL) -> StructuralFrame: # Check elements are a Sequence if not isinstance(elements, list): raise TypeError("elements must be a list of StructuralElement objects.") new_group = StructuralGroup( name=structural_group_name, elements=elements, structural_relation=structural_relation, fault_relations=fault_relations ) # Insert the fault group into the structural frame: model.structural_frame.insert_group(group_index, new_group) return model.structural_frame def remove_structural_group_by_index(model: GeoModel, group_index: int) -> StructuralFrame: model.structural_frame.structural_groups.pop(group_index) return model.structural_frame def remove_structural_group_by_name(model: GeoModel, group_name: str) -> StructuralFrame: group = model.structural_frame.get_group_by_name(group_name) group_index = model.structural_frame.structural_groups.index(group) model.structural_frame.structural_groups.pop(group_index) return model.structural_frame def remove_element_by_name(model: GeoModel, element_name: str) -> StructuralFrame: element = model.structural_frame.get_element_by_name(element_name) element_group: StructuralGroup = model.structural_frame.get_group_by_element(element) element_group.remove_element(element) return model.structural_frame ================================================ FILE: gempy/modules/data_manipulation/orientations_from_surface_points.py ================================================ from typing import Optional import numpy as np from numpy.linalg import svd from gempy.core.data import SurfacePointsTable, OrientationsTable def create_orientations_from_surface_points_coords(xyz_coords: np.ndarray, subset: Optional[np.ndarray] = None, element_name: Optional[str] = "Generated") -> OrientationsTable: # Initialize the arrays center = np.empty((len(subset) if subset is not None else 1, 3)) normal = np.empty((len(subset) if subset is not None else 1, 3)) if subset is None: center[0], normal[0] = _plane_fit(xyz_coords) else: for idx, i in enumerate(subset): center[idx], normal[idx] = _plane_fit(xyz_coords[i]) orientations = OrientationsTable.from_arrays( x=center[:, 0], y=center[:, 1], z=center[:, 2], G_x=normal[:, 0], G_y=normal[:, 1], G_z=normal[:, 2], names=[element_name] ) return orientations def _plane_fit(point_list): """ Fit plane to points in PointSet Fit an d-dimensional plane to the points in a point set. adjusted from: http://stackoverflow.com/questions/12299540/plane-fitting-to-4-or-more-xyz-points Args: point_list (array_like): array of points XYZ Returns: Return a point, p, on the plane (the point-cloud centroid), and the normal, n. """ points = point_list.T points = np.reshape(points, (np.shape(points)[0], -1)) # Collapse trialing dimensions assert points.shape[0] <= points.shape[1], "There are only {} points in {} dimensions.".format(points.shape[1], points.shape[0]) ctr = points.mean(axis=1) x = points - ctr[:, np.newaxis] M = np.dot(x, x.T) # Could also use np.cov(x) here. # ctr = Point(x=ctr[0], y=ctr[1], z=ctr[2], type='utm', zone=self.points[0].zone) normal = svd(M)[0][:, -1] # return ctr, svd(M)[0][:, -1] if normal[2] < 0: normal = - normal return ctr, normal ================================================ FILE: gempy/modules/grids/__init__.py ================================================ ================================================ FILE: gempy/modules/grids/create_topography.py ================================================ """ This file is part of gempy. Created on 16.04.2019 @author: Elisa Heim """ from typing import Optional import numpy as np from ...core.data.grid_modules.topography import _LoadDEMArtificial def create_random_topography(extent: np.array, resolution: np.array, dz: Optional[np.array] = None, fractal_dimension: Optional[float] = 2.0) -> np.array: dem = _LoadDEMArtificial( extent=extent, resolution=resolution, d_z=dz, fd=fractal_dimension ) return dem.get_values() ================================================ FILE: gempy/modules/json_io/__init__.py ================================================ """ JSON I/O module for GemPy. This module provides functionality to load and save GemPy models to/from JSON files. """ from .json_operations import JsonIO __all__ = ['JsonIO'] ================================================ FILE: gempy/modules/json_io/json_operations.py ================================================ """ Module for JSON I/O operations in GemPy. This module provides functionality to load and save GemPy models to/from JSON files. """ import json from typing import Dict, Any, Optional, List import numpy as np from datetime import datetime from .schema import SurfacePoint, Orientation, GemPyModelJson, IdNameMapping from gempy_engine.core.data.stack_relation_type import StackRelationType class JsonIO: """Class for handling JSON I/O operations for GemPy models.""" @staticmethod def _numpy_to_list(obj): """Convert numpy arrays to lists for JSON serialization.""" if isinstance(obj, np.ndarray): return obj.tolist() elif isinstance(obj, (np.integer, np.int32, np.int64)): return int(obj) elif isinstance(obj, (np.floating, np.float32, np.float64)): return float(obj) return obj @staticmethod def _create_id_to_name(name_to_id: Dict[str, int]) -> Dict[int, str]: """Create an id_to_name mapping from a name_to_id mapping.""" return {id: name for name, id in name_to_id.items()} @staticmethod def _calculate_default_range(grid_extent: List[float]) -> float: """Calculate the default range based on the model extent (room diagonal).""" # Extract min and max coordinates x_min, x_max = grid_extent[0], grid_extent[1] y_min, y_max = grid_extent[2], grid_extent[3] z_min, z_max = grid_extent[4], grid_extent[5] # Calculate the room diagonal (Euclidean distance) return np.sqrt((x_max - x_min)**2 + (y_max - y_min)**2 + (z_max - z_min)**2) @staticmethod def _calculate_default_grid_settings(surface_points: List[SurfacePoint], orientations: List[Orientation]) -> Dict[str, Any]: """Calculate default grid settings based on data points. Args: surface_points: List of surface points orientations: List of orientations Returns: Dict containing grid settings with default values """ # Collect all x, y, z coordinates all_x = [sp['x'] for sp in surface_points] + [ori['x'] for ori in orientations] all_y = [sp['y'] for sp in surface_points] + [ori['y'] for ori in orientations] all_z = [sp['z'] for sp in surface_points] + [ori['z'] for ori in orientations] # Calculate extents x_min, x_max = min(all_x), max(all_x) y_min, y_max = min(all_y), max(all_y) z_min, z_max = min(all_z), max(all_z) # Calculate ranges x_range = x_max - x_min y_range = y_max - y_min z_range = z_max - z_min # Add 10% padding to each dimension x_padding = x_range * 0.1 y_padding = y_range * 0.1 z_padding = z_range * 0.1 return { "regular_grid_resolution": [20, 20, 20], "regular_grid_extent": [ x_min - x_padding, x_max + x_padding, y_min - y_padding, y_max + y_padding, z_min - z_padding, z_max + z_padding ] } @staticmethod def load_model_from_json(file_path: str): """ Load a GemPy model from a JSON file. Args: file_path (str): Path to the JSON file Returns: GeoModel: A new GemPy model instance """ # Import here to avoid circular imports from gempy.core.data.geo_model import GeoModel, GeoModelMeta from gempy.core.data.grid import Grid from gempy.core.data.structural_frame import StructuralFrame from gempy_engine.core.data import InterpolationOptions from gempy.API.map_stack_to_surfaces_API import map_stack_to_surfaces with open(file_path, 'r') as f: data = json.load(f) # Validate the JSON data against our schema if not JsonIO._validate_json_schema(data): raise ValueError("Invalid JSON schema") # Get unique surface IDs from surface points and orientations surface_ids = set(sp['id'] for sp in data['surface_points']) surface_ids.update(ori['id'] for ori in data['orientations']) # Create default series if not provided if 'series' not in data: data['series'] = [{ 'name': 'Strat_Series', 'surfaces': [f'surface_{id}' for id in sorted(surface_ids)], 'structural_relation': 'ERODE' }] # Get surface names from series data surface_names = [] for series in data['series']: surface_names.extend(series['surfaces']) # Create ID to name mapping if not provided if 'id_name_mapping' in data: id_to_name = JsonIO._create_id_to_name(data['id_name_mapping']['name_to_id']) else: # Create mapping from series data id_to_name = {i: name for i, name in enumerate(surface_names)} # Create surface points table surface_points_table = JsonIO._load_surface_points(data['surface_points'], id_to_name) # Create orientations table orientations_table = JsonIO._load_orientations(data['orientations'], id_to_name) # Create structural frame structural_frame = StructuralFrame.from_data_tables(surface_points_table, orientations_table) # Get grid settings with defaults if not provided grid_settings = data.get('grid_settings', JsonIO._calculate_default_grid_settings(data['surface_points'], data['orientations'])) # Create grid grid = Grid( resolution=grid_settings['regular_grid_resolution'], extent=grid_settings['regular_grid_extent'] ) # Calculate default range based on model extent # default_range = JsonIO._calculate_default_range(grid_settings['regular_grid_extent']) # set as fixed value default_range = 1.7 # Match standard GemPy default # Create interpolation options with defaults if not provided interpolation_options = InterpolationOptions.from_args( range=data.get('interpolation_options', {}).get('kernel_options', {}).get('range', default_range), c_o=data.get('interpolation_options', {}).get('kernel_options', {}).get('c_o', 10), mesh_extraction=data.get('interpolation_options', {}).get('mesh_extraction', True), number_octree_levels=data.get('interpolation_options', {}).get('number_octree_levels', 1) ) # Create GeoModel with default metadata if not provided current_date = datetime.now().strftime("%Y-%m-%d") model_name = data.get('metadata', {}).get('name', "GemPy Model") model = GeoModel.from_args( name=model_name, structural_frame=structural_frame, grid=grid, interpolation_options=interpolation_options ) # Set the metadata with proper dates and defaults metadata = data.get('metadata', {}) model_meta = GeoModelMeta( name=metadata.get('name', model.meta.name), # Use model's name if available creation_date=metadata.get('creation_date', current_date), # Set current date as default last_modification_date=metadata.get('last_modification_date', current_date), # Set current date as default owner=metadata.get('owner', "GemPy Modeller") # Set default owner ) model.meta = model_meta # Map series to surfaces with structural relations mapping_object = {series['name']: series['surfaces'] for series in data['series']} # Ensure each series has structural_relation set to ERODE by default series_data = [] for series in data['series']: series_copy = series.copy() if 'structural_relation' not in series_copy: series_copy['structural_relation'] = 'ERODE' series_data.append(series_copy) map_stack_to_surfaces(model, mapping_object, series_data=series_data) # Set fault relations after structural groups are set up if 'fault_relations' in data and data['fault_relations'] is not None: fault_relations = np.array(data['fault_relations']) if fault_relations.shape == (len(model.structural_frame.structural_groups), len(model.structural_frame.structural_groups)): model.structural_frame.fault_relations = fault_relations # Set colors for each element for series in data['series']: if 'colors' in series: for surface_name, color in zip(series['surfaces'], series['colors']): element = model.structural_frame.get_element_by_name(surface_name) if element is not None: element.color = color return model @staticmethod def _load_surface_points(surface_points_data: List[SurfacePoint], id_to_name: Optional[Dict[int, str]] = None): """ Load surface points from JSON data. Args: surface_points_data (List[SurfacePoint]): List of surface point dictionaries id_to_name (Optional[Dict[int, str]]): Optional mapping from surface IDs to names Returns: SurfacePointsTable: A new SurfacePointsTable instance Raises: ValueError: If the data is invalid or missing required fields """ # Import here to avoid circular imports from gempy.core.data.surface_points import SurfacePointsTable # Validate data structure required_fields = {'x', 'y', 'z', 'nugget', 'id'} for i, sp in enumerate(surface_points_data): missing_fields = required_fields - set(sp.keys()) if missing_fields: raise ValueError(f"Missing required fields in surface point {i}: {missing_fields}") # Validate data types if not all(isinstance(sp[field], (int, float)) for field in ['x', 'y', 'z', 'nugget']): raise ValueError(f"Invalid data type in surface point {i}. All coordinates and nugget must be numeric.") if not isinstance(sp['id'], int): raise ValueError(f"Invalid data type in surface point {i}. ID must be an integer.") # Extract coordinates and other data x = np.array([sp['x'] for sp in surface_points_data]) y = np.array([sp['y'] for sp in surface_points_data]) z = np.array([sp['z'] for sp in surface_points_data]) nugget = np.array([sp['nugget'] for sp in surface_points_data]) # Handle names based on whether id_to_name mapping is provided if id_to_name is not None: names = [id_to_name.get(sp['id'], f"surface_{sp['id']}") for sp in surface_points_data] else: # If no mapping provided, use surface IDs as names names = [f"surface_{sp['id']}" for sp in surface_points_data] # Create SurfacePointsTable return SurfacePointsTable.from_arrays( x=x, y=y, z=z, names=names, nugget=nugget ) @staticmethod def _load_orientations(orientations_data: List[Orientation], id_to_name: Optional[Dict[int, str]] = None): """ Load orientations from JSON data. Args: orientations_data (List[Orientation]): List of orientation dictionaries id_to_name (Optional[Dict[int, str]]): Optional mapping from surface IDs to names Returns: OrientationsTable: A new OrientationsTable instance Raises: ValueError: If the data is invalid or missing required fields """ # Import here to avoid circular imports from gempy.core.data.orientations import OrientationsTable # Validate data structure required_fields = {'x', 'y', 'z', 'G_x', 'G_y', 'G_z', 'nugget', 'polarity', 'id'} for i, ori in enumerate(orientations_data): missing_fields = required_fields - set(ori.keys()) if missing_fields: raise ValueError(f"Missing required fields in orientation {i}: {missing_fields}") # Validate data types if not all(isinstance(ori[field], (int, float)) for field in ['x', 'y', 'z', 'G_x', 'G_y', 'G_z', 'nugget']): raise ValueError(f"Invalid data type in orientation {i}. All coordinates, gradients, and nugget must be numeric.") if not isinstance(ori.get('polarity', 1), int) or ori.get('polarity', 1) not in {-1, 1}: raise ValueError(f"Invalid polarity in orientation {i}. Must be 1 (normal) or -1 (reverse).") if not isinstance(ori['id'], int): raise ValueError(f"Invalid data type in orientation {i}. ID must be an integer.") # Extract coordinates and other data x = np.array([ori['x'] for ori in orientations_data]) y = np.array([ori['y'] for ori in orientations_data]) z = np.array([ori['z'] for ori in orientations_data]) G_x = np.array([ori['G_x'] for ori in orientations_data]) G_y = np.array([ori['G_y'] for ori in orientations_data]) G_z = np.array([ori['G_z'] for ori in orientations_data]) nugget = np.array([ori['nugget'] for ori in orientations_data]) # Handle names based on whether id_to_name mapping is provided if id_to_name is not None: names = [id_to_name.get(ori['id'], f"surface_{ori['id']}") for ori in orientations_data] else: # If no mapping provided, use surface IDs as names names = [f"surface_{ori['id']}" for ori in orientations_data] # Apply polarity to gradients for i, ori in enumerate(orientations_data): if ori.get('polarity', 1) == -1: G_x[i] *= -1 G_y[i] *= -1 G_z[i] *= -1 # Create OrientationsTable return OrientationsTable.from_arrays( x=x, y=y, z=z, G_x=G_x, G_y=G_y, G_z=G_z, names=names, nugget=nugget ) @staticmethod def save_model_to_json(model, file_path: str) -> None: """ Save a GemPy model to a JSON file. Args: model: The GemPy model to save file_path (str): Path where to save the JSON file """ # Get current date for default values current_date = datetime.now().strftime("%Y-%m-%d") # Create JSON structure with metadata handling json_data = { "metadata": { "name": model.meta.name if model.meta.name is not None else "GemPy Model", "creation_date": model.meta.creation_date if model.meta.creation_date is not None else current_date, "last_modification_date": model.meta.last_modification_date if model.meta.last_modification_date is not None else current_date, "owner": model.meta.owner if model.meta.owner is not None else "GemPy Modeller" }, "surface_points": [], "orientations": [], "series": [], "grid_settings": { "regular_grid_resolution": [int(x) for x in model.grid._dense_grid.resolution], "regular_grid_extent": [float(x) for x in model.grid._dense_grid.extent], "octree_levels": None # TODO: Add octree levels if needed }, "interpolation_options": { "kernel_options": { "range": float(model.interpolation_options.kernel_options.range), "c_o": float(model.interpolation_options.kernel_options.c_o) }, "mesh_extraction": bool(model.interpolation_options.mesh_extraction), "number_octree_levels": int(model.interpolation_options.number_octree_levels) }, "fault_relations": [[int(x) for x in row] for row in model.structural_frame.fault_relations] if hasattr(model.structural_frame, 'fault_relations') else None, "id_name_mapping": { "name_to_id": {k: int(v) for k, v in model.structural_frame.element_name_id_map.items()} } } # Get series and surface information for group in model.structural_frame.structural_groups: series_entry = { "name": str(group.name), "surfaces": [str(element.name) for element in group.elements], "structural_relation": str(group.structural_relation.name), "colors": [str(element.color) for element in group.elements] } json_data["series"].append(series_entry) # Get surface points surface_points_table = model.surface_points_copy xyz_values = surface_points_table.xyz ids = surface_points_table.ids nugget_values = surface_points_table.nugget for i in range(len(xyz_values)): point = { "x": float(xyz_values[i, 0]), "y": float(xyz_values[i, 1]), "z": float(xyz_values[i, 2]), "id": int(ids[i]), "nugget": float(nugget_values[i]) } json_data["surface_points"].append(point) # Get orientations orientations_table = model.orientations_copy ori_xyz_values = orientations_table.xyz ori_grads_values = orientations_table.grads ori_ids = orientations_table.ids ori_nugget_values = orientations_table.nugget for i in range(len(ori_xyz_values)): orientation = { "x": float(ori_xyz_values[i, 0]), "y": float(ori_xyz_values[i, 1]), "z": float(ori_xyz_values[i, 2]), "G_x": float(ori_grads_values[i, 0]), "G_y": float(ori_grads_values[i, 1]), "G_z": float(ori_grads_values[i, 2]), "id": int(ori_ids[i]), "nugget": float(ori_nugget_values[i]), "polarity": 1 # Default value, update if available } json_data["orientations"].append(orientation) # Save to file with open(file_path, 'w') as f: json.dump(json_data, f, indent=4) @staticmethod def _validate_json_schema(data: Dict) -> None: """Validate the JSON schema and set default values.""" # Required top-level keys required_keys = ['surface_points', 'orientations', 'grid_settings'] for key in required_keys: if key not in data: raise ValueError(f"Missing required key: {key}") # Validate surface points for point in data['surface_points']: required_point_keys = ['x', 'y', 'z'] for key in required_point_keys: if key not in point: raise ValueError(f"Missing required key in surface point: {key}") # Set default nugget if not provided if 'nugget' not in point: point['nugget'] = 0.0 # Default nugget for surface points # Set default id if not provided if 'id' not in point: point['id'] = 0 # Default id # Validate orientations for orientation in data['orientations']: required_orientation_keys = ['x', 'y', 'z', 'G_x', 'G_y', 'G_z'] for key in required_orientation_keys: if key not in orientation: raise ValueError(f"Missing required key in orientation: {key}") # Set default nugget if not provided if 'nugget' not in orientation: orientation['nugget'] = 0.01 # Default nugget for orientations # Set default polarity if not provided if 'polarity' not in orientation: orientation['polarity'] = 1 # Set default id if not provided if 'id' not in orientation: orientation['id'] = 0 # Default id # Validate grid settings grid_settings = data['grid_settings'] required_grid_keys = ['regular_grid_resolution', 'regular_grid_extent'] for key in required_grid_keys: if key not in grid_settings: raise ValueError(f"Missing required key in grid_settings: {key}") # Validate series if provided if 'series' in data: for series in data['series']: required_series_keys = ['name', 'surfaces'] for key in required_series_keys: if key not in series: raise ValueError(f"Missing required key in series: {key}") # Set default structural relation if not provided if 'structural_relation' not in series: series['structural_relation'] = "ERODE" # Validate colors if provided if 'colors' in series: if not isinstance(series['colors'], list): raise ValueError("Colors must be a list") if not all(isinstance(color, str) and color.startswith('#') for color in series['colors']): raise ValueError("Colors must be hex color codes starting with #") # Validate interpolation options if present if 'interpolation_options' in data: if not isinstance(data['interpolation_options'], dict): raise ValueError("Interpolation options must be a dictionary") if 'kernel_options' in data['interpolation_options']: kernel_options = data['interpolation_options']['kernel_options'] if not isinstance(kernel_options, dict): raise ValueError("Kernel options must be a dictionary") if 'range' in kernel_options and not isinstance(kernel_options['range'], (int, float)): raise ValueError("Kernel range must be a number") if 'c_o' in kernel_options and not isinstance(kernel_options['c_o'], (int, float)): raise ValueError("Kernel c_o must be a number") if 'mesh_extraction' in data['interpolation_options'] and not isinstance(data['interpolation_options']['mesh_extraction'], bool): raise ValueError("Mesh extraction must be a boolean") if 'number_octree_levels' in data['interpolation_options'] and not isinstance(data['interpolation_options']['number_octree_levels'], int): raise ValueError("Number of octree levels must be an integer") # Validate and set default metadata if 'metadata' not in data: data['metadata'] = {} metadata = data['metadata'] if not isinstance(metadata, dict): raise ValueError("Metadata must be a dictionary") # Set default values for metadata current_date = datetime.now().strftime("%Y-%m-%d") if 'name' not in metadata or metadata['name'] is None: metadata['name'] = "GemPy Model" elif not isinstance(metadata['name'], str): raise ValueError("Metadata name must be a string") if 'creation_date' not in metadata or metadata['creation_date'] is None: metadata['creation_date'] = current_date elif not isinstance(metadata['creation_date'], str): raise ValueError("Metadata creation_date must be a string") if 'last_modification_date' not in metadata or metadata['last_modification_date'] is None: metadata['last_modification_date'] = current_date elif not isinstance(metadata['last_modification_date'], str): raise ValueError("Metadata last_modification_date must be a string") if 'owner' not in metadata or metadata['owner'] is None: metadata['owner'] = "GemPy Modeller" elif not isinstance(metadata['owner'], str): raise ValueError("Metadata owner must be a string") return True ================================================ FILE: gempy/modules/json_io/schema.py ================================================ """ Schema definitions for JSON I/O operations in GemPy. This module defines the expected structure of JSON files for loading and saving GemPy models. """ from typing import TypedDict, List, Dict, Any, Optional, Union, Sequence try: from typing import NotRequired except ImportError: from typing_extensions import NotRequired # Fallback for older Python versions class SurfacePoint(TypedDict): x: float y: float z: float id: int nugget: float class Orientation(TypedDict): x: float y: float z: float G_x: float # X component of the gradient G_y: float # Y component of the gradient G_z: float # Z component of the gradient id: int nugget: float polarity: int # 1 for normal, -1 for reverse class Surface(TypedDict, total=False): name: str # Required id: NotRequired[int] # Optional, will be auto-generated if not provided color: NotRequired[Optional[str]] # Optional hex color code vertices: NotRequired[Optional[List[List[float]]]] # Optional list of [x, y, z] coordinates class Fault(TypedDict, total=False): name: str # Required id: NotRequired[int] # Optional, will be auto-generated is_active: NotRequired[bool] # Optional, defaults to True surface: Surface class Series(TypedDict, total=False): name: str # Required surfaces: Union[List[str], List[Surface]] # Required, can be list of names or Surface objects id: NotRequired[int] # Optional, will be auto-generated is_active: NotRequired[bool] # Optional, defaults to True is_fault: NotRequired[bool] # Optional, defaults to False order_series: NotRequired[int] # Optional, will be auto-generated faults: NotRequired[List[Fault]] # Optional, defaults to empty list structural_relation: NotRequired[str] # Optional, defaults to "ONLAP" colors: NotRequired[Optional[List[str]]] # Optional class GridSettings(TypedDict, total=False): regular_grid_resolution: NotRequired[List[int]] # Optional, defaults to [10, 10, 10] regular_grid_extent: NotRequired[List[float]] # Optional, auto-calculated from data octree_levels: NotRequired[Optional[int]] # Optional class ModelMetadata(TypedDict, total=False): name: NotRequired[str] # Optional, defaults to "GemPy Model" creation_date: NotRequired[str] # Optional, defaults to current date last_modification_date: NotRequired[str] # Optional, defaults to current date owner: NotRequired[Optional[str]] # Optional, defaults to "GemPy Team" class IdNameMapping(TypedDict, total=False): name_to_id: Dict[str, int] # Required if id_name_mapping is provided class GemPyModelJson(TypedDict): surface_points: List[SurfacePoint] # Required orientations: List[Orientation] # Required series: List[Series] # Required but with minimal required fields metadata: NotRequired[ModelMetadata] # Optional grid_settings: NotRequired[Optional[GridSettings]] # Optional interpolation_options: NotRequired[Optional[Dict[str, Any]]] # Optional id_name_mapping: NotRequired[IdNameMapping] # Optional ================================================ FILE: gempy/modules/mesh_extranction/__init__.py ================================================ ================================================ FILE: gempy/modules/mesh_extranction/marching_cubes.py ================================================ import os import numpy as np from typing import Optional from skimage import measure from gempy_engine.core.data.interp_output import InterpOutput from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution from gempy.core.data import GeoModel, StructuralElement, StructuralGroup from gempy.core.data.grid_modules import RegularGrid def set_meshes_with_marching_cubes(model: GeoModel) -> None: """Extract meshes for all structural elements using the marching cubes algorithm. Parameters ---------- model : GeoModel The geological model containing solutions and structural elements. Raises ------ ValueError If the model solutions do not contain dense grid data. """ # Verify that solutions contain dense grid data solution_not_having_dense: bool = model.solutions.block_solution_type != RawArraysSolution.BlockSolutionType.DENSE_GRID if model.solutions is None or solution_not_having_dense: raise ValueError("Model solutions must contain dense grid data for mesh extraction.") regular_grid: RegularGrid = model.grid.regular_grid structural_groups: list[StructuralGroup] = model.structural_frame.structural_groups if not model.solutions.octrees_output or not model.solutions.octrees_output[0].outputs: raise ValueError("No interpolation outputs available for mesh extraction.") output_lvl0: list[InterpOutput] = model.solutions.octrees_output[0].outputs for e, structural_group in enumerate(structural_groups): if e >= len(output_lvl0): continue output_group: InterpOutput = output_lvl0[e] scalar_field_matrix = output_group.exported_fields_dense_grid.scalar_field if structural_group.is_fault is False: slice_: slice = output_group.grid.dense_grid_slice mask = output_group.combined_scalar_field.squeezed_mask_array[slice_] else: mask = np.ones_like(scalar_field_matrix, dtype=bool) for element in structural_group.elements: extract_mesh_for_element( structural_element=element, regular_grid=regular_grid, scalar_field=scalar_field_matrix, mask=mask ) def extract_mesh_for_element(structural_element: StructuralElement, regular_grid: RegularGrid, scalar_field: np.ndarray, mask: Optional[np.ndarray] = None) -> None: """Extract a mesh for a single structural element using marching cubes. Parameters ---------- structural_element : StructuralElement The structural element for which to extract a mesh. regular_grid : RegularGrid The regular grid defining the spatial discretization. scalar_field : np.ndarray The scalar field used for isosurface extraction. mask : np.ndarray, optional Optional mask to restrict the mesh extraction to specific regions. """ if type(scalar_field).__module__ == 'torch': import torch scalar_field = scalar_field.detach().numpy() if type(mask).__module__ == "torch": import torch mask = torch.to_numpy(mask) # Extract mesh using marching cubes verts, faces, _, _ = measure.marching_cubes( volume=scalar_field.reshape(regular_grid.resolution), level=structural_element.scalar_field_at_interface, spacing=(regular_grid.dx, regular_grid.dy, regular_grid.dz), mask=mask.reshape(regular_grid.resolution) if mask is not None else None, allow_degenerate=False, method="lewiner" ) # Adjust vertices to correct coordinates in the model's extent verts = (verts + [regular_grid.extent[0], regular_grid.extent[2], regular_grid.extent[4]]) # Store mesh in the structural element structural_element.vertices = verts structural_element.edges = faces ================================================ FILE: gempy/modules/optimize_nuggets/__init__.py ================================================ from ._optimizer import nugget_optimizer ================================================ FILE: gempy/modules/optimize_nuggets/_ops.py ================================================ import gempy_engine from gempy.optional_dependencies import require_torch from gempy_engine.core.data.continue_epoch import ContinueEpoch def run_optimization(lr, max_epochs, min_impr, model, nugget, patience, target_cond_num): torch = require_torch() opt = torch.optim.Adam( params=[ nugget, ], lr=lr ) prev_cond = float('inf') for epoch in range(max_epochs): opt.zero_grad() try: gempy_engine.compute_model( interpolation_input=model.taped_interpolation_input, options=model.interpolation_options, data_descriptor=model.input_data_descriptor, geophysics_input=model.geophysics_input, ) except ContinueEpoch: if True: # Keep only top 10% gradients _gradient_masking(nugget, focus=0.01) else: if epoch % 1 == 0: mask_sp = _mask_iqr(nugget.grad.abs().view(-1), multiplier=3) print(f"Outliers sp: {torch.nonzero(mask_sp)}") _apply_outlier_gradients(tensor=nugget, mask=mask_sp) # Step & clamp safely opt.step() with torch.no_grad(): nugget.clamp_(min=1e-7) # Evaluate condition number cur_cond = model.interpolation_options.kernel_options.condition_number print(f"[Epoch {epoch}] cond. num. = {cur_cond:.2e}") if _has_converged(cur_cond, prev_cond, target_cond_num, epoch, min_impr, patience): break prev_cond = cur_cond # Condition number to numpy model.interpolation_options.kernel_options.condition_number = model.interpolation_options.kernel_options.condition_number.detach().numpy() return nugget def _mask_iqr(grads, multiplier: float = 1.5) -> "torch.BoolTensor": q1, q3 = grads.quantile(0.25), grads.quantile(0.75) thresh = q3 + multiplier * (q3 - q1) return grads > thresh def _apply_outlier_gradients( tensor: "torch.Tensor", mask: "torch.BoolTensor", amplification: float = 1.0, ): # wrap in no_grad if you prefer, but .grad modifications are fine tensor.grad.view(-1)[mask] *= amplification tensor.grad.view(-1)[~mask] = 0 def _gradient_masking(nugget, focus=0.01): """Old way of avoiding exploding gradients.""" torch = require_torch() grads = nugget.grad.abs() k = int(grads.numel() * focus) top_vals, top_idx = torch.topk(grads, k, largest=True) mask = torch.zeros_like(grads) mask[top_idx] = 1 nugget.grad.mul_(mask) def _has_converged( current: float, previous: float, target: float = 1e5, epoch: int = 0, min_improvement: float = 0.01, patience: int = 10, ) -> bool: if current < target: return True if epoch > patience: # relative improvement rel_impr = abs(current - previous) / max(previous, 1e-8) return rel_impr < min_improvement return False ================================================ FILE: gempy/modules/optimize_nuggets/_optimizer.py ================================================ from gempy_engine.core.backend_tensor import BackendTensor from gempy_engine.core.data.interpolation_input import InterpolationInput from ._ops import run_optimization from ..data_manipulation.manipulate_points import modify_surface_points from ...core.data import GeoModel, GemPyEngineConfig, StructuralGroup from ...modules.data_manipulation import interpolation_input_from_structural_frame def nugget_optimizer( target_cond_num: float, engine_cfg: GemPyEngineConfig, model: GeoModel, max_epochs: int, only_groups: list[StructuralGroup] | None = None, lr: float = .01, patience: int = 10, min_impr: float = 0.01, ) -> GeoModel: """ Optimize the nugget effect scalar to achieve a target condition number. Returns the final nugget effect value. """ # 1) Backend setup (ideally done once, not every call) BackendTensor.change_backend_gempy( engine_backend=engine_cfg.backend, use_gpu=engine_cfg.use_gpu, dtype=engine_cfg.dtype, grads=True ) # 2) Prepare data all_groups: list[StructuralGroup] = model.structural_frame.structural_groups if only_groups is not None: groups_to_optimize = only_groups else: groups_to_optimize: list[StructuralGroup] = all_groups for group in groups_to_optimize: model.structural_frame.structural_groups = [group] interp_in: InterpolationInput = interpolation_input_from_structural_frame(model) model.taped_interpolation_input = interp_in nugget: "torch.Tensor" = interp_in.surface_points.nugget_effect_scalar nugget.requires_grad_(True) model.interpolation_options.kernel_options.optimizing_condition_number = True nuggets = run_optimization(lr, max_epochs, min_impr, model, nugget, patience, target_cond_num) modify_surface_points( geo_model=model, nugget=nuggets.detach().numpy() ) model.interpolation_options.kernel_options.optimizing_condition_number = False model.structural_frame.structural_groups = all_groups return model ================================================ FILE: gempy/modules/serialization/__init__.py ================================================ ================================================ FILE: gempy/modules/serialization/save_load.py ================================================ import re import warnings from ...core.data import GeoModel from ...core.data.encoders.converters import loading_model_from_binary from ...optional_dependencies import require_zlib import pathlib import os import io import zipfile def save_model(model: GeoModel, path: str | None = None, validate_serialization: bool = True): """ Save a GeoModel to a file with proper extension validation. Parameters: ----------- model : GeoModel The geological model to save path : str The file path where to save the model Raises: ------- ValueError If the file has an extension other than .gempy """ # Warning about preview warnings.warn("This function is still in development. It may not work as expected.") # Define the valid extension for gempy models VALID_EXTENSION = ".gempy" if path is None: path = model.meta.name + VALID_EXTENSION # Check if path has an extension path_obj = pathlib.Path(path) if path_obj.suffix: # If extension exists but is not valid, raise error if path_obj.suffix.lower() != VALID_EXTENSION: raise ValueError(f"Invalid file extension: {path_obj.suffix}. Expected: {VALID_EXTENSION}") else: # If no extension, add the valid extension path = str(path_obj) + VALID_EXTENSION binary_file = model_to_bytes(model) if validate_serialization: model_deserialized = _load_model_from_bytes(binary_file) _validate_serialization(model, model_deserialized) # Create directory if it doesn't exist directory = os.path.dirname(path) if directory and not os.path.exists(directory): os.makedirs(directory) with open(path, 'wb') as f: f.write(binary_file) return path # Return the actual path used (helpful if extension was added) def model_to_binary(model: GeoModel) -> bytes: # Compress the binary data zlib = require_zlib() compressed_binary_input = zlib.compress(model.structural_frame.input_tables_binary) compressed_binary_grid = zlib.compress(model.grid.grid_binary) compressed_binary_grid = zlib.compress(model.grid.grid_binary, level=6) import hashlib print("len raw bytes:", len(model.grid.grid_binary)) print("raw bytes hash:", hashlib.sha256(model.grid.grid_binary).hexdigest()) print("compressed length:", len(compressed_binary_grid)) print("zlib version:", zlib.ZLIB_VERSION) # * Add here the serialization meta parameters like: len_bytes model.structural_frame._input_binary_size = len(compressed_binary_input) model.grid._grid_binary_size = len(compressed_binary_grid) model_json = model.model_dump_json(by_alias=True, indent=4) binary_file = _to_binary( header_json=model_json, body_input=compressed_binary_input, body_grid=compressed_binary_grid ) return binary_file def load_model(path: str) -> GeoModel: """ Load a GeoModel from a file with extension validation. Parameters: ----------- path : str Path to the gempy model file Returns: -------- GeoModel The loaded geological model Raises: ------- ValueError If the file doesn't have the proper .gempy extension FileNotFoundError If the file doesn't exist """ # Warning about preview warnings.warn("This function is still in development. It may not work as expected.") VALID_EXTENSION = ".gempy" # Check if path has the valid extension path_obj = pathlib.Path(path) if not path_obj.suffix or path_obj.suffix.lower() != VALID_EXTENSION: raise ValueError(f"Invalid file extension: {path_obj.suffix}. Expected: {VALID_EXTENSION}") # Check if file exists if not os.path.exists(path): raise FileNotFoundError(f"File not found: {path}") with open(path, 'rb') as f: binary_file = f.read() return _load_model_from_bytes(binary_file) def model_to_bytes(model: GeoModel) -> bytes: # 1) Make a fully deterministic JSON header # header_dict = model.model_dump(by_alias=True) # header_json = json.dumps( # header_dict, # sort_keys=True, # always sort object keys # separators=(",", ":"), # no extra whitespace # ).encode("utf-8") header_json = model.model_dump_json(by_alias=True, indent=4) # 2) Raw binary chunks (no additional zlib.compress here) input_raw = model.structural_frame.input_tables_binary grid_raw = model.grid.grid_binary # 3) Pack into a ZIP archive in a fixed order: buf = io.BytesIO() with zipfile.ZipFile( buf, mode="w", compression=zipfile.ZIP_DEFLATED, compresslevel=6 ) as zf: # Force a fixed timestamp (1980-01-01) so the file headers don't vary def make_info(name): zi = zipfile.ZipInfo(name, date_time=(1980,1,1,0,0,0)) zi.external_attr = 0 # clear OS-specific file permissions return zi zf.writestr(make_info("header.json"), header_json) zf.writestr(make_info("input.bin"), input_raw) zf.writestr(make_info("grid.bin"), grid_raw) return buf.getvalue() def _load_model_from_bytes(data: bytes) -> GeoModel: from ...core.data.encoders.converters import loading_model_from_binary buf = io.BytesIO(data) with zipfile.ZipFile(buf, "r") as zf: header_json = zf.read("header.json").decode("utf-8") # header = json.loads(header_json) input_raw = zf.read("input.bin") grid_raw = zf.read("grid.bin") # If you want to validate or decompress further, do it here… with loading_model_from_binary( input_binary=input_raw, grid_binary= grid_raw ): model = GeoModel.model_validate_json(header_json) return model def _deserialize_binary_file(binary_file): import json # Get header length from first 4 bytes header_length = int.from_bytes(binary_file[:4], byteorder='little') # Split header and body header_json= binary_file[4:4 + header_length].decode('utf-8') header = json.loads(header_json) input_metadata = header["structural_frame"]["binary_meta_data"] input_size = input_metadata["input_binary_size"] grid_metadata = header["grid"]["binary_meta_data"] grid_size = grid_metadata["grid_binary_size"] input_binary = binary_file[4 + header_length: 4 + header_length + input_size] all_sections_length = 4 + header_length + input_size + grid_size if all_sections_length != len(binary_file): raise ValueError("Binary file is corrupted") grid_binary = binary_file[4 + header_length + input_size: all_sections_length] zlib = require_zlib() with loading_model_from_binary( input_binary=(zlib.decompress(input_binary)), grid_binary=(zlib.decompress(grid_binary)) ): model = GeoModel.model_validate_json(header_json) return model def _to_binary(header_json, body_input, body_grid) -> bytes: header_json_bytes = header_json.encode('utf-8') header_json_length = len(header_json_bytes) header_json_length_bytes = header_json_length.to_bytes(4, byteorder='little') file = header_json_length_bytes + header_json_bytes + body_input + body_grid return file def _validate_serialization(original_model, model_deserialized): a = hash(original_model.structural_frame.surface_points_copy.data.tobytes()) b = hash(model_deserialized.structural_frame.surface_points_copy.data.tobytes()) o_a = hash(original_model.structural_frame.orientations_copy.data.tobytes()) o_b = hash(model_deserialized.structural_frame.orientations_copy.data.tobytes()) assert a == b, "Hashes for surface points are not equal" assert o_a == o_b, "Hashes for orientations are not equal" original_model___str__ = re.sub(r'\s+', ' ', original_model.__str__()) deserialized___str__ = re.sub(r'\s+', ' ', model_deserialized.__str__()) if original_model___str__ != deserialized___str__: # Find first char that is not the same for i in range(min(len(original_model___str__), len(deserialized___str__))): if original_model___str__[i] != deserialized___str__[i]: break print(f"First difference at index {i}:") i1 = 10 print(f"Original: {original_model___str__[i - i1:i + i1]}") print(f"Deserialized: {deserialized___str__[i - i1:i + i1]}") assert deserialized___str__ == original_model___str__ ================================================ FILE: gempy/optional_dependencies.py ================================================ def require_pandas(): try: import pandas as pd except ImportError: raise ImportError("The pandas library is required to use this function.") return pd def require_pooch(): try: import pooch except ImportError: raise ImportError("The pooch library is required to use this function.") return pooch def require_gempy_legacy(): try: import gempy_legacy except ImportError: raise ImportError("The gempy_legacy library is required to use this function.") return gempy_legacy def require_gempy_viewer(): try: import gempy_viewer except ImportError: raise ImportError("The gempy_viewer package is required to run this function.") return gempy_viewer def require_matplotlib(): try: import matplotlib.pyplot as plt except ImportError: raise ImportError("The matplotlib package is required to run this function.") return plt def require_skimage(): try: import skimage except ImportError: raise ImportError("The skimage package is required to run this function.") return skimage def require_scipy(): try: import scipy except ImportError: raise ImportError("The scipy package is required to run this function.") return scipy def require_subsurface(): try: import subsurface except ImportError: raise ImportError("The subsurface package is required to run this function.") return subsurface def require_zlib(): try: import zlib except ImportError: raise ImportError("The zlib package is required to run this function.") return zlib def require_torch(): try: import torch except ImportError: raise ImportError("The torch package is required to run this function.") return torch ================================================ FILE: requirements/base-requirements.txt ================================================ -r requirements.txt # This install matplotlib gempy_viewer~=2025.1.4 pandas>=2.2.0,<3.0.0 ================================================ FILE: requirements/dev-requirements.txt ================================================ -r optional-requirements.txt pytest pyvista subsurface-terra wellpathpy torch # Testing pytest-approvaltests ================================================ FILE: requirements/docs_requirements.txt ================================================ -r dev-requirements.txt torch rasterio sphinx sphinx-gallery sphinx_design sphinx_automodapi liquid-earth-sdk wellpathpy openpyxl ================================================ FILE: requirements/optional-requirements.txt ================================================ -r base-requirements.txt gempy_plugins # for data download pooch scipy scikit-image ================================================ FILE: requirements/requirements.txt ================================================ # This install also numpy gempy_engine>=2026.0.1dev0,<2026.1.0 ================================================ FILE: scripts/build_docs.sh ================================================ #!/bin/bash source ~/.virtualenvs/gempy_dependencies/bin/activate cd ../docs || exit #make clean make html cd - || exit ================================================ FILE: scripts/deploy.sh ================================================ #!/usr/bin/env bash set -o errexit #abort if any command fails me=$(basename "$0") help_message="\ Usage: $me [-c FILE] [] Deploy generated files to a git branch. Options: -h, --help Show this help information. -v, --verbose Increase verbosity. Useful for debugging. -e, --allow-empty Allow deployment of an empty directory. -m, --message MESSAGE Specify the message used when committing on the deploy branch. -n, --no-hash Don't append the source commit's hash to the deploy commit's message. -c, --config-file PATH Override default & environment variables' values with those in set in the file at 'PATH'. Must be the first option specified. Variables: GIT_DEPLOY_DIR Folder path containing the files to deploy. GIT_DEPLOY_BRANCH Commit deployable files to this branch. GIT_DEPLOY_REPO Push the deploy branch to this repository. These variables have default values defined in the script. The defaults can be overridden by environment variables. Any environment variables are overridden by values set in a '.env' file (if it exists), and in turn by those set in a file specified by the '--config-file' option." echo "docs.gempy.org" > docs/build/html/CNAME parse_args() { # Set args from a local environment file. if [ -e ".env" ]; then source .env fi # Set args from file specified on the command-line. if [[ $1 = "-c" || $1 = "--config-file" ]]; then source "$2" shift 2 fi # Parse arg flags # If something is exposed as an environment variable, set/overwrite it # here. Otherwise, set/overwrite the internal variable instead. while : ; do if [[ $1 = "-h" || $1 = "--help" ]]; then echo "$help_message" return 0 elif [[ $1 = "-v" || $1 = "--verbose" ]]; then verbose=true shift elif [[ $1 = "-e" || $1 = "--allow-empty" ]]; then allow_empty=true shift elif [[ ( $1 = "-m" || $1 = "--message" ) && -n $2 ]]; then commit_message=$2 shift 2 elif [[ $1 = "-n" || $1 = "--no-hash" ]]; then GIT_DEPLOY_APPEND_HASH=false shift else break fi done # Set internal option vars from the environment and arg flags. All internal # vars should be declared here, with sane defaults if applicable. # Source directory & target branch. deploy_directory=${GIT_DEPLOY_DIR:-docs/build/html} deploy_branch=${GIT_DEPLOY_BRANCH:-gh-pages} #if no user identity is already set in the current git environment, use this: default_username=${GIT_DEPLOY_USERNAME:-leguark} default_email=${GIT_DEPLOY_EMAIL:-miguel@terranigma-solutions.com} #repository to deploy to. must be readable and writable. repo=${GIT_DEPLOY_REPO:-origin} #append commit hash to the end of message by default append_hash=${GIT_DEPLOY_APPEND_HASH:-true} } main() { parse_args "$@" enable_expanded_output if ! git diff --exit-code --quiet --cached; then echo Aborting due to uncommitted changes in the index >&2 return 1 fi commit_title=`git log -n 1 --format="%s" HEAD` commit_hash=` git log -n 1 --format="%H" HEAD` #default commit message uses last title if a custom one is not supplied if [[ -z $commit_message ]]; then commit_message="publish: $commit_title" fi #append hash to commit message unless no hash flag was found if [ $append_hash = true ]; then commit_message="$commit_message"$'\n\n'"generated from commit $commit_hash" fi previous_branch=`git rev-parse --abbrev-ref HEAD` if [ ! -d "$deploy_directory" ]; then echo "Deploy directory '$deploy_directory' does not exist. Aborting." >&2 return 1 fi # must use short form of flag in ls for compatibility with OS X and BSD if [[ -z `ls -A "$deploy_directory" 2> /dev/null` && -z $allow_empty ]]; then echo "Deploy directory '$deploy_directory' is empty. Aborting. If you're sure you want to deploy an empty tree, use the --allow-empty / -e flag." >&2 return 1 fi if git ls-remote --exit-code $repo "refs/heads/$deploy_branch" ; then # deploy_branch exists in $repo; make sure we have the latest version disable_expanded_output git fetch --force $repo $deploy_branch:$deploy_branch enable_expanded_output fi # check if deploy_branch exists locally if git show-ref --verify --quiet "refs/heads/$deploy_branch" then incremental_deploy else initial_deploy fi restore_head } initial_deploy() { git --work-tree "$deploy_directory" checkout --orphan $deploy_branch git --work-tree "$deploy_directory" add --all commit+push } incremental_deploy() { #make deploy_branch the current branch git symbolic-ref HEAD refs/heads/$deploy_branch #put the previously committed contents of deploy_branch into the index git --work-tree "$deploy_directory" reset --mixed --quiet git --work-tree "$deploy_directory" add --all set +o errexit diff=$(git --work-tree "$deploy_directory" diff --exit-code --quiet HEAD --)$? set -o errexit case $diff in 0) echo No changes to files in $deploy_directory. Skipping commit.;; 1) commit+push;; *) echo git diff exited with code $diff. Aborting. Staying on branch $deploy_branch so you can debug. To switch back to master, use: git symbolic-ref HEAD refs/heads/master && git reset --mixed >&2 return $diff ;; esac } commit+push() { set_user_id git --work-tree "$deploy_directory" commit -m "$commit_message" disable_expanded_output #--quiet is important here to avoid outputting the repo URL, which may contain a secret token git push --quiet $repo $deploy_branch enable_expanded_output } #echo expanded commands as they are executed (for debugging) enable_expanded_output() { if [ $verbose ]; then set -o xtrace set +o verbose fi } #this is used to avoid outputting the repo URL, which may contain a secret token disable_expanded_output() { if [ $verbose ]; then set +o xtrace set -o verbose fi } set_user_id() { if [[ -z `git config user.name` ]]; then git config user.name "$default_username" fi if [[ -z `git config user.email` ]]; then git config user.email "$default_email" fi } restore_head() { if [[ $previous_branch = "HEAD" ]]; then #we weren't on any branch before, so just set HEAD back to the commit it was on git update-ref --no-deref HEAD $commit_hash $deploy_branch else git symbolic-ref HEAD refs/heads/$previous_branch fi git reset --mixed } filter() { sed -e "s|$repo|\$repo|g" } sanitize() { "$@" 2> >(filter 1>&2) | filter } [[ $1 = --source-only ]] || main "$@" ================================================ FILE: scripts/update_doc_elements.sh ================================================ #!/bin/bash # #!/bin/bash # sets the working directory to the current directory cd './notebooks/tutorials' # converts all Jupyter Notebook files to basic html for f in *.ipynb; do jupyter nbconvert --to rst --output-dir ../../docs/source/_notebooks $f; done cd ../../docs make html ================================================ FILE: setup.cfg ================================================ [metadata] description-file = README.md ================================================ FILE: setup.py ================================================ import os from os import path from setuptools import setup, find_packages def read_requirements(file_name, base_path=""): # Construct the full path to the requirements file full_path = os.path.join(base_path, file_name) requirements = [] with open(full_path, "r", encoding="utf-8") as f: for line in f: # Strip whitespace and ignore comments line = line.strip() if line.startswith("#") or not line: continue # Handle -r directive if line.startswith("-r "): referenced_file = line.split()[1] # Extract the file name # Recursively read the referenced file, making sure to include the base path requirements.extend(read_requirements(referenced_file, base_path=base_path)) else: requirements.append(line) return requirements with open("README.md", "r") as fh: long_description = fh.read() setup( name='gempy', packages=find_packages(exclude=('test', 'docs', 'examples')), install_requires=read_requirements("requirements.txt", "requirements"), extras_require={ "opt": read_requirements("optional-requirements.txt", "requirements"), "base": read_requirements("base-requirements.txt", "requirements"), }, url='https://github.com/cgre-aachen/gempy', license='EUPL-1.2', author='Miguel de la Varga, Alexander Zimmerman, Elisa Heim, Alexander Schaaf, Fabian Stamm, Florian Wellmann, Jan Niederau, Andrew Annex', author_email='gempy@terranigma-solutions.com', description='An Open-source, Python-based 3-D structural geological modeling software.', long_description=long_description, long_description_content_type='text/markdown', keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty'], classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ], setup_requires=['setuptools_scm'], use_scm_version={ "root" : ".", "relative_to" : __file__, "write_to" : path.join("gempy", "_version.py"), "fallback_version": "3.0.0" }, ) ================================================ FILE: test/Test Results - pytest_in_test.xml ================================================ Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_run Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 0.0 $C_o$ 0.0 drift equations [3] Active grids: ['regular'] Active grids: ['regular' 'topography'] Setting kriging parameters to their default values. PASSED [ 0%] surface ... color 2 rock3 ... #ffbe00 1 rock2 ... #9f0052 0 rock1 ... #015482 [3 rows x 4 columns] PASSED [ 1%] PASSED [ 1%]bytearray(b'REX1\x01\x00\x00\x00\x00\x00\x0c\x00V\x00H\x95\x04\x00\x00\x00\x00\x00000000000000000000000000000000000000000000$\x0f\x00\x00\x04\x00EPSG\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x00D\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x03\x00\x01\x00\xd8\x17\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x01\x00\x00\x80\x00\x00\x00(\n\x00\x00(\n\x00\x00(\n\x00\x00(\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00rock3 \x00\x00 A\x00@/D\xc30bC\x00\x00 A\x00@/D\x00\x00zC\x00\x00\xf0A\x00@/D\xc30bC\x00\x00\xf0A\x00@/D\x00\x00zC\x00\x00 A\x00@/D\x9e\xe7\x88C\x00\x00\xf0A\x00@/D\x9e\xe7\x88C\x00\x00 A\x00@/D=\xcf\x94C\x00\x00\xf0A\x00@/D=\xcf\x94C\x00\x00 A\x00@/D\xdb\xb6\xa0C\x00\x00\xf0A\x00@/D\xdb\xb6\xa0C\x00\x00 A\x00@/Dz\x9e\xacC\x00\x00\xf0A\x00@/Dz\x9e\xacC\x00\x00 A\x00@/D\x18\x86\xb8C\x00\x00\xf0A\x00@/D\x18\x86\xb8C\x00\x00 A\x00@/D\xb7m\xc4C\x00\x00\xf0A\x00@/D\xb7m\xc4C\x00\x00 A\x00@/DUU\xd0C\x00\x00\xf0A\x00@/DUU\xd0C\x00\x00 A\x00@/D\xf4<\xdcC\x00\x00\xf0A\x00@/D\xf4<\xdcC\x00\x00 A\x00@/D\x92$\xe8C\x00\x00\xf0A\x00@/D\x92$\xe8C\x00\x00 A\x00@/D1\x0c\xf4C\x00\x00\xf0A\x00@/D1\x0c\xf4C\x00\x00\xf0A\x00@/D\x86aJC\x00\x00HB\x00@/D\x86aJC\x00\x00HB\x00@/D\xc30bC\x00\x00HB\x00@/D\x00\x00zC\x00\x00HB\x00@/D\x9e\xe7\x88C\x00\x00HB\x00@/D=\xcf\x94C\x00\x00HB\x00@/D\xdb\xb6\xa0C\x00\x00HB\x00@/Dz\x9e\xacC\x00\x00HB\x00@/D\x18\x86\xb8C\x00\x00HB\x00@/D\xb7m\xc4C\x00\x00HB\x00@/DUU\xd0C\x00\x00HB\x00@/D\xf4<\xdcC\x00\x00HB\x00@/D\x92$\xe8C\x00\x00HB\x00@/D1\x0c\xf4C\x00\x00\x8cB\x00@/D\x86aJC\x00\x00\x8cB\x00@/D\xc30bC\x00\x00\x8cB\x00@/D\x00\x00zC\x00\x00\x8cB\x00@/D\x9e\xe7\x88C\x00\x00\x8cB\x00@/D=\xcf\x94C\x00\x00\x8cB\x00@/D\xdb\xb6\xa0C\x00\x00\x8cB\x00@/Dz\x9e\xacC\x00\x00\x8cB\x00@/D\x18\x86\xb8C\x00\x00\x8cB\x00@/D\xb7m\xc4C\x00\x00\x8cB\x00@/DUU\xd0C\x00\x00\x8cB\x00@/D\xf4<\xdcC\x00\x00\x8cB\x00@/D\x92$\xe8C\x00\x00\x8cB\x00@/D1\x0c\xf4C\x00\x00\xb4B\x00@/D\x86aJC\x00\x00\xb4B\x00@/D\xc30bC\x00\x00\xb4B\x00@/D\x00\x00zC\x00\x00\xb4B\x00@/D\x9e\xe7\x88C\x00\x00\xb4B\x00@/D=\xcf\x94C\x00\x00\xb4B\x00@/D\xdb\xb6\xa0C\x00\x00\xb4B\x00@/Dz\x9e\xacC\x00\x00\xb4B\x00@/D\x18\x86\xb8C\x00\x00\xb4B\x00@/D\xb7m\xc4C\x00\x00\xb4B\x00@/DUU\xd0C\x00\x00\xb4B\x00@/D\xf4<\xdcC\x00\x00\xb4B\x00@/D\x92$\xe8C\x00\x00\xb4B\x00@/D1\x0c\xf4C\x00\x00\xdcB\x00@/D\x00\x00zC\x00\x00\xdcB\x00@/D\x9e\xe7\x88C\x00\x00\xdcB\x00@/D=\xcf\x94C\x00\x00\xdcB\x00@/D\xdb\xb6\xa0C\x00\x00\xdcB\x00@/Dz\x9e\xacC\x00\x00\xdcB\x00@/D\x18\x86\xb8C\x00\x00\xdcB\x00@/D\xb7m\xc4C\x00\x00\xdcB\x00@/DUU\xd0C\x00\x00\xdcB\x00@/D\xf4<\xdcC\x00\x00\xdcB\x00@/D\x92$\xe8C\x00\x00\xdcB\x00@/D1\x0c\xf4C\x00\x00\xb4B\x00@/D\xcf\xf3\xffC\x00\x00\xdcB\x00@/D\xcf\xf3\xffC\x00\x00\xb4B\x00@/D\xb7\xed\x05D\x00\x00\xdcB\x00@/D\xb7\xed\x05D\x00\x00\x02C\x00@/D\xdb\xb6\xa0C\x00\x00\x02C\x00@/Dz\x9e\xacC\x00\x00\x02C\x00@/D\x18\x86\xb8C\x00\x00\x02C\x00@/D\xb7m\xc4C\x00\x00\x02C\x00@/DUU\xd0C\x00\x00\x02C\x00@/D\xf4<\xdcC\x00\x00\x02C\x00@/D\x92$\xe8C\x00\x00\x02C\x00@/D1\x0c\xf4C\x00\x00\x02C\x00@/D\xcf\xf3\xffC\x00\x00\x16C\x00@/Dz\x9e\xacC\x00\x00\x16C\x00@/D\x18\x86\xb8C\x00\x00\x16C\x00@/D\xb7m\xc4C\x00\x00\x16C\x00@/DUU\xd0C\x00\x00\x16C\x00@/D\xf4<\xdcC\x00\x00\x16C\x00@/D\x92$\xe8C\x00\x00\x16C\x00@/D1\x0c\xf4C\x00\x00\x91C\x00@/D\xcf\xf3\xffC\x00\x00\x91C\x00@/D\xb7\xed\x05D\x00\x00\x9bC\x00@/D\xcf\xf3\xffC\x00\x00\x9bC\x00@/D\xb7\xed\x05D\x00\x00\x91C\x00@/D\x86\xe1\x0bD\x00\x00\x91C\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D\x86\xe1\x0bD\x00\x00\x9bC\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D1\x0c\xf4C\x00\x00\xa5C\x00@/D1\x0c\xf4C\x00\x00\xa5C\x00@/D\xcf\xf3\xffC\x00\x00\xa5C\x00@/D\xb7\xed\x05D\x00\x00\xa5C\x00@/D\x86\xe1\x0bD\x00\x00\xa5C\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D%\xc9\x17D\x00\x00\xa5C\x00@/D%\xc9\x17D\x00\x00\xafC\x00@/D\xcf\xf3\xffC\x00\x00\xafC\x00@/D\xb7\xed\x05D\x00\x00\xafC\x00@/D\x86\xe1\x0bD\x00\x00\xafC\x00@/DU\xd5\x11D\x00\x00\xb9C\x00@/D\xb7\xed\x05D\x00\x00\xb9C\x00@/D\x86\xe1\x0bD\x00\x00\xb9C\x00@/DU\xd5\x11D\x00\x80@D\x00@/DI\x922C\x00\x80@D\x00@/D\x86aJC\x00\x80ED\x00@/DI\x922C\x00\x80ED\x00@/D\x86aJC\x00\x80@D\x00@/D\xc30bC\x00\x80ED\x00@/D\xc30bC\x00\x80ED\x00@/D\x0c\xc3\x1aC\x00\x80JD\x00@/D\x0c\xc3\x1aC\x00\x80JD\x00@/DI\x922C\x00\x80JD\x00@/D\x86aJC\x00\x80JD\x00@/D\xc30bC\x00\x80ED\x00@/D\x00\x00zC\x00\x80JD\x00@/D\x00\x00zC\x00\x80OD\x00@/D\x0c\xc3\x1aC\x00\x80OD\x00@/DI\x922C\x00\x80OD\x00@/D\x86aJC\x00\x80OD\x00@/D\xc30bC\x00\x80OD\x00@/D\x00\x00zC\x00\x80JD\x00@/D\x9e\xe7\x88C\x00\x80OD\x00@/D\x9e\xe7\x88C\x00\x80TD\x00@/D\x0c\xc3\x1aC\x00\x80TD\x00@/DI\x922C\x00\x80TD\x00@/D\x86aJC\x00\x80TD\x00@/D\xc30bC\x00\x80TD\x00@/D\x00\x00zC\x00\x80TD\x00@/D\x9e\xe7\x88C\x00\x80OD\x00@/D=\xcf\x94C\x00\x80TD\x00@/D=\xcf\x94C\x00\x80YD\x00@/D\x0c\xc3\x1aC\x00\x80YD\x00@/DI\x922C\x00\x80YD\x00@/D\x86aJC\x00\x80YD\x00@/D\xc30bC\x00\x80YD\x00@/D\x00\x00zC\x00\x80YD\x00@/D\x9e\xe7\x88C\x00\x80YD\x00@/D=\xcf\x94C\x00\x80TD\x00@/D\xdb\xb6\xa0C\x00\x80YD\x00@/D\xdb\xb6\xa0C\x00\x80^D\x00@/D\x9e\xe7\x88C\x00\x80^D\x00@/D=\xcf\x94C\x00\x80^D\x00@/D\xdb\xb6\xa0C\x00\x80cD\x00@/D\x9e\xe7\x88C\x00\x80cD\x00@/D=\xcf\x94C\x00\x80cD\x00@/D\xdb\xb6\xa0C\x00\x80^D\x00@/Dz\x9e\xacC\x00\x80cD\x00@/Dz\x9e\xacC\x00\x80^D\x00@/D\x18\x86\xb8C\x00\x80cD\x00@/D\x18\x86\xb8C\x00\x80^D\x00@/D\xb7m\xc4C\x00\x80cD\x00@/D\xb7m\xc4C\x00\x80hD\x00@/D\x9e\xe7\x88C\x00\x80hD\x00@/D=\xcf\x94C\x00\x80hD\x00@/D\xdb\xb6\xa0C\x00\x80hD\x00@/Dz\x9e\xacC\x00\x80hD\x00@/D\x18\x86\xb8C\x00\x80hD\x00@/D\xb7m\xc4C\x00\x80cD\x00@/DUU\xd0C\x00\x80hD\x00@/DUU\xd0C\x00\x80mD\x00@/D\x9e\xe7\x88C\x00\x80mD\x00@/D=\xcf\x94C\x00\x80mD\x00@/D\xdb\xb6\xa0C\x00\x80mD\x00@/Dz\x9e\xacC\x00\x80mD\x00@/D\x18\x86\xb8C\x00\x80mD\x00@/D\xb7m\xc4C\x00\x80mD\x00@/DUU\xd0C\x00\x80mD\x00@/D\x00\x00zC\x00\x80rD\x00@/D\x00\x00zC\x00\x80rD\x00@/D\x9e\xe7\x88C\x00\x80rD\x00@/D=\xcf\x94C\x00\x80rD\x00@/D\xdb\xb6\xa0C\x00\x80rD\x00@/Dz\x9e\xacC\x00\x80rD\x00@/D\x18\x86\xb8C\x00\x80rD\x00@/D\xb7m\xc4C\x00\x80rD\x00@/DUU\xd0C\x00\x80mD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\xc30bC\x00\x80wD\x00@/D\xc30bC\x00\x80wD\x00@/D\x00\x00zC\x00\x80wD\x00@/D\x9e\xe7\x88C\x00\x80wD\x00@/D=\xcf\x94C\x00\x80wD\x00@/D\xdb\xb6\xa0C\x00\x80wD\x00@/Dz\x9e\xacC\x00\x80wD\x00@/D\x18\x86\xb8C\x00\x80wD\x00@/D\xb7m\xc4C\x00\x80wD\x00@/DUU\xd0C\x00\x80wD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\x92$\xe8C\x00\x80wD\x00@/D\x92$\xe8C\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\n\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\n\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\r\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\r\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x10\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\x19\x00\x00\x00\x02\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\x02\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x1b\x00\x00\x00\x03\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x1c\x00\x00\x00\x05\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x1d\x00\x00\x00\x07\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00\t\x00\x00\x00\x07\x00\x00\x00\x1e\x00\x00\x00\t\x00\x00\x00\x1d\x00\x00\x00\x1e\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\x1f\x00\x00\x00\x0b\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\r\x00\x00\x00\x0b\x00\x00\x00 \x00\x00\x00\r\x00\x00\x00\x1f\x00\x00\x00 \x00\x00\x00\x0f\x00\x00\x00\r\x00\x00\x00!\x00\x00\x00\x0f\x00\x00\x00 \x00\x00\x00!\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00"\x00\x00\x00\x11\x00\x00\x00!\x00\x00\x00"\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00#\x00\x00\x00\x13\x00\x00\x00"\x00\x00\x00#\x00\x00\x00\x15\x00\x00\x00\x13\x00\x00\x00$\x00\x00\x00\x15\x00\x00\x00#\x00\x00\x00$\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00%\x00\x00\x00\x17\x00\x00\x00$\x00\x00\x00&\x00\x00\x00\x1a\x00\x00\x00\x19\x00\x00\x00\'\x00\x00\x00\x1a\x00\x00\x00&\x00\x00\x00\'\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00(\x00\x00\x00\x1b\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00)\x00\x00\x00\x1c\x00\x00\x00(\x00\x00\x00)\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00*\x00\x00\x00\x1d\x00\x00\x00)\x00\x00\x00*\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00+\x00\x00\x00\x1e\x00\x00\x00*\x00\x00\x00+\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00,\x00\x00\x00\x1f\x00\x00\x00+\x00\x00\x00,\x00\x00\x00 \x00\x00\x00\x1f\x00\x00\x00-\x00\x00\x00 \x00\x00\x00,\x00\x00\x00-\x00\x00\x00!\x00\x00\x00 \x00\x00\x00.\x00\x00\x00!\x00\x00\x00-\x00\x00\x00.\x00\x00\x00"\x00\x00\x00!\x00\x00\x00/\x00\x00\x00"\x00\x00\x00.\x00\x00\x00/\x00\x00\x00#\x00\x00\x00"\x00\x00\x000\x00\x00\x00#\x00\x00\x00/\x00\x00\x000\x00\x00\x00$\x00\x00\x00#\x00\x00\x001\x00\x00\x00$\x00\x00\x000\x00\x00\x001\x00\x00\x00%\x00\x00\x00$\x00\x00\x002\x00\x00\x00%\x00\x00\x001\x00\x00\x003\x00\x00\x00\'\x00\x00\x00&\x00\x00\x004\x00\x00\x00\'\x00\x00\x003\x00\x00\x004\x00\x00\x00(\x00\x00\x00\'\x00\x00\x005\x00\x00\x00(\x00\x00\x004\x00\x00\x005\x00\x00\x00)\x00\x00\x00(\x00\x00\x006\x00\x00\x00)\x00\x00\x005\x00\x00\x006\x00\x00\x00*\x00\x00\x00)\x00\x00\x007\x00\x00\x00*\x00\x00\x006\x00\x00\x007\x00\x00\x00+\x00\x00\x00*\x00\x00\x008\x00\x00\x00+\x00\x00\x007\x00\x00\x008\x00\x00\x00,\x00\x00\x00+\x00\x00\x009\x00\x00\x00,\x00\x00\x008\x00\x00\x009\x00\x00\x00-\x00\x00\x00,\x00\x00\x00:\x00\x00\x00-\x00\x00\x009\x00\x00\x00:\x00\x00\x00.\x00\x00\x00-\x00\x00\x00;\x00\x00\x00.\x00\x00\x00:\x00\x00\x00;\x00\x00\x00/\x00\x00\x00.\x00\x00\x00<\x00\x00\x00/\x00\x00\x00;\x00\x00\x00<\x00\x00\x000\x00\x00\x00/\x00\x00\x00=\x00\x00\x000\x00\x00\x00<\x00\x00\x00=\x00\x00\x001\x00\x00\x000\x00\x00\x00>\x00\x00\x001\x00\x00\x00=\x00\x00\x00>\x00\x00\x002\x00\x00\x001\x00\x00\x00?\x00\x00\x002\x00\x00\x00>\x00\x00\x00@\x00\x00\x006\x00\x00\x005\x00\x00\x00A\x00\x00\x006\x00\x00\x00@\x00\x00\x00A\x00\x00\x007\x00\x00\x006\x00\x00\x00B\x00\x00\x007\x00\x00\x00A\x00\x00\x00B\x00\x00\x008\x00\x00\x007\x00\x00\x00C\x00\x00\x008\x00\x00\x00B\x00\x00\x00C\x00\x00\x009\x00\x00\x008\x00\x00\x00D\x00\x00\x009\x00\x00\x00C\x00\x00\x00D\x00\x00\x00:\x00\x00\x009\x00\x00\x00E\x00\x00\x00:\x00\x00\x00D\x00\x00\x00E\x00\x00\x00;\x00\x00\x00:\x00\x00\x00F\x00\x00\x00;\x00\x00\x00E\x00\x00\x00F\x00\x00\x00<\x00\x00\x00;\x00\x00\x00G\x00\x00\x00<\x00\x00\x00F\x00\x00\x00G\x00\x00\x00=\x00\x00\x00<\x00\x00\x00H\x00\x00\x00=\x00\x00\x00G\x00\x00\x00H\x00\x00\x00>\x00\x00\x00=\x00\x00\x00I\x00\x00\x00>\x00\x00\x00H\x00\x00\x00I\x00\x00\x00?\x00\x00\x00>\x00\x00\x00J\x00\x00\x00?\x00\x00\x00I\x00\x00\x00J\x00\x00\x00K\x00\x00\x00?\x00\x00\x00L\x00\x00\x00K\x00\x00\x00J\x00\x00\x00L\x00\x00\x00M\x00\x00\x00K\x00\x00\x00N\x00\x00\x00M\x00\x00\x00L\x00\x00\x00O\x00\x00\x00D\x00\x00\x00C\x00\x00\x00P\x00\x00\x00D\x00\x00\x00O\x00\x00\x00P\x00\x00\x00E\x00\x00\x00D\x00\x00\x00Q\x00\x00\x00E\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00F\x00\x00\x00E\x00\x00\x00R\x00\x00\x00F\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00G\x00\x00\x00F\x00\x00\x00S\x00\x00\x00G\x00\x00\x00R\x00\x00\x00S\x00\x00\x00H\x00\x00\x00G\x00\x00\x00T\x00\x00\x00H\x00\x00\x00S\x00\x00\x00T\x00\x00\x00I\x00\x00\x00H\x00\x00\x00U\x00\x00\x00I\x00\x00\x00T\x00\x00\x00U\x00\x00\x00J\x00\x00\x00I\x00\x00\x00V\x00\x00\x00J\x00\x00\x00U\x00\x00\x00V\x00\x00\x00L\x00\x00\x00J\x00\x00\x00W\x00\x00\x00L\x00\x00\x00V\x00\x00\x00X\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00Y\x00\x00\x00Q\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00R\x00\x00\x00Q\x00\x00\x00Z\x00\x00\x00R\x00\x00\x00Y\x00\x00\x00Z\x00\x00\x00S\x00\x00\x00R\x00\x00\x00[\x00\x00\x00S\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00T\x00\x00\x00S\x00\x00\x00\\\x00\x00\x00T\x00\x00\x00[\x00\x00\x00\\\x00\x00\x00U\x00\x00\x00T\x00\x00\x00]\x00\x00\x00U\x00\x00\x00\\\x00\x00\x00]\x00\x00\x00V\x00\x00\x00U\x00\x00\x00^\x00\x00\x00V\x00\x00\x00]\x00\x00\x00a\x00\x00\x00`\x00\x00\x00_\x00\x00\x00b\x00\x00\x00`\x00\x00\x00a\x00\x00\x00e\x00\x00\x00d\x00\x00\x00c\x00\x00\x00f\x00\x00\x00d\x00\x00\x00e\x00\x00\x00h\x00\x00\x00a\x00\x00\x00g\x00\x00\x00i\x00\x00\x00a\x00\x00\x00h\x00\x00\x00i\x00\x00\x00b\x00\x00\x00a\x00\x00\x00j\x00\x00\x00b\x00\x00\x00i\x00\x00\x00j\x00\x00\x00e\x00\x00\x00b\x00\x00\x00k\x00\x00\x00e\x00\x00\x00j\x00\x00\x00k\x00\x00\x00f\x00\x00\x00e\x00\x00\x00l\x00\x00\x00f\x00\x00\x00k\x00\x00\x00l\x00\x00\x00m\x00\x00\x00f\x00\x00\x00n\x00\x00\x00m\x00\x00\x00l\x00\x00\x00o\x00\x00\x00j\x00\x00\x00i\x00\x00\x00p\x00\x00\x00j\x00\x00\x00o\x00\x00\x00p\x00\x00\x00k\x00\x00\x00j\x00\x00\x00q\x00\x00\x00k\x00\x00\x00p\x00\x00\x00q\x00\x00\x00l\x00\x00\x00k\x00\x00\x00r\x00\x00\x00l\x00\x00\x00q\x00\x00\x00s\x00\x00\x00q\x00\x00\x00p\x00\x00\x00t\x00\x00\x00q\x00\x00\x00s\x00\x00\x00t\x00\x00\x00r\x00\x00\x00q\x00\x00\x00u\x00\x00\x00r\x00\x00\x00t\x00\x00\x00x\x00\x00\x00w\x00\x00\x00v\x00\x00\x00y\x00\x00\x00w\x00\x00\x00x\x00\x00\x00y\x00\x00\x00z\x00\x00\x00w\x00\x00\x00{\x00\x00\x00z\x00\x00\x00y\x00\x00\x00}\x00\x00\x00x\x00\x00\x00|\x00\x00\x00~\x00\x00\x00x\x00\x00\x00}\x00\x00\x00~\x00\x00\x00y\x00\x00\x00x\x00\x00\x00\x7f\x00\x00\x00y\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00{\x00\x00\x00y\x00\x00\x00\x80\x00\x00\x00{\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00{\x00\x00\x00\x82\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\x83\x00\x00\x00~\x00\x00\x00}\x00\x00\x00\x84\x00\x00\x00~\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00\x85\x00\x00\x00\x7f\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x80\x00\x00\x00\x7f\x00\x00\x00\x86\x00\x00\x00\x80\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\x82\x00\x00\x00\x80\x00\x00\x00\x87\x00\x00\x00\x82\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x88\x00\x00\x00\x82\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\x87\x00\x00\x00\x8a\x00\x00\x00\x84\x00\x00\x00\x83\x00\x00\x00\x8b\x00\x00\x00\x84\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x8c\x00\x00\x00\x85\x00\x00\x00\x8b\x00\x00\x00\x8c\x00\x00\x00\x86\x00\x00\x00\x85\x00\x00\x00\x8d\x00\x00\x00\x86\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x8e\x00\x00\x00\x87\x00\x00\x00\x8d\x00\x00\x00\x8e\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\x8f\x00\x00\x00\x89\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x90\x00\x00\x00\x89\x00\x00\x00\x91\x00\x00\x00\x90\x00\x00\x00\x8f\x00\x00\x00\x92\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x93\x00\x00\x00\x8b\x00\x00\x00\x92\x00\x00\x00\x93\x00\x00\x00\x8c\x00\x00\x00\x8b\x00\x00\x00\x94\x00\x00\x00\x8c\x00\x00\x00\x93\x00\x00\x00\x94\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x95\x00\x00\x00\x8d\x00\x00\x00\x94\x00\x00\x00\x95\x00\x00\x00\x8e\x00\x00\x00\x8d\x00\x00\x00\x96\x00\x00\x00\x8e\x00\x00\x00\x95\x00\x00\x00\x96\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x97\x00\x00\x00\x8f\x00\x00\x00\x96\x00\x00\x00\x97\x00\x00\x00\x91\x00\x00\x00\x8f\x00\x00\x00\x98\x00\x00\x00\x91\x00\x00\x00\x97\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00\x91\x00\x00\x00\x9a\x00\x00\x00\x99\x00\x00\x00\x98\x00\x00\x00\x9b\x00\x00\x00\x98\x00\x00\x00\x97\x00\x00\x00\x9c\x00\x00\x00\x98\x00\x00\x00\x9b\x00\x00\x00\x9c\x00\x00\x00\x9a\x00\x00\x00\x98\x00\x00\x00\x9d\x00\x00\x00\x9a\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00\x9c\x00\x00\x00\x9b\x00\x00\x00\x9f\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\xa0\x00\x00\x00\x9d\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\x9d\x00\x00\x00\xa2\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa1\x00\x00\x00\xa4\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa3\x00\x00\x00\xa6\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00\xa7\x00\x00\x00\x9f\x00\x00\x00\x9e\x00\x00\x00\xa8\x00\x00\x00\x9f\x00\x00\x00\xa7\x00\x00\x00\xa8\x00\x00\x00\xa0\x00\x00\x00\x9f\x00\x00\x00\xa9\x00\x00\x00\xa0\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xa2\x00\x00\x00\xa0\x00\x00\x00\xaa\x00\x00\x00\xa2\x00\x00\x00\xa9\x00\x00\x00\xaa\x00\x00\x00\xa4\x00\x00\x00\xa2\x00\x00\x00\xab\x00\x00\x00\xa4\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xa6\x00\x00\x00\xa4\x00\x00\x00\xac\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xa6\x00\x00\x00\xae\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\xaf\x00\x00\x00\xa8\x00\x00\x00\xa7\x00\x00\x00\xb0\x00\x00\x00\xa8\x00\x00\x00\xaf\x00\x00\x00\xb0\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xb1\x00\x00\x00\xa9\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xaa\x00\x00\x00\xa9\x00\x00\x00\xb2\x00\x00\x00\xaa\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xb3\x00\x00\x00\xab\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xac\x00\x00\x00\xab\x00\x00\x00\xb4\x00\x00\x00\xac\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xae\x00\x00\x00\xac\x00\x00\x00\xb5\x00\x00\x00\xae\x00\x00\x00\xb4\x00\x00\x00\xb7\x00\x00\x00\xaf\x00\x00\x00\xb6\x00\x00\x00\xb8\x00\x00\x00\xaf\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xb0\x00\x00\x00\xaf\x00\x00\x00\xb9\x00\x00\x00\xb0\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\xba\x00\x00\x00\xb1\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\xbb\x00\x00\x00\xb2\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\xb3\x00\x00\x00\xb2\x00\x00\x00\xbc\x00\x00\x00\xb3\x00\x00\x00\xbb\x00\x00\x00\xbc\x00\x00\x00\xb4\x00\x00\x00\xb3\x00\x00\x00\xbd\x00\x00\x00\xb4\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\xbe\x00\x00\x00\xb5\x00\x00\x00\xbd\x00\x00\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\xb5\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xbe\x00\x00\x00\xc2\x00\x00\x00\xb7\x00\x00\x00\xc1\x00\x00\x00\xc3\x00\x00\x00\xb7\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\xc4\x00\x00\x00\xb8\x00\x00\x00\xc3\x00\x00\x00\xc4\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\xc5\x00\x00\x00\xb9\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\x00\x00\xba\x00\x00\x00\xb9\x00\x00\x00\xc6\x00\x00\x00\xba\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\xbb\x00\x00\x00\xba\x00\x00\x00\xc7\x00\x00\x00\xbb\x00\x00\x00\xc6\x00\x00\x00\xc7\x00\x00\x00\xbc\x00\x00\x00\xbb\x00\x00\x00\xc8\x00\x00\x00\xbc\x00\x00\x00\xc7\x00\x00\x00\xc8\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xc9\x00\x00\x00\xbd\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xbe\x00\x00\x00\xbd\x00\x00\x00\xca\x00\x00\x00\xbe\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\xc0\x00\x00\x00\xbe\x00\x00\x00\xcb\x00\x00\x00\xc0\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\xc0\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xcb\x00\x00\x00\x03\x00\x01\x00\xd8\x17\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$\x01\x00\x00\x80\x00\x00\x00(\n\x00\x00(\n\x00\x00(\n\x00\x00(\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00rock3 \x00\x00 A\x00@/D\xc30bC\x00\x00 A\x00@/D\x00\x00zC\x00\x00\xf0A\x00@/D\xc30bC\x00\x00\xf0A\x00@/D\x00\x00zC\x00\x00 A\x00@/D\x9e\xe7\x88C\x00\x00\xf0A\x00@/D\x9e\xe7\x88C\x00\x00 A\x00@/D=\xcf\x94C\x00\x00\xf0A\x00@/D=\xcf\x94C\x00\x00 A\x00@/D\xdb\xb6\xa0C\x00\x00\xf0A\x00@/D\xdb\xb6\xa0C\x00\x00 A\x00@/Dz\x9e\xacC\x00\x00\xf0A\x00@/Dz\x9e\xacC\x00\x00 A\x00@/D\x18\x86\xb8C\x00\x00\xf0A\x00@/D\x18\x86\xb8C\x00\x00 A\x00@/D\xb7m\xc4C\x00\x00\xf0A\x00@/D\xb7m\xc4C\x00\x00 A\x00@/DUU\xd0C\x00\x00\xf0A\x00@/DUU\xd0C\x00\x00 A\x00@/D\xf4<\xdcC\x00\x00\xf0A\x00@/D\xf4<\xdcC\x00\x00 A\x00@/D\x92$\xe8C\x00\x00\xf0A\x00@/D\x92$\xe8C\x00\x00 A\x00@/D1\x0c\xf4C\x00\x00\xf0A\x00@/D1\x0c\xf4C\x00\x00\xf0A\x00@/D\x86aJC\x00\x00HB\x00@/D\x86aJC\x00\x00HB\x00@/D\xc30bC\x00\x00HB\x00@/D\x00\x00zC\x00\x00HB\x00@/D\x9e\xe7\x88C\x00\x00HB\x00@/D=\xcf\x94C\x00\x00HB\x00@/D\xdb\xb6\xa0C\x00\x00HB\x00@/Dz\x9e\xacC\x00\x00HB\x00@/D\x18\x86\xb8C\x00\x00HB\x00@/D\xb7m\xc4C\x00\x00HB\x00@/DUU\xd0C\x00\x00HB\x00@/D\xf4<\xdcC\x00\x00HB\x00@/D\x92$\xe8C\x00\x00HB\x00@/D1\x0c\xf4C\x00\x00\x8cB\x00@/D\x86aJC\x00\x00\x8cB\x00@/D\xc30bC\x00\x00\x8cB\x00@/D\x00\x00zC\x00\x00\x8cB\x00@/D\x9e\xe7\x88C\x00\x00\x8cB\x00@/D=\xcf\x94C\x00\x00\x8cB\x00@/D\xdb\xb6\xa0C\x00\x00\x8cB\x00@/Dz\x9e\xacC\x00\x00\x8cB\x00@/D\x18\x86\xb8C\x00\x00\x8cB\x00@/D\xb7m\xc4C\x00\x00\x8cB\x00@/DUU\xd0C\x00\x00\x8cB\x00@/D\xf4<\xdcC\x00\x00\x8cB\x00@/D\x92$\xe8C\x00\x00\x8cB\x00@/D1\x0c\xf4C\x00\x00\xb4B\x00@/D\x86aJC\x00\x00\xb4B\x00@/D\xc30bC\x00\x00\xb4B\x00@/D\x00\x00zC\x00\x00\xb4B\x00@/D\x9e\xe7\x88C\x00\x00\xb4B\x00@/D=\xcf\x94C\x00\x00\xb4B\x00@/D\xdb\xb6\xa0C\x00\x00\xb4B\x00@/Dz\x9e\xacC\x00\x00\xb4B\x00@/D\x18\x86\xb8C\x00\x00\xb4B\x00@/D\xb7m\xc4C\x00\x00\xb4B\x00@/DUU\xd0C\x00\x00\xb4B\x00@/D\xf4<\xdcC\x00\x00\xb4B\x00@/D\x92$\xe8C\x00\x00\xb4B\x00@/D1\x0c\xf4C\x00\x00\xdcB\x00@/D\x00\x00zC\x00\x00\xdcB\x00@/D\x9e\xe7\x88C\x00\x00\xdcB\x00@/D=\xcf\x94C\x00\x00\xdcB\x00@/D\xdb\xb6\xa0C\x00\x00\xdcB\x00@/Dz\x9e\xacC\x00\x00\xdcB\x00@/D\x18\x86\xb8C\x00\x00\xdcB\x00@/D\xb7m\xc4C\x00\x00\xdcB\x00@/DUU\xd0C\x00\x00\xdcB\x00@/D\xf4<\xdcC\x00\x00\xdcB\x00@/D\x92$\xe8C\x00\x00\xdcB\x00@/D1\x0c\xf4C\x00\x00\xb4B\x00@/D\xcf\xf3\xffC\x00\x00\xdcB\x00@/D\xcf\xf3\xffC\x00\x00\xb4B\x00@/D\xb7\xed\x05D\x00\x00\xdcB\x00@/D\xb7\xed\x05D\x00\x00\x02C\x00@/D\xdb\xb6\xa0C\x00\x00\x02C\x00@/Dz\x9e\xacC\x00\x00\x02C\x00@/D\x18\x86\xb8C\x00\x00\x02C\x00@/D\xb7m\xc4C\x00\x00\x02C\x00@/DUU\xd0C\x00\x00\x02C\x00@/D\xf4<\xdcC\x00\x00\x02C\x00@/D\x92$\xe8C\x00\x00\x02C\x00@/D1\x0c\xf4C\x00\x00\x02C\x00@/D\xcf\xf3\xffC\x00\x00\x16C\x00@/Dz\x9e\xacC\x00\x00\x16C\x00@/D\x18\x86\xb8C\x00\x00\x16C\x00@/D\xb7m\xc4C\x00\x00\x16C\x00@/DUU\xd0C\x00\x00\x16C\x00@/D\xf4<\xdcC\x00\x00\x16C\x00@/D\x92$\xe8C\x00\x00\x16C\x00@/D1\x0c\xf4C\x00\x00\x91C\x00@/D\xcf\xf3\xffC\x00\x00\x91C\x00@/D\xb7\xed\x05D\x00\x00\x9bC\x00@/D\xcf\xf3\xffC\x00\x00\x9bC\x00@/D\xb7\xed\x05D\x00\x00\x91C\x00@/D\x86\xe1\x0bD\x00\x00\x91C\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D\x86\xe1\x0bD\x00\x00\x9bC\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D1\x0c\xf4C\x00\x00\xa5C\x00@/D1\x0c\xf4C\x00\x00\xa5C\x00@/D\xcf\xf3\xffC\x00\x00\xa5C\x00@/D\xb7\xed\x05D\x00\x00\xa5C\x00@/D\x86\xe1\x0bD\x00\x00\xa5C\x00@/DU\xd5\x11D\x00\x00\x9bC\x00@/D%\xc9\x17D\x00\x00\xa5C\x00@/D%\xc9\x17D\x00\x00\xafC\x00@/D\xcf\xf3\xffC\x00\x00\xafC\x00@/D\xb7\xed\x05D\x00\x00\xafC\x00@/D\x86\xe1\x0bD\x00\x00\xafC\x00@/DU\xd5\x11D\x00\x00\xb9C\x00@/D\xb7\xed\x05D\x00\x00\xb9C\x00@/D\x86\xe1\x0bD\x00\x00\xb9C\x00@/DU\xd5\x11D\x00\x80@D\x00@/DI\x922C\x00\x80@D\x00@/D\x86aJC\x00\x80ED\x00@/DI\x922C\x00\x80ED\x00@/D\x86aJC\x00\x80@D\x00@/D\xc30bC\x00\x80ED\x00@/D\xc30bC\x00\x80ED\x00@/D\x0c\xc3\x1aC\x00\x80JD\x00@/D\x0c\xc3\x1aC\x00\x80JD\x00@/DI\x922C\x00\x80JD\x00@/D\x86aJC\x00\x80JD\x00@/D\xc30bC\x00\x80ED\x00@/D\x00\x00zC\x00\x80JD\x00@/D\x00\x00zC\x00\x80OD\x00@/D\x0c\xc3\x1aC\x00\x80OD\x00@/DI\x922C\x00\x80OD\x00@/D\x86aJC\x00\x80OD\x00@/D\xc30bC\x00\x80OD\x00@/D\x00\x00zC\x00\x80JD\x00@/D\x9e\xe7\x88C\x00\x80OD\x00@/D\x9e\xe7\x88C\x00\x80TD\x00@/D\x0c\xc3\x1aC\x00\x80TD\x00@/DI\x922C\x00\x80TD\x00@/D\x86aJC\x00\x80TD\x00@/D\xc30bC\x00\x80TD\x00@/D\x00\x00zC\x00\x80TD\x00@/D\x9e\xe7\x88C\x00\x80OD\x00@/D=\xcf\x94C\x00\x80TD\x00@/D=\xcf\x94C\x00\x80YD\x00@/D\x0c\xc3\x1aC\x00\x80YD\x00@/DI\x922C\x00\x80YD\x00@/D\x86aJC\x00\x80YD\x00@/D\xc30bC\x00\x80YD\x00@/D\x00\x00zC\x00\x80YD\x00@/D\x9e\xe7\x88C\x00\x80YD\x00@/D=\xcf\x94C\x00\x80TD\x00@/D\xdb\xb6\xa0C\x00\x80YD\x00@/D\xdb\xb6\xa0C\x00\x80^D\x00@/D\x9e\xe7\x88C\x00\x80^D\x00@/D=\xcf\x94C\x00\x80^D\x00@/D\xdb\xb6\xa0C\x00\x80cD\x00@/D\x9e\xe7\x88C\x00\x80cD\x00@/D=\xcf\x94C\x00\x80cD\x00@/D\xdb\xb6\xa0C\x00\x80^D\x00@/Dz\x9e\xacC\x00\x80cD\x00@/Dz\x9e\xacC\x00\x80^D\x00@/D\x18\x86\xb8C\x00\x80cD\x00@/D\x18\x86\xb8C\x00\x80^D\x00@/D\xb7m\xc4C\x00\x80cD\x00@/D\xb7m\xc4C\x00\x80hD\x00@/D\x9e\xe7\x88C\x00\x80hD\x00@/D=\xcf\x94C\x00\x80hD\x00@/D\xdb\xb6\xa0C\x00\x80hD\x00@/Dz\x9e\xacC\x00\x80hD\x00@/D\x18\x86\xb8C\x00\x80hD\x00@/D\xb7m\xc4C\x00\x80cD\x00@/DUU\xd0C\x00\x80hD\x00@/DUU\xd0C\x00\x80mD\x00@/D\x9e\xe7\x88C\x00\x80mD\x00@/D=\xcf\x94C\x00\x80mD\x00@/D\xdb\xb6\xa0C\x00\x80mD\x00@/Dz\x9e\xacC\x00\x80mD\x00@/D\x18\x86\xb8C\x00\x80mD\x00@/D\xb7m\xc4C\x00\x80mD\x00@/DUU\xd0C\x00\x80mD\x00@/D\x00\x00zC\x00\x80rD\x00@/D\x00\x00zC\x00\x80rD\x00@/D\x9e\xe7\x88C\x00\x80rD\x00@/D=\xcf\x94C\x00\x80rD\x00@/D\xdb\xb6\xa0C\x00\x80rD\x00@/Dz\x9e\xacC\x00\x80rD\x00@/D\x18\x86\xb8C\x00\x80rD\x00@/D\xb7m\xc4C\x00\x80rD\x00@/DUU\xd0C\x00\x80mD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\xc30bC\x00\x80wD\x00@/D\xc30bC\x00\x80wD\x00@/D\x00\x00zC\x00\x80wD\x00@/D\x9e\xe7\x88C\x00\x80wD\x00@/D=\xcf\x94C\x00\x80wD\x00@/D\xdb\xb6\xa0C\x00\x80wD\x00@/Dz\x9e\xacC\x00\x80wD\x00@/D\x18\x86\xb8C\x00\x80wD\x00@/D\xb7m\xc4C\x00\x80wD\x00@/DUU\xd0C\x00\x80wD\x00@/D\xf4<\xdcC\x00\x80rD\x00@/D\x92$\xe8C\x00\x80wD\x00@/D\x92$\xe8C\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x00\n\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\r\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x19\x00\x00\x00\x18\x00\x00\x00\x02\x00\x00\x00\x1a\x00\x00\x00\x19\x00\x00\x00\x02\x00\x00\x00\x1a\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x03\x00\x00\x00\x1b\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\x05\x00\x00\x00\x1c\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00\x07\x00\x00\x00\x1d\x00\x00\x00\x07\x00\x00\x00\t\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\t\x00\x00\x00\x1e\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00\x0b\x00\x00\x00\x1f\x00\x00\x00\x0b\x00\x00\x00\r\x00\x00\x00 \x00\x00\x00\x1f\x00\x00\x00\r\x00\x00\x00 \x00\x00\x00\r\x00\x00\x00\x0f\x00\x00\x00!\x00\x00\x00 \x00\x00\x00\x0f\x00\x00\x00!\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00"\x00\x00\x00!\x00\x00\x00\x11\x00\x00\x00"\x00\x00\x00\x11\x00\x00\x00\x13\x00\x00\x00#\x00\x00\x00"\x00\x00\x00\x13\x00\x00\x00#\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00$\x00\x00\x00#\x00\x00\x00\x15\x00\x00\x00$\x00\x00\x00\x15\x00\x00\x00\x17\x00\x00\x00%\x00\x00\x00$\x00\x00\x00\x17\x00\x00\x00&\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00\x1a\x00\x00\x00\'\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00(\x00\x00\x00\'\x00\x00\x00\x1b\x00\x00\x00(\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00)\x00\x00\x00(\x00\x00\x00\x1c\x00\x00\x00)\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00*\x00\x00\x00)\x00\x00\x00\x1d\x00\x00\x00*\x00\x00\x00\x1d\x00\x00\x00\x1e\x00\x00\x00+\x00\x00\x00*\x00\x00\x00\x1e\x00\x00\x00+\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00,\x00\x00\x00+\x00\x00\x00\x1f\x00\x00\x00,\x00\x00\x00\x1f\x00\x00\x00 \x00\x00\x00-\x00\x00\x00,\x00\x00\x00 \x00\x00\x00-\x00\x00\x00 \x00\x00\x00!\x00\x00\x00.\x00\x00\x00-\x00\x00\x00!\x00\x00\x00.\x00\x00\x00!\x00\x00\x00"\x00\x00\x00/\x00\x00\x00.\x00\x00\x00"\x00\x00\x00/\x00\x00\x00"\x00\x00\x00#\x00\x00\x000\x00\x00\x00/\x00\x00\x00#\x00\x00\x000\x00\x00\x00#\x00\x00\x00$\x00\x00\x001\x00\x00\x000\x00\x00\x00$\x00\x00\x001\x00\x00\x00$\x00\x00\x00%\x00\x00\x002\x00\x00\x001\x00\x00\x00%\x00\x00\x003\x00\x00\x00&\x00\x00\x00\'\x00\x00\x004\x00\x00\x003\x00\x00\x00\'\x00\x00\x004\x00\x00\x00\'\x00\x00\x00(\x00\x00\x005\x00\x00\x004\x00\x00\x00(\x00\x00\x005\x00\x00\x00(\x00\x00\x00)\x00\x00\x006\x00\x00\x005\x00\x00\x00)\x00\x00\x006\x00\x00\x00)\x00\x00\x00*\x00\x00\x007\x00\x00\x006\x00\x00\x00*\x00\x00\x007\x00\x00\x00*\x00\x00\x00+\x00\x00\x008\x00\x00\x007\x00\x00\x00+\x00\x00\x008\x00\x00\x00+\x00\x00\x00,\x00\x00\x009\x00\x00\x008\x00\x00\x00,\x00\x00\x009\x00\x00\x00,\x00\x00\x00-\x00\x00\x00:\x00\x00\x009\x00\x00\x00-\x00\x00\x00:\x00\x00\x00-\x00\x00\x00.\x00\x00\x00;\x00\x00\x00:\x00\x00\x00.\x00\x00\x00;\x00\x00\x00.\x00\x00\x00/\x00\x00\x00<\x00\x00\x00;\x00\x00\x00/\x00\x00\x00<\x00\x00\x00/\x00\x00\x000\x00\x00\x00=\x00\x00\x00<\x00\x00\x000\x00\x00\x00=\x00\x00\x000\x00\x00\x001\x00\x00\x00>\x00\x00\x00=\x00\x00\x001\x00\x00\x00>\x00\x00\x001\x00\x00\x002\x00\x00\x00?\x00\x00\x00>\x00\x00\x002\x00\x00\x00@\x00\x00\x005\x00\x00\x006\x00\x00\x00A\x00\x00\x00@\x00\x00\x006\x00\x00\x00A\x00\x00\x006\x00\x00\x007\x00\x00\x00B\x00\x00\x00A\x00\x00\x007\x00\x00\x00B\x00\x00\x007\x00\x00\x008\x00\x00\x00C\x00\x00\x00B\x00\x00\x008\x00\x00\x00C\x00\x00\x008\x00\x00\x009\x00\x00\x00D\x00\x00\x00C\x00\x00\x009\x00\x00\x00D\x00\x00\x009\x00\x00\x00:\x00\x00\x00E\x00\x00\x00D\x00\x00\x00:\x00\x00\x00E\x00\x00\x00:\x00\x00\x00;\x00\x00\x00F\x00\x00\x00E\x00\x00\x00;\x00\x00\x00F\x00\x00\x00;\x00\x00\x00<\x00\x00\x00G\x00\x00\x00F\x00\x00\x00<\x00\x00\x00G\x00\x00\x00<\x00\x00\x00=\x00\x00\x00H\x00\x00\x00G\x00\x00\x00=\x00\x00\x00H\x00\x00\x00=\x00\x00\x00>\x00\x00\x00I\x00\x00\x00H\x00\x00\x00>\x00\x00\x00I\x00\x00\x00>\x00\x00\x00?\x00\x00\x00J\x00\x00\x00I\x00\x00\x00?\x00\x00\x00J\x00\x00\x00?\x00\x00\x00K\x00\x00\x00L\x00\x00\x00J\x00\x00\x00K\x00\x00\x00L\x00\x00\x00K\x00\x00\x00M\x00\x00\x00N\x00\x00\x00L\x00\x00\x00M\x00\x00\x00O\x00\x00\x00C\x00\x00\x00D\x00\x00\x00P\x00\x00\x00O\x00\x00\x00D\x00\x00\x00P\x00\x00\x00D\x00\x00\x00E\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00E\x00\x00\x00Q\x00\x00\x00E\x00\x00\x00F\x00\x00\x00R\x00\x00\x00Q\x00\x00\x00F\x00\x00\x00R\x00\x00\x00F\x00\x00\x00G\x00\x00\x00S\x00\x00\x00R\x00\x00\x00G\x00\x00\x00S\x00\x00\x00G\x00\x00\x00H\x00\x00\x00T\x00\x00\x00S\x00\x00\x00H\x00\x00\x00T\x00\x00\x00H\x00\x00\x00I\x00\x00\x00U\x00\x00\x00T\x00\x00\x00I\x00\x00\x00U\x00\x00\x00I\x00\x00\x00J\x00\x00\x00V\x00\x00\x00U\x00\x00\x00J\x00\x00\x00V\x00\x00\x00J\x00\x00\x00L\x00\x00\x00W\x00\x00\x00V\x00\x00\x00L\x00\x00\x00X\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00Q\x00\x00\x00Y\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00Z\x00\x00\x00Y\x00\x00\x00R\x00\x00\x00Z\x00\x00\x00R\x00\x00\x00S\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00S\x00\x00\x00[\x00\x00\x00S\x00\x00\x00T\x00\x00\x00\\\x00\x00\x00[\x00\x00\x00T\x00\x00\x00\\\x00\x00\x00T\x00\x00\x00U\x00\x00\x00]\x00\x00\x00\\\x00\x00\x00U\x00\x00\x00]\x00\x00\x00U\x00\x00\x00V\x00\x00\x00^\x00\x00\x00]\x00\x00\x00V\x00\x00\x00a\x00\x00\x00_\x00\x00\x00`\x00\x00\x00b\x00\x00\x00a\x00\x00\x00`\x00\x00\x00e\x00\x00\x00c\x00\x00\x00d\x00\x00\x00f\x00\x00\x00e\x00\x00\x00d\x00\x00\x00h\x00\x00\x00g\x00\x00\x00a\x00\x00\x00i\x00\x00\x00h\x00\x00\x00a\x00\x00\x00i\x00\x00\x00a\x00\x00\x00b\x00\x00\x00j\x00\x00\x00i\x00\x00\x00b\x00\x00\x00j\x00\x00\x00b\x00\x00\x00e\x00\x00\x00k\x00\x00\x00j\x00\x00\x00e\x00\x00\x00k\x00\x00\x00e\x00\x00\x00f\x00\x00\x00l\x00\x00\x00k\x00\x00\x00f\x00\x00\x00l\x00\x00\x00f\x00\x00\x00m\x00\x00\x00n\x00\x00\x00l\x00\x00\x00m\x00\x00\x00o\x00\x00\x00i\x00\x00\x00j\x00\x00\x00p\x00\x00\x00o\x00\x00\x00j\x00\x00\x00p\x00\x00\x00j\x00\x00\x00k\x00\x00\x00q\x00\x00\x00p\x00\x00\x00k\x00\x00\x00q\x00\x00\x00k\x00\x00\x00l\x00\x00\x00r\x00\x00\x00q\x00\x00\x00l\x00\x00\x00s\x00\x00\x00p\x00\x00\x00q\x00\x00\x00t\x00\x00\x00s\x00\x00\x00q\x00\x00\x00t\x00\x00\x00q\x00\x00\x00r\x00\x00\x00u\x00\x00\x00t\x00\x00\x00r\x00\x00\x00x\x00\x00\x00v\x00\x00\x00w\x00\x00\x00y\x00\x00\x00x\x00\x00\x00w\x00\x00\x00y\x00\x00\x00w\x00\x00\x00z\x00\x00\x00{\x00\x00\x00y\x00\x00\x00z\x00\x00\x00}\x00\x00\x00|\x00\x00\x00x\x00\x00\x00~\x00\x00\x00}\x00\x00\x00x\x00\x00\x00~\x00\x00\x00x\x00\x00\x00y\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00y\x00\x00\x00\x7f\x00\x00\x00y\x00\x00\x00{\x00\x00\x00\x80\x00\x00\x00\x7f\x00\x00\x00{\x00\x00\x00\x80\x00\x00\x00{\x00\x00\x00\x81\x00\x00\x00\x82\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\x83\x00\x00\x00}\x00\x00\x00~\x00\x00\x00\x84\x00\x00\x00\x83\x00\x00\x00~\x00\x00\x00\x84\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x7f\x00\x00\x00\x85\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00\x86\x00\x00\x00\x85\x00\x00\x00\x80\x00\x00\x00\x86\x00\x00\x00\x80\x00\x00\x00\x82\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x82\x00\x00\x00\x87\x00\x00\x00\x82\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\x88\x00\x00\x00\x8a\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x84\x00\x00\x00\x8b\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x8c\x00\x00\x00\x8b\x00\x00\x00\x85\x00\x00\x00\x8c\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x86\x00\x00\x00\x8d\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x8e\x00\x00\x00\x8d\x00\x00\x00\x87\x00\x00\x00\x8e\x00\x00\x00\x87\x00\x00\x00\x89\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x89\x00\x00\x00\x8f\x00\x00\x00\x89\x00\x00\x00\x90\x00\x00\x00\x91\x00\x00\x00\x8f\x00\x00\x00\x90\x00\x00\x00\x92\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00\x8b\x00\x00\x00\x93\x00\x00\x00\x8b\x00\x00\x00\x8c\x00\x00\x00\x94\x00\x00\x00\x93\x00\x00\x00\x8c\x00\x00\x00\x94\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x95\x00\x00\x00\x94\x00\x00\x00\x8d\x00\x00\x00\x95\x00\x00\x00\x8d\x00\x00\x00\x8e\x00\x00\x00\x96\x00\x00\x00\x95\x00\x00\x00\x8e\x00\x00\x00\x96\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x97\x00\x00\x00\x96\x00\x00\x00\x8f\x00\x00\x00\x97\x00\x00\x00\x8f\x00\x00\x00\x91\x00\x00\x00\x98\x00\x00\x00\x97\x00\x00\x00\x91\x00\x00\x00\x98\x00\x00\x00\x91\x00\x00\x00\x99\x00\x00\x00\x9a\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00\x9b\x00\x00\x00\x97\x00\x00\x00\x98\x00\x00\x00\x9c\x00\x00\x00\x9b\x00\x00\x00\x98\x00\x00\x00\x9c\x00\x00\x00\x98\x00\x00\x00\x9a\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\x9a\x00\x00\x00\x9e\x00\x00\x00\x9b\x00\x00\x00\x9c\x00\x00\x00\x9f\x00\x00\x00\x9e\x00\x00\x00\x9c\x00\x00\x00\x9f\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00\xa0\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\xa0\x00\x00\x00\x9d\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\xa1\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00\xa3\x00\x00\x00\xa5\x00\x00\x00\xa6\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa7\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\xa8\x00\x00\x00\xa7\x00\x00\x00\x9f\x00\x00\x00\xa8\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xa0\x00\x00\x00\xa9\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00\xaa\x00\x00\x00\xa9\x00\x00\x00\xa2\x00\x00\x00\xaa\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xa4\x00\x00\x00\xab\x00\x00\x00\xa4\x00\x00\x00\xa6\x00\x00\x00\xac\x00\x00\x00\xab\x00\x00\x00\xa6\x00\x00\x00\xac\x00\x00\x00\xa6\x00\x00\x00\xad\x00\x00\x00\xae\x00\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xaf\x00\x00\x00\xa7\x00\x00\x00\xa8\x00\x00\x00\xb0\x00\x00\x00\xaf\x00\x00\x00\xa8\x00\x00\x00\xb0\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\xa9\x00\x00\x00\xb1\x00\x00\x00\xa9\x00\x00\x00\xaa\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\xaa\x00\x00\x00\xb2\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xb3\x00\x00\x00\xb2\x00\x00\x00\xab\x00\x00\x00\xb3\x00\x00\x00\xab\x00\x00\x00\xac\x00\x00\x00\xb4\x00\x00\x00\xb3\x00\x00\x00\xac\x00\x00\x00\xb4\x00\x00\x00\xac\x00\x00\x00\xae\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\xae\x00\x00\x00\xb7\x00\x00\x00\xb6\x00\x00\x00\xaf\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\xaf\x00\x00\x00\xb8\x00\x00\x00\xaf\x00\x00\x00\xb0\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\xb0\x00\x00\x00\xb9\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xba\x00\x00\x00\xb9\x00\x00\x00\xb1\x00\x00\x00\xba\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xbb\x00\x00\x00\xba\x00\x00\x00\xb2\x00\x00\x00\xbb\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xbc\x00\x00\x00\xbb\x00\x00\x00\xb3\x00\x00\x00\xbc\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xb4\x00\x00\x00\xbd\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xbe\x00\x00\x00\xbd\x00\x00\x00\xb5\x00\x00\x00\xbe\x00\x00\x00\xb5\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\xc2\x00\x00\x00\xc1\x00\x00\x00\xb7\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\xb7\x00\x00\x00\xc3\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xc4\x00\x00\x00\xc3\x00\x00\x00\xb8\x00\x00\x00\xc4\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\xc5\x00\x00\x00\xc4\x00\x00\x00\xb9\x00\x00\x00\xc5\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\xc6\x00\x00\x00\xc5\x00\x00\x00\xba\x00\x00\x00\xc6\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\xbb\x00\x00\x00\xc7\x00\x00\x00\xbb\x00\x00\x00\xbc\x00\x00\x00\xc8\x00\x00\x00\xc7\x00\x00\x00\xbc\x00\x00\x00\xc8\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xc9\x00\x00\x00\xc8\x00\x00\x00\xbd\x00\x00\x00\xc9\x00\x00\x00\xbd\x00\x00\x00\xbe\x00\x00\x00\xca\x00\x00\x00\xc9\x00\x00\x00\xbe\x00\x00\x00\xca\x00\x00\x00\xbe\x00\x00\x00\xc0\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xc0\x00\x00\x00\xcb\x00\x00\x00\xc0\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\x03\x00\x01\x00\xbc\'\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00A\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x02\x00\x00\x80\x00\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x05\x00rock2 g\xe8\x8aA\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x00 A\xc7\xb1\x18D\x0c\xc3\x1aC\x0b\xf5\x8dA\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x00 A\xe5\xd1\x18D\xcf\xf3\x02C\x00\x00 A\xe8\x93\x18DI\x922C\xec\xc7\x90A\xf3\x9a\x1aDI\x922C\x00\x00\xf0A\xef\x94\x1dDI\x922C\x00\x00\xf0A`\x9f\x1dD\x0c\xc3\x1aC\x00\x00 A\xcd|\x18D\x86aJC"\xe8\x92A\xf3\x9a\x1aD\x86aJC\x00\x00\xf0A\xb5\x8c\x1dD\x86aJC\x00\x00 A,o\x18D\xc30bC\xec\x18\x94A\xf3\x9a\x1aD\xc30bC\x00\x00\xf0Ah\x88\x1dD\xc30bC\x00\x00 A\xb2h\x18D\x00\x00zC\x85\x9a\x94A\xf3\x9a\x1aD\x00\x00zC\x00\x00\xf0A\x12\x87\x1dD\x00\x00zC\x00\x00 A*f\x18D\x9e\xe7\x88C\xa6\xc7\x94A\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x00\xf0A\xaa\x86\x1dD\x9e\xe7\x88C\x00\x00 AVe\x18D=\xcf\x94C\x05\xe0\x94A\xf3\x9a\x1aD=\xcf\x94C\x00\x00\xf0A\x95\x85\x1dD=\xcf\x94C\x00\x00 A\xf0d\x18D\xdb\xb6\xa0Cf\x05\x95A\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x00\xf0A\x05\x83\x1dD\xdb\xb6\xa0C\x00\x00 A\x7fd\x18Dz\x9e\xacC\x0bA\x95A\xf3\x9a\x1aDz\x9e\xacC\x00\x00\xf0A\xe5~\x1dDz\x9e\xacC\x00\x00 A,d\x18D\x18\x86\xb8CC\x89\x95A\xf3\x9a\x1aD\x18\x86\xb8C\x00\x00\xf0A\xady\x1dD\x18\x86\xb8C\x00\x00 A\x95d\x18D\xb7m\xc4C\xb5\xc5\x95A\xf3\x9a\x1aD\xb7m\xc4C\x00\x00\xf0ADt\x1dD\xb7m\xc4C\x00\x00 A\x8ef\x18DUU\xd0C`\xd7\x95A\xf3\x9a\x1aDUU\xd0C\x00\x00\xf0A\xbeo\x1dDUU\xd0C\x00\x00 A\xb5j\x18D\xf4<\xdcC\xb8\xa4\x95A\xf3\x9a\x1aD\xf4<\xdcC\x00\x00\xf0A\x11m\x1dD\xf4<\xdcC\x00\x00 A\xaep\x18D\x92$\xe8Ce1\x95A\xf3\x9a\x1aD\x92$\xe8C\x00\x00\xf0A\x85l\x1dD\x92$\xe8C\x00\x00 A\xfbu\x18D1\x0c\xf4C\xeb\xbd\x94A\xf3\x9a\x1aD1\x0c\xf4C\x00\x00\xf0A\x1fm\x1dD1\x0c\xf4C\x00\x00 A\xfbu\x18D\xcf\xf3\xffC\xeb\xbd\x94A\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x00\xf0A\x1fm\x1dD\xcf\xf3\xffC\x00\x00 A\xaep\x18D\xb7\xed\x05De1\x95A\xf3\x9a\x1aD\xb7\xed\x05D\x00\x00\xf0A\x85l\x1dD\xb7\xed\x05D\x00\x00 A\xb5j\x18D\x86\xe1\x0bD\xb8\xa4\x95A\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x00\xf0A\x11m\x1dD\x86\xe1\x0bD\x00\x00 A\x8ef\x18DU\xd5\x11D`\xd7\x95A\xf3\x9a\x1aDU\xd5\x11D\x17P1B(/!D\x0c\xc3\x1aC8\r1B(/!DI\x922C\x00\x00HBJ\x9e"DI\x922C\x00\x00HB\\\x94"D\x0c\xc3\x1aC\xc6\xe10B(/!D\x86aJC\x00\x00HBy\xa5"D\x86aJC8\xb90B(/!D\xc30bC\x00\x00HB\x01\xab"D\xc30bC\x8f\x970B(/!D\x00\x00zC\x00\x00HB\xc7\xae"D\x00\x00zC\xe5\x8c0B(/!D\x9e\xe7\x88C\x00\x00HB\x11\xb0"D\x9e\xe7\x88C\x0f\xa70B(/!D=\xcf\x94C\x00\x00HBC\xae"D=\xcf\x94Ck\xeb0B(/!D\xdb\xb6\xa0C\x00\x00HB<\xa9"D\xdb\xb6\xa0C\xbcV1B(/!Dz\x9e\xacC\x00\x00HBY\xa1"Dz\x9e\xacC \xde1B(/!D\x18\x86\xb8C\x00\x00HBj\x97"D\x18\x86\xb8C\xd5q2B(/!D\xb7m\xc4C\x00\x00HB\x86\x8c"D\xb7m\xc4CK\xff2B(/!DUU\xd0C\x00\x00HB\xe6\x81"DUU\xd0C\xd1t3B(/!D\xf4<\xdcC\x00\x00HB\xb7x"D\xf4<\xdcC\x18\xc63B(/!D\x92$\xe8C\x00\x00HB\xefq"D\x92$\xe8Cp\xee3B(/!D1\x0c\xf4C\x00\x00HBHn"D1\x0c\xf4Cp\xee3B(/!D\xcf\xf3\xffC\x00\x00HBHn"D\xcf\xf3\xffC\x18\xc63B(/!D\xb7\xed\x05D\x00\x00HB\xefq"D\xb7\xed\x05D\xd1t3B(/!D\x86\xe1\x0bD\x00\x00HB\xb7x"D\x86\xe1\x0bD\x00\x00\x8cB\xa3\x9b\'DI\x922C\x00\x00\x8cBh\xb2\'D\x86aJC\x00\x00\x8cB\x96\xc2\'D\xc30bC\x00\x00\x8cB^\xc3\'D\x15\x0cdC5\xb7\x8bB^\xc3\'D\x00\x00zC\x00\x00\x8cB\x87\xcc\'D\x00\x00zC\xf5\x96\x8bB^\xc3\'D\x9e\xe7\x88C\x00\x00\x8cB\xa0\xd0\'D\x9e\xe7\x88C\xe2\xa1\x8bB^\xc3\'D=\xcf\x94C\x00\x00\x8cBC\xcf\'D=\xcf\x94C\x02\xd3\x8bB^\xc3\'D\xdb\xb6\xa0C\x00\x00\x8cB\r\xc9\'D\xdb\xb6\xa0C\x00\x00\x8cB\xe7\xbe\'Dz\x9e\xacC\x00\x00\x8cB^\xc3\'D;h\xa7C\x00\x00\x8cB\xf4\xb1\'D\x18\x86\xb8C\x00\x00\x8cB\x98\xa3\'D\xb7m\xc4C\x00\x00\x8cB5\x95\'DUU\xd0C\x00\x00\x8cB\r\x88\'D\xf4<\xdcC\x00\x00\x8cB`}\'D\x92$\xe8C\x00\x00\x8cB\xe0v\'D1\x0c\xf4C\x00\x00\x8cB\xe0v\'D\xcf\xf3\xffC\x00\x00\x8cB`}\'D\xb7\xed\x05D\x00\x00\x8cB\r\x88\'D\x86\xe1\x0bD\xe2@\x8dB^\xc3\'DI\x922CN\x87\x8cB^\xc3\'D\x86aJC.\x06\x8cB^\xc3\'D\xc30bC\x00\x00\xb4B?\xb8,D\xc30bC\x00\x00\xb4B\xc4\x9c,D\x86aJC\x00\x00\xb4B\xfc\xc9,D\x00\x00zC\x00\x00\xb4B\xf0\xd2,D\x9e\xe7\x88C\x00\x00\xb4B6\xd4,D=\xcf\x94C\x00\x00\xb4B#\xcf,D\xdb\xb6\xa0C\x03#\x8cB^\xc3\'Dz\x9e\xacC\x00\x00\xb4B4\xc5,Dz\x9e\xacC\xa0\x88\x8cB^\xc3\'D\x18\x86\xb8C\x00\x00\xb4B\x0c\xb8,D\x18\x86\xb8C\x85\xf9\x8cB^\xc3\'D\xb7m\xc4C\x00\x00\xb4B]\xa9,D\xb7m\xc4C\xc5j\x8dB^\xc3\'DUU\xd0C\x00\x00\xb4B\xd1\x9a,DUU\xd0CC\xd2\x8dB^\xc3\'D\xf4<\xdcC\x00\x00\xb4B\xdd\x8d,D\xf4<\xdcC"&\x8eB^\xc3\'D\x92$\xe8C\x00\x00\xb4B\xa7\x83,D\x92$\xe8C\x0eY\x8eB^\xc3\'D1\x0c\xf4C\x00\x00\xb4B\xff|,D1\x0c\xf4C\x0eY\x8eB^\xc3\'D\xcf\xf3\xffC\x00\x00\xb4B\xff|,D\xcf\xf3\xffC"&\x8eB^\xc3\'D\xb7\xed\x05D\x00\x00\xb4B\xa7\x83,D\xb7\xed\x05DC\xd2\x8dB^\xc3\'D\x86\xe1\x0bD\xa2Z\xc1B\x94W.D\xc30bC\xe3\xb0\xc0B\x94W.D\x00\x00zC\x9cW\xc0B\x94W.D\x9e\xe7\x88C\x00\x00\xdcB\x00\xab1D\x9e\xe7\x88C\x00\x00\xdcBZ\x9b1D\x00\x00zCHB\xc0B\x94W.D=\xcf\x94C\x00\x00\xdcB@\xb11D=\xcf\x94C\xd8c\xc0B\x94W.D\xdb\xb6\xa0C\x00\x00\xdcB\xec\xaf1D\xdb\xb6\xa0Cm\xae\xc0B\x94W.Dz\x9e\xacC\x00\x00\xdcB\xfc\xa81Dz\x9e\xacC\x82\x13\xc1B\x94W.D\x18\x86\xb8C\x00\x00\xdcBx\x9e1D\x18\x86\xb8C>\x84\xc1B\x94W.D\xb7m\xc4C\x00\x00\xdcBn\x921D\xb7m\xc4C>\xf2\xc1B\x94W.DUU\xd0C\x00\x00\xdcB\xda\x861DUU\xd0C\xb2P\xc2B\x94W.D\xf4<\xdcC\x00\x00\xdcB\x84}1D\xf4<\xdcC\xc1\x95\xc2B\x94W.D\x92$\xe8C\x00\x00\xdcB\xcbw1D\x92$\xe8C\xb2\xbb\xc2B\x94W.D1\x0c\xf4C\x00\x00\xdcB=v1D1\x0c\xf4C\xb2\xbb\xc2B\x94W.D\xcf\xf3\xffC\x00\x00\xdcB=v1D\xcf\xf3\xffC\xc1\x95\xc2B\x94W.D\xb7\xed\x05D\x00\x00\xdcB\xcbw1D\xb7\xed\x05D\xbe^\xf7B\xca\xeb4D\xdb\xb6\xa0C\xc4|\xf7B\xca\xeb4Dz\x9e\xacC\x8c\xbb\xf7B\xca\xeb4D\x18\x86\xb8C\x00\x00\x02C\x02Y6D\x18\x86\xb8C\x00\x00\x02C\xd7^6Dz\x9e\xacC!\x08\xf8B\xca\xeb4D\xb7m\xc4C\x00\x00\x02CbQ6D\xb7m\xc4C\xfcP\xf8B\xca\xeb4DUU\xd0C\x00\x00\x02C\rJ6DUU\xd0C\x9e\x87\xf8B\xca\xeb4D\xf4<\xdcC\x00\x00\x02C\xb7D6D\xf4<\xdcC\xb7\xa3\xf8B\xca\xeb4D\x92$\xe8C\x00\x00\x02CMB6D\x92$\xe8C\x00\xa9\xf8B\xca\xeb4D1\x0c\xf4C\x00\x00\x02C6B6D1\x0c\xf4C\x00\xa9\xf8B\xca\xeb4D\xcf\xf3\xffC\x00\x00\x16C\xd2\xd5:DUU\xd0C\x00\x00\x16C\x88\xd3:D\xf4<\xdcC\x00\x00\x16C\xac\xd2:D\x92$\xe8C\\\x11[D\xca\xeb4D=\xcf\x94C\x00\x80^D\x00\xab1D\x9e\xe7\x88C\x88\x05[D\xca\xeb4D\x9e\xe7\x88C\x00\x80^D@\xb11D=\xcf\x94C(\x14[D\xca\xeb4D\xdb\xb6\xa0C\x00\x80^D\xec\xaf1D\xdb\xb6\xa0C\x0c\xf5aD\x94W.D\x9e\xe7\x88C\x00\x80cD\xfc\xc9,D\x00\x00zC\xe4\xe9aD\x94W.D\x00\x00zC\x00\x80cD\xf0\xd2,D\x9e\xe7\x88C\xb7\xf7aD\x94W.D=\xcf\x94C\x00\x80cD6\xd4,D=\xcf\x94C\x85\xf3aD\x94W.D\xdb\xb6\xa0C\x00\x80cD#\xcf,D\xdb\xb6\xa0C2\xeaaD\x94W.Dz\x9e\xacC\x00\x80cD4\xc5,Dz\x9e\xacC\x00\x80^D\xfc\xa81Dz\x9e\xacC\x90\xddaD\x94W.D\x18\x86\xb8C\x00\x80cD\x0c\xb8,D\x18\x86\xb8C\x00\x80^Dx\x9e1D\x18\x86\xb8Cx\xcfaD\x94W.D\xb7m\xc4C\x00\x80cD]\xa9,D\xb7m\xc4C\x00\x80^Dn\x921D\xb7m\xc4C\xb8\xc1aD\x94W.DUU\xd0C\x00\x80cD\xd1\x9a,DUU\xd0C\x00\x80hD\x87\xcc\'D\x00\x00zC\x00\x80hD\xa0\xd0\'D\x9e\xe7\x88C\x00\x80hDC\xcf\'D=\xcf\x94C\x00\x80hD\r\xc9\'D\xdb\xb6\xa0C\xa0{hD^\xc3\'Dz\x9e\xacC\x00\x80hD\xe7\xbe\'Dz\x9e\xacC\x00\x80hD^\xc3\'D;h\xa7C\xecnhD^\xc3\'D\x18\x86\xb8C\x00\x80hD\xf4\xb1\'D\x18\x86\xb8C\xcf`hD^\xc3\'D\xb7m\xc4C\x00\x80hD\x98\xa3\'D\xb7m\xc4C\xa7RhD^\xc3\'DUU\xd0C\x00\x80hD5\x95\'DUU\xd0C\x19\x89hD^\xc3\'D\x00\x00zC\x00\x80hD\x96\xc2\'D\xc30bC\x00\x80hD^\xc3\'D\x15\x0cdC\x00\x80mD\xc7\xae"D\x00\x00zC\x00\x80mD\x01\xab"D\xc30bC!\x8dhD^\xc3\'D\x9e\xe7\x88C\x00\x80mD\x11\xb0"D\x9e\xe7\x88C\xc3\x8bhD^\xc3\'D=\xcf\x94C\x00\x80mDC\xae"D=\xcf\x94C\xa0\x85hD^\xc3\'D\xdb\xb6\xa0C\x00\x80mD<\xa9"D\xdb\xb6\xa0C\x00\x80mDY\xa1"Dz\x9e\xacC\x00\x80mDj\x97"D\x18\x86\xb8C\x00\x80mD\x86\x8c"D\xb7m\xc4C\x00\x80mD\xe6\x81"DUU\xd0C\x00\x80hD\r\x88\'D\xf4<\xdcC\x00\x80mD\xb7x"D\xf4<\xdcC\x00\x80hD`}\'D\x92$\xe8C\x00\x80mD\xefq"D\x92$\xe8C\xe4\xf1nD(/!D\x86aJC\x00\x80rD\xf0\x94\x1dDI\x922C.\xefnD(/!DI\x922C\x00\x80rD\xb5\x8c\x1dD\x86aJCl\xf4nD(/!D\xc30bC\x00\x80rDh\x88\x1dD\xc30bC\x00\x80mD{\xa5"D\x86aJC\x87\xf6nD(/!D\x00\x00zC\x00\x80rD\x13\x87\x1dD\x00\x00zC2\xf7nD(/!D\x9e\xe7\x88C\x00\x80rD\xaa\x86\x1dD\x9e\xe7\x88C\x8f\xf5nD(/!D=\xcf\x94C\x00\x80rD\x95\x85\x1dD=\xcf\x94CJ\xf1nD(/!D\xdb\xb6\xa0C\x00\x80rD\x05\x83\x1dD\xdb\xb6\xa0C\x94\xeanD(/!Dz\x9e\xacC\x00\x80rD\xe5~\x1dDz\x9e\xacC\x1e\xe2nD(/!D\x18\x86\xb8C\x00\x80rD\xady\x1dD\x18\x86\xb8C\xe3\xd8nD(/!D\xb7m\xc4C\x00\x80rDDt\x1dD\xb7m\xc4C\x0c\xd0nD(/!DUU\xd0C\x00\x80rD\xbeo\x1dDUU\xd0C\xb4\xc8nD(/!D\xf4<\xdcC\x00\x80rD\x11m\x1dD\xf4<\xdcC\x9e\xc3nD(/!D\x92$\xe8C\x00\x80rD\x85l\x1dD\x92$\xe8C\x19\xc1nD(/!D1\x0c\xf4C\x00\x80rD\x1fm\x1dD1\x0c\xf4C\x00\x80mDHn"D1\x0c\xf4C\x19\xc1nD(/!D\xcf\xf3\xffC\x00\x80rD\x1fm\x1dD\xcf\xf3\xffC\xbe\xa8uD\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x80wD\x98\xf0\x18D%I\xd6B\x91\xbfuD\xf3\x9a\x1aD%I\xd6B\x00\x80wD\xe6\xd1\x18D\xcf\xf3\x02C\xc2yuD\xf3\x9a\x1aDI\x922C\x00\x80wD\xc8\xb1\x18D\x0c\xc3\x1aCW\x90uD\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x80wD\xe9\x93\x18DI\x922C\xbfhuD\xf3\x9a\x1aD\x86aJC\x00\x80wD\xcd|\x18D\x86aJC8_uD\xf3\x9a\x1aD\xc30bC\x00\x80wD,o\x18D\xc30bC,[uD\xf3\x9a\x1aD\x00\x00zC\x00\x80wD\xb2h\x18D\x00\x00zC\xc3YuD\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x80wD*f\x18D\x9e\xe7\x88C\x00YuD\xf3\x9a\x1aD=\xcf\x94C\x00\x80wDVe\x18D=\xcf\x94C\xd5WuD\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x80wD\xf0d\x18D\xdb\xb6\xa0C\xf8UuD\xf3\x9a\x1aDz\x9e\xacC\x00\x80wD\x7fd\x18Dz\x9e\xacC\xb6SuD\xf3\x9a\x1aD\x18\x86\xb8C\x00\x80wD,d\x18D\x18\x86\xb8C\xd2QuD\xf3\x9a\x1aD\xb7m\xc4C\x00\x80wD\x95d\x18D\xb7m\xc4CEQuD\xf3\x9a\x1aDUU\xd0C\x00\x80wD\x8ef\x18DUU\xd0C\xdaRuD\xf3\x9a\x1aD\xf4<\xdcC\x00\x80wD\xb5j\x18D\xf4<\xdcCtVuD\xf3\x9a\x1aD\x92$\xe8C\x00\x80wD\xaep\x18D\x92$\xe8C\x10ZuD\xf3\x9a\x1aD1\x0c\xf4C\x00\x80wD\xfbu\x18D1\x0c\xf4C\x10ZuD\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x80wD\xfbu\x18D\xcf\xf3\xffCtVuD\xf3\x9a\x1aD\xb7\xed\x05D\x00\x80wD\xaep\x18D\xb7\xed\x05D\x00\x80rD\x85l\x1dD\xb7\xed\x05D\xdaRuD\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x80wD\xb5j\x18D\x86\xe1\x0bD\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\n\x00\x00\x00\x05\x00\x00\x00\n\x00\x00\x00\t\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\r\x00\x00\x00\t\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x10\x00\x00\x00\x0c\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x13\x00\x00\x00\x0f\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x16\x00\x00\x00\x12\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\x18\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x15\x00\x00\x00\x17\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x19\x00\x00\x00\x15\x00\x00\x00\x19\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\x17\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\x1c\x00\x00\x00\x18\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\x1b\x00\x00\x00\x1b\x00\x00\x00\x1d\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00\x1f\x00\x00\x00\x1b\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00!\x00\x00\x00 \x00\x00\x00\x1e\x00\x00\x00\x1e\x00\x00\x00 \x00\x00\x00\x1d\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00"\x00\x00\x00\x1e\x00\x00\x00"\x00\x00\x00!\x00\x00\x00$\x00\x00\x00#\x00\x00\x00!\x00\x00\x00!\x00\x00\x00#\x00\x00\x00 \x00\x00\x00!\x00\x00\x00"\x00\x00\x00%\x00\x00\x00!\x00\x00\x00%\x00\x00\x00$\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00$\x00\x00\x00$\x00\x00\x00&\x00\x00\x00#\x00\x00\x00$\x00\x00\x00%\x00\x00\x00(\x00\x00\x00$\x00\x00\x00(\x00\x00\x00\'\x00\x00\x00*\x00\x00\x00)\x00\x00\x00\'\x00\x00\x00\'\x00\x00\x00)\x00\x00\x00&\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00+\x00\x00\x00\'\x00\x00\x00+\x00\x00\x00*\x00\x00\x00-\x00\x00\x00,\x00\x00\x00*\x00\x00\x00*\x00\x00\x00,\x00\x00\x00)\x00\x00\x00*\x00\x00\x00+\x00\x00\x00.\x00\x00\x00*\x00\x00\x00.\x00\x00\x00-\x00\x00\x000\x00\x00\x00/\x00\x00\x00-\x00\x00\x00-\x00\x00\x00/\x00\x00\x00,\x00\x00\x00-\x00\x00\x00.\x00\x00\x001\x00\x00\x00-\x00\x00\x001\x00\x00\x000\x00\x00\x003\x00\x00\x002\x00\x00\x000\x00\x00\x000\x00\x00\x002\x00\x00\x00/\x00\x00\x000\x00\x00\x001\x00\x00\x004\x00\x00\x000\x00\x00\x004\x00\x00\x003\x00\x00\x006\x00\x00\x005\x00\x00\x003\x00\x00\x003\x00\x00\x005\x00\x00\x002\x00\x00\x003\x00\x00\x004\x00\x00\x007\x00\x00\x003\x00\x00\x007\x00\x00\x006\x00\x00\x009\x00\x00\x008\x00\x00\x006\x00\x00\x006\x00\x00\x008\x00\x00\x005\x00\x00\x00;\x00\x00\x00\x06\x00\x00\x00:\x00\x00\x00:\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00:\x00\x00\x00=\x00\x00\x00<\x00\x00\x00:\x00\x00\x00<\x00\x00\x00;\x00\x00\x00>\x00\x00\x00\n\x00\x00\x00;\x00\x00\x00;\x00\x00\x00\n\x00\x00\x00\x06\x00\x00\x00;\x00\x00\x00<\x00\x00\x00?\x00\x00\x00;\x00\x00\x00?\x00\x00\x00>\x00\x00\x00@\x00\x00\x00\r\x00\x00\x00>\x00\x00\x00>\x00\x00\x00\r\x00\x00\x00\n\x00\x00\x00>\x00\x00\x00?\x00\x00\x00A\x00\x00\x00>\x00\x00\x00A\x00\x00\x00@\x00\x00\x00B\x00\x00\x00\x10\x00\x00\x00@\x00\x00\x00@\x00\x00\x00\x10\x00\x00\x00\r\x00\x00\x00@\x00\x00\x00A\x00\x00\x00C\x00\x00\x00@\x00\x00\x00C\x00\x00\x00B\x00\x00\x00D\x00\x00\x00\x13\x00\x00\x00B\x00\x00\x00B\x00\x00\x00\x13\x00\x00\x00\x10\x00\x00\x00B\x00\x00\x00C\x00\x00\x00E\x00\x00\x00B\x00\x00\x00E\x00\x00\x00D\x00\x00\x00F\x00\x00\x00\x16\x00\x00\x00D\x00\x00\x00D\x00\x00\x00\x16\x00\x00\x00\x13\x00\x00\x00D\x00\x00\x00E\x00\x00\x00G\x00\x00\x00D\x00\x00\x00G\x00\x00\x00F\x00\x00\x00H\x00\x00\x00\x19\x00\x00\x00F\x00\x00\x00F\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00F\x00\x00\x00G\x00\x00\x00I\x00\x00\x00F\x00\x00\x00I\x00\x00\x00H\x00\x00\x00J\x00\x00\x00\x1c\x00\x00\x00H\x00\x00\x00H\x00\x00\x00\x1c\x00\x00\x00\x19\x00\x00\x00H\x00\x00\x00I\x00\x00\x00K\x00\x00\x00H\x00\x00\x00K\x00\x00\x00J\x00\x00\x00L\x00\x00\x00\x1f\x00\x00\x00J\x00\x00\x00J\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00J\x00\x00\x00K\x00\x00\x00M\x00\x00\x00J\x00\x00\x00M\x00\x00\x00L\x00\x00\x00N\x00\x00\x00"\x00\x00\x00L\x00\x00\x00L\x00\x00\x00"\x00\x00\x00\x1f\x00\x00\x00L\x00\x00\x00M\x00\x00\x00O\x00\x00\x00L\x00\x00\x00O\x00\x00\x00N\x00\x00\x00P\x00\x00\x00%\x00\x00\x00N\x00\x00\x00N\x00\x00\x00%\x00\x00\x00"\x00\x00\x00N\x00\x00\x00O\x00\x00\x00Q\x00\x00\x00N\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00R\x00\x00\x00(\x00\x00\x00P\x00\x00\x00P\x00\x00\x00(\x00\x00\x00%\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00S\x00\x00\x00P\x00\x00\x00S\x00\x00\x00R\x00\x00\x00T\x00\x00\x00+\x00\x00\x00R\x00\x00\x00R\x00\x00\x00+\x00\x00\x00(\x00\x00\x00R\x00\x00\x00S\x00\x00\x00U\x00\x00\x00R\x00\x00\x00U\x00\x00\x00T\x00\x00\x00V\x00\x00\x00.\x00\x00\x00T\x00\x00\x00T\x00\x00\x00.\x00\x00\x00+\x00\x00\x00T\x00\x00\x00U\x00\x00\x00W\x00\x00\x00T\x00\x00\x00W\x00\x00\x00V\x00\x00\x00X\x00\x00\x001\x00\x00\x00V\x00\x00\x00V\x00\x00\x001\x00\x00\x00.\x00\x00\x00V\x00\x00\x00W\x00\x00\x00Y\x00\x00\x00V\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00Z\x00\x00\x004\x00\x00\x00X\x00\x00\x00X\x00\x00\x004\x00\x00\x001\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00[\x00\x00\x00X\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00\\\x00\x00\x007\x00\x00\x00Z\x00\x00\x00Z\x00\x00\x007\x00\x00\x004\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00]\x00\x00\x00Z\x00\x00\x00]\x00\x00\x00\\\x00\x00\x00^\x00\x00\x00?\x00\x00\x00<\x00\x00\x00_\x00\x00\x00?\x00\x00\x00^\x00\x00\x00_\x00\x00\x00A\x00\x00\x00?\x00\x00\x00`\x00\x00\x00A\x00\x00\x00_\x00\x00\x00b\x00\x00\x00C\x00\x00\x00a\x00\x00\x00C\x00\x00\x00`\x00\x00\x00a\x00\x00\x00C\x00\x00\x00A\x00\x00\x00`\x00\x00\x00c\x00\x00\x00b\x00\x00\x00a\x00\x00\x00d\x00\x00\x00E\x00\x00\x00b\x00\x00\x00b\x00\x00\x00E\x00\x00\x00C\x00\x00\x00b\x00\x00\x00c\x00\x00\x00e\x00\x00\x00b\x00\x00\x00e\x00\x00\x00d\x00\x00\x00f\x00\x00\x00G\x00\x00\x00d\x00\x00\x00d\x00\x00\x00G\x00\x00\x00E\x00\x00\x00d\x00\x00\x00e\x00\x00\x00g\x00\x00\x00d\x00\x00\x00g\x00\x00\x00f\x00\x00\x00h\x00\x00\x00I\x00\x00\x00f\x00\x00\x00f\x00\x00\x00I\x00\x00\x00G\x00\x00\x00f\x00\x00\x00g\x00\x00\x00i\x00\x00\x00f\x00\x00\x00i\x00\x00\x00h\x00\x00\x00k\x00\x00\x00j\x00\x00\x00h\x00\x00\x00j\x00\x00\x00I\x00\x00\x00h\x00\x00\x00j\x00\x00\x00K\x00\x00\x00I\x00\x00\x00k\x00\x00\x00h\x00\x00\x00i\x00\x00\x00j\x00\x00\x00M\x00\x00\x00K\x00\x00\x00l\x00\x00\x00M\x00\x00\x00j\x00\x00\x00l\x00\x00\x00O\x00\x00\x00M\x00\x00\x00m\x00\x00\x00O\x00\x00\x00l\x00\x00\x00m\x00\x00\x00Q\x00\x00\x00O\x00\x00\x00n\x00\x00\x00Q\x00\x00\x00m\x00\x00\x00n\x00\x00\x00S\x00\x00\x00Q\x00\x00\x00o\x00\x00\x00S\x00\x00\x00n\x00\x00\x00o\x00\x00\x00U\x00\x00\x00S\x00\x00\x00p\x00\x00\x00U\x00\x00\x00o\x00\x00\x00p\x00\x00\x00W\x00\x00\x00U\x00\x00\x00q\x00\x00\x00W\x00\x00\x00p\x00\x00\x00q\x00\x00\x00Y\x00\x00\x00W\x00\x00\x00r\x00\x00\x00Y\x00\x00\x00q\x00\x00\x00r\x00\x00\x00[\x00\x00\x00Y\x00\x00\x00s\x00\x00\x00[\x00\x00\x00r\x00\x00\x00s\x00\x00\x00]\x00\x00\x00[\x00\x00\x00t\x00\x00\x00]\x00\x00\x00s\x00\x00\x00v\x00\x00\x00_\x00\x00\x00u\x00\x00\x00u\x00\x00\x00_\x00\x00\x00^\x00\x00\x00w\x00\x00\x00`\x00\x00\x00v\x00\x00\x00v\x00\x00\x00`\x00\x00\x00_\x00\x00\x00v\x00\x00\x00y\x00\x00\x00x\x00\x00\x00v\x00\x00\x00x\x00\x00\x00w\x00\x00\x00w\x00\x00\x00a\x00\x00\x00`\x00\x00\x00c\x00\x00\x00a\x00\x00\x00w\x00\x00\x00x\x00\x00\x00c\x00\x00\x00w\x00\x00\x00z\x00\x00\x00c\x00\x00\x00x\x00\x00\x00z\x00\x00\x00e\x00\x00\x00c\x00\x00\x00{\x00\x00\x00e\x00\x00\x00z\x00\x00\x00{\x00\x00\x00g\x00\x00\x00e\x00\x00\x00|\x00\x00\x00g\x00\x00\x00{\x00\x00\x00|\x00\x00\x00i\x00\x00\x00g\x00\x00\x00}\x00\x00\x00i\x00\x00\x00|\x00\x00\x00~\x00\x00\x00j\x00\x00\x00k\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00k\x00\x00\x00i\x00\x00\x00\x7f\x00\x00\x00k\x00\x00\x00}\x00\x00\x00\x7f\x00\x00\x00i\x00\x00\x00\x80\x00\x00\x00l\x00\x00\x00~\x00\x00\x00~\x00\x00\x00l\x00\x00\x00j\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\x81\x00\x00\x00~\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\x82\x00\x00\x00m\x00\x00\x00\x80\x00\x00\x00\x80\x00\x00\x00m\x00\x00\x00l\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\x83\x00\x00\x00\x80\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00\x84\x00\x00\x00n\x00\x00\x00\x82\x00\x00\x00\x82\x00\x00\x00n\x00\x00\x00m\x00\x00\x00\x82\x00\x00\x00\x83\x00\x00\x00\x85\x00\x00\x00\x82\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x00o\x00\x00\x00\x84\x00\x00\x00\x84\x00\x00\x00o\x00\x00\x00n\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x87\x00\x00\x00\x84\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x88\x00\x00\x00p\x00\x00\x00\x86\x00\x00\x00\x86\x00\x00\x00p\x00\x00\x00o\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x89\x00\x00\x00\x86\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\x8a\x00\x00\x00q\x00\x00\x00\x88\x00\x00\x00\x88\x00\x00\x00q\x00\x00\x00p\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00\x8b\x00\x00\x00\x88\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x8c\x00\x00\x00r\x00\x00\x00\x8a\x00\x00\x00\x8a\x00\x00\x00r\x00\x00\x00q\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x8d\x00\x00\x00\x8a\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x8e\x00\x00\x00s\x00\x00\x00\x8c\x00\x00\x00\x8c\x00\x00\x00s\x00\x00\x00r\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x8f\x00\x00\x00\x8c\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x90\x00\x00\x00t\x00\x00\x00\x8e\x00\x00\x00\x8e\x00\x00\x00t\x00\x00\x00s\x00\x00\x00\x92\x00\x00\x00z\x00\x00\x00\x91\x00\x00\x00\x91\x00\x00\x00z\x00\x00\x00x\x00\x00\x00\x93\x00\x00\x00{\x00\x00\x00\x92\x00\x00\x00\x92\x00\x00\x00{\x00\x00\x00z\x00\x00\x00\x92\x00\x00\x00\x95\x00\x00\x00\x94\x00\x00\x00\x92\x00\x00\x00\x94\x00\x00\x00\x93\x00\x00\x00\x96\x00\x00\x00|\x00\x00\x00\x93\x00\x00\x00\x93\x00\x00\x00|\x00\x00\x00{\x00\x00\x00\x93\x00\x00\x00\x94\x00\x00\x00\x97\x00\x00\x00\x93\x00\x00\x00\x97\x00\x00\x00\x96\x00\x00\x00\x98\x00\x00\x00}\x00\x00\x00\x96\x00\x00\x00\x96\x00\x00\x00}\x00\x00\x00|\x00\x00\x00\x96\x00\x00\x00\x97\x00\x00\x00\x99\x00\x00\x00\x96\x00\x00\x00\x99\x00\x00\x00\x98\x00\x00\x00\x9a\x00\x00\x00\x7f\x00\x00\x00\x98\x00\x00\x00\x98\x00\x00\x00\x7f\x00\x00\x00}\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00\x9b\x00\x00\x00\x98\x00\x00\x00\x9b\x00\x00\x00\x9a\x00\x00\x00\x9c\x00\x00\x00\x81\x00\x00\x00\x9a\x00\x00\x00\x9a\x00\x00\x00\x81\x00\x00\x00\x7f\x00\x00\x00\x9a\x00\x00\x00\x9b\x00\x00\x00\x9d\x00\x00\x00\x9a\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00\x83\x00\x00\x00\x9c\x00\x00\x00\x9c\x00\x00\x00\x83\x00\x00\x00\x81\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00\x9f\x00\x00\x00\x9c\x00\x00\x00\x9f\x00\x00\x00\x9e\x00\x00\x00\xa0\x00\x00\x00\x85\x00\x00\x00\x9e\x00\x00\x00\x9e\x00\x00\x00\x85\x00\x00\x00\x83\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\xa1\x00\x00\x00\x9e\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00\x87\x00\x00\x00\xa0\x00\x00\x00\xa0\x00\x00\x00\x87\x00\x00\x00\x85\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa3\x00\x00\x00\xa0\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00\x89\x00\x00\x00\xa2\x00\x00\x00\xa2\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa5\x00\x00\x00\xa2\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00\xa6\x00\x00\x00\x8b\x00\x00\x00\xa4\x00\x00\x00\xa4\x00\x00\x00\x8b\x00\x00\x00\x89\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa7\x00\x00\x00\xa4\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00\xa8\x00\x00\x00\x8d\x00\x00\x00\xa6\x00\x00\x00\xa6\x00\x00\x00\x8d\x00\x00\x00\x8b\x00\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xa9\x00\x00\x00\xa6\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xaa\x00\x00\x00\x8f\x00\x00\x00\xa8\x00\x00\x00\xa8\x00\x00\x00\x8f\x00\x00\x00\x8d\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xab\x00\x00\x00\xa8\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xad\x00\x00\x00\x9b\x00\x00\x00\xac\x00\x00\x00\xac\x00\x00\x00\x9b\x00\x00\x00\x99\x00\x00\x00\xae\x00\x00\x00\x9d\x00\x00\x00\xad\x00\x00\x00\xad\x00\x00\x00\x9d\x00\x00\x00\x9b\x00\x00\x00\xad\x00\x00\x00\xb0\x00\x00\x00\xaf\x00\x00\x00\xad\x00\x00\x00\xaf\x00\x00\x00\xae\x00\x00\x00\xb1\x00\x00\x00\x9f\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\xae\x00\x00\x00\xaf\x00\x00\x00\xb2\x00\x00\x00\xae\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\xb3\x00\x00\x00\xa1\x00\x00\x00\xb1\x00\x00\x00\xb1\x00\x00\x00\xa1\x00\x00\x00\x9f\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xb4\x00\x00\x00\xb1\x00\x00\x00\xb4\x00\x00\x00\xb3\x00\x00\x00\xb5\x00\x00\x00\xa3\x00\x00\x00\xb3\x00\x00\x00\xb3\x00\x00\x00\xa3\x00\x00\x00\xa1\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xb6\x00\x00\x00\xb3\x00\x00\x00\xb6\x00\x00\x00\xb5\x00\x00\x00\xb7\x00\x00\x00\xa5\x00\x00\x00\xb5\x00\x00\x00\xb5\x00\x00\x00\xa5\x00\x00\x00\xa3\x00\x00\x00\xb5\x00\x00\x00\xb6\x00\x00\x00\xb8\x00\x00\x00\xb5\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\xb9\x00\x00\x00\xa7\x00\x00\x00\xb7\x00\x00\x00\xb7\x00\x00\x00\xa7\x00\x00\x00\xa5\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xba\x00\x00\x00\xb7\x00\x00\x00\xba\x00\x00\x00\xb9\x00\x00\x00\xbb\x00\x00\x00\xa9\x00\x00\x00\xb9\x00\x00\x00\xb9\x00\x00\x00\xa9\x00\x00\x00\xa7\x00\x00\x00\xbc\x00\x00\x00\xb6\x00\x00\x00\xb4\x00\x00\x00\xbd\x00\x00\x00\xb6\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xb8\x00\x00\x00\xb6\x00\x00\x00\xbe\x00\x00\x00\xb8\x00\x00\x00\xbd\x00\x00\x00\xc1\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xc2\x00\x00\x00\xbf\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\xc4\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\xc5\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\xc8\x00\x00\x00\xc5\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xc9\x00\x00\x00\xc8\x00\x00\x00\xca\x00\x00\x00\xc9\x00\x00\x00\xc2\x00\x00\x00\xc0\x00\x00\x00\xc9\x00\x00\x00\xc0\x00\x00\x00\xc5\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xcc\x00\x00\x00\xcb\x00\x00\x00\xc4\x00\x00\x00\xc2\x00\x00\x00\xcb\x00\x00\x00\xc2\x00\x00\x00\xc9\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xce\x00\x00\x00\xcd\x00\x00\x00\xcf\x00\x00\x00\xc4\x00\x00\x00\xcd\x00\x00\x00\xc4\x00\x00\x00\xcb\x00\x00\x00\xcd\x00\x00\x00\xce\x00\x00\x00\xd0\x00\x00\x00\xd0\x00\x00\x00\xce\x00\x00\x00\xd1\x00\x00\x00\xd0\x00\x00\x00\xd2\x00\x00\x00\xcf\x00\x00\x00\xd0\x00\x00\x00\xcf\x00\x00\x00\xcd\x00\x00\x00\xd0\x00\x00\x00\xd1\x00\x00\x00\xd3\x00\x00\x00\xd3\x00\x00\x00\xd1\x00\x00\x00\xd4\x00\x00\x00\xd3\x00\x00\x00\xd5\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xd2\x00\x00\x00\xd0\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\xd6\x00\x00\x00\xd6\x00\x00\x00\xd4\x00\x00\x00\xd7\x00\x00\x00\xd8\x00\x00\x00\xc8\x00\x00\x00\xc6\x00\x00\x00\xd9\x00\x00\x00\xc8\x00\x00\x00\xd8\x00\x00\x00\xd9\x00\x00\x00\xca\x00\x00\x00\xc8\x00\x00\x00\xda\x00\x00\x00\xca\x00\x00\x00\xd9\x00\x00\x00\xda\x00\x00\x00\xcc\x00\x00\x00\xca\x00\x00\x00\xdb\x00\x00\x00\xcc\x00\x00\x00\xda\x00\x00\x00\xde\x00\x00\x00\xdd\x00\x00\x00\xdc\x00\x00\x00\xdb\x00\x00\x00\xde\x00\x00\x00\xdc\x00\x00\x00\xce\x00\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\xcc\x00\x00\x00\xdb\x00\x00\x00\xce\x00\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\xdf\x00\x00\x00\xdf\x00\x00\x00\xdd\x00\x00\x00\xe0\x00\x00\x00\xdf\x00\x00\x00\xd1\x00\x00\x00\xce\x00\x00\x00\xdf\x00\x00\x00\xce\x00\x00\x00\xdc\x00\x00\x00\xdf\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x00\xe2\x00\x00\x00\xe1\x00\x00\x00\xd4\x00\x00\x00\xd1\x00\x00\x00\xe1\x00\x00\x00\xd1\x00\x00\x00\xdf\x00\x00\x00\xe1\x00\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\xe4\x00\x00\x00\xe3\x00\x00\x00\xd7\x00\x00\x00\xd4\x00\x00\x00\xe3\x00\x00\x00\xd4\x00\x00\x00\xe1\x00\x00\x00\xe7\x00\x00\x00\xe6\x00\x00\x00\xe5\x00\x00\x00\xe6\x00\x00\x00\xe8\x00\x00\x00\xe5\x00\x00\x00\xe6\x00\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\xe5\x00\x00\x00\xd8\x00\x00\x00\xe7\x00\x00\x00\xe5\x00\x00\x00\xe8\x00\x00\x00\xea\x00\x00\x00\xea\x00\x00\x00\xe8\x00\x00\x00\xeb\x00\x00\x00\xea\x00\x00\x00\xd9\x00\x00\x00\xd8\x00\x00\x00\xea\x00\x00\x00\xd8\x00\x00\x00\xe5\x00\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00\xec\x00\x00\x00\xeb\x00\x00\x00\xed\x00\x00\x00\xec\x00\x00\x00\xda\x00\x00\x00\xd9\x00\x00\x00\xec\x00\x00\x00\xd9\x00\x00\x00\xea\x00\x00\x00\xec\x00\x00\x00\xed\x00\x00\x00\xee\x00\x00\x00\xee\x00\x00\x00\xed\x00\x00\x00\xef\x00\x00\x00\xee\x00\x00\x00\xdb\x00\x00\x00\xda\x00\x00\x00\xee\x00\x00\x00\xda\x00\x00\x00\xec\x00\x00\x00\xee\x00\x00\x00\xef\x00\x00\x00\xde\x00\x00\x00\xef\x00\x00\x00\xdd\x00\x00\x00\xde\x00\x00\x00\xef\x00\x00\x00\xf0\x00\x00\x00\xdd\x00\x00\x00\xee\x00\x00\x00\xde\x00\x00\x00\xdb\x00\x00\x00\xf0\x00\x00\x00\xe0\x00\x00\x00\xdd\x00\x00\x00\xf1\x00\x00\x00\xe0\x00\x00\x00\xf0\x00\x00\x00\xf1\x00\x00\x00\xe2\x00\x00\x00\xe0\x00\x00\x00\xf2\x00\x00\x00\xe2\x00\x00\x00\xf1\x00\x00\x00\xf2\x00\x00\x00\xe4\x00\x00\x00\xe2\x00\x00\x00\xf3\x00\x00\x00\xe4\x00\x00\x00\xf2\x00\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\xe4\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xf3\x00\x00\x00\xf5\x00\x00\x00\xf6\x00\x00\x00\xf4\x00\x00\x00\xf7\x00\x00\x00\xf6\x00\x00\x00\xf5\x00\x00\x00\xfa\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xf8\x00\x00\x00\xf9\x00\x00\x00\xfb\x00\x00\x00\xf8\x00\x00\x00\xfb\x00\x00\x00\xfc\x00\x00\x00\xfc\x00\x00\x00\xfb\x00\x00\x00\xfd\x00\x00\x00\xfc\x00\x00\x00\xe9\x00\x00\x00\xfe\x00\x00\x00\xfc\x00\x00\x00\xfe\x00\x00\x00\xf8\x00\x00\x00\xfc\x00\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfd\x00\x00\x00\x00\x01\x00\x00\xff\x00\x00\x00\xe8\x00\x00\x00\xe9\x00\x00\x00\xff\x00\x00\x00\xe9\x00\x00\x00\xfc\x00\x00\x00\xff\x00\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\x01\x01\x00\x00\x00\x01\x00\x00\x02\x01\x00\x00\x01\x01\x00\x00\xeb\x00\x00\x00\xe8\x00\x00\x00\x01\x01\x00\x00\xe8\x00\x00\x00\xff\x00\x00\x00\x01\x01\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\x03\x01\x00\x00\x02\x01\x00\x00\x04\x01\x00\x00\x03\x01\x00\x00\xed\x00\x00\x00\xeb\x00\x00\x00\x03\x01\x00\x00\xeb\x00\x00\x00\x01\x01\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\x05\x01\x00\x00\x04\x01\x00\x00\x06\x01\x00\x00\x05\x01\x00\x00\xef\x00\x00\x00\xed\x00\x00\x00\x05\x01\x00\x00\xed\x00\x00\x00\x03\x01\x00\x00\x05\x01\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\x07\x01\x00\x00\x06\x01\x00\x00\x08\x01\x00\x00\x07\x01\x00\x00\xf0\x00\x00\x00\xef\x00\x00\x00\x07\x01\x00\x00\xef\x00\x00\x00\x05\x01\x00\x00\x07\x01\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\t\x01\x00\x00\x08\x01\x00\x00\n\x01\x00\x00\t\x01\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\t\x01\x00\x00\xf0\x00\x00\x00\x07\x01\x00\x00\t\x01\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x00\x0c\x01\x00\x00\x0b\x01\x00\x00\xf2\x00\x00\x00\xf1\x00\x00\x00\x0b\x01\x00\x00\xf1\x00\x00\x00\t\x01\x00\x00\x0b\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x00\r\x01\x00\x00\x0c\x01\x00\x00\x0e\x01\x00\x00\r\x01\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\r\x01\x00\x00\xf2\x00\x00\x00\x0b\x01\x00\x00\r\x01\x00\x00\x0e\x01\x00\x00\x0f\x01\x00\x00\x0f\x01\x00\x00\x0e\x01\x00\x00\x10\x01\x00\x00\x0f\x01\x00\x00\xf5\x00\x00\x00\xf3\x00\x00\x00\x0f\x01\x00\x00\xf3\x00\x00\x00\r\x01\x00\x00\x0f\x01\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\x12\x01\x00\x00\x11\x01\x00\x00\xf7\x00\x00\x00\xf5\x00\x00\x00\x11\x01\x00\x00\xf5\x00\x00\x00\x0f\x01\x00\x00\x11\x01\x00\x00\x12\x01\x00\x00\x13\x01\x00\x00\x13\x01\x00\x00\x12\x01\x00\x00\x14\x01\x00\x00\x13\x01\x00\x00\x15\x01\x00\x00\xf7\x00\x00\x00\x13\x01\x00\x00\xf7\x00\x00\x00\x11\x01\x00\x00\x13\x01\x00\x00\x14\x01\x00\x00\x16\x01\x00\x00\x16\x01\x00\x00\x14\x01\x00\x00\x17\x01\x00\x00\x1a\x01\x00\x00\x19\x01\x00\x00\x18\x01\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00\x1b\x01\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x00\x1c\x01\x00\x00\x1d\x01\x00\x00\x1f\x01\x00\x00\x1c\x01\x00\x00\x1f\x01\x00\x00 \x01\x00\x00 \x01\x00\x00\x1f\x01\x00\x00!\x01\x00\x00 \x01\x00\x00\xfb\x00\x00\x00\xf9\x00\x00\x00 \x01\x00\x00\xf9\x00\x00\x00\x1c\x01\x00\x00 \x01\x00\x00!\x01\x00\x00"\x01\x00\x00"\x01\x00\x00!\x01\x00\x00#\x01\x00\x00"\x01\x00\x00\xfd\x00\x00\x00\xfb\x00\x00\x00"\x01\x00\x00\xfb\x00\x00\x00 \x01\x00\x00"\x01\x00\x00#\x01\x00\x00$\x01\x00\x00$\x01\x00\x00#\x01\x00\x00%\x01\x00\x00$\x01\x00\x00\x00\x01\x00\x00\xfd\x00\x00\x00$\x01\x00\x00\xfd\x00\x00\x00"\x01\x00\x00$\x01\x00\x00%\x01\x00\x00&\x01\x00\x00&\x01\x00\x00%\x01\x00\x00\'\x01\x00\x00&\x01\x00\x00\x02\x01\x00\x00\x00\x01\x00\x00&\x01\x00\x00\x00\x01\x00\x00$\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00(\x01\x00\x00(\x01\x00\x00\'\x01\x00\x00)\x01\x00\x00(\x01\x00\x00\x04\x01\x00\x00\x02\x01\x00\x00(\x01\x00\x00\x02\x01\x00\x00&\x01\x00\x00(\x01\x00\x00)\x01\x00\x00*\x01\x00\x00*\x01\x00\x00)\x01\x00\x00+\x01\x00\x00*\x01\x00\x00\x06\x01\x00\x00\x04\x01\x00\x00*\x01\x00\x00\x04\x01\x00\x00(\x01\x00\x00*\x01\x00\x00+\x01\x00\x00,\x01\x00\x00,\x01\x00\x00+\x01\x00\x00-\x01\x00\x00,\x01\x00\x00\x08\x01\x00\x00\x06\x01\x00\x00,\x01\x00\x00\x06\x01\x00\x00*\x01\x00\x00,\x01\x00\x00-\x01\x00\x00.\x01\x00\x00.\x01\x00\x00-\x01\x00\x00/\x01\x00\x00.\x01\x00\x00\n\x01\x00\x00\x08\x01\x00\x00.\x01\x00\x00\x08\x01\x00\x00,\x01\x00\x00.\x01\x00\x00/\x01\x00\x000\x01\x00\x000\x01\x00\x00/\x01\x00\x001\x01\x00\x000\x01\x00\x00\x0c\x01\x00\x00\n\x01\x00\x000\x01\x00\x00\n\x01\x00\x00.\x01\x00\x000\x01\x00\x001\x01\x00\x002\x01\x00\x002\x01\x00\x001\x01\x00\x003\x01\x00\x002\x01\x00\x00\x0e\x01\x00\x00\x0c\x01\x00\x002\x01\x00\x00\x0c\x01\x00\x000\x01\x00\x002\x01\x00\x003\x01\x00\x004\x01\x00\x004\x01\x00\x003\x01\x00\x005\x01\x00\x004\x01\x00\x00\x10\x01\x00\x00\x0e\x01\x00\x004\x01\x00\x00\x0e\x01\x00\x002\x01\x00\x004\x01\x00\x005\x01\x00\x006\x01\x00\x006\x01\x00\x005\x01\x00\x007\x01\x00\x006\x01\x00\x00\x12\x01\x00\x00\x10\x01\x00\x006\x01\x00\x00\x10\x01\x00\x004\x01\x00\x006\x01\x00\x007\x01\x00\x008\x01\x00\x008\x01\x00\x007\x01\x00\x009\x01\x00\x008\x01\x00\x00\x14\x01\x00\x00\x12\x01\x00\x008\x01\x00\x00\x12\x01\x00\x006\x01\x00\x008\x01\x00\x009\x01\x00\x00:\x01\x00\x00:\x01\x00\x009\x01\x00\x00;\x01\x00\x00:\x01\x00\x00\x17\x01\x00\x00\x14\x01\x00\x00:\x01\x00\x00\x14\x01\x00\x008\x01\x00\x00:\x01\x00\x00;\x01\x00\x00<\x01\x00\x00<\x01\x00\x00;\x01\x00\x00=\x01\x00\x00<\x01\x00\x00>\x01\x00\x00\x17\x01\x00\x00<\x01\x00\x00\x17\x01\x00\x00:\x01\x00\x00<\x01\x00\x00=\x01\x00\x00?\x01\x00\x00?\x01\x00\x00=\x01\x00\x00@\x01\x00\x00\x03\x00\x01\x00\xbc\'\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00A\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x02\x00\x00\x80\x00\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x8c\x0f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x05\x00rock2 g\xe8\x8aA\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x00 A\xc7\xb1\x18D\x0c\xc3\x1aC\x0b\xf5\x8dA\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x00 A\xe5\xd1\x18D\xcf\xf3\x02C\x00\x00 A\xe8\x93\x18DI\x922C\xec\xc7\x90A\xf3\x9a\x1aDI\x922C\x00\x00\xf0A\xef\x94\x1dDI\x922C\x00\x00\xf0A`\x9f\x1dD\x0c\xc3\x1aC\x00\x00 A\xcd|\x18D\x86aJC"\xe8\x92A\xf3\x9a\x1aD\x86aJC\x00\x00\xf0A\xb5\x8c\x1dD\x86aJC\x00\x00 A,o\x18D\xc30bC\xec\x18\x94A\xf3\x9a\x1aD\xc30bC\x00\x00\xf0Ah\x88\x1dD\xc30bC\x00\x00 A\xb2h\x18D\x00\x00zC\x85\x9a\x94A\xf3\x9a\x1aD\x00\x00zC\x00\x00\xf0A\x12\x87\x1dD\x00\x00zC\x00\x00 A*f\x18D\x9e\xe7\x88C\xa6\xc7\x94A\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x00\xf0A\xaa\x86\x1dD\x9e\xe7\x88C\x00\x00 AVe\x18D=\xcf\x94C\x05\xe0\x94A\xf3\x9a\x1aD=\xcf\x94C\x00\x00\xf0A\x95\x85\x1dD=\xcf\x94C\x00\x00 A\xf0d\x18D\xdb\xb6\xa0Cf\x05\x95A\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x00\xf0A\x05\x83\x1dD\xdb\xb6\xa0C\x00\x00 A\x7fd\x18Dz\x9e\xacC\x0bA\x95A\xf3\x9a\x1aDz\x9e\xacC\x00\x00\xf0A\xe5~\x1dDz\x9e\xacC\x00\x00 A,d\x18D\x18\x86\xb8CC\x89\x95A\xf3\x9a\x1aD\x18\x86\xb8C\x00\x00\xf0A\xady\x1dD\x18\x86\xb8C\x00\x00 A\x95d\x18D\xb7m\xc4C\xb5\xc5\x95A\xf3\x9a\x1aD\xb7m\xc4C\x00\x00\xf0ADt\x1dD\xb7m\xc4C\x00\x00 A\x8ef\x18DUU\xd0C`\xd7\x95A\xf3\x9a\x1aDUU\xd0C\x00\x00\xf0A\xbeo\x1dDUU\xd0C\x00\x00 A\xb5j\x18D\xf4<\xdcC\xb8\xa4\x95A\xf3\x9a\x1aD\xf4<\xdcC\x00\x00\xf0A\x11m\x1dD\xf4<\xdcC\x00\x00 A\xaep\x18D\x92$\xe8Ce1\x95A\xf3\x9a\x1aD\x92$\xe8C\x00\x00\xf0A\x85l\x1dD\x92$\xe8C\x00\x00 A\xfbu\x18D1\x0c\xf4C\xeb\xbd\x94A\xf3\x9a\x1aD1\x0c\xf4C\x00\x00\xf0A\x1fm\x1dD1\x0c\xf4C\x00\x00 A\xfbu\x18D\xcf\xf3\xffC\xeb\xbd\x94A\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x00\xf0A\x1fm\x1dD\xcf\xf3\xffC\x00\x00 A\xaep\x18D\xb7\xed\x05De1\x95A\xf3\x9a\x1aD\xb7\xed\x05D\x00\x00\xf0A\x85l\x1dD\xb7\xed\x05D\x00\x00 A\xb5j\x18D\x86\xe1\x0bD\xb8\xa4\x95A\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x00\xf0A\x11m\x1dD\x86\xe1\x0bD\x00\x00 A\x8ef\x18DU\xd5\x11D`\xd7\x95A\xf3\x9a\x1aDU\xd5\x11D\x17P1B(/!D\x0c\xc3\x1aC8\r1B(/!DI\x922C\x00\x00HBJ\x9e"DI\x922C\x00\x00HB\\\x94"D\x0c\xc3\x1aC\xc6\xe10B(/!D\x86aJC\x00\x00HBy\xa5"D\x86aJC8\xb90B(/!D\xc30bC\x00\x00HB\x01\xab"D\xc30bC\x8f\x970B(/!D\x00\x00zC\x00\x00HB\xc7\xae"D\x00\x00zC\xe5\x8c0B(/!D\x9e\xe7\x88C\x00\x00HB\x11\xb0"D\x9e\xe7\x88C\x0f\xa70B(/!D=\xcf\x94C\x00\x00HBC\xae"D=\xcf\x94Ck\xeb0B(/!D\xdb\xb6\xa0C\x00\x00HB<\xa9"D\xdb\xb6\xa0C\xbcV1B(/!Dz\x9e\xacC\x00\x00HBY\xa1"Dz\x9e\xacC \xde1B(/!D\x18\x86\xb8C\x00\x00HBj\x97"D\x18\x86\xb8C\xd5q2B(/!D\xb7m\xc4C\x00\x00HB\x86\x8c"D\xb7m\xc4CK\xff2B(/!DUU\xd0C\x00\x00HB\xe6\x81"DUU\xd0C\xd1t3B(/!D\xf4<\xdcC\x00\x00HB\xb7x"D\xf4<\xdcC\x18\xc63B(/!D\x92$\xe8C\x00\x00HB\xefq"D\x92$\xe8Cp\xee3B(/!D1\x0c\xf4C\x00\x00HBHn"D1\x0c\xf4Cp\xee3B(/!D\xcf\xf3\xffC\x00\x00HBHn"D\xcf\xf3\xffC\x18\xc63B(/!D\xb7\xed\x05D\x00\x00HB\xefq"D\xb7\xed\x05D\xd1t3B(/!D\x86\xe1\x0bD\x00\x00HB\xb7x"D\x86\xe1\x0bD\x00\x00\x8cB\xa3\x9b\'DI\x922C\x00\x00\x8cBh\xb2\'D\x86aJC\x00\x00\x8cB\x96\xc2\'D\xc30bC\x00\x00\x8cB^\xc3\'D\x15\x0cdC5\xb7\x8bB^\xc3\'D\x00\x00zC\x00\x00\x8cB\x87\xcc\'D\x00\x00zC\xf5\x96\x8bB^\xc3\'D\x9e\xe7\x88C\x00\x00\x8cB\xa0\xd0\'D\x9e\xe7\x88C\xe2\xa1\x8bB^\xc3\'D=\xcf\x94C\x00\x00\x8cBC\xcf\'D=\xcf\x94C\x02\xd3\x8bB^\xc3\'D\xdb\xb6\xa0C\x00\x00\x8cB\r\xc9\'D\xdb\xb6\xa0C\x00\x00\x8cB\xe7\xbe\'Dz\x9e\xacC\x00\x00\x8cB^\xc3\'D;h\xa7C\x00\x00\x8cB\xf4\xb1\'D\x18\x86\xb8C\x00\x00\x8cB\x98\xa3\'D\xb7m\xc4C\x00\x00\x8cB5\x95\'DUU\xd0C\x00\x00\x8cB\r\x88\'D\xf4<\xdcC\x00\x00\x8cB`}\'D\x92$\xe8C\x00\x00\x8cB\xe0v\'D1\x0c\xf4C\x00\x00\x8cB\xe0v\'D\xcf\xf3\xffC\x00\x00\x8cB`}\'D\xb7\xed\x05D\x00\x00\x8cB\r\x88\'D\x86\xe1\x0bD\xe2@\x8dB^\xc3\'DI\x922CN\x87\x8cB^\xc3\'D\x86aJC.\x06\x8cB^\xc3\'D\xc30bC\x00\x00\xb4B?\xb8,D\xc30bC\x00\x00\xb4B\xc4\x9c,D\x86aJC\x00\x00\xb4B\xfc\xc9,D\x00\x00zC\x00\x00\xb4B\xf0\xd2,D\x9e\xe7\x88C\x00\x00\xb4B6\xd4,D=\xcf\x94C\x00\x00\xb4B#\xcf,D\xdb\xb6\xa0C\x03#\x8cB^\xc3\'Dz\x9e\xacC\x00\x00\xb4B4\xc5,Dz\x9e\xacC\xa0\x88\x8cB^\xc3\'D\x18\x86\xb8C\x00\x00\xb4B\x0c\xb8,D\x18\x86\xb8C\x85\xf9\x8cB^\xc3\'D\xb7m\xc4C\x00\x00\xb4B]\xa9,D\xb7m\xc4C\xc5j\x8dB^\xc3\'DUU\xd0C\x00\x00\xb4B\xd1\x9a,DUU\xd0CC\xd2\x8dB^\xc3\'D\xf4<\xdcC\x00\x00\xb4B\xdd\x8d,D\xf4<\xdcC"&\x8eB^\xc3\'D\x92$\xe8C\x00\x00\xb4B\xa7\x83,D\x92$\xe8C\x0eY\x8eB^\xc3\'D1\x0c\xf4C\x00\x00\xb4B\xff|,D1\x0c\xf4C\x0eY\x8eB^\xc3\'D\xcf\xf3\xffC\x00\x00\xb4B\xff|,D\xcf\xf3\xffC"&\x8eB^\xc3\'D\xb7\xed\x05D\x00\x00\xb4B\xa7\x83,D\xb7\xed\x05DC\xd2\x8dB^\xc3\'D\x86\xe1\x0bD\xa2Z\xc1B\x94W.D\xc30bC\xe3\xb0\xc0B\x94W.D\x00\x00zC\x9cW\xc0B\x94W.D\x9e\xe7\x88C\x00\x00\xdcB\x00\xab1D\x9e\xe7\x88C\x00\x00\xdcBZ\x9b1D\x00\x00zCHB\xc0B\x94W.D=\xcf\x94C\x00\x00\xdcB@\xb11D=\xcf\x94C\xd8c\xc0B\x94W.D\xdb\xb6\xa0C\x00\x00\xdcB\xec\xaf1D\xdb\xb6\xa0Cm\xae\xc0B\x94W.Dz\x9e\xacC\x00\x00\xdcB\xfc\xa81Dz\x9e\xacC\x82\x13\xc1B\x94W.D\x18\x86\xb8C\x00\x00\xdcBx\x9e1D\x18\x86\xb8C>\x84\xc1B\x94W.D\xb7m\xc4C\x00\x00\xdcBn\x921D\xb7m\xc4C>\xf2\xc1B\x94W.DUU\xd0C\x00\x00\xdcB\xda\x861DUU\xd0C\xb2P\xc2B\x94W.D\xf4<\xdcC\x00\x00\xdcB\x84}1D\xf4<\xdcC\xc1\x95\xc2B\x94W.D\x92$\xe8C\x00\x00\xdcB\xcbw1D\x92$\xe8C\xb2\xbb\xc2B\x94W.D1\x0c\xf4C\x00\x00\xdcB=v1D1\x0c\xf4C\xb2\xbb\xc2B\x94W.D\xcf\xf3\xffC\x00\x00\xdcB=v1D\xcf\xf3\xffC\xc1\x95\xc2B\x94W.D\xb7\xed\x05D\x00\x00\xdcB\xcbw1D\xb7\xed\x05D\xbe^\xf7B\xca\xeb4D\xdb\xb6\xa0C\xc4|\xf7B\xca\xeb4Dz\x9e\xacC\x8c\xbb\xf7B\xca\xeb4D\x18\x86\xb8C\x00\x00\x02C\x02Y6D\x18\x86\xb8C\x00\x00\x02C\xd7^6Dz\x9e\xacC!\x08\xf8B\xca\xeb4D\xb7m\xc4C\x00\x00\x02CbQ6D\xb7m\xc4C\xfcP\xf8B\xca\xeb4DUU\xd0C\x00\x00\x02C\rJ6DUU\xd0C\x9e\x87\xf8B\xca\xeb4D\xf4<\xdcC\x00\x00\x02C\xb7D6D\xf4<\xdcC\xb7\xa3\xf8B\xca\xeb4D\x92$\xe8C\x00\x00\x02CMB6D\x92$\xe8C\x00\xa9\xf8B\xca\xeb4D1\x0c\xf4C\x00\x00\x02C6B6D1\x0c\xf4C\x00\xa9\xf8B\xca\xeb4D\xcf\xf3\xffC\x00\x00\x16C\xd2\xd5:DUU\xd0C\x00\x00\x16C\x88\xd3:D\xf4<\xdcC\x00\x00\x16C\xac\xd2:D\x92$\xe8C\\\x11[D\xca\xeb4D=\xcf\x94C\x00\x80^D\x00\xab1D\x9e\xe7\x88C\x88\x05[D\xca\xeb4D\x9e\xe7\x88C\x00\x80^D@\xb11D=\xcf\x94C(\x14[D\xca\xeb4D\xdb\xb6\xa0C\x00\x80^D\xec\xaf1D\xdb\xb6\xa0C\x0c\xf5aD\x94W.D\x9e\xe7\x88C\x00\x80cD\xfc\xc9,D\x00\x00zC\xe4\xe9aD\x94W.D\x00\x00zC\x00\x80cD\xf0\xd2,D\x9e\xe7\x88C\xb7\xf7aD\x94W.D=\xcf\x94C\x00\x80cD6\xd4,D=\xcf\x94C\x85\xf3aD\x94W.D\xdb\xb6\xa0C\x00\x80cD#\xcf,D\xdb\xb6\xa0C2\xeaaD\x94W.Dz\x9e\xacC\x00\x80cD4\xc5,Dz\x9e\xacC\x00\x80^D\xfc\xa81Dz\x9e\xacC\x90\xddaD\x94W.D\x18\x86\xb8C\x00\x80cD\x0c\xb8,D\x18\x86\xb8C\x00\x80^Dx\x9e1D\x18\x86\xb8Cx\xcfaD\x94W.D\xb7m\xc4C\x00\x80cD]\xa9,D\xb7m\xc4C\x00\x80^Dn\x921D\xb7m\xc4C\xb8\xc1aD\x94W.DUU\xd0C\x00\x80cD\xd1\x9a,DUU\xd0C\x00\x80hD\x87\xcc\'D\x00\x00zC\x00\x80hD\xa0\xd0\'D\x9e\xe7\x88C\x00\x80hDC\xcf\'D=\xcf\x94C\x00\x80hD\r\xc9\'D\xdb\xb6\xa0C\xa0{hD^\xc3\'Dz\x9e\xacC\x00\x80hD\xe7\xbe\'Dz\x9e\xacC\x00\x80hD^\xc3\'D;h\xa7C\xecnhD^\xc3\'D\x18\x86\xb8C\x00\x80hD\xf4\xb1\'D\x18\x86\xb8C\xcf`hD^\xc3\'D\xb7m\xc4C\x00\x80hD\x98\xa3\'D\xb7m\xc4C\xa7RhD^\xc3\'DUU\xd0C\x00\x80hD5\x95\'DUU\xd0C\x19\x89hD^\xc3\'D\x00\x00zC\x00\x80hD\x96\xc2\'D\xc30bC\x00\x80hD^\xc3\'D\x15\x0cdC\x00\x80mD\xc7\xae"D\x00\x00zC\x00\x80mD\x01\xab"D\xc30bC!\x8dhD^\xc3\'D\x9e\xe7\x88C\x00\x80mD\x11\xb0"D\x9e\xe7\x88C\xc3\x8bhD^\xc3\'D=\xcf\x94C\x00\x80mDC\xae"D=\xcf\x94C\xa0\x85hD^\xc3\'D\xdb\xb6\xa0C\x00\x80mD<\xa9"D\xdb\xb6\xa0C\x00\x80mDY\xa1"Dz\x9e\xacC\x00\x80mDj\x97"D\x18\x86\xb8C\x00\x80mD\x86\x8c"D\xb7m\xc4C\x00\x80mD\xe6\x81"DUU\xd0C\x00\x80hD\r\x88\'D\xf4<\xdcC\x00\x80mD\xb7x"D\xf4<\xdcC\x00\x80hD`}\'D\x92$\xe8C\x00\x80mD\xefq"D\x92$\xe8C\xe4\xf1nD(/!D\x86aJC\x00\x80rD\xf0\x94\x1dDI\x922C.\xefnD(/!DI\x922C\x00\x80rD\xb5\x8c\x1dD\x86aJCl\xf4nD(/!D\xc30bC\x00\x80rDh\x88\x1dD\xc30bC\x00\x80mD{\xa5"D\x86aJC\x87\xf6nD(/!D\x00\x00zC\x00\x80rD\x13\x87\x1dD\x00\x00zC2\xf7nD(/!D\x9e\xe7\x88C\x00\x80rD\xaa\x86\x1dD\x9e\xe7\x88C\x8f\xf5nD(/!D=\xcf\x94C\x00\x80rD\x95\x85\x1dD=\xcf\x94CJ\xf1nD(/!D\xdb\xb6\xa0C\x00\x80rD\x05\x83\x1dD\xdb\xb6\xa0C\x94\xeanD(/!Dz\x9e\xacC\x00\x80rD\xe5~\x1dDz\x9e\xacC\x1e\xe2nD(/!D\x18\x86\xb8C\x00\x80rD\xady\x1dD\x18\x86\xb8C\xe3\xd8nD(/!D\xb7m\xc4C\x00\x80rDDt\x1dD\xb7m\xc4C\x0c\xd0nD(/!DUU\xd0C\x00\x80rD\xbeo\x1dDUU\xd0C\xb4\xc8nD(/!D\xf4<\xdcC\x00\x80rD\x11m\x1dD\xf4<\xdcC\x9e\xc3nD(/!D\x92$\xe8C\x00\x80rD\x85l\x1dD\x92$\xe8C\x19\xc1nD(/!D1\x0c\xf4C\x00\x80rD\x1fm\x1dD1\x0c\xf4C\x00\x80mDHn"D1\x0c\xf4C\x19\xc1nD(/!D\xcf\xf3\xffC\x00\x80rD\x1fm\x1dD\xcf\xf3\xffC\xbe\xa8uD\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x80wD\x98\xf0\x18D%I\xd6B\x91\xbfuD\xf3\x9a\x1aD%I\xd6B\x00\x80wD\xe6\xd1\x18D\xcf\xf3\x02C\xc2yuD\xf3\x9a\x1aDI\x922C\x00\x80wD\xc8\xb1\x18D\x0c\xc3\x1aCW\x90uD\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x80wD\xe9\x93\x18DI\x922C\xbfhuD\xf3\x9a\x1aD\x86aJC\x00\x80wD\xcd|\x18D\x86aJC8_uD\xf3\x9a\x1aD\xc30bC\x00\x80wD,o\x18D\xc30bC,[uD\xf3\x9a\x1aD\x00\x00zC\x00\x80wD\xb2h\x18D\x00\x00zC\xc3YuD\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x80wD*f\x18D\x9e\xe7\x88C\x00YuD\xf3\x9a\x1aD=\xcf\x94C\x00\x80wDVe\x18D=\xcf\x94C\xd5WuD\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x80wD\xf0d\x18D\xdb\xb6\xa0C\xf8UuD\xf3\x9a\x1aDz\x9e\xacC\x00\x80wD\x7fd\x18Dz\x9e\xacC\xb6SuD\xf3\x9a\x1aD\x18\x86\xb8C\x00\x80wD,d\x18D\x18\x86\xb8C\xd2QuD\xf3\x9a\x1aD\xb7m\xc4C\x00\x80wD\x95d\x18D\xb7m\xc4CEQuD\xf3\x9a\x1aDUU\xd0C\x00\x80wD\x8ef\x18DUU\xd0C\xdaRuD\xf3\x9a\x1aD\xf4<\xdcC\x00\x80wD\xb5j\x18D\xf4<\xdcCtVuD\xf3\x9a\x1aD\x92$\xe8C\x00\x80wD\xaep\x18D\x92$\xe8C\x10ZuD\xf3\x9a\x1aD1\x0c\xf4C\x00\x80wD\xfbu\x18D1\x0c\xf4C\x10ZuD\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x80wD\xfbu\x18D\xcf\xf3\xffCtVuD\xf3\x9a\x1aD\xb7\xed\x05D\x00\x80wD\xaep\x18D\xb7\xed\x05D\x00\x80rD\x85l\x1dD\xb7\xed\x05D\xdaRuD\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x80wD\xb5j\x18D\x86\xe1\x0bD\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\t\x00\x00\x00\x05\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x08\x00\x00\x00\x05\x00\x00\x00\n\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\x0c\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\r\x00\x00\x00\n\x00\x00\x00\t\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x0f\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x10\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x12\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x13\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x16\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x18\x00\x00\x00\x15\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x19\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\x1b\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\x17\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\x1c\x00\x00\x00\x19\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00\x1e\x00\x00\x00\x1b\x00\x00\x00\x1d\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x1d\x00\x00\x00\x1b\x00\x00\x00\x1f\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00!\x00\x00\x00\x1e\x00\x00\x00 \x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00 \x00\x00\x00\x1e\x00\x00\x00"\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00!\x00\x00\x00"\x00\x00\x00$\x00\x00\x00!\x00\x00\x00#\x00\x00\x00!\x00\x00\x00 \x00\x00\x00#\x00\x00\x00!\x00\x00\x00%\x00\x00\x00"\x00\x00\x00!\x00\x00\x00$\x00\x00\x00%\x00\x00\x00\'\x00\x00\x00$\x00\x00\x00&\x00\x00\x00$\x00\x00\x00#\x00\x00\x00&\x00\x00\x00$\x00\x00\x00(\x00\x00\x00%\x00\x00\x00$\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00*\x00\x00\x00\'\x00\x00\x00)\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00)\x00\x00\x00\'\x00\x00\x00+\x00\x00\x00(\x00\x00\x00\'\x00\x00\x00*\x00\x00\x00+\x00\x00\x00-\x00\x00\x00*\x00\x00\x00,\x00\x00\x00*\x00\x00\x00)\x00\x00\x00,\x00\x00\x00*\x00\x00\x00.\x00\x00\x00+\x00\x00\x00*\x00\x00\x00-\x00\x00\x00.\x00\x00\x000\x00\x00\x00-\x00\x00\x00/\x00\x00\x00-\x00\x00\x00,\x00\x00\x00/\x00\x00\x00-\x00\x00\x001\x00\x00\x00.\x00\x00\x00-\x00\x00\x000\x00\x00\x001\x00\x00\x003\x00\x00\x000\x00\x00\x002\x00\x00\x000\x00\x00\x00/\x00\x00\x002\x00\x00\x000\x00\x00\x004\x00\x00\x001\x00\x00\x000\x00\x00\x003\x00\x00\x004\x00\x00\x006\x00\x00\x003\x00\x00\x005\x00\x00\x003\x00\x00\x002\x00\x00\x005\x00\x00\x003\x00\x00\x007\x00\x00\x004\x00\x00\x003\x00\x00\x006\x00\x00\x007\x00\x00\x009\x00\x00\x006\x00\x00\x008\x00\x00\x006\x00\x00\x005\x00\x00\x008\x00\x00\x00;\x00\x00\x00:\x00\x00\x00\x06\x00\x00\x00:\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00:\x00\x00\x00<\x00\x00\x00=\x00\x00\x00:\x00\x00\x00;\x00\x00\x00<\x00\x00\x00>\x00\x00\x00;\x00\x00\x00\n\x00\x00\x00;\x00\x00\x00\x06\x00\x00\x00\n\x00\x00\x00;\x00\x00\x00?\x00\x00\x00<\x00\x00\x00;\x00\x00\x00>\x00\x00\x00?\x00\x00\x00@\x00\x00\x00>\x00\x00\x00\r\x00\x00\x00>\x00\x00\x00\n\x00\x00\x00\r\x00\x00\x00>\x00\x00\x00A\x00\x00\x00?\x00\x00\x00>\x00\x00\x00@\x00\x00\x00A\x00\x00\x00B\x00\x00\x00@\x00\x00\x00\x10\x00\x00\x00@\x00\x00\x00\r\x00\x00\x00\x10\x00\x00\x00@\x00\x00\x00C\x00\x00\x00A\x00\x00\x00@\x00\x00\x00B\x00\x00\x00C\x00\x00\x00D\x00\x00\x00B\x00\x00\x00\x13\x00\x00\x00B\x00\x00\x00\x10\x00\x00\x00\x13\x00\x00\x00B\x00\x00\x00E\x00\x00\x00C\x00\x00\x00B\x00\x00\x00D\x00\x00\x00E\x00\x00\x00F\x00\x00\x00D\x00\x00\x00\x16\x00\x00\x00D\x00\x00\x00\x13\x00\x00\x00\x16\x00\x00\x00D\x00\x00\x00G\x00\x00\x00E\x00\x00\x00D\x00\x00\x00F\x00\x00\x00G\x00\x00\x00H\x00\x00\x00F\x00\x00\x00\x19\x00\x00\x00F\x00\x00\x00\x16\x00\x00\x00\x19\x00\x00\x00F\x00\x00\x00I\x00\x00\x00G\x00\x00\x00F\x00\x00\x00H\x00\x00\x00I\x00\x00\x00J\x00\x00\x00H\x00\x00\x00\x1c\x00\x00\x00H\x00\x00\x00\x19\x00\x00\x00\x1c\x00\x00\x00H\x00\x00\x00K\x00\x00\x00I\x00\x00\x00H\x00\x00\x00J\x00\x00\x00K\x00\x00\x00L\x00\x00\x00J\x00\x00\x00\x1f\x00\x00\x00J\x00\x00\x00\x1c\x00\x00\x00\x1f\x00\x00\x00J\x00\x00\x00M\x00\x00\x00K\x00\x00\x00J\x00\x00\x00L\x00\x00\x00M\x00\x00\x00N\x00\x00\x00L\x00\x00\x00"\x00\x00\x00L\x00\x00\x00\x1f\x00\x00\x00"\x00\x00\x00L\x00\x00\x00O\x00\x00\x00M\x00\x00\x00L\x00\x00\x00N\x00\x00\x00O\x00\x00\x00P\x00\x00\x00N\x00\x00\x00%\x00\x00\x00N\x00\x00\x00"\x00\x00\x00%\x00\x00\x00N\x00\x00\x00Q\x00\x00\x00O\x00\x00\x00N\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00P\x00\x00\x00(\x00\x00\x00P\x00\x00\x00%\x00\x00\x00(\x00\x00\x00P\x00\x00\x00S\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00R\x00\x00\x00S\x00\x00\x00T\x00\x00\x00R\x00\x00\x00+\x00\x00\x00R\x00\x00\x00(\x00\x00\x00+\x00\x00\x00R\x00\x00\x00U\x00\x00\x00S\x00\x00\x00R\x00\x00\x00T\x00\x00\x00U\x00\x00\x00V\x00\x00\x00T\x00\x00\x00.\x00\x00\x00T\x00\x00\x00+\x00\x00\x00.\x00\x00\x00T\x00\x00\x00W\x00\x00\x00U\x00\x00\x00T\x00\x00\x00V\x00\x00\x00W\x00\x00\x00X\x00\x00\x00V\x00\x00\x001\x00\x00\x00V\x00\x00\x00.\x00\x00\x001\x00\x00\x00V\x00\x00\x00Y\x00\x00\x00W\x00\x00\x00V\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00Z\x00\x00\x00X\x00\x00\x004\x00\x00\x00X\x00\x00\x001\x00\x00\x004\x00\x00\x00X\x00\x00\x00[\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00\\\x00\x00\x00Z\x00\x00\x007\x00\x00\x00Z\x00\x00\x004\x00\x00\x007\x00\x00\x00Z\x00\x00\x00]\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00\\\x00\x00\x00]\x00\x00\x00^\x00\x00\x00<\x00\x00\x00?\x00\x00\x00_\x00\x00\x00^\x00\x00\x00?\x00\x00\x00_\x00\x00\x00?\x00\x00\x00A\x00\x00\x00`\x00\x00\x00_\x00\x00\x00A\x00\x00\x00b\x00\x00\x00a\x00\x00\x00C\x00\x00\x00C\x00\x00\x00a\x00\x00\x00`\x00\x00\x00C\x00\x00\x00`\x00\x00\x00A\x00\x00\x00c\x00\x00\x00a\x00\x00\x00b\x00\x00\x00d\x00\x00\x00b\x00\x00\x00E\x00\x00\x00b\x00\x00\x00C\x00\x00\x00E\x00\x00\x00b\x00\x00\x00e\x00\x00\x00c\x00\x00\x00b\x00\x00\x00d\x00\x00\x00e\x00\x00\x00f\x00\x00\x00d\x00\x00\x00G\x00\x00\x00d\x00\x00\x00E\x00\x00\x00G\x00\x00\x00d\x00\x00\x00g\x00\x00\x00e\x00\x00\x00d\x00\x00\x00f\x00\x00\x00g\x00\x00\x00h\x00\x00\x00f\x00\x00\x00I\x00\x00\x00f\x00\x00\x00G\x00\x00\x00I\x00\x00\x00f\x00\x00\x00i\x00\x00\x00g\x00\x00\x00f\x00\x00\x00h\x00\x00\x00i\x00\x00\x00k\x00\x00\x00h\x00\x00\x00j\x00\x00\x00j\x00\x00\x00h\x00\x00\x00I\x00\x00\x00j\x00\x00\x00I\x00\x00\x00K\x00\x00\x00k\x00\x00\x00i\x00\x00\x00h\x00\x00\x00j\x00\x00\x00K\x00\x00\x00M\x00\x00\x00l\x00\x00\x00j\x00\x00\x00M\x00\x00\x00l\x00\x00\x00M\x00\x00\x00O\x00\x00\x00m\x00\x00\x00l\x00\x00\x00O\x00\x00\x00m\x00\x00\x00O\x00\x00\x00Q\x00\x00\x00n\x00\x00\x00m\x00\x00\x00Q\x00\x00\x00n\x00\x00\x00Q\x00\x00\x00S\x00\x00\x00o\x00\x00\x00n\x00\x00\x00S\x00\x00\x00o\x00\x00\x00S\x00\x00\x00U\x00\x00\x00p\x00\x00\x00o\x00\x00\x00U\x00\x00\x00p\x00\x00\x00U\x00\x00\x00W\x00\x00\x00q\x00\x00\x00p\x00\x00\x00W\x00\x00\x00q\x00\x00\x00W\x00\x00\x00Y\x00\x00\x00r\x00\x00\x00q\x00\x00\x00Y\x00\x00\x00r\x00\x00\x00Y\x00\x00\x00[\x00\x00\x00s\x00\x00\x00r\x00\x00\x00[\x00\x00\x00s\x00\x00\x00[\x00\x00\x00]\x00\x00\x00t\x00\x00\x00s\x00\x00\x00]\x00\x00\x00v\x00\x00\x00u\x00\x00\x00_\x00\x00\x00u\x00\x00\x00^\x00\x00\x00_\x00\x00\x00w\x00\x00\x00v\x00\x00\x00`\x00\x00\x00v\x00\x00\x00_\x00\x00\x00`\x00\x00\x00v\x00\x00\x00x\x00\x00\x00y\x00\x00\x00v\x00\x00\x00w\x00\x00\x00x\x00\x00\x00w\x00\x00\x00`\x00\x00\x00a\x00\x00\x00c\x00\x00\x00w\x00\x00\x00a\x00\x00\x00x\x00\x00\x00w\x00\x00\x00c\x00\x00\x00z\x00\x00\x00x\x00\x00\x00c\x00\x00\x00z\x00\x00\x00c\x00\x00\x00e\x00\x00\x00{\x00\x00\x00z\x00\x00\x00e\x00\x00\x00{\x00\x00\x00e\x00\x00\x00g\x00\x00\x00|\x00\x00\x00{\x00\x00\x00g\x00\x00\x00|\x00\x00\x00g\x00\x00\x00i\x00\x00\x00}\x00\x00\x00|\x00\x00\x00i\x00\x00\x00~\x00\x00\x00k\x00\x00\x00j\x00\x00\x00\x7f\x00\x00\x00k\x00\x00\x00~\x00\x00\x00i\x00\x00\x00k\x00\x00\x00\x7f\x00\x00\x00}\x00\x00\x00i\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00~\x00\x00\x00l\x00\x00\x00~\x00\x00\x00j\x00\x00\x00l\x00\x00\x00~\x00\x00\x00\x81\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\x82\x00\x00\x00\x80\x00\x00\x00m\x00\x00\x00\x80\x00\x00\x00l\x00\x00\x00m\x00\x00\x00\x80\x00\x00\x00\x83\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\x82\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00\x82\x00\x00\x00n\x00\x00\x00\x82\x00\x00\x00m\x00\x00\x00n\x00\x00\x00\x82\x00\x00\x00\x85\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\x84\x00\x00\x00o\x00\x00\x00\x84\x00\x00\x00n\x00\x00\x00o\x00\x00\x00\x84\x00\x00\x00\x87\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x88\x00\x00\x00\x86\x00\x00\x00p\x00\x00\x00\x86\x00\x00\x00o\x00\x00\x00p\x00\x00\x00\x86\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00\x8a\x00\x00\x00\x88\x00\x00\x00q\x00\x00\x00\x88\x00\x00\x00p\x00\x00\x00q\x00\x00\x00\x88\x00\x00\x00\x8b\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x8c\x00\x00\x00\x8a\x00\x00\x00r\x00\x00\x00\x8a\x00\x00\x00q\x00\x00\x00r\x00\x00\x00\x8a\x00\x00\x00\x8d\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x8e\x00\x00\x00\x8c\x00\x00\x00s\x00\x00\x00\x8c\x00\x00\x00r\x00\x00\x00s\x00\x00\x00\x8c\x00\x00\x00\x8f\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x90\x00\x00\x00\x8e\x00\x00\x00t\x00\x00\x00\x8e\x00\x00\x00s\x00\x00\x00t\x00\x00\x00\x92\x00\x00\x00\x91\x00\x00\x00z\x00\x00\x00\x91\x00\x00\x00x\x00\x00\x00z\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00{\x00\x00\x00\x92\x00\x00\x00z\x00\x00\x00{\x00\x00\x00\x92\x00\x00\x00\x94\x00\x00\x00\x95\x00\x00\x00\x92\x00\x00\x00\x93\x00\x00\x00\x94\x00\x00\x00\x96\x00\x00\x00\x93\x00\x00\x00|\x00\x00\x00\x93\x00\x00\x00{\x00\x00\x00|\x00\x00\x00\x93\x00\x00\x00\x97\x00\x00\x00\x94\x00\x00\x00\x93\x00\x00\x00\x96\x00\x00\x00\x97\x00\x00\x00\x98\x00\x00\x00\x96\x00\x00\x00}\x00\x00\x00\x96\x00\x00\x00|\x00\x00\x00}\x00\x00\x00\x96\x00\x00\x00\x99\x00\x00\x00\x97\x00\x00\x00\x96\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00\x9a\x00\x00\x00\x98\x00\x00\x00\x7f\x00\x00\x00\x98\x00\x00\x00}\x00\x00\x00\x7f\x00\x00\x00\x98\x00\x00\x00\x9b\x00\x00\x00\x99\x00\x00\x00\x98\x00\x00\x00\x9a\x00\x00\x00\x9b\x00\x00\x00\x9c\x00\x00\x00\x9a\x00\x00\x00\x81\x00\x00\x00\x9a\x00\x00\x00\x7f\x00\x00\x00\x81\x00\x00\x00\x9a\x00\x00\x00\x9d\x00\x00\x00\x9b\x00\x00\x00\x9a\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00\x9e\x00\x00\x00\x9c\x00\x00\x00\x83\x00\x00\x00\x9c\x00\x00\x00\x81\x00\x00\x00\x83\x00\x00\x00\x9c\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00\x9e\x00\x00\x00\x85\x00\x00\x00\x9e\x00\x00\x00\x83\x00\x00\x00\x85\x00\x00\x00\x9e\x00\x00\x00\xa1\x00\x00\x00\x9f\x00\x00\x00\x9e\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\xa0\x00\x00\x00\x87\x00\x00\x00\xa0\x00\x00\x00\x85\x00\x00\x00\x87\x00\x00\x00\xa0\x00\x00\x00\xa3\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00\xa2\x00\x00\x00\x89\x00\x00\x00\xa2\x00\x00\x00\x87\x00\x00\x00\x89\x00\x00\x00\xa2\x00\x00\x00\xa5\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa6\x00\x00\x00\xa4\x00\x00\x00\x8b\x00\x00\x00\xa4\x00\x00\x00\x89\x00\x00\x00\x8b\x00\x00\x00\xa4\x00\x00\x00\xa7\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xa8\x00\x00\x00\xa6\x00\x00\x00\x8d\x00\x00\x00\xa6\x00\x00\x00\x8b\x00\x00\x00\x8d\x00\x00\x00\xa6\x00\x00\x00\xa9\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xaa\x00\x00\x00\xa8\x00\x00\x00\x8f\x00\x00\x00\xa8\x00\x00\x00\x8d\x00\x00\x00\x8f\x00\x00\x00\xa8\x00\x00\x00\xab\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\x9b\x00\x00\x00\xac\x00\x00\x00\x99\x00\x00\x00\x9b\x00\x00\x00\xae\x00\x00\x00\xad\x00\x00\x00\x9d\x00\x00\x00\xad\x00\x00\x00\x9b\x00\x00\x00\x9d\x00\x00\x00\xad\x00\x00\x00\xaf\x00\x00\x00\xb0\x00\x00\x00\xad\x00\x00\x00\xae\x00\x00\x00\xaf\x00\x00\x00\xb1\x00\x00\x00\xae\x00\x00\x00\x9f\x00\x00\x00\xae\x00\x00\x00\x9d\x00\x00\x00\x9f\x00\x00\x00\xae\x00\x00\x00\xb2\x00\x00\x00\xaf\x00\x00\x00\xae\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xb1\x00\x00\x00\xa1\x00\x00\x00\xb1\x00\x00\x00\x9f\x00\x00\x00\xa1\x00\x00\x00\xb1\x00\x00\x00\xb4\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xb3\x00\x00\x00\xa3\x00\x00\x00\xb3\x00\x00\x00\xa1\x00\x00\x00\xa3\x00\x00\x00\xb3\x00\x00\x00\xb6\x00\x00\x00\xb4\x00\x00\x00\xb3\x00\x00\x00\xb5\x00\x00\x00\xb6\x00\x00\x00\xb7\x00\x00\x00\xb5\x00\x00\x00\xa5\x00\x00\x00\xb5\x00\x00\x00\xa3\x00\x00\x00\xa5\x00\x00\x00\xb5\x00\x00\x00\xb8\x00\x00\x00\xb6\x00\x00\x00\xb5\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\xb7\x00\x00\x00\xa7\x00\x00\x00\xb7\x00\x00\x00\xa5\x00\x00\x00\xa7\x00\x00\x00\xb7\x00\x00\x00\xba\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\xb9\x00\x00\x00\xa9\x00\x00\x00\xb9\x00\x00\x00\xa7\x00\x00\x00\xa9\x00\x00\x00\xbc\x00\x00\x00\xb4\x00\x00\x00\xb6\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xb6\x00\x00\x00\xbd\x00\x00\x00\xb6\x00\x00\x00\xb8\x00\x00\x00\xbe\x00\x00\x00\xbd\x00\x00\x00\xb8\x00\x00\x00\xc1\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xc2\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xc4\x00\x00\x00\xc2\x00\x00\x00\xc7\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\xc5\x00\x00\x00\xc8\x00\x00\x00\xc6\x00\x00\x00\xc5\x00\x00\x00\xc9\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xc0\x00\x00\x00\xc2\x00\x00\x00\xc9\x00\x00\x00\xc5\x00\x00\x00\xc0\x00\x00\x00\xc9\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xc2\x00\x00\x00\xc4\x00\x00\x00\xcb\x00\x00\x00\xc9\x00\x00\x00\xc2\x00\x00\x00\xcb\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xce\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xc4\x00\x00\x00\xcf\x00\x00\x00\xcd\x00\x00\x00\xcb\x00\x00\x00\xc4\x00\x00\x00\xcd\x00\x00\x00\xd0\x00\x00\x00\xce\x00\x00\x00\xd0\x00\x00\x00\xd1\x00\x00\x00\xce\x00\x00\x00\xd0\x00\x00\x00\xcf\x00\x00\x00\xd2\x00\x00\x00\xd0\x00\x00\x00\xcd\x00\x00\x00\xcf\x00\x00\x00\xd0\x00\x00\x00\xd3\x00\x00\x00\xd1\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\xd1\x00\x00\x00\xd3\x00\x00\x00\xd2\x00\x00\x00\xd5\x00\x00\x00\xd3\x00\x00\x00\xd0\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xd6\x00\x00\x00\xd4\x00\x00\x00\xd6\x00\x00\x00\xd7\x00\x00\x00\xd4\x00\x00\x00\xd8\x00\x00\x00\xc6\x00\x00\x00\xc8\x00\x00\x00\xd9\x00\x00\x00\xd8\x00\x00\x00\xc8\x00\x00\x00\xd9\x00\x00\x00\xc8\x00\x00\x00\xca\x00\x00\x00\xda\x00\x00\x00\xd9\x00\x00\x00\xca\x00\x00\x00\xda\x00\x00\x00\xca\x00\x00\x00\xcc\x00\x00\x00\xdb\x00\x00\x00\xda\x00\x00\x00\xcc\x00\x00\x00\xde\x00\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\xde\x00\x00\x00\xce\x00\x00\x00\xdc\x00\x00\x00\xdb\x00\x00\x00\xcc\x00\x00\x00\xce\x00\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\xdf\x00\x00\x00\xdd\x00\x00\x00\xdf\x00\x00\x00\xe0\x00\x00\x00\xdd\x00\x00\x00\xdf\x00\x00\x00\xce\x00\x00\x00\xd1\x00\x00\x00\xdf\x00\x00\x00\xdc\x00\x00\x00\xce\x00\x00\x00\xdf\x00\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xe2\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xd1\x00\x00\x00\xd4\x00\x00\x00\xe1\x00\x00\x00\xdf\x00\x00\x00\xd1\x00\x00\x00\xe1\x00\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\xe4\x00\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\xd4\x00\x00\x00\xd7\x00\x00\x00\xe3\x00\x00\x00\xe1\x00\x00\x00\xd4\x00\x00\x00\xe7\x00\x00\x00\xe5\x00\x00\x00\xe6\x00\x00\x00\xe6\x00\x00\x00\xe5\x00\x00\x00\xe8\x00\x00\x00\xe6\x00\x00\x00\xe8\x00\x00\x00\xe9\x00\x00\x00\xe5\x00\x00\x00\xe7\x00\x00\x00\xd8\x00\x00\x00\xe5\x00\x00\x00\xea\x00\x00\x00\xe8\x00\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\xe8\x00\x00\x00\xea\x00\x00\x00\xd8\x00\x00\x00\xd9\x00\x00\x00\xea\x00\x00\x00\xe5\x00\x00\x00\xd8\x00\x00\x00\xea\x00\x00\x00\xec\x00\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00\xed\x00\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00\xd9\x00\x00\x00\xda\x00\x00\x00\xec\x00\x00\x00\xea\x00\x00\x00\xd9\x00\x00\x00\xec\x00\x00\x00\xee\x00\x00\x00\xed\x00\x00\x00\xee\x00\x00\x00\xef\x00\x00\x00\xed\x00\x00\x00\xee\x00\x00\x00\xda\x00\x00\x00\xdb\x00\x00\x00\xee\x00\x00\x00\xec\x00\x00\x00\xda\x00\x00\x00\xee\x00\x00\x00\xde\x00\x00\x00\xef\x00\x00\x00\xef\x00\x00\x00\xde\x00\x00\x00\xdd\x00\x00\x00\xef\x00\x00\x00\xdd\x00\x00\x00\xf0\x00\x00\x00\xee\x00\x00\x00\xdb\x00\x00\x00\xde\x00\x00\x00\xf0\x00\x00\x00\xdd\x00\x00\x00\xe0\x00\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\xe0\x00\x00\x00\xf1\x00\x00\x00\xe0\x00\x00\x00\xe2\x00\x00\x00\xf2\x00\x00\x00\xf1\x00\x00\x00\xe2\x00\x00\x00\xf2\x00\x00\x00\xe2\x00\x00\x00\xe4\x00\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\xe4\x00\x00\x00\xf3\x00\x00\x00\xe4\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xf6\x00\x00\x00\xf7\x00\x00\x00\xf5\x00\x00\x00\xf6\x00\x00\x00\xfa\x00\x00\x00\xf8\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xfb\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xfc\x00\x00\x00\xfb\x00\x00\x00\xfc\x00\x00\x00\xfd\x00\x00\x00\xfb\x00\x00\x00\xfc\x00\x00\x00\xfe\x00\x00\x00\xe9\x00\x00\x00\xfc\x00\x00\x00\xf8\x00\x00\x00\xfe\x00\x00\x00\xfc\x00\x00\x00\xff\x00\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00\x00\x01\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\xff\x00\x00\x00\xfc\x00\x00\x00\xe9\x00\x00\x00\xff\x00\x00\x00\x01\x01\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\x02\x01\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\xe8\x00\x00\x00\xeb\x00\x00\x00\x01\x01\x00\x00\xff\x00\x00\x00\xe8\x00\x00\x00\x01\x01\x00\x00\x03\x01\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\xeb\x00\x00\x00\xed\x00\x00\x00\x03\x01\x00\x00\x01\x01\x00\x00\xeb\x00\x00\x00\x03\x01\x00\x00\x05\x01\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\x06\x01\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\xed\x00\x00\x00\xef\x00\x00\x00\x05\x01\x00\x00\x03\x01\x00\x00\xed\x00\x00\x00\x05\x01\x00\x00\x07\x01\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\x08\x01\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\xef\x00\x00\x00\xf0\x00\x00\x00\x07\x01\x00\x00\x05\x01\x00\x00\xef\x00\x00\x00\x07\x01\x00\x00\t\x01\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\n\x01\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\xf0\x00\x00\x00\xf1\x00\x00\x00\t\x01\x00\x00\x07\x01\x00\x00\xf0\x00\x00\x00\t\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\x0c\x01\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\xf1\x00\x00\x00\xf2\x00\x00\x00\x0b\x01\x00\x00\t\x01\x00\x00\xf1\x00\x00\x00\x0b\x01\x00\x00\r\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x00\x0e\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x00\xf2\x00\x00\x00\xf3\x00\x00\x00\r\x01\x00\x00\x0b\x01\x00\x00\xf2\x00\x00\x00\r\x01\x00\x00\x0f\x01\x00\x00\x0e\x01\x00\x00\x0f\x01\x00\x00\x10\x01\x00\x00\x0e\x01\x00\x00\x0f\x01\x00\x00\xf3\x00\x00\x00\xf5\x00\x00\x00\x0f\x01\x00\x00\r\x01\x00\x00\xf3\x00\x00\x00\x0f\x01\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\x12\x01\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\xf5\x00\x00\x00\xf7\x00\x00\x00\x11\x01\x00\x00\x0f\x01\x00\x00\xf5\x00\x00\x00\x11\x01\x00\x00\x13\x01\x00\x00\x12\x01\x00\x00\x13\x01\x00\x00\x14\x01\x00\x00\x12\x01\x00\x00\x13\x01\x00\x00\xf7\x00\x00\x00\x15\x01\x00\x00\x13\x01\x00\x00\x11\x01\x00\x00\xf7\x00\x00\x00\x13\x01\x00\x00\x16\x01\x00\x00\x14\x01\x00\x00\x16\x01\x00\x00\x17\x01\x00\x00\x14\x01\x00\x00\x1a\x01\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00\x18\x01\x00\x00\x1b\x01\x00\x00\x19\x01\x00\x00\x1e\x01\x00\x00\x1c\x01\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x00\x1f\x01\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x00 \x01\x00\x00\x1f\x01\x00\x00 \x01\x00\x00!\x01\x00\x00\x1f\x01\x00\x00 \x01\x00\x00\xf9\x00\x00\x00\xfb\x00\x00\x00 \x01\x00\x00\x1c\x01\x00\x00\xf9\x00\x00\x00 \x01\x00\x00"\x01\x00\x00!\x01\x00\x00"\x01\x00\x00#\x01\x00\x00!\x01\x00\x00"\x01\x00\x00\xfb\x00\x00\x00\xfd\x00\x00\x00"\x01\x00\x00 \x01\x00\x00\xfb\x00\x00\x00"\x01\x00\x00$\x01\x00\x00#\x01\x00\x00$\x01\x00\x00%\x01\x00\x00#\x01\x00\x00$\x01\x00\x00\xfd\x00\x00\x00\x00\x01\x00\x00$\x01\x00\x00"\x01\x00\x00\xfd\x00\x00\x00$\x01\x00\x00&\x01\x00\x00%\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00%\x01\x00\x00&\x01\x00\x00\x00\x01\x00\x00\x02\x01\x00\x00&\x01\x00\x00$\x01\x00\x00\x00\x01\x00\x00&\x01\x00\x00(\x01\x00\x00\'\x01\x00\x00(\x01\x00\x00)\x01\x00\x00\'\x01\x00\x00(\x01\x00\x00\x02\x01\x00\x00\x04\x01\x00\x00(\x01\x00\x00&\x01\x00\x00\x02\x01\x00\x00(\x01\x00\x00*\x01\x00\x00)\x01\x00\x00*\x01\x00\x00+\x01\x00\x00)\x01\x00\x00*\x01\x00\x00\x04\x01\x00\x00\x06\x01\x00\x00*\x01\x00\x00(\x01\x00\x00\x04\x01\x00\x00*\x01\x00\x00,\x01\x00\x00+\x01\x00\x00,\x01\x00\x00-\x01\x00\x00+\x01\x00\x00,\x01\x00\x00\x06\x01\x00\x00\x08\x01\x00\x00,\x01\x00\x00*\x01\x00\x00\x06\x01\x00\x00,\x01\x00\x00.\x01\x00\x00-\x01\x00\x00.\x01\x00\x00/\x01\x00\x00-\x01\x00\x00.\x01\x00\x00\x08\x01\x00\x00\n\x01\x00\x00.\x01\x00\x00,\x01\x00\x00\x08\x01\x00\x00.\x01\x00\x000\x01\x00\x00/\x01\x00\x000\x01\x00\x001\x01\x00\x00/\x01\x00\x000\x01\x00\x00\n\x01\x00\x00\x0c\x01\x00\x000\x01\x00\x00.\x01\x00\x00\n\x01\x00\x000\x01\x00\x002\x01\x00\x001\x01\x00\x002\x01\x00\x003\x01\x00\x001\x01\x00\x002\x01\x00\x00\x0c\x01\x00\x00\x0e\x01\x00\x002\x01\x00\x000\x01\x00\x00\x0c\x01\x00\x002\x01\x00\x004\x01\x00\x003\x01\x00\x004\x01\x00\x005\x01\x00\x003\x01\x00\x004\x01\x00\x00\x0e\x01\x00\x00\x10\x01\x00\x004\x01\x00\x002\x01\x00\x00\x0e\x01\x00\x004\x01\x00\x006\x01\x00\x005\x01\x00\x006\x01\x00\x007\x01\x00\x005\x01\x00\x006\x01\x00\x00\x10\x01\x00\x00\x12\x01\x00\x006\x01\x00\x004\x01\x00\x00\x10\x01\x00\x006\x01\x00\x008\x01\x00\x007\x01\x00\x008\x01\x00\x009\x01\x00\x007\x01\x00\x008\x01\x00\x00\x12\x01\x00\x00\x14\x01\x00\x008\x01\x00\x006\x01\x00\x00\x12\x01\x00\x008\x01\x00\x00:\x01\x00\x009\x01\x00\x00:\x01\x00\x00;\x01\x00\x009\x01\x00\x00:\x01\x00\x00\x14\x01\x00\x00\x17\x01\x00\x00:\x01\x00\x008\x01\x00\x00\x14\x01\x00\x00:\x01\x00\x00<\x01\x00\x00;\x01\x00\x00<\x01\x00\x00=\x01\x00\x00;\x01\x00\x00<\x01\x00\x00\x17\x01\x00\x00>\x01\x00\x00<\x01\x00\x00:\x01\x00\x00\x17\x01\x00\x00<\x01\x00\x00?\x01\x00\x00=\x01\x00\x00?\x01\x00\x00@\x01\x00\x00=\x01\x00\x00\x03\x00\x01\x00p\x88\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00.\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00&\x07\x00\x00\x80\x00\x00\x00\xa82\x00\x00\xa82\x00\x00\xa82\x00\x00\xa82\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00rock1 \x00\x00 A\xbfY\xccC\xe8y>A\x00\x00 A\x9e|\xccCn\xdb\x0eB\x00\x00\xf0A"\xb5\xd4C\xe8y>A\x00\x00\xf0A#\r\xd5Cn\xdb\x0eB\x00\x00 A\xa8\x94\xccCb\x18nB\x00\x00\xf0A\x00W\xd5Cb\x18nB\x00\x00 Ai\xa3\xccC\xab\xaa\xa6B\x00\x00\xf0A\xed\x93\xd5C\xab\xaa\xa6B\x00\x00 A\xc6\xaa\xccC%I\xd6B\x00\x00\xf0A\x88\xc5\xd5C%I\xd6B\x00\x00 A\xde\xac\xccC\xcf\xf3\x02C\x00\x00\xf0A\xc1\xed\xd5C\xcf\xf3\x02C\x00\x00 A\xf9\xab\xccC\x0c\xc3\x1aC\x00\x00\xf0A\xc7\x0e\xd6C\x0c\xc3\x1aC\x00\x00 AW\xaa\xccCI\x922C\x00\x00\xf0A\xd2*\xd6CI\x922C\x00\x00 A\x00\xaa\xccC\x86aJC\x00\x00\xf0A\xd1C\xd6C\x86aJC\x00\x00 A:\xac\xccC\xc30bC\x00\x00\xf0A\xfdZ\xd6C\xc30bC\x00\x00 A\xf1\xb0\xccC\x00\x00zC\x00\x00\xf0A\x97p\xd6C\x00\x00zC\x00\x00 A{\xb7\xccC\x9e\xe7\x88C\x00\x00\xf0AF\x84\xd6C\x9e\xe7\x88C\x00\x00 A\x08\xbf\xccC=\xcf\x94C\x00\x00\xf0Aw\x95\xd6C=\xcf\x94C\x00\x00 A\xbd\xc6\xccC\xdb\xb6\xa0C\x00\x00\xf0A\xaa\xa3\xd6C\xdb\xb6\xa0C\x00\x00 A\xdc\xcd\xccCz\x9e\xacC\x00\x00\xf0A\x95\xae\xd6Cz\x9e\xacC\x00\x00 A\xd8\xd3\xccC\x18\x86\xb8C\x00\x00\xf0AG\xb6\xd6C\x18\x86\xb8C\x00\x00 AU\xd8\xccC\xb7m\xc4C\x00\x00\xf0A\x17\xbb\xd6C\xb7m\xc4C\x00\x00 A,\xdb\xccCUU\xd0C\x00\x00\xf0A\xa3\xbd\xd6CUU\xd0C\x00\x00 Ak\xdc\xccC\xf4<\xdcC\x00\x00\xf0A\xab\xbe\xd6C\xf4<\xdcC\x00\x00 AQ\xdc\xccC\x92$\xe8C\x00\x00\xf0A\xdf\xbe\xd6C\x92$\xe8C\x00\x00 A\x9f\xdb\xccC1\x0c\xf4C\x00\x00\xf0A\xc5\xbe\xd6C1\x0c\xf4C\x00\x00 A\x9f\xdb\xccC\xcf\xf3\xffC\x00\x00\xf0A\xc5\xbe\xd6C\xcf\xf3\xffC\x00\x00 AQ\xdc\xccC\xb7\xed\x05D\x00\x00\xf0A\xdf\xbe\xd6C\xb7\xed\x05D\x00\x00 Ak\xdc\xccC\x86\xe1\x0bD\x00\x00\xf0A\xab\xbe\xd6C\x86\xe1\x0bD\x00\x00 A,\xdb\xccCU\xd5\x11D\x00\x00\xf0A\xa3\xbd\xd6CU\xd5\x11D\x00\x00 AU\xd8\xccC%\xc9\x17D\x00\x00\xf0A\x17\xbb\xd6C%\xc9\x17D\x00\x00 A\xd8\xd3\xccC\xf4\xbc\x1dD\x00\x00\xf0AG\xb6\xd6C\xf4\xbc\x1dD\x00\x00 A\xdc\xcd\xccC\xc3\xb0#D\x00\x00\xf0A\x95\xae\xd6C\xc3\xb0#D\x00\x00 A\xbd\xc6\xccC\x92\xa4)D\x00\x00\xf0A\xaa\xa3\xd6C\x92\xa4)D\x00\x00 A\x08\xbf\xccCb\x98/D\x00\x00\xf0Aw\x95\xd6Cb\x98/D\x00\x00 A{\xb7\xccC1\x8c5D\x00\x00\xf0AF\x84\xd6C1\x8c5D\x00\x00 A\xf1\xb0\xccC\x00\x80;D\x00\x00\xf0A\x97p\xd6C\x00\x80;D\x00\x00 A:\xac\xccC\xcfsAD\x00\x00\xf0A\xfdZ\xd6C\xcfsAD\x00\x00 A\x00\xaa\xccC\x9egGD\x00\x00\xf0A\xd1C\xd6C\x9egGD\x00\x00 AW\xaa\xccCn[MD\x00\x00\xf0A\xd2*\xd6Cn[MD\x00\x00 A\xf9\xab\xccC=OSD\x00\x00\xf0A\xc7\x0e\xd6C=OSD\x00\x00 A\xde\xac\xccC\x0cCYD\x00\x00\xf0A\xc1\xed\xd5C\x0cCYD\x00\x00 A\xc6\xaa\xccC\xdb6_D\x00\x00\xf0A\x88\xc5\xd5C\xdb6_D\x00\x00 Ai\xa3\xccC\xab*eD\x00\x00\xf0A\xed\x93\xd5C\xab*eD\x00\x00 A\xa8\x94\xccCz\x1ekD\x00\x00\xf0A\x00W\xd5Cz\x1ekD\x00\x00 A\x9e|\xccCI\x12qD\x00\x00\xf0A#\r\xd5CI\x12qD\x00\x00 A\xbfY\xccC\x18\x06wD\x00\x00\xf0A"\xb5\xd4C\x18\x06wDv\x11!B\xf3\x1a\xd9C\xe8y>A\xdb\xea\x1cB\xf3\x1a\xd9Cn\xdb\x0eB\x00\x00HB\x04\xdc\xddCn\xdb\x0eB\x00\x00HB\xe1J\xddC\xe8y>AZ\x81\x19B\xf3\x1a\xd9Cb\x18nB\x00\x00HB\xd4[\xdeCb\x18nB\xc0\xbb\x16B\xf3\x1a\xd9C\xab\xaa\xa6B\x00\x00HB\x01\xcb\xdeC\xab\xaa\xa6B-\x80\x14B\xf3\x1a\xd9C%I\xd6B\x00\x00HB\xa7*\xdfC%I\xd6B\xdc\xb4\x12B\xf3\x1a\xd9C\xcf\xf3\x02C\x00\x00HBM|\xdfC\xcf\xf3\x02Cs@\x11B\xf3\x1a\xd9C\x0c\xc3\x1aC\x00\x00HB\xcd\xc1\xdfC\x0c\xc3\x1aC\x8b\x0b\x10B\xf3\x1a\xd9CI\x922C\x00\x00HB\x17\xfd\xdfCI\x922C\xc6\x02\x0fB\xf3\x1a\xd9C\x86aJC\x00\x00HB\xeb/\xe0C\x86aJCv\x19\x0eB\xf3\x1a\xd9C\xc30bC\x00\x00HBw[\xe0C\xc30bC\xb4J\rB\xf3\x1a\xd9C\x00\x00zC\x00\x00HB?\x80\xe0C\x00\x00zC\xd2\x96\x0cB\xf3\x1a\xd9C\x9e\xe7\x88C\x00\x00HBE\x9e\xe0C\x9e\xe7\x88C\x04\x00\x0cB\xf3\x1a\xd9C=\xcf\x94C\x00\x00HBn\xb5\xe0C=\xcf\x94C[\x88\x0bB\xf3\x1a\xd9C\xdb\xb6\xa0C\x00\x00HB\xbc\xc5\xe0C\xdb\xb6\xa0C,0\x0bB\xf3\x1a\xd9Cz\x9e\xacC\x00\x00HB\x8c\xcf\xe0Cz\x9e\xacC4\xf5\nB\xf3\x1a\xd9C\x18\x86\xb8C\x00\x00HB\xad\xd3\xe0C\x18\x86\xb8C\xdc\xd2\nB\xf3\x1a\xd9C\xb7m\xc4C\x00\x00HBg\xd3\xe0C\xb7m\xc4CT\xc2\nB\xf3\x1a\xd9CUU\xd0C\x00\x00HBh\xd0\xe0CUU\xd0C\x03\xbc\nB\xf3\x1a\xd9C\xf4<\xdcC\x00\x00HB\x92\xcc\xe0C\xf4<\xdcC\xda\xb9\nB\xf3\x1a\xd9C\x92$\xe8C\x00\x00HB\x95\xc9\xe0C\x92$\xe8C\x1a\xb9\nB\xf3\x1a\xd9C1\x0c\xf4C\x00\x00HB*\xc8\xe0C1\x0c\xf4C\x1a\xb9\nB\xf3\x1a\xd9C\xcf\xf3\xffC\x00\x00HB*\xc8\xe0C\xcf\xf3\xffC\xda\xb9\nB\xf3\x1a\xd9C\xb7\xed\x05D\x00\x00HB\x95\xc9\xe0C\xb7\xed\x05D\x03\xbc\nB\xf3\x1a\xd9C\x86\xe1\x0bD\x00\x00HB\x92\xcc\xe0C\x86\xe1\x0bDT\xc2\nB\xf3\x1a\xd9CU\xd5\x11D\x00\x00HBh\xd0\xe0CU\xd5\x11D\xdc\xd2\nB\xf3\x1a\xd9C%\xc9\x17D\x00\x00HBg\xd3\xe0C%\xc9\x17D4\xf5\nB\xf3\x1a\xd9C\xf4\xbc\x1dD\x00\x00HB\xad\xd3\xe0C\xf4\xbc\x1dD,0\x0bB\xf3\x1a\xd9C\xc3\xb0#D\x00\x00HB\x8c\xcf\xe0C\xc3\xb0#D[\x88\x0bB\xf3\x1a\xd9C\x92\xa4)D\x00\x00HB\xbc\xc5\xe0C\x92\xa4)D\x04\x00\x0cB\xf3\x1a\xd9Cb\x98/D\x00\x00HBn\xb5\xe0Cb\x98/D\xd2\x96\x0cB\xf3\x1a\xd9C1\x8c5D\x00\x00HBE\x9e\xe0C1\x8c5D\xb4J\rB\xf3\x1a\xd9C\x00\x80;D\x00\x00HB?\x80\xe0C\x00\x80;Dv\x19\x0eB\xf3\x1a\xd9C\xcfsAD\x00\x00HBw[\xe0C\xcfsAD\xc6\x02\x0fB\xf3\x1a\xd9C\x9egGD\x8b\x0b\x10B\xf3\x1a\xd9Cn[MD\xc0\xbb\x16B\xf3\x1a\xd9C\xab*eDZ\x81\x19B\xf3\x1a\xd9Cz\x1ekD\xdb\xea\x1cB\xf3\x1a\xd9CI\x12qDv\x11!B\xf3\x1a\xd9C\x18\x06wD\x00\x00\x8cB^C\xe6C&\xc3\x8fAeW\x89B^C\xe6Cn\xdb\x0eB\x00\x00\x8cB_\x0e\xe6C\xe8y>A\x00\x00\x8cB\xe3\xdc\xe6Cn\xdb\x0eBIE\x86B^C\xe6Cb\x18nB\x00\x00\x8cB\xa1\x96\xe7Cb\x18nB\x85\xab\x83B^C\xe6C\xab\xaa\xa6B\x00\x00\x8cB\x1a<\xe8C\xab\xaa\xa6B\x91|\x81B^C\xe6C%I\xd6B\x00\x00\x8cB\xb7\xcd\xe8C%I\xd6B_U\x7fB^C\xe6C\xcf\xf3\x02C\x00\x00\x8cBKL\xe9C\xcf\xf3\x02C\xe2P|B^C\xe6C\x0c\xc3\x1aC\x00\x00\x8cB\x00\xb9\xe9C\x0c\xc3\x1aCf\xd2yB^C\xe6CI\x922C\x00\x00\x8cB?\x15\xeaCI\x922C0\xc4wB^C\xe6C\x86aJC\x00\x00\x8cBgb\xeaC\x86aJC\x08\x16vB^C\xe6C\xc30bC\x00\x00\x8cB\x97\xa1\xeaC\xc30bCy\xbdtB^C\xe6C\x00\x00zC\x00\x00\x8cB\x8b\xd3\xeaC\x00\x00zC\x7f\xb4sB^C\xe6C\x9e\xe7\x88C\x00\x00\x8cB\xc6\xf8\xeaC\x9e\xe7\x88C\x06\xf7rB^C\xe6C=\xcf\x94C\x00\x00\x8cB\xcb\x11\xebC=\xcf\x94Cs\x80rB^C\xe6C\xdb\xb6\xa0C\x00\x00\x8cBe\x1f\xebC\xdb\xb6\xa0C0JrB^C\xe6Cz\x9e\xacC\x00\x00\x8cB\xc1"\xebCz\x9e\xacC+JrB^C\xe6C\x18\x86\xb8C\x00\x00\x8cB\x97\x1d\xebC\x18\x86\xb8CcrrB^C\xe6C\xb7m\xc4C\x00\x00\x8cB*\x12\xebC\xb7m\xc4C~\xb0rB^C\xe6CUU\xd0C\x00\x00\x8cBS\x03\xebCUU\xd0C\xde\xeerB^C\xe6C\xf4<\xdcC\x00\x00\x8cBr\xf4\xeaC\xf4<\xdcCZ\x19sB^C\xe6C\x92$\xe8C\x00\x00\x8cB\xfd\xe8\xeaC\x92$\xe8C3)sB^C\xe6C1\x0c\xf4C\x00\x00\x8cB5\xe3\xeaC1\x0c\xf4C3)sB^C\xe6C\xcf\xf3\xffC\x00\x00\x8cB5\xe3\xeaC\xcf\xf3\xffCZ\x19sB^C\xe6C\xb7\xed\x05D\x00\x00\x8cB\xfd\xe8\xeaC\xb7\xed\x05D\xde\xeerB^C\xe6C\x86\xe1\x0bD\x00\x00\x8cBr\xf4\xeaC\x86\xe1\x0bD~\xb0rB^C\xe6CU\xd5\x11D\x00\x00\x8cBS\x03\xebCU\xd5\x11DcrrB^C\xe6C%\xc9\x17D\x00\x00\x8cB*\x12\xebC%\xc9\x17D+JrB^C\xe6C\xf4\xbc\x1dD\x00\x00\x8cB\x97\x1d\xebC\xf4\xbc\x1dD0JrB^C\xe6C\xc3\xb0#D\x00\x00\x8cB\xc1"\xebC\xc3\xb0#Ds\x80rB^C\xe6C\x92\xa4)D\x00\x00\x8cBe\x1f\xebC\x92\xa4)D\x06\xf7rB^C\xe6Cb\x98/D\x7f\xb4sB^C\xe6C1\x8c5Dy\xbdtB^C\xe6C\x00\x80;D\x08\x16vB^C\xe6C\xcfsAD\xe3\xef\x8cB^C\xe6C\xe8y>A\x00\x00\xb4B:\xe5\xeeC\xe8y>A\x00\x00\xb4B\xfa\xf5\xefCn\xdb\x0eB\x00\x00\xb4B\xa4\xef\xf0Cb\x18nB\x00\x00\xb4Br\xd1\xf1C\xab\xaa\xa6B\x00\x00\xb4B\xdf\x9a\xf2C%I\xd6B\x00\x00\xb4B\xb1K\xf3C\xcf\xf3\x02C\x00\x00\xb4B\xcak\xf3C\x18\xf6\x07C\xb0,\xb2B\xcak\xf3C\x0c\xc3\x1aC\x00\x00\xb4B\xc5\xe2\xf3C\x0c\xc3\x1aC\xaeF\xb0B\xcak\xf3CI\x922C\x00\x00\xb4B\xd3a\xf4CI\x922C;\xc1\xaeB\xcak\xf3C\x86aJC\x00\x00\xb4B\xea\xc9\xf4C\x86aJC7\x92\xadB\xcak\xf3C\xc30bC\x00\x00\xb4B\xf2\x1b\xf5C\xc30bCI\xb1\xacB\xcak\xf3C\x00\x00zC\x00\x00\xb4B\xf2X\xf5C\x00\x00zC\x84\x17\xacB\xcak\xf3C\x9e\xe7\x88C\x00\x00\xb4B \x82\xf5C\x9e\xe7\x88C\x9c\xbe\xabB\xcak\xf3C=\xcf\x94C\x00\x00\xb4B\xfa\x98\xf5C=\xcf\x94C\x11\xa0\xabB\xcak\xf3C\xdb\xb6\xa0C\x00\x00\xb4BU\x9f\xf5C\xdb\xb6\xa0C\xa2\xb4\xabB\xcak\xf3Cz\x9e\xacC\x00\x00\xb4Bi\x97\xf5Cz\x9e\xacC\x9a\xf3\xabB\xcak\xf3C\x18\x86\xb8C\x00\x00\xb4B\xdc\x83\xf5C\x18\x86\xb8C6R\xacB\xcak\xf3C\xb7m\xc4C\x00\x00\xb4B\xdag\xf5C\xb7m\xc4C\xd4\xc2\xacB\xcak\xf3CUU\xd0C\x00\x00\xb4B<G\xf5CUU\xd0C\xf63\xadB\xcak\xf3C\xf4<\xdcC\x00\x00\xb4B\xb5&\xf5C\xf4<\xdcC\xee\x8e\xadB\xcak\xf3C\x92$\xe8C\x00\x00\xb4B/\x0c\xf5C\x92$\xe8C\x1f\xbb\xadB\xcak\xf3C1\x0c\xf4C\x00\x00\xb4B1\xfe\xf4C1\x0c\xf4C\x1f\xbb\xadB\xcak\xf3C\xcf\xf3\xffC\x00\x00\xb4B1\xfe\xf4C\xcf\xf3\xffC\xee\x8e\xadB\xcak\xf3C\xb7\xed\x05D\x00\x00\xb4B/\x0c\xf5C\xb7\xed\x05D\xf63\xadB\xcak\xf3C\x86\xe1\x0bD\x00\x00\xb4B\xb5&\xf5C\x86\xe1\x0bD\xd4\xc2\xacB\xcak\xf3CU\xd5\x11D\x00\x00\xb4B<G\xf5CU\xd5\x11D6R\xacB\xcak\xf3C%\xc9\x17D\x00\x00\xb4B\xdag\xf5C%\xc9\x17D\x9a\xf3\xabB\xcak\xf3C\xf4\xbc\x1dD\x00\x00\xb4B\xdc\x83\xf5C\xf4\xbc\x1dD\xa2\xb4\xabB\xcak\xf3C\xc3\xb0#D\x00\x00\xb4Bi\x97\xf5C\xc3\xb0#D\x11\xa0\xabB\xcak\xf3C\x92\xa4)D\x85]\xc8B\xcak\xf3C\xe8y>AP \xc3B\xcak\xf3Cn\xdb\x0eB\x00\x00\xdcB \x18\xf9Cn\xdb\x0eB\x00\x00\xdcB\xe1\xc4\xf7C\xe8y>A\xa4\x92\xbeB\xcak\xf3Cb\x18nB\x00\x00\xdcB9R\xfaCb\x18nB\xef\xa6\xbaB\xcak\xf3C\xab\xaa\xa6B\xb4O\xb7B\xcak\xf3C%I\xd6B\xac\x7f\xb4B\xcak\xf3C\xcf\xf3\x02C\x00\x00\xdcB\xbdY\xfdC\xcf\xf3\x02C\x00\x00\xdcB\x8et\xfcC%I\xd6B\x00\x00\xdcB\xc9\x1f\xfeC\x0c\xc3\x1aC\x00\x00\xdcB\xba\xc5\xfeCI\x922C\x00\x00\xdcB.K\xffC\x86aJC\x00\x00\xdcB\xa9\xb0\xffC\xc30bC\x00\x00\xdcB\xac\xf7\xffC\x00\x00zC\x00\x00\xdcBJ\x11\x00D\x9e\xe7\x88C\x00\x00\xdcB,\x1a\x00D=\xcf\x94C\x00\x00\xdcB*\x18\x00D\xdb\xb6\xa0C\x00\x00\xdcB\x08\r\x00Dz\x9e\xacC\x00\x00\xdcBM\xf5\xffC\x18\x86\xb8C\x00\x00\xdcB\x1e\xc6\xffC\xb7m\xc4C\x00\x00\xdcB"\x91\xffCUU\xd0C\x00\x00\xdcB\xd8[\xffC\xf4<\xdcC\x00\x00\xdcB\x19-\xffC\x92$\xe8C\x00\x00\xdcB4\x0e\xffC1\x0c\xf4C\x00\x00\xdcB4\x0e\xffC\xcf\xf3\xffC\x00\x00\xdcB\x19-\xffC\xb7\xed\x05D\x00\x00\xdcB\xd8[\xffC\x86\xe1\x0bD\x00\x00\xdcB"\x91\xffCU\xd5\x11D\x00\x00\xdcB\x1e\xc6\xffC%\xc9\x17D\x00\x00\xdcBM\xf5\xffC\xf4\xbc\x1dD\x00\x00\xdcB\x08\r\x00D\xc3\xb0#D\x00\x00\xb4BU\x9f\xf5C\x92\xa4)D\x00\x00\xdcB*\x18\x00D\x92\xa4)D\xad\xd6\xe8B\x1bJ\x00D\xcf\xf3\x02C\x05\x96\xe5B\x1bJ\x00D\x0c\xc3\x1aC\x00\x00\x02C\x97*\x04D\x0c\xc3\x1aC\x00\x00\x02C\xcb\xaf\x03D\xcf\xf3\x02C\xde\xf3\xe2B\x1bJ\x00DI\x922C\x00\x00\x02C"\x91\x04DI\x922C\xce\xe4\xe0B\x1bJ\x00D\x86aJC\x00\x00\x02Ci\xe2\x04D\x86aJC\x94\\\xdfB\x1bJ\x00D\xc30bC\x00\x00\x02CZ\x1e\x05D\xc30bC)N\xdeB\x1bJ\x00D\x00\x00zC\x00\x00\x02C\x12F\x05D\x00\x00zC]\xac\xddB\x1bJ\x00D\x9e\xe7\x88C\x00\x00\x02C\xa6[\x05D\x9e\xe7\x88C6j\xddB\x1bJ\x00D=\xcf\x94C\x00\x00\x02C\x95a\x05D=\xcf\x94C\xf8z\xddB\x1bJ\x00D\xdb\xb6\xa0C\x00\x00\x02CuZ\x05D\xdb\xb6\xa0C\x06\xd2\xddB\x1bJ\x00Dz\x9e\xacC\x00\x00\x02C\xc8H\x05Dz\x9e\xacC<b\xdeB\x1bJ\x00D\x18\x86\xb8C\x00\x00\x02C\n/\x05D\x18\x86\xb8C\x16\x1d\xdfB\x1bJ\x00D\xb7m\xc4C\x00\x00\x02C\xca\x0f\x05D\xb7m\xc4C\x83\xf1\xdfB\x1bJ\x00DUU\xd0C\x00\x00\x02C\xe4\xed\x04DUU\xd0CF\xca\xe0B\x1bJ\x00D\xf4<\xdcC\x00\x00\x02C\xd1\xcc\x04D\xf4<\xdcC\xd7\x8b\xe1B\x1bJ\x00D\x92$\xe8C\x00\x00\x02C\x0f\xb1\x04D\x92$\xe8C\xfc\x0e\xe2B\x1bJ\x00D1\x0c\xf4C\x00\x00\x02Cn\xa0\x04D1\x0c\xf4C\xfc\x0e\xe2B\x1bJ\x00D\xcf\xf3\xffC\x00\x00\x02Cn\xa0\x04D\xcf\xf3\xffC\xd7\x8b\xe1B\x1bJ\x00D\xb7\xed\x05D\x00\x00\x02C\x0f\xb1\x04D\xb7\xed\x05DF\xca\xe0B\x1bJ\x00D\x86\xe1\x0bD\x00\x00\x02C\xd1\xcc\x04D\x86\xe1\x0bD\x83\xf1\xdfB\x1bJ\x00DU\xd5\x11D\x00\x00\x02C\xe4\xed\x04DU\xd5\x11D\x16\x1d\xdfB\x1bJ\x00D%\xc9\x17D\x00\x00\x02C\xca\x0f\x05D%\xc9\x17D<b\xdeB\x1bJ\x00D\xf4\xbc\x1dD\x00\x00\x02C\n/\x05D\xf4\xbc\x1dD\x06\xd2\xddB\x1bJ\x00D\xc3\xb0#D\x00\x00\x02C\xc8H\x05D\xc3\xb0#D\xf8z\xddB\x1bJ\x00D\x92\xa4)D\x9f\xf9\nCQ\xde\x06DI\x922C)\xa6\tCQ\xde\x06D\x86aJC\x0b\xb3\x08CQ\xde\x06D\xc30bC\x00\x00\x16C\x00O\nD\xc30bC\x00\x00\x16C\x18\n\nD\x86aJC3\x16\x08CQ\xde\x06D\x00\x00zC\x00\x00\x16C\xbez\nD\x00\x00zC\xe4\xc3\x07CQ\xde\x06D\x9e\xe7\x88C\x00\x00\x16C\xa0\x90\nD\x9e\xe7\x88C~\xb0\x07CQ\xde\x06D=\xcf\x94C\x00\x00\x16C[\x94\nD=\xcf\x94CU\xd1\x07CQ\xde\x06D\xdb\xb6\xa0C\x00\x00\x16Cp\x89\nD\xdb\xb6\xa0C\x90\x1c\x08CQ\xde\x06Dz\x9e\xacC\x00\x00\x16C\x18s\nDz\x9e\xacC\x9f\x88\x08CQ\xde\x06D\x18\x86\xb8C\x00\x00\x16CZT\nD\x18\x86\xb8Cz\x0b\tCQ\xde\x06D\xb7m\xc4C\x00\x00\x16CF0\nD\xb7m\xc4C\x89\x99\tCQ\xde\x06DUU\xd0C\x00\x00\x16C5\n\nDUU\xd0C6$\nCQ\xde\x06D\xf4<\xdcC\x00\x00\x16C)\xe6\tD\xf4<\xdcC.\x98\nCQ\xde\x06D\x92$\xe8C\x00\x00\x16C\t\xc9\tD\x92$\xe8C\x02\xdd\nCQ\xde\x06D1\x0c\xf4C\x00\x00\x16C_\xb8\tD1\x0c\xf4C\x02\xdd\nCQ\xde\x06D\xcf\xf3\xffC\x00\x00\x16C_\xb8\tD\xcf\xf3\xffC.\x98\nCQ\xde\x06D\xb7\xed\x05D\x00\x00\x16C\t\xc9\tD\xb7\xed\x05D6$\nCQ\xde\x06D\x86\xe1\x0bD\x00\x00\x16C)\xe6\tD\x86\xe1\x0bD\x89\x99\tCQ\xde\x06DU\xd5\x11D\x00\x00\x16C5\n\nDU\xd5\x11Dz\x0b\tCQ\xde\x06D%\xc9\x17D\x00\x00\x16CF0\nD%\xc9\x17D\x9f\x88\x08CQ\xde\x06D\xf4\xbc\x1dD\x00\x00\x16CZT\nD\xf4\xbc\x1dD\x90\x1c\x08CQ\xde\x06D\xc3\xb0#DGf"C\x87r\rD\xc30bC\xb2\xae!C\x87r\rD\x00\x00zC\xecU!C\x87r\rD\x9e\xe7\x88C\x00\x00*Cr\x9d\x0fD\x9e\xe7\x88C\x00\x00*C\x04\x86\x0fD\x00\x00zC\xa2I!C\x87r\rD=\xcf\x94C\x00\x00*C\x02\xa1\x0fD=\xcf\x94C\x15z!C\x87r\rD\xdb\xb6\xa0C\x00\x00*C\xe9\x94\x0fD\xdb\xb6\xa0C\x82\xd9!C\x87r\rDz\x9e\xacC\x00\x00*C\xe2|\x0fDz\x9e\xacC\x1b["C\x87r\rD\x18\x86\xb8C\x00\x00*C]\\\x0fD\x18\x86\xb8C\xe4\xf1"C\x87r\rD\xb7m\xc4C\x00\x00*C\xc06\x0fD\xb7m\xc4C\x8b\x8f#C\x87r\rDUU\xd0C\x00\x00*C\xa8\x0f\x0fDUU\xd0C0#$C\x87r\rD\xf4<\xdcC\x00\x00*C9\xeb\x0eD\xf4<\xdcC\xef\x98$C\x87r\rD\x92$\xe8C\x00\x00*C<\xce\x0eD\x92$\xe8C\x87\xdb$C\x87r\rD1\x0c\xf4C\x00\x00*C\xd4\xbd\x0eD1\x0c\xf4C\x87\xdb$C\x87r\rD\xcf\xf3\xffC\x00\x00*C\xd4\xbd\x0eD\xcf\xf3\xffC\xef\x98$C\x87r\rD\xb7\xed\x05D\x00\x00*C<\xce\x0eD\xb7\xed\x05D0#$C\x87r\rD\x86\xe1\x0bD\x00\x00*C9\xeb\x0eD\x86\xe1\x0bD\x8b\x8f#C\x87r\rDU\xd5\x11D\x00\x00*C\xa8\x0f\x0fDU\xd5\x11D\xe4\xf1"C\x87r\rD%\xc9\x17D\x00\x00*C\xc06\x0fD%\xc9\x17D\x1b["C\x87r\rD\xf4\xbc\x1dD/#<C\xbd\x06\x14D=\xcf\x94CtN<C\xbd\x06\x14D\xdb\xb6\xa0C\xb4\xac<C\xbd\x06\x14Dz\x9e\xacC\x00\x00>C\xd8W\x14Dz\x9e\xacC\x00\x00>C\tn\x14D\xdb\xb6\xa0C7.=C\xbd\x06\x14D\x18\x86\xb8C\x00\x00>C\x0c9\x14D\x18\x86\xb8C\xbb\xc3=C\xbd\x06\x14D\xb7m\xc4C\x00\x00>C=\x15\x14D\xb7m\xc4C\x00\x00>C\xdc\xef\x13DUU\xd0C\x00\x00>C\xbd\x06\x14D%\x14\xc9C\x00\x00>C\x15\xcd\x13D\xf4<\xdcC\x00\x00>Cb\xb1\x13D\x92$\xe8C\x00\x00>Cb\xa1\x13D1\x0c\xf4C\x00\x00>Cb\xa1\x13D\xcf\xf3\xffC\x00\x00>Cb\xb1\x13D\xb7\xed\x05D\x00\x00>C\x15\xcd\x13D\x86\xe1\x0bD\x00\x00>C\xdc\xef\x13DU\xd5\x11D\x00\x00>C\xbd\x06\x14D\xeeu\x15D\xbb\xc3=C\xbd\x06\x14D%\xc9\x17D\x00\x00>C=\x15\x14D%\xc9\x17D\x00\x00*C]\\\x0fD\xf4\xbc\x1dD7.=C\xbd\x06\x14D\xf4\xbc\x1dD\x00\x00RC\xb2\xef\x18Dz\x9e\xacC\x00\x00RCD\xd6\x18D\x18\x86\xb8C\x00\x00RC\xa8\xb7\x18D\xb7m\xc4C&a>C\xbd\x06\x14DUU\xd0C\x00\x00RC\x93\x97\x18DUU\xd0Cd\xf4>C\xbd\x06\x14D\xf4<\xdcC\x00\x00RC\xb3y\x18D\xf4<\xdcC\\i?C\xbd\x06\x14D\x92$\xe8C\x00\x00RC\xdaa\x18D\x92$\xe8C\xea\xac?C\xbd\x06\x14D1\x0c\xf4C\x00\x00RC\x0fT\x18D1\x0c\xf4C\xea\xac?C\xbd\x06\x14D\xcf\xf3\xffC\x00\x00RC\x0fT\x18D\xcf\xf3\xffC\\i?C\xbd\x06\x14D\xb7\xed\x05D\x00\x00RC\xdaa\x18D\xb7\xed\x05Dd\xf4>C\xbd\x06\x14D\x86\xe1\x0bD\x00\x00RC\xb3y\x18D\x86\xe1\x0bD&a>C\xbd\x06\x14DU\xd5\x11D\x00\x00RC\x93\x97\x18DU\xd5\x11D\x00\x00RC\xa8\xb7\x18D%\xc9\x17Dp\x88ZC\xf3\x9a\x1aD\xb7m\xc4C3\x0e[C\xf3\x9a\x1aDUU\xd0C\x04\x8a[C\xf3\x9a\x1aD\xf4<\xdcC\x00\x00fC"\xe6\x1cD\xf4<\xdcC\x00\x00fC\xe5\xfd\x1cDUU\xd0C\xda\xeb[C\xf3\x9a\x1aD\x92$\xe8C\x00\x00fC9\xd3\x1cD\x92$\xe8C\x8b#\\C\xf3\x9a\x1aD1\x0c\xf4C\x00\x00fC\x84\xc8\x1cD1\x0c\xf4C\x8b#\\C\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x00fC\x84\xc8\x1cD\xcf\xf3\xffC\xda\xeb[C\xf3\x9a\x1aD\xb7\xed\x05D\x04\x8a[C\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x00fC"\xe6\x1cD\x86\xe1\x0bD\x00\x00fC9\xd3\x1cD\xb7\xed\x05D3\x0e[C\xf3\x9a\x1aDU\xd5\x11D\x00\x00fC\xe5\xfd\x1cDU\xd5\x11Dp\x88ZC\xf3\x9a\x1aD%\xc9\x17D\x00\x00zCr\x1c!DUU\xd0C\x00\x00zC\xef\n!D\xf4<\xdcC\x00\x00zC\xf4\xfc D\x92$\xe8C\x00\x00zC"\xf5 D1\x0c\xf4C\x00\x00zC"\xf5 D\xcf\xf3\xffC\x00\x00zC\xf4\xfc D\xb7\xed\x05D\x00\x00zC\xef\n!D\x86\xe1\x0bD\x00\x00zCr\x1c!DU\xd5\x11D\xc7`zC(/!DUU\xd0C+\xbazC(/!D\xf4<\xdcC\xd2\x00{C(/!D\x92$\xe8C\x00\x00\x87C\x10\xcd$D\x92$\xe8C\x00\x00\x87C\x06\xd6$D\xf4<\xdcC\x0c({C(/!D1\x0c\xf4C\x00\x00\x87C\xfc\xc7$D1\x0c\xf4C\x0c({C(/!D\xcf\xf3\xffC\x00\x00\x87C\xfc\xc7$D\xcf\xf3\xffC\xd2\x00{C(/!D\xb7\xed\x05D\x00\x00\x87C\x10\xcd$D\xb7\xed\x05D+\xbazC(/!D\x86\xe1\x0bD\x00\x00\x87C\x06\xd6$D\x86\xe1\x0bD\xc7`zC(/!DU\xd5\x11D8Z\x8fC^\xc3\'D\xf4<\xdcC\xa9i\x8fC^\xc3\'D\x92$\xe8C\xber\x8fC^\xc3\'D1\x0c\xf4C\xber\x8fC^\xc3\'D\xcf\xf3\xffC\x00\x00\x91C]K(D\xcf\xf3\xffC\x00\x00\x91C]K(D1\x0c\xf4C\xa9i\x8fC^\xc3\'D\xb7\xed\x05D\x00\x00\x91C&N(D\xb7\xed\x05D8Z\x8fC^\xc3\'D\x86\xe1\x0bD\x00\x00\x91C\xc6R(D\x86\xe1\x0bD\x00\x00\x87C\xc2\xe0$DU\xd5\x11D\x8bI\x8fC^\xc3\'DU\xd5\x11D\x00\x00\x87C\x92\xea$D%\xc9\x17D\xb3>\x8fC^\xc3\'D%\xc9\x17D\x00\x00\x91C&N(D\x92$\xe8C\x00\x00\x9bCAq+D\x92$\xe8C\x00\x00\x9bCmp+D1\x0c\xf4C\x00\x00\x9bCmp+D\xcf\xf3\xffC\x00\x00\x9bCAq+D\xb7\xed\x05D\x00\x00\x9bC\x17r+D\x86\xe1\x0bD\x00\x00\x91C|W(DU\xd5\x11D\x00\x00\x9bCbq+DU\xd5\x11D\x00\x00\x91C\xe9Y(D%\xc9\x17D\x00\x00\x9bC\xf5l+D%\xc9\x17D\x00\x00\xa5C`F.D\x92$\xe8C\x00\x00\xa5CEG.D1\x0c\xf4C\x00\x00\xa5CEG.D\xcf\xf3\xffC\x00\x00\xa5C`F.D\xb7\xed\x05D\x00\x00\xa5C\xdcC.D\x86\xe1\x0bD\x00\x00\xa5CL>.DU\xd5\x11D\x00\x00\xa5C\xb23.D%\xc9\x17D\x00\x00\x9bC)b+D\xf4\xbc\x1dD\x00\x00\xa5C\x90!.D\xf4\xbc\x1dD\xd1C\xa5C\x94W.D\x92$\xe8C#@\xa5C\x94W.D1\x0c\xf4C#@\xa5C\x94W.D\xcf\xf3\xffC\xd1C\xa5C\x94W.D\xb7\xed\x05D\x00\x00\xafC\x1e\xbc0D\xb7\xed\x05D\x00\x00\xafCy\xbe0D\xcf\xf3\xffC\x1cN\xa5C\x94W.D\x86\xe1\x0bD\x00\x00\xafC\xc1\xb60D\x86\xe1\x0bD\xd3d\xa5C\x94W.DU\xd5\x11D\x00\x00\xafC\x1b\xad0DU\xd5\x11Df\x90\xa5C\x94W.D%\xc9\x17D\x00\x00\xb9C=\xe32D\xb7\xed\x05D\x00\x00\xb9CZ\xdb2D\x86\xe1\x0bD\x00\x00\xb9C\x06\xce2DU\xd5\x11D\xae\xba7D(/!D\x0c\xc3\x1aC\x00\x806D\xc5\x14!D\xcf\xf3\x02C\x00\x806D(/!D:\x93\x05C\x00\x80;DP\xa1\x1eD\x0c\xc3\x1aC\x00\x80;D\xca\xbd\x1dD\xcf\xf3\x02C\x86\xe18D(/!DI\x922C\x00\x80;D\xe8b\x1fDI\x922C.\xcd9D(/!D\x86aJC\x00\x80;D\x8d\x00 D\x86aJCM\x81>D\xf3\x9a\x1aD%I\xd6B\x00\x80@D\xe3\x0f\x18D\xab\xaa\xa6B\x91\xf3<D\xf3\x9a\x1aD\xab\xaa\xa6B\x00\x80@D\xd0%\x19D%I\xd6B\x8c\xdc?D\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x80@Dx!\x1aD\xcf\xf3\x02C\x00\x80@D\xf3\x9a\x1aD\xac\xfd\x0fC\x00\x80@D\t\xfc\x1aD\x0c\xc3\x1aC\x00\x80@D\xab\xb1\x1bDI\x922C\x00\x80@D\xecB\x1cD\x86aJC\x00\x80;Diz D\xc30bC\x00\x80@D^\xaf\x1cD\xc30bC\x00\x80;D,\xd3 D\x00\x00zC\x00\x80@D|\xfa\x1cD\x00\x00zC\x00\x80;D \x0f!D\x9e\xe7\x88C\x00\x80@Dr)\x1dD\x9e\xe7\x88C\xfe\x84;D(/!D=\xcf\x94C\x00\x80;D(/!D\x1c\x83\x93C\x00\x80@DrA\x1dD=\xcf\x94C\x12VDD\xbd\x06\x14Db\x18nB\x00\x80ED\xbd\x06\x14D\xcc\xec\x9cB\x00\x80EDv"\x13Db\x18nB\x00\x80ED\xdd?\x14D\xab\xaa\xa6B\x00\x80ED\xd8A\x15D%I\xd6B\x00\x80ED_+\x16D\xcf\xf3\x02C\xac\xfc@D\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x80ED\xef\xf8\x16D\x0c\xc3\x1aC2\xe1AD\xf3\x9a\x1aDI\x922C\x00\x80ED\\\xa6\x17DI\x922CZ\x92BD\xf3\x9a\x1aD\x86aJC\x00\x80ED\n/\x18D\x86aJC\x02\x11CD\xf3\x9a\x1aD\xc30bC\x00\x80ED&\x91\x18D\xc30bC\xeacCD\xf3\x9a\x1aD\x00\x00zC\x00\x80EDM\xd1\x18D\x00\x00zC\xb6\x93CD\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x80ED\x9a\xf5\x18D\x9e\xe7\x88C\x18\xa8CD\xf3\x9a\x1aD=\xcf\x94C\x00\x80ED\x95\x03\x19D=\xcf\x94C\x99\xa7CD\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x80ED%\x00\x19D\xdb\xb6\xa0C\x00\x80@DSG\x1dD\xdb\xb6\xa0C\xd5\x97CD\xf3\x9a\x1aDz\x9e\xacC\x00\x80ED\xb2\xef\x18Dz\x9e\xacC\xc3}CD\xf3\x9a\x1aD\x18\x86\xb8C\x00\x80EDD\xd6\x18D\x18\x86\xb8C\xe4]CD\xf3\x9a\x1aD\xb7m\xc4C\x00\x80ED\xa8\xb7\x18D\xb7m\xc4C\x03\xc7ED\xbd\x06\x14D\xab\xaa\xa6B\x00\x80JD\xcb\x1f\x10D\xab\xaa\xa6B\x00\x80JDF\x1b\x0fDb\x18nB:\xffFD\xbd\x06\x14D%I\xd6B\x00\x80JDd\x10\x11D%I\xd6B<\x0eHD\xbd\x06\x14D\xcf\xf3\x02C\x00\x80JDI\xea\x11D\xcf\xf3\x02C\xd4\xf3HD\xbd\x06\x14D\x0c\xc3\x1aC\x00\x80JD\r\xaa\x12D\x0c\xc3\x1aC\xbd\xaeID\xbd\x06\x14DI\x922C\x00\x80JD\x80K\x13DI\x922C\x94<JD\xbd\x06\x14D\x86aJC\x00\x80JD\x99\xc9\x13D\x86aJC\x00\x80JD\xbd\x06\x14D\x8a\xe7ZC\x00\x80JD\xdc \x14D\xc30bC\x00\x80JD4V\x14D\x00\x00zC\x00\x80JD}q\x14D\x9e\xe7\x88C\x00\x80JD\xecw\x14D=\xcf\x94C\x00\x80JD\tn\x14D\xdb\xb6\xa0C\x00\x80JD\xd8W\x14Dz\x9e\xacC\x00\x80JD\x0c9\x14D\x18\x86\xb8C\x00\x80JD=\x15\x14D\xb7m\xc4C}yLD\x87r\rDb\x18nB\x00\x80OD\xa5\xdc\tDn\xdb\x0eBp3KD\x87r\rDn\xdb\x0eB\x00\x80OD\xda\xd9\nDb\x18nB\x84\x9aMD\x87r\rD\xab\xaa\xa6B\x00\x80OD\x8f\xc6\x0bD\xab\xaa\xa6B\xc7\x97ND\x87r\rD%I\xd6B\x00\x80OD\xa4\xa0\x0cD%I\xd6B\xfaqOD\x87r\rD\xcf\xf3\x02C\x00\x80OD\x8fe\rD\xcf\xf3\x02C\x00\x80OD\x87r\rDC\xbe\x04C\x00\x80OD$\x0e\x0eD\x0c\xc3\x1aC\x00\x80OD\xd6\x9a\x0eDI\x922C\x00\x80OD\x84\x08\x0fD\x86aJC\x02\x9cJD\xbd\x06\x14D\xc30bC\x00\x80OD\xf9U\x0fD\xc30bC\x8e\xd4JD\xbd\x06\x14D\x00\x00zC\x00\x80OD\x04\x86\x0fD\x00\x00zC\xef\xf0JD\xbd\x06\x14D\x9e\xe7\x88C\x00\x80ODr\x9d\x0fD\x9e\xe7\x88C4\xf7JD\xbd\x06\x14D=\xcf\x94C\x00\x80OD\x02\xa1\x0fD=\xcf\x94Cb\xecJD\xbd\x06\x14D\xdb\xb6\xa0C\x00\x80OD\xe9\x94\x0fD\xdb\xb6\xa0C\xd3\xd4JD\xbd\x06\x14Dz\x9e\xacC\x00\x80OD\xe2|\x0fDz\x9e\xacCr\xb4JD\xbd\x06\x14D\x18\x86\xb8C\x00\x80OD]\\\x0fD\x18\x86\xb8C\x12\x8fJD\xbd\x06\x14D\xb7m\xc4C\x00\x80OD\xc06\x0fD\xb7m\xc4C\x9f\xfbRDQ\xde\x06Dn\xdb\x0eB\x00\x80TD\x0f\x9d\x04D\xe8y>A\xdc\xd5QDQ\xde\x06D\xe8y>A\x00\x80TD_\x8b\x05Dn\xdb\x0eB\x00\x80OD\xb5\xd0\x08D\xe8y>AT\x00TDQ\xde\x06Db\x18nB\x00\x80TD\x98k\x06Db\x18nB\x00\x80TDQ\xde\x06DM@\x91B\x00\x80TD]:\x07D\xab\xaa\xa6B\x00\x80TD\xb3\xf5\x07D%I\xd6B\x00\x80TD\xbf\x9d\x08D\xcf\xf3\x02C\xad"PD\x87r\rD\x0c\xc3\x1aC\x00\x80TD!0\tD\x0c\xc3\x1aC~\xb0PD\x87r\rDI\x922C\x00\x80TDJ\xaa\tDI\x922C\xdb\x1bQD\x87r\rD\x86aJC\x00\x80TD\x18\n\nD\x86aJCnfQD\x87r\rD\xc30bC\x00\x80TD\x00O\nD\xc30bCS\x94QD\x87r\rD\x00\x00zC\x00\x80TD\xbez\nD\x00\x00zC\x84\xaaQD\x87r\rD\x9e\xe7\x88C\x00\x80TD\xa0\x90\nD\x9e\xe7\x88C\x98\xadQD\x87r\rD=\xcf\x94C\x00\x80TD[\x94\nD=\xcf\x94Cz\xa1QD\x87r\rD\xdb\xb6\xa0C\x00\x80TDp\x89\nD\xdb\xb6\xa0C\x9f\x89QD\x87r\rDz\x9e\xacC\x00\x80TD\x18s\nDz\x9e\xacC9iQD\x87r\rD\x18\x86\xb8C\x00\x80TDZT\nD\x18\x86\xb8C\x87CQD\x87r\rD\xb7m\xc4C\x00\x80TDF0\nD\xb7m\xc4C\x1d\x1cQD\x87r\rDUU\xd0C\x00\x80TD5\n\nDUU\xd0C\x00\x80YD\xbbL\x00D\xe8y>A\x00\x80YD^\x17\x01Dn\xdb\x0eB\x00\x80YD\xa3\xd4\x01Db\x18nB\xc4\xe2TDQ\xde\x06D\xab\xaa\xa6B\x00\x80YDW\x83\x02D\xab\xaa\xa6B?\xa4UDQ\xde\x06D%I\xd6B\x00\x80YD3"\x03D%I\xd6B\\IVDQ\xde\x06D\xcf\xf3\x02C\x00\x80YD\xcb\xaf\x03D\xcf\xf3\x02C\xe7\xd2VDQ\xde\x06D\x0c\xc3\x1aC\x00\x80YD\x97*\x04D\x0c\xc3\x1aC\x98AWDQ\xde\x06DI\x922C\x00\x80YD"\x91\x04DI\x922Cv\x96WDQ\xde\x06D\x86aJC\x00\x80YDi\xe2\x04D\x86aJC>\xd3WDQ\xde\x06D\xc30bC\x00\x80YDZ\x1e\x05D\xc30bCs\xfaWDQ\xde\x06D\x00\x00zC\x00\x80YD\x12F\x05D\x00\x00zC\x06\x0fXDQ\xde\x06D\x9e\xe7\x88C\x00\x80YD\xa6[\x05D\x9e\xe7\x88C\xe0\x13XDQ\xde\x06D=\xcf\x94C\x00\x80YD\x95a\x05D=\xcf\x94C\xaa\x0bXDQ\xde\x06D\xdb\xb6\xa0C\x00\x80YDuZ\x05D\xdb\xb6\xa0C\xdc\xf8WDQ\xde\x06Dz\x9e\xacC\x00\x80YD\xc8H\x05Dz\x9e\xacC\xd8\xddWDQ\xde\x06D\x18\x86\xb8C\x00\x80YD\n/\x05D\x18\x86\xb8C"\xbdWDQ\xde\x06D\xb7m\xc4C\x00\x80YD\xca\x0f\x05D\xb7m\xc4C\x9e\x99WDQ\xde\x06DUU\xd0C\x00\x80YD\xe4\xed\x04DUU\xd0C\xf2vWDQ\xde\x06D\xf4<\xdcC\x00\x80YD\xd1\xcc\x04D\xf4<\xdcC\x00\x80TD)\xe6\tD\xf4<\xdcC\xf5YWDQ\xde\x06D\x92$\xe8C\x00\x80YD\x0f\xb1\x04D\x92$\xe8C\x00\x80TD\t\xc9\tD\x92$\xe8C\xc0HWDQ\xde\x06D1\x0c\xf4C\x00\x80YDn\xa0\x04D1\x0c\xf4CEcZD\x1bJ\x00Dn\xdb\x0eB\x00\x80^D\xe1\xc4\xf7C\xe8y>A\x00\x83YD\x1bJ\x00D\xe8y>A\x00\x80^D \x18\xf9Cn\xdb\x0eBs([D\x1bJ\x00Db\x18nB\x00\x80^D9R\xfaCb\x18nB(\xd4[D\x1bJ\x00D\xab\xaa\xa6B\x00\x80^D\x8dq\xfbC\xab\xaa\xa6B\xecg\\D\x1bJ\x00D%I\xd6B\x00\x80^D\x8et\xfcC%I\xd6B*\xe5\\D\x1bJ\x00D\xcf\xf3\x02C\x00\x80^D\xbdY\xfdC\xcf\xf3\x02C?M]D\x1bJ\x00D\x0c\xc3\x1aC\x00\x80^D\xc9\x1f\xfeC\x0c\xc3\x1aC\x84\xa1]D\x1bJ\x00DI\x922C\x00\x80^D\xba\xc5\xfeCI\x922Cf\xe3]D\x1bJ\x00D\x86aJC\x00\x80^D.K\xffC\x86aJCm\x14^D\x1bJ\x00D\xc30bC\x00\x80^D\xa9\xb0\xffC\xc30bC;6^D\x1bJ\x00D\x00\x00zC\x00\x80^D\xac\xf7\xffC\x00\x00zCtJ^D\x1bJ\x00D\x9e\xe7\x88C\x00\x80^DJ\x11\x00D\x9e\xe7\x88C\xb9R^D\x1bJ\x00D=\xcf\x94C\x00\x80^D,\x1a\x00D=\xcf\x94C\xa0P^D\x1bJ\x00D\xdb\xb6\xa0C\x00\x80^D*\x18\x00D\xdb\xb6\xa0C\xc0E^D\x1bJ\x00Dz\x9e\xacC\x00\x80^D\x08\r\x00Dz\x9e\xacC\xb83^D\x1bJ\x00D\x18\x86\xb8C\x00\x80^DM\xf5\xffC\x18\x86\xb8C^\x1c^D\x1bJ\x00D\xb7m\xc4C\x00\x80^D\x1e\xc6\xffC\xb7m\xc4C\xcf\x01^D\x1bJ\x00DUU\xd0C\x00\x80^D"\x91\xffCUU\xd0C\xb7\xe6]D\x1bJ\x00D\xf4<\xdcC\x00\x80^D\xd8[\xffC\xf4<\xdcC\x85\xce]D\x1bJ\x00D\x92$\xe8C\x00\x80^D\x19-\xffC\x92$\xe8C!\xbe]D\x1bJ\x00D1\x0c\xf4C\x00\x80^D4\x0e\xffC1\x0c\xf4C!\xbe]D\x1bJ\x00D\xcf\xf3\xffC\x00\x80^D4\x0e\xffC\xcf\xf3\xffC\x00\x80YDn\xa0\x04D\xcf\xf3\xffC\x85\xce]D\x1bJ\x00D\xb7\xed\x05D\x00\x80^D\x19-\xffC\xb7\xed\x05D\x00\x80YD\x0f\xb1\x04D\xb7\xed\x05D\xb7\xe6]D\x1bJ\x00D\x86\xe1\x0bD\x00\x80^D\xd8[\xffC\x86\xe1\x0bD\xcf\x01^D\x1bJ\x00DU\xd5\x11D\x00\x80^D"\x91\xffCU\xd5\x11D\xf6\x9baD\xcak\xf3Cn\xdb\x0eB\x00\x80cD:\xe5\xeeC\xe8y>AP\xf4`D\xcak\xf3C\xe8y>A\x00\x80cD\xfa\xf5\xefCn\xdb\x0eB\xac-bD\xcak\xf3Cb\x18nB\x00\x80cD\xa4\xef\xf0Cb\x18nB"\xabbD\xcak\xf3C\xab\xaa\xa6B\x00\x80cDr\xd1\xf1C\xab\xaa\xa6B\n\x16cD\xcak\xf3C%I\xd6B\x00\x80cD\xdf\x9a\xf2C%I\xd6B\x0bpcD\xcak\xf3C\xcf\xf3\x02C\x00\x80cD\xb1K\xf3C\xcf\xf3\x02C\x00\x80cD\xcak\xf3C\x18\xf6\x07C\x00\x80cD\xc5\xe2\xf3C\x0c\xc3\x1aC\x00\x80cD\xd3a\xf4CI\x922C\x00\x80cD\xea\xc9\xf4C\x86aJC\x00\x80cD\xf2\x1b\xf5C\xc30bC\x00\x80cD\xf2X\xf5C\x00\x00zC\x00\x80cD \x82\xf5C\x9e\xe7\x88C\x00\x80cD\xfa\x98\xf5C=\xcf\x94C\x00\x80cDU\x9f\xf5C\xdb\xb6\xa0C\x00\x80cDi\x97\xf5Cz\x9e\xacC\x00\x80cD\xdc\x83\xf5C\x18\x86\xb8C\x00\x80cD\xdag\xf5C\xb7m\xc4C\x00\x80cD<G\xf5CUU\xd0C\x00\x80cD\xb5&\xf5C\xf4<\xdcC\x00\x80cD/\x0c\xf5C\x92$\xe8C\x00\x80cD1\xfe\xf4C1\x0c\xf4C\x00\x80cD1\xfe\xf4C\xcf\xf3\xffC\x00\x80cD/\x0c\xf5C\xb7\xed\x05D\x00\x80cD\xb5&\xf5C\x86\xe1\x0bD\x00\x80cD<G\xf5CU\xd5\x11D\x04bhD^C\xe6C\xe8y>A\x00\x80hD^C\xe6C&\xc3\x8fA\x00\x80hD_\x0e\xe6C\xe8y>A\x00\x80hD\xe3\xdc\xe6Cn\xdb\x0eB\x00\x80hD\xa1\x96\xe7Cb\x18nB\x00\x80hD\x1a<\xe8C\xab\xaa\xa6B\x00\x80hD\xba\xcd\xe8C%I\xd6B\x00\x80hDKL\xe9C\xcf\xf3\x02Cj\xbacD\xcak\xf3C\x0c\xc3\x1aC\x00\x80hD\x00\xb9\xe9C\x0c\xc3\x1aC*\xf7cD\xcak\xf3CI\x922C\x00\x80hD?\x15\xeaCI\x922C\xd9\'dD\xcak\xf3C\x86aJC\x00\x80hDgb\xeaC\x86aJC\xb9MdD\xcak\xf3C\xc30bC\x00\x80hD\x97\xa1\xeaC\xc30bC\xd8idD\xcak\xf3C\x00\x00zC\x00\x80hD\x8b\xd3\xeaC\x00\x00zC\x10}dD\xcak\xf3C\x9e\xe7\x88C\x00\x80hD\xc6\xf8\xeaC\x9e\xe7\x88C-\x88dD\xcak\xf3C=\xcf\x94C\x00\x80hD\xcb\x11\xebC=\xcf\x94C\xfe\x8bdD\xcak\xf3C\xdb\xb6\xa0C\x00\x80hDe\x1f\xebC\xdb\xb6\xa0Cl\x89dD\xcak\xf3Cz\x9e\xacC\x00\x80hD\xc1"\xebCz\x9e\xacC\x8c\x81dD\xcak\xf3C\x18\x86\xb8C\x00\x80hD\x97\x1d\xebC\x18\x86\xb8C\xb9udD\xcak\xf3C\xb7m\xc4C\x00\x80hD*\x12\xebC\xb7m\xc4C\xa5gdD\xcak\xf3CUU\xd0C\x00\x80hDS\x03\xebCUU\xd0C\x81YdD\xcak\xf3C\xf4<\xdcC\x00\x80hDr\xf4\xeaC\xf4<\xdcC"NdD\xcak\xf3C\x92$\xe8C\x00\x80hD\xfd\xe8\xeaC\x92$\xe8C\x9cHdD\xcak\xf3C1\x0c\xf4C\x00\x80hD5\xe3\xeaC1\x0c\xf4C\x9cHdD\xcak\xf3C\xcf\xf3\xffC\x00\x80hD5\xe3\xeaC\xcf\xf3\xffC"NdD\xcak\xf3C\xb7\xed\x05D\x00\x80hD\xfd\xe8\xeaC\xb7\xed\x05D\x81YdD\xcak\xf3C\x86\xe1\x0bD\x00\x80hDr\xf4\xeaC\x86\xe1\x0bD\xa5gdD\xcak\xf3CU\xd5\x11D\x00\x80hDS\x03\xebCU\xd5\x11D\x04bhD^C\xe6C\x18\x06wD\x00\x80hD_\x0e\xe6C\x18\x06wD\x00\x80hD^C\xe6C\xe6\x81uD\x14\xd5hD^C\xe6Cn\xdb\x0eB\x00\x80mD\x04\xdc\xddCn\xdb\x0eB\x00\x80mD\xe1J\xddC\xe8y>AW7iD^C\xe6Cb\x18nB\x00\x80mD\xd4[\xdeCb\x18nB\x8f\x8aiD^C\xe6C\xab\xaa\xa6B\x00\x80mD\x01\xcb\xdeC\xab\xaa\xa6Bp\xd0iD^C\xe6C%I\xd6B\x00\x80mD\xa7*\xdfC%I\xd6B\xaa\njD^C\xe6C\xcf\xf3\x02C\x00\x80mDM|\xdfC\xcf\xf3\x02C\xf2:jD^C\xe6C\x0c\xc3\x1aC\x00\x80mD\xcd\xc1\xdfC\x0c\xc3\x1aC\xdabjD^C\xe6CI\x922C\x00\x80mD\x17\xfd\xdfCI\x922C\xbd\x83jD^C\xe6C\x86aJC\x00\x80mD\xeb/\xe0C\x86aJC\x9f\x9ejD^C\xe6C\xc30bC\x00\x80mDw[\xe0C\xc30bC)\xb4jD^C\xe6C\x00\x00zC\x00\x80mD?\x80\xe0C\x00\x00zC\xb8\xc4jD^C\xe6C\x9e\xe7\x88C\x00\x80mDE\x9e\xe0C\x9e\xe7\x88C\x8f\xd0jD^C\xe6C=\xcf\x94C\x00\x80mDn\xb5\xe0C=\xcf\x94C\xf8\xd7jD^C\xe6C\xdb\xb6\xa0C\x00\x80mD\xbc\xc5\xe0C\xdb\xb6\xa0C]\xdbjD^C\xe6Cz\x9e\xacC\x00\x80mD\x8c\xcf\xe0Cz\x9e\xacC]\xdbjD^C\xe6C\x18\x86\xb8C\x00\x80mD\xad\xd3\xe0C\x18\x86\xb8C\xda\xd8jD^C\xe6C\xb7m\xc4C\x00\x80mDg\xd3\xe0C\xb7m\xc4C\xf8\xd4jD^C\xe6CUU\xd0C\x00\x80mDh\xd0\xe0CUU\xd0C\x12\xd1jD^C\xe6C\xf4<\xdcC\x00\x80mD\x92\xcc\xe0C\xf4<\xdcCj\xcejD^C\xe6C\x92$\xe8C\x00\x80mD\x95\xc9\xe0C\x92$\xe8Cl\xcdjD^C\xe6C1\x0c\xf4C\x00\x80mD*\xc8\xe0C1\x0c\xf4Cl\xcdjD^C\xe6C\xcf\xf3\xffC\x00\x80mD*\xc8\xe0C\xcf\xf3\xffCj\xcejD^C\xe6C\xb7\xed\x05D\x00\x80mD\x95\xc9\xe0C\xb7\xed\x05D\x12\xd1jD^C\xe6C\x86\xe1\x0bD\x00\x80mD\x92\xcc\xe0C\x86\xe1\x0bD\xf8\xd4jD^C\xe6CU\xd5\x11D\x00\x80mDh\xd0\xe0CU\xd5\x11D\xda\xd8jD^C\xe6C%\xc9\x17D\x00\x80mDg\xd3\xe0C%\xc9\x17D\x00\x80hD*\x12\xebC%\xc9\x17D]\xdbjD^C\xe6C\xf4\xbc\x1dD\x00\x80mD\xad\xd3\xe0C\xf4\xbc\x1dD\x8f\xd0jD^C\xe6Cb\x98/D\x00\x80mD\xbc\xc5\xe0C\x92\xa4)D\xf8\xd7jD^C\xe6C\x92\xa4)D\x00\x80mDn\xb5\xe0Cb\x98/DW7iD^C\xe6Cz\x1ekD\x00\x80mD\x01\xcb\xdeC\xab*eD\x8f\x8aiD^C\xe6C\xab*eD\x00\x80mD\xd4[\xdeCz\x1ekD\x14\xd5hD^C\xe6CI\x12qD\x00\x80mD\x04\xdc\xddCI\x12qD\x00\x80mD\xe1J\xddC\x18\x06wDR1pD\xf3\x1a\xd9Cn\xdb\x0eB\x00\x80rD"\xb5\xd4C\xe8y>A\xe9\xeeoD\xf3\x1a\xd9C\xe8y>A\x00\x80rD#\r\xd5Cn\xdb\x0eB\xeagpD\xf3\x1a\xd9Cb\x18nB\x00\x80rD\x00W\xd5Cb\x18nBD\x94pD\xf3\x1a\xd9C\xab\xaa\xa6B\x00\x80rD\xed\x93\xd5C\xab\xaa\xa6B\xfd\xb7pD\xf3\x1a\xd9C%I\xd6B\x00\x80rD\x88\xc5\xd5C%I\xd6B\xb2\xd4pD\xf3\x1a\xd9C\xcf\xf3\x02C\x00\x80rD\xc1\xed\xd5C\xcf\xf3\x02C\xf9\xebpD\xf3\x1a\xd9C\x0c\xc3\x1aC\x00\x80rD\xc7\x0e\xd6C\x0c\xc3\x1aCG\xffpD\xf3\x1a\xd9CI\x922C\x00\x80rD\xd2*\xd6CI\x922C\xd4\x0fqD\xf3\x1a\xd9C\x86aJC\x00\x80rD\xd1C\xd6C\x86aJCi\x1eqD\xf3\x1a\xd9C\xc30bC\x00\x80rD\xfdZ\xd6C\xc30bCU+qD\xf3\x1a\xd9C\x00\x00zC\x00\x80rD\x97p\xd6C\x00\x00zC\x946qD\xf3\x1a\xd9C\x9e\xe7\x88C\x00\x80rDF\x84\xd6C\x9e\xe7\x88C\x00@qD\xf3\x1a\xd9C=\xcf\x94C\x00\x80rDw\x95\xd6C=\xcf\x94CzGqD\xf3\x1a\xd9C\xdb\xb6\xa0C\x00\x80rD\xaa\xa3\xd6C\xdb\xb6\xa0C\xfdLqD\xf3\x1a\xd9Cz\x9e\xacC\x00\x80rD\x95\xae\xd6Cz\x9e\xacC\xadPqD\xf3\x1a\xd9C\x18\x86\xb8C\x00\x80rDG\xb6\xd6C\x18\x86\xb8C\xd3RqD\xf3\x1a\xd9C\xb7m\xc4C\x00\x80rD\x17\xbb\xd6C\xb7m\xc4C\xdaSqD\xf3\x1a\xd9CUU\xd0C\x00\x80rD\xa3\xbd\xd6CUU\xd0C@TqD\xf3\x1a\xd9C\xf4<\xdcC\x00\x80rD\xab\xbe\xd6C\xf4<\xdcCcTqD\xf3\x1a\xd9C\x92$\xe8C\x00\x80rD\xdf\xbe\xd6C\x92$\xe8CnTqD\xf3\x1a\xd9C1\x0c\xf4C\x00\x80rD\xc5\xbe\xd6C1\x0c\xf4CnTqD\xf3\x1a\xd9C\xcf\xf3\xffC\x00\x80rD\xc5\xbe\xd6C\xcf\xf3\xffCcTqD\xf3\x1a\xd9C\xb7\xed\x05D\x00\x80rD\xdf\xbe\xd6C\xb7\xed\x05D@TqD\xf3\x1a\xd9C\x86\xe1\x0bD\x00\x80rD\xab\xbe\xd6C\x86\xe1\x0bD\xdaSqD\xf3\x1a\xd9CU\xd5\x11D\x00\x80rD\xa3\xbd\xd6CU\xd5\x11D\xd3RqD\xf3\x1a\xd9C%\xc9\x17D\x00\x80rD\x17\xbb\xd6C%\xc9\x17D\xadPqD\xf3\x1a\xd9C\xf4\xbc\x1dD\x00\x80rDG\xb6\xd6C\xf4\xbc\x1dD\xfdLqD\xf3\x1a\xd9C\xc3\xb0#D\x00\x80rD\x95\xae\xd6C\xc3\xb0#D\x00\x80mD\x8c\xcf\xe0C\xc3\xb0#DzGqD\xf3\x1a\xd9C\x92\xa4)D\x00\x80rD\xaa\xa3\xd6C\x92\xa4)D\x00@qD\xf3\x1a\xd9Cb\x98/D\x00\x80rDw\x95\xd6Cb\x98/D\x946qD\xf3\x1a\xd9C1\x8c5D\x00\x80rDF\x84\xd6C1\x8c5D\x00\x80mDE\x9e\xe0C1\x8c5DU+qD\xf3\x1a\xd9C\x00\x80;D\x00\x80rD\x97p\xd6C\x00\x80;Di\x1eqD\xf3\x1a\xd9C\xcfsAD\x00\x80rD\xfdZ\xd6C\xcfsAD\xd4\x0fqD\xf3\x1a\xd9C\x9egGD\x00\x80rD\xd1C\xd6C\x9egGD\x00\x80mDw[\xe0C\xcfsAD\x00\x80mD\xeb/\xe0C\x9egGDG\xffpD\xf3\x1a\xd9Cn[MD\x00\x80rD\xd2*\xd6Cn[MD\xfd\xb7pD\xf3\x1a\xd9C\xdb6_D\x00\x80rD\xc1\xed\xd5C\x0cCYD\xb2\xd4pD\xf3\x1a\xd9C\x0cCYD\x00\x80rD\x88\xc5\xd5C\xdb6_DD\x94pD\xf3\x1a\xd9C\xab*eD\x00\x80rD\xed\x93\xd5C\xab*eD\x00\x80mD\xa7*\xdfC\xdb6_D\xeagpD\xf3\x1a\xd9Cz\x1ekD\x00\x80rD\x00W\xd5Cz\x1ekDR1pD\xf3\x1a\xd9CI\x12qD\x00\x80rD#\r\xd5CI\x12qD\xe9\xeeoD\xf3\x1a\xd9C\x18\x06wD\x00\x80rD"\xb5\xd4C\x18\x06wD\x00\x80wD\xbfY\xccC\xe8y>A\x00\x80wD\x9e|\xccCn\xdb\x0eB\x00\x80wD\xa8\x94\xccCb\x18nB\x00\x80wDi\xa3\xccC\xab\xaa\xa6B\x00\x80wD\xc6\xaa\xccC%I\xd6B\x00\x80wD\xde\xac\xccC\xcf\xf3\x02C\x00\x80wD\xf9\xab\xccC\x0c\xc3\x1aC\x00\x80wDW\xaa\xccCI\x922C\x00\x80wD\x00\xaa\xccC\x86aJC\x00\x80wD:\xac\xccC\xc30bC\x00\x80wD\xf1\xb0\xccC\x00\x00zC\x00\x80wD{\xb7\xccC\x9e\xe7\x88C\x00\x80wD\x08\xbf\xccC=\xcf\x94C\x00\x80wD\xbd\xc6\xccC\xdb\xb6\xa0C\x00\x80wD\xdc\xcd\xccCz\x9e\xacC\x00\x80wD\xd8\xd3\xccC\x18\x86\xb8C\x00\x80wDU\xd8\xccC\xb7m\xc4C\x00\x80wD,\xdb\xccCUU\xd0C\x00\x80wDk\xdc\xccC\xf4<\xdcC\x00\x80wDQ\xdc\xccC\x92$\xe8C\x00\x80wD\x9f\xdb\xccC1\x0c\xf4C\x00\x80wD\x9f\xdb\xccC\xcf\xf3\xffC\x00\x80wDQ\xdc\xccC\xb7\xed\x05D\x00\x80wDk\xdc\xccC\x86\xe1\x0bD\x00\x80wD,\xdb\xccCU\xd5\x11D\x00\x80wDU\xd8\xccC%\xc9\x17D\x00\x80wD\xd8\xd3\xccC\xf4\xbc\x1dD\x00\x80wD\xdc\xcd\xccC\xc3\xb0#D\x00\x80wD\xbd\xc6\xccC\x92\xa4)D\x00\x80wD\x08\xbf\xccCb\x98/D\x00\x80wD{\xb7\xccC1\x8c5D\x00\x80wD\xf1\xb0\xccC\x00\x80;D\x00\x80wD:\xac\xccC\xcfsAD\x00\x80wD\x00\xaa\xccC\x9egGD\x00\x80wDW\xaa\xccCn[MD\x00\x80rD\xc7\x0e\xd6C=OSD\x00\x80wD\xf9\xab\xccC=OSD\x00\x80wD\xde\xac\xccC\x0cCYD\x00\x80wD\xc6\xaa\xccC\xdb6_D\x00\x80wDi\xa3\xccC\xab*eD\x00\x80wD\xa8\x94\xccCz\x1ekD\x00\x80wD\x9e|\xccCI\x12qD\x00\x80wD\xbfY\xccC\x18\x06wD\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\x06\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\x08\x00\x00\x00\x0b\x00\x00\x00\n\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\n\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0b\x00\x00\x00\r\x00\x00\x00\x0e\x00\x00\x00\x0c\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\r\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x10\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\x12\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x14\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00\x15\x00\x00\x00\x17\x00\x00\x00\x18\x00\x00\x00\x16\x00\x00\x00\x19\x00\x00\x00\x18\x00\x00\x00\x17\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x18\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x19\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00\x1a\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00\x1d\x00\x00\x00\x1e\x00\x00\x00\x1c\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00\x1f\x00\x00\x00 \x00\x00\x00\x1e\x00\x00\x00!\x00\x00\x00 \x00\x00\x00\x1f\x00\x00\x00!\x00\x00\x00"\x00\x00\x00 \x00\x00\x00#\x00\x00\x00"\x00\x00\x00!\x00\x00\x00#\x00\x00\x00$\x00\x00\x00"\x00\x00\x00%\x00\x00\x00$\x00\x00\x00#\x00\x00\x00%\x00\x00\x00&\x00\x00\x00$\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00%\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00&\x00\x00\x00)\x00\x00\x00(\x00\x00\x00\'\x00\x00\x00)\x00\x00\x00*\x00\x00\x00(\x00\x00\x00+\x00\x00\x00*\x00\x00\x00)\x00\x00\x00+\x00\x00\x00,\x00\x00\x00*\x00\x00\x00-\x00\x00\x00,\x00\x00\x00+\x00\x00\x00-\x00\x00\x00.\x00\x00\x00,\x00\x00\x00/\x00\x00\x00.\x00\x00\x00-\x00\x00\x00/\x00\x00\x000\x00\x00\x00.\x00\x00\x001\x00\x00\x000\x00\x00\x00/\x00\x00\x001\x00\x00\x002\x00\x00\x000\x00\x00\x003\x00\x00\x002\x00\x00\x001\x00\x00\x003\x00\x00\x004\x00\x00\x002\x00\x00\x005\x00\x00\x004\x00\x00\x003\x00\x00\x005\x00\x00\x006\x00\x00\x004\x00\x00\x007\x00\x00\x006\x00\x00\x005\x00\x00\x007\x00\x00\x008\x00\x00\x006\x00\x00\x009\x00\x00\x008\x00\x00\x007\x00\x00\x009\x00\x00\x00:\x00\x00\x008\x00\x00\x00;\x00\x00\x00:\x00\x00\x009\x00\x00\x00;\x00\x00\x00<\x00\x00\x00:\x00\x00\x00=\x00\x00\x00<\x00\x00\x00;\x00\x00\x00=\x00\x00\x00>\x00\x00\x00<\x00\x00\x00?\x00\x00\x00>\x00\x00\x00=\x00\x00\x00?\x00\x00\x00@\x00\x00\x00>\x00\x00\x00A\x00\x00\x00@\x00\x00\x00?\x00\x00\x00A\x00\x00\x00B\x00\x00\x00@\x00\x00\x00C\x00\x00\x00B\x00\x00\x00A\x00\x00\x00C\x00\x00\x00D\x00\x00\x00B\x00\x00\x00E\x00\x00\x00D\x00\x00\x00C\x00\x00\x00E\x00\x00\x00F\x00\x00\x00D\x00\x00\x00G\x00\x00\x00F\x00\x00\x00E\x00\x00\x00G\x00\x00\x00H\x00\x00\x00F\x00\x00\x00I\x00\x00\x00H\x00\x00\x00G\x00\x00\x00I\x00\x00\x00J\x00\x00\x00H\x00\x00\x00K\x00\x00\x00J\x00\x00\x00I\x00\x00\x00K\x00\x00\x00L\x00\x00\x00J\x00\x00\x00M\x00\x00\x00L\x00\x00\x00K\x00\x00\x00M\x00\x00\x00N\x00\x00\x00L\x00\x00\x00O\x00\x00\x00N\x00\x00\x00M\x00\x00\x00O\x00\x00\x00P\x00\x00\x00N\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00O\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00P\x00\x00\x00S\x00\x00\x00R\x00\x00\x00Q\x00\x00\x00U\x00\x00\x00\x03\x00\x00\x00T\x00\x00\x00T\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00T\x00\x00\x00W\x00\x00\x00V\x00\x00\x00T\x00\x00\x00V\x00\x00\x00U\x00\x00\x00X\x00\x00\x00\x05\x00\x00\x00U\x00\x00\x00U\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00U\x00\x00\x00V\x00\x00\x00Y\x00\x00\x00U\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00Z\x00\x00\x00\x07\x00\x00\x00X\x00\x00\x00X\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00[\x00\x00\x00X\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00\\\x00\x00\x00\t\x00\x00\x00Z\x00\x00\x00Z\x00\x00\x00\t\x00\x00\x00\x07\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00]\x00\x00\x00Z\x00\x00\x00]\x00\x00\x00\\\x00\x00\x00^\x00\x00\x00\x0b\x00\x00\x00\\\x00\x00\x00\\\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\\\x00\x00\x00]\x00\x00\x00_\x00\x00\x00\\\x00\x00\x00_\x00\x00\x00^\x00\x00\x00`\x00\x00\x00\r\x00\x00\x00^\x00\x00\x00^\x00\x00\x00\r\x00\x00\x00\x0b\x00\x00\x00^\x00\x00\x00_\x00\x00\x00a\x00\x00\x00^\x00\x00\x00a\x00\x00\x00`\x00\x00\x00b\x00\x00\x00\x0f\x00\x00\x00`\x00\x00\x00`\x00\x00\x00\x0f\x00\x00\x00\r\x00\x00\x00`\x00\x00\x00a\x00\x00\x00c\x00\x00\x00`\x00\x00\x00c\x00\x00\x00b\x00\x00\x00d\x00\x00\x00\x11\x00\x00\x00b\x00\x00\x00b\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00b\x00\x00\x00c\x00\x00\x00e\x00\x00\x00b\x00\x00\x00e\x00\x00\x00d\x00\x00\x00f\x00\x00\x00\x13\x00\x00\x00d\x00\x00\x00d\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00d\x00\x00\x00e\x00\x00\x00g\x00\x00\x00d\x00\x00\x00g\x00\x00\x00f\x00\x00\x00h\x00\x00\x00\x15\x00\x00\x00f\x00\x00\x00f\x00\x00\x00\x15\x00\x00\x00\x13\x00\x00\x00f\x00\x00\x00g\x00\x00\x00i\x00\x00\x00f\x00\x00\x00i\x00\x00\x00h\x00\x00\x00j\x00\x00\x00\x17\x00\x00\x00h\x00\x00\x00h\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00h\x00\x00\x00i\x00\x00\x00k\x00\x00\x00h\x00\x00\x00k\x00\x00\x00j\x00\x00\x00l\x00\x00\x00\x19\x00\x00\x00j\x00\x00\x00j\x00\x00\x00\x19\x00\x00\x00\x17\x00\x00\x00j\x00\x00\x00k\x00\x00\x00m\x00\x00\x00j\x00\x00\x00m\x00\x00\x00l\x00\x00\x00n\x00\x00\x00\x1b\x00\x00\x00l\x00\x00\x00l\x00\x00\x00\x1b\x00\x00\x00\x19\x00\x00\x00l\x00\x00\x00m\x00\x00\x00o\x00\x00\x00l\x00\x00\x00o\x00\x00\x00n\x00\x00\x00p\x00\x00\x00\x1d\x00\x00\x00n\x00\x00\x00n\x00\x00\x00\x1d\x00\x00\x00\x1b\x00\x00\x00n\x00\x00\x00o\x00\x00\x00q\x00\x00\x00n\x00\x00\x00q\x00\x00\x00p\x00\x00\x00r\x00\x00\x00\x1f\x00\x00\x00p\x00\x00\x00p\x00\x00\x00\x1f\x00\x00\x00\x1d\x00\x00\x00p\x00\x00\x00q\x00\x00\x00s\x00\x00\x00p\x00\x00\x00s\x00\x00\x00r\x00\x00\x00t\x00\x00\x00!\x00\x00\x00r\x00\x00\x00r\x00\x00\x00!\x00\x00\x00\x1f\x00\x00\x00r\x00\x00\x00s\x00\x00\x00u\x00\x00\x00r\x00\x00\x00u\x00\x00\x00t\x00\x00\x00v\x00\x00\x00#\x00\x00\x00t\x00\x00\x00t\x00\x00\x00#\x00\x00\x00!\x00\x00\x00t\x00\x00\x00u\x00\x00\x00w\x00\x00\x00t\x00\x00\x00w\x00\x00\x00v\x00\x00\x00x\x00\x00\x00%\x00\x00\x00v\x00\x00\x00v\x00\x00\x00%\x00\x00\x00#\x00\x00\x00v\x00\x00\x00w\x00\x00\x00y\x00\x00\x00v\x00\x00\x00y\x00\x00\x00x\x00\x00\x00z\x00\x00\x00\'\x00\x00\x00x\x00\x00\x00x\x00\x00\x00\'\x00\x00\x00%\x00\x00\x00x\x00\x00\x00y\x00\x00\x00{\x00\x00\x00x\x00\x00\x00{\x00\x00\x00z\x00\x00\x00|\x00\x00\x00)\x00\x00\x00z\x00\x00\x00z\x00\x00\x00)\x00\x00\x00\'\x00\x00\x00z\x00\x00\x00{\x00\x00\x00}\x00\x00\x00z\x00\x00\x00}\x00\x00\x00|\x00\x00\x00~\x00\x00\x00+\x00\x00\x00|\x00\x00\x00|\x00\x00\x00+\x00\x00\x00)\x00\x00\x00|\x00\x00\x00}\x00\x00\x00\x7f\x00\x00\x00|\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00\x80\x00\x00\x00-\x00\x00\x00~\x00\x00\x00~\x00\x00\x00-\x00\x00\x00+\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\x81\x00\x00\x00~\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\x82\x00\x00\x00/\x00\x00\x00\x80\x00\x00\x00\x80\x00\x00\x00/\x00\x00\x00-\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\x83\x00\x00\x00\x80\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00\x84\x00\x00\x001\x00\x00\x00\x82\x00\x00\x00\x82\x00\x00\x001\x00\x00\x00/\x00\x00\x00\x82\x00\x00\x00\x83\x00\x00\x00\x85\x00\x00\x00\x82\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x003\x00\x00\x00\x84\x00\x00\x00\x84\x00\x00\x003\x00\x00\x001\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x87\x00\x00\x00\x84\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x88\x00\x00\x005\x00\x00\x00\x86\x00\x00\x00\x86\x00\x00\x005\x00\x00\x003\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x89\x00\x00\x00\x86\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\x8a\x00\x00\x007\x00\x00\x00\x88\x00\x00\x00\x88\x00\x00\x007\x00\x00\x005\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00\x8b\x00\x00\x00\x88\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x8c\x00\x00\x009\x00\x00\x00\x8a\x00\x00\x00\x8a\x00\x00\x009\x00\x00\x007\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x8d\x00\x00\x00\x8a\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x8e\x00\x00\x00;\x00\x00\x00\x8c\x00\x00\x00\x8c\x00\x00\x00;\x00\x00\x009\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x8f\x00\x00\x00\x8c\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x90\x00\x00\x00=\x00\x00\x00\x8e\x00\x00\x00\x8e\x00\x00\x00=\x00\x00\x00;\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x91\x00\x00\x00\x8e\x00\x00\x00\x91\x00\x00\x00\x90\x00\x00\x00\x92\x00\x00\x00?\x00\x00\x00\x90\x00\x00\x00\x90\x00\x00\x00?\x00\x00\x00=\x00\x00\x00\x90\x00\x00\x00\x91\x00\x00\x00\x93\x00\x00\x00\x90\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00\x94\x00\x00\x00A\x00\x00\x00\x92\x00\x00\x00\x92\x00\x00\x00A\x00\x00\x00?\x00\x00\x00\x92\x00\x00\x00\x93\x00\x00\x00\x95\x00\x00\x00\x92\x00\x00\x00\x95\x00\x00\x00\x94\x00\x00\x00\x96\x00\x00\x00C\x00\x00\x00\x94\x00\x00\x00\x94\x00\x00\x00C\x00\x00\x00A\x00\x00\x00\x97\x00\x00\x00E\x00\x00\x00\x96\x00\x00\x00\x96\x00\x00\x00E\x00\x00\x00C\x00\x00\x00\x99\x00\x00\x00O\x00\x00\x00\x98\x00\x00\x00\x98\x00\x00\x00O\x00\x00\x00M\x00\x00\x00\x9a\x00\x00\x00Q\x00\x00\x00\x99\x00\x00\x00\x99\x00\x00\x00Q\x00\x00\x00O\x00\x00\x00\x9b\x00\x00\x00S\x00\x00\x00\x9a\x00\x00\x00\x9a\x00\x00\x00S\x00\x00\x00Q\x00\x00\x00\x9d\x00\x00\x00V\x00\x00\x00\x9c\x00\x00\x00V\x00\x00\x00\x9e\x00\x00\x00\x9c\x00\x00\x00V\x00\x00\x00W\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\xa0\x00\x00\x00Y\x00\x00\x00\x9d\x00\x00\x00\x9d\x00\x00\x00Y\x00\x00\x00V\x00\x00\x00\x9d\x00\x00\x00\x9f\x00\x00\x00\xa1\x00\x00\x00\x9d\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00[\x00\x00\x00\xa0\x00\x00\x00\xa0\x00\x00\x00[\x00\x00\x00Y\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa3\x00\x00\x00\xa0\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00]\x00\x00\x00\xa2\x00\x00\x00\xa2\x00\x00\x00]\x00\x00\x00[\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa5\x00\x00\x00\xa2\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00\xa6\x00\x00\x00_\x00\x00\x00\xa4\x00\x00\x00\xa4\x00\x00\x00_\x00\x00\x00]\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa7\x00\x00\x00\xa4\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00\xa8\x00\x00\x00a\x00\x00\x00\xa6\x00\x00\x00\xa6\x00\x00\x00a\x00\x00\x00_\x00\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xa9\x00\x00\x00\xa6\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xaa\x00\x00\x00c\x00\x00\x00\xa8\x00\x00\x00\xa8\x00\x00\x00c\x00\x00\x00a\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xab\x00\x00\x00\xa8\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xac\x00\x00\x00e\x00\x00\x00\xaa\x00\x00\x00\xaa\x00\x00\x00e\x00\x00\x00c\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xad\x00\x00\x00\xaa\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\xae\x00\x00\x00g\x00\x00\x00\xac\x00\x00\x00\xac\x00\x00\x00g\x00\x00\x00e\x00\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xaf\x00\x00\x00\xac\x00\x00\x00\xaf\x00\x00\x00\xae\x00\x00\x00\xb0\x00\x00\x00i\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00i\x00\x00\x00g\x00\x00\x00\xae\x00\x00\x00\xaf\x00\x00\x00\xb1\x00\x00\x00\xae\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\xb2\x00\x00\x00k\x00\x00\x00\xb0\x00\x00\x00\xb0\x00\x00\x00k\x00\x00\x00i\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xb3\x00\x00\x00\xb0\x00\x00\x00\xb3\x00\x00\x00\xb2\x00\x00\x00\xb4\x00\x00\x00m\x00\x00\x00\xb2\x00\x00\x00\xb2\x00\x00\x00m\x00\x00\x00k\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xb5\x00\x00\x00\xb2\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\xb6\x00\x00\x00o\x00\x00\x00\xb4\x00\x00\x00\xb4\x00\x00\x00o\x00\x00\x00m\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xb7\x00\x00\x00\xb4\x00\x00\x00\xb7\x00\x00\x00\xb6\x00\x00\x00\xb8\x00\x00\x00q\x00\x00\x00\xb6\x00\x00\x00\xb6\x00\x00\x00q\x00\x00\x00o\x00\x00\x00\xb6\x00\x00\x00\xb7\x00\x00\x00\xb9\x00\x00\x00\xb6\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\xba\x00\x00\x00s\x00\x00\x00\xb8\x00\x00\x00\xb8\x00\x00\x00s\x00\x00\x00q\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\xbb\x00\x00\x00\xb8\x00\x00\x00\xbb\x00\x00\x00\xba\x00\x00\x00\xbc\x00\x00\x00u\x00\x00\x00\xba\x00\x00\x00\xba\x00\x00\x00u\x00\x00\x00s\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\xbd\x00\x00\x00\xba\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xbe\x00\x00\x00w\x00\x00\x00\xbc\x00\x00\x00\xbc\x00\x00\x00w\x00\x00\x00u\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xbf\x00\x00\x00\xbc\x00\x00\x00\xbf\x00\x00\x00\xbe\x00\x00\x00\xc0\x00\x00\x00y\x00\x00\x00\xbe\x00\x00\x00\xbe\x00\x00\x00y\x00\x00\x00w\x00\x00\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\xc1\x00\x00\x00\xbe\x00\x00\x00\xc1\x00\x00\x00\xc0\x00\x00\x00\xc2\x00\x00\x00{\x00\x00\x00\xc0\x00\x00\x00\xc0\x00\x00\x00{\x00\x00\x00y\x00\x00\x00\xc0\x00\x00\x00\xc1\x00\x00\x00\xc3\x00\x00\x00\xc0\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\xc4\x00\x00\x00}\x00\x00\x00\xc2\x00\x00\x00\xc2\x00\x00\x00}\x00\x00\x00{\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xc5\x00\x00\x00\xc2\x00\x00\x00\xc5\x00\x00\x00\xc4\x00\x00\x00\xc6\x00\x00\x00\x7f\x00\x00\x00\xc4\x00\x00\x00\xc4\x00\x00\x00\x7f\x00\x00\x00}\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\x00\x00\xc7\x00\x00\x00\xc4\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\xc8\x00\x00\x00\x81\x00\x00\x00\xc6\x00\x00\x00\xc6\x00\x00\x00\x81\x00\x00\x00\x7f\x00\x00\x00\xc6\x00\x00\x00\xc7\x00\x00\x00\xc9\x00\x00\x00\xc6\x00\x00\x00\xc9\x00\x00\x00\xc8\x00\x00\x00\xca\x00\x00\x00\x83\x00\x00\x00\xc8\x00\x00\x00\xc8\x00\x00\x00\x83\x00\x00\x00\x81\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xcb\x00\x00\x00\xc8\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xcc\x00\x00\x00\x85\x00\x00\x00\xca\x00\x00\x00\xca\x00\x00\x00\x85\x00\x00\x00\x83\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xcd\x00\x00\x00\xca\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xce\x00\x00\x00\x87\x00\x00\x00\xcc\x00\x00\x00\xcc\x00\x00\x00\x87\x00\x00\x00\x85\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xcf\x00\x00\x00\xcc\x00\x00\x00\xcf\x00\x00\x00\xce\x00\x00\x00\xd0\x00\x00\x00\x89\x00\x00\x00\xce\x00\x00\x00\xce\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\xce\x00\x00\x00\xcf\x00\x00\x00\xd1\x00\x00\x00\xce\x00\x00\x00\xd1\x00\x00\x00\xd0\x00\x00\x00\xd2\x00\x00\x00\x8b\x00\x00\x00\xd0\x00\x00\x00\xd0\x00\x00\x00\x8b\x00\x00\x00\x89\x00\x00\x00\xd0\x00\x00\x00\xd1\x00\x00\x00\xd3\x00\x00\x00\xd0\x00\x00\x00\xd3\x00\x00\x00\xd2\x00\x00\x00\xd4\x00\x00\x00\x8d\x00\x00\x00\xd2\x00\x00\x00\xd2\x00\x00\x00\x8d\x00\x00\x00\x8b\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xd5\x00\x00\x00\xd2\x00\x00\x00\xd5\x00\x00\x00\xd4\x00\x00\x00\xd6\x00\x00\x00\x8f\x00\x00\x00\xd4\x00\x00\x00\xd4\x00\x00\x00\x8f\x00\x00\x00\x8d\x00\x00\x00\xd7\x00\x00\x00\x91\x00\x00\x00\xd6\x00\x00\x00\xd6\x00\x00\x00\x91\x00\x00\x00\x8f\x00\x00\x00\xd8\x00\x00\x00\x93\x00\x00\x00\xd7\x00\x00\x00\xd7\x00\x00\x00\x93\x00\x00\x00\x91\x00\x00\x00\xd9\x00\x00\x00\x95\x00\x00\x00\xd8\x00\x00\x00\xd8\x00\x00\x00\x95\x00\x00\x00\x93\x00\x00\x00\xda\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\x9c\x00\x00\x00\xda\x00\x00\x00\xdb\x00\x00\x00\x9f\x00\x00\x00\xda\x00\x00\x00\xdc\x00\x00\x00\x9f\x00\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\xa1\x00\x00\x00\x9f\x00\x00\x00\xdd\x00\x00\x00\xa1\x00\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\xa3\x00\x00\x00\xa1\x00\x00\x00\xde\x00\x00\x00\xa3\x00\x00\x00\xdd\x00\x00\x00\xde\x00\x00\x00\xa5\x00\x00\x00\xa3\x00\x00\x00\xdf\x00\x00\x00\xa5\x00\x00\x00\xde\x00\x00\x00\xdf\x00\x00\x00\xa7\x00\x00\x00\xa5\x00\x00\x00\xe0\x00\x00\x00\xa7\x00\x00\x00\xdf\x00\x00\x00\xe2\x00\x00\x00\xa9\x00\x00\x00\xe1\x00\x00\x00\xa9\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xa9\x00\x00\x00\xa7\x00\x00\x00\xe0\x00\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\xe1\x00\x00\x00\xe4\x00\x00\x00\xab\x00\x00\x00\xe2\x00\x00\x00\xe2\x00\x00\x00\xab\x00\x00\x00\xa9\x00\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\xe5\x00\x00\x00\xe2\x00\x00\x00\xe5\x00\x00\x00\xe4\x00\x00\x00\xe6\x00\x00\x00\xad\x00\x00\x00\xe4\x00\x00\x00\xe4\x00\x00\x00\xad\x00\x00\x00\xab\x00\x00\x00\xe4\x00\x00\x00\xe5\x00\x00\x00\xe7\x00\x00\x00\xe4\x00\x00\x00\xe7\x00\x00\x00\xe6\x00\x00\x00\xe8\x00\x00\x00\xaf\x00\x00\x00\xe6\x00\x00\x00\xe6\x00\x00\x00\xaf\x00\x00\x00\xad\x00\x00\x00\xe6\x00\x00\x00\xe7\x00\x00\x00\xe9\x00\x00\x00\xe6\x00\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\xea\x00\x00\x00\xb1\x00\x00\x00\xe8\x00\x00\x00\xe8\x00\x00\x00\xb1\x00\x00\x00\xaf\x00\x00\x00\xe8\x00\x00\x00\xe9\x00\x00\x00\xeb\x00\x00\x00\xe8\x00\x00\x00\xeb\x00\x00\x00\xea\x00\x00\x00\xec\x00\x00\x00\xb3\x00\x00\x00\xea\x00\x00\x00\xea\x00\x00\x00\xb3\x00\x00\x00\xb1\x00\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\xed\x00\x00\x00\xea\x00\x00\x00\xed\x00\x00\x00\xec\x00\x00\x00\xee\x00\x00\x00\xb5\x00\x00\x00\xec\x00\x00\x00\xec\x00\x00\x00\xb5\x00\x00\x00\xb3\x00\x00\x00\xec\x00\x00\x00\xed\x00\x00\x00\xef\x00\x00\x00\xec\x00\x00\x00\xef\x00\x00\x00\xee\x00\x00\x00\xf0\x00\x00\x00\xb7\x00\x00\x00\xee\x00\x00\x00\xee\x00\x00\x00\xb7\x00\x00\x00\xb5\x00\x00\x00\xee\x00\x00\x00\xef\x00\x00\x00\xf1\x00\x00\x00\xee\x00\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\xf2\x00\x00\x00\xb9\x00\x00\x00\xf0\x00\x00\x00\xf0\x00\x00\x00\xb9\x00\x00\x00\xb7\x00\x00\x00\xf0\x00\x00\x00\xf1\x00\x00\x00\xf3\x00\x00\x00\xf0\x00\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\xf4\x00\x00\x00\xbb\x00\x00\x00\xf2\x00\x00\x00\xf2\x00\x00\x00\xbb\x00\x00\x00\xb9\x00\x00\x00\xf2\x00\x00\x00\xf3\x00\x00\x00\xf5\x00\x00\x00\xf2\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xf6\x00\x00\x00\xbd\x00\x00\x00\xf4\x00\x00\x00\xf4\x00\x00\x00\xbd\x00\x00\x00\xbb\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\xf7\x00\x00\x00\xf4\x00\x00\x00\xf7\x00\x00\x00\xf6\x00\x00\x00\xf8\x00\x00\x00\xbf\x00\x00\x00\xf6\x00\x00\x00\xf6\x00\x00\x00\xbf\x00\x00\x00\xbd\x00\x00\x00\xf6\x00\x00\x00\xf7\x00\x00\x00\xf9\x00\x00\x00\xf6\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xfa\x00\x00\x00\xc1\x00\x00\x00\xf8\x00\x00\x00\xf8\x00\x00\x00\xc1\x00\x00\x00\xbf\x00\x00\x00\xf8\x00\x00\x00\xf9\x00\x00\x00\xfb\x00\x00\x00\xf8\x00\x00\x00\xfb\x00\x00\x00\xfa\x00\x00\x00\xfc\x00\x00\x00\xc3\x00\x00\x00\xfa\x00\x00\x00\xfa\x00\x00\x00\xc3\x00\x00\x00\xc1\x00\x00\x00\xfa\x00\x00\x00\xfb\x00\x00\x00\xfd\x00\x00\x00\xfa\x00\x00\x00\xfd\x00\x00\x00\xfc\x00\x00\x00\xfe\x00\x00\x00\xc5\x00\x00\x00\xfc\x00\x00\x00\xfc\x00\x00\x00\xc5\x00\x00\x00\xc3\x00\x00\x00\xfc\x00\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00\xfc\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\x00\x01\x00\x00\xc7\x00\x00\x00\xfe\x00\x00\x00\xfe\x00\x00\x00\xc7\x00\x00\x00\xc5\x00\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00\x01\x01\x00\x00\xfe\x00\x00\x00\x01\x01\x00\x00\x00\x01\x00\x00\x02\x01\x00\x00\xc9\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\xc9\x00\x00\x00\xc7\x00\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\x03\x01\x00\x00\x00\x01\x00\x00\x03\x01\x00\x00\x02\x01\x00\x00\x04\x01\x00\x00\xcb\x00\x00\x00\x02\x01\x00\x00\x02\x01\x00\x00\xcb\x00\x00\x00\xc9\x00\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\x05\x01\x00\x00\x02\x01\x00\x00\x05\x01\x00\x00\x04\x01\x00\x00\x06\x01\x00\x00\xcd\x00\x00\x00\x04\x01\x00\x00\x04\x01\x00\x00\xcd\x00\x00\x00\xcb\x00\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\x07\x01\x00\x00\x04\x01\x00\x00\x07\x01\x00\x00\x06\x01\x00\x00\x08\x01\x00\x00\xcf\x00\x00\x00\x06\x01\x00\x00\x06\x01\x00\x00\xcf\x00\x00\x00\xcd\x00\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\t\x01\x00\x00\x06\x01\x00\x00\t\x01\x00\x00\x08\x01\x00\x00\n\x01\x00\x00\xd1\x00\x00\x00\x08\x01\x00\x00\x08\x01\x00\x00\xd1\x00\x00\x00\xcf\x00\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\x0b\x01\x00\x00\x08\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x00\x0c\x01\x00\x00\xd3\x00\x00\x00\n\x01\x00\x00\n\x01\x00\x00\xd3\x00\x00\x00\xd1\x00\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\r\x01\x00\x00\n\x01\x00\x00\r\x01\x00\x00\x0c\x01\x00\x00\x0e\x01\x00\x00\xd5\x00\x00\x00\x0c\x01\x00\x00\x0c\x01\x00\x00\xd5\x00\x00\x00\xd3\x00\x00\x00\x10\x01\x00\x00\xdc\x00\x00\x00\x0f\x01\x00\x00\x0f\x01\x00\x00\xdc\x00\x00\x00\xdb\x00\x00\x00\x0f\x01\x00\x00\x12\x01\x00\x00\x11\x01\x00\x00\x0f\x01\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\x13\x01\x00\x00\xdd\x00\x00\x00\x10\x01\x00\x00\x10\x01\x00\x00\xdd\x00\x00\x00\xdc\x00\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\x14\x01\x00\x00\x10\x01\x00\x00\x14\x01\x00\x00\x13\x01\x00\x00\x15\x01\x00\x00\xde\x00\x00\x00\x13\x01\x00\x00\x13\x01\x00\x00\xde\x00\x00\x00\xdd\x00\x00\x00\x16\x01\x00\x00\xdf\x00\x00\x00\x15\x01\x00\x00\x15\x01\x00\x00\xdf\x00\x00\x00\xde\x00\x00\x00\x17\x01\x00\x00\xe0\x00\x00\x00\x16\x01\x00\x00\x16\x01\x00\x00\xe0\x00\x00\x00\xdf\x00\x00\x00\x16\x01\x00\x00\x19\x01\x00\x00\x18\x01\x00\x00\x16\x01\x00\x00\x18\x01\x00\x00\x17\x01\x00\x00\x17\x01\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x00\xe3\x00\x00\x00\xe1\x00\x00\x00\x17\x01\x00\x00\x18\x01\x00\x00\xe3\x00\x00\x00\x17\x01\x00\x00\x1a\x01\x00\x00\xe3\x00\x00\x00\x18\x01\x00\x00\x1a\x01\x00\x00\xe5\x00\x00\x00\xe3\x00\x00\x00\x1b\x01\x00\x00\xe5\x00\x00\x00\x1a\x01\x00\x00\x1b\x01\x00\x00\xe7\x00\x00\x00\xe5\x00\x00\x00\x1c\x01\x00\x00\xe7\x00\x00\x00\x1b\x01\x00\x00\x1c\x01\x00\x00\xe9\x00\x00\x00\xe7\x00\x00\x00\x1d\x01\x00\x00\xe9\x00\x00\x00\x1c\x01\x00\x00\x1d\x01\x00\x00\xeb\x00\x00\x00\xe9\x00\x00\x00\x1e\x01\x00\x00\xeb\x00\x00\x00\x1d\x01\x00\x00\x1e\x01\x00\x00\xed\x00\x00\x00\xeb\x00\x00\x00\x1f\x01\x00\x00\xed\x00\x00\x00\x1e\x01\x00\x00\x1f\x01\x00\x00\xef\x00\x00\x00\xed\x00\x00\x00 \x01\x00\x00\xef\x00\x00\x00\x1f\x01\x00\x00 \x01\x00\x00\xf1\x00\x00\x00\xef\x00\x00\x00!\x01\x00\x00\xf1\x00\x00\x00 \x01\x00\x00!\x01\x00\x00\xf3\x00\x00\x00\xf1\x00\x00\x00"\x01\x00\x00\xf3\x00\x00\x00!\x01\x00\x00"\x01\x00\x00\xf5\x00\x00\x00\xf3\x00\x00\x00#\x01\x00\x00\xf5\x00\x00\x00"\x01\x00\x00#\x01\x00\x00\xf7\x00\x00\x00\xf5\x00\x00\x00$\x01\x00\x00\xf7\x00\x00\x00#\x01\x00\x00$\x01\x00\x00\xf9\x00\x00\x00\xf7\x00\x00\x00%\x01\x00\x00\xf9\x00\x00\x00$\x01\x00\x00%\x01\x00\x00\xfb\x00\x00\x00\xf9\x00\x00\x00&\x01\x00\x00\xfb\x00\x00\x00%\x01\x00\x00&\x01\x00\x00\xfd\x00\x00\x00\xfb\x00\x00\x00\'\x01\x00\x00\xfd\x00\x00\x00&\x01\x00\x00\'\x01\x00\x00\xff\x00\x00\x00\xfd\x00\x00\x00(\x01\x00\x00\xff\x00\x00\x00\'\x01\x00\x00(\x01\x00\x00\x01\x01\x00\x00\xff\x00\x00\x00)\x01\x00\x00\x01\x01\x00\x00(\x01\x00\x00)\x01\x00\x00\x03\x01\x00\x00\x01\x01\x00\x00*\x01\x00\x00\x03\x01\x00\x00)\x01\x00\x00*\x01\x00\x00\x05\x01\x00\x00\x03\x01\x00\x00+\x01\x00\x00\x05\x01\x00\x00*\x01\x00\x00+\x01\x00\x00\x07\x01\x00\x00\x05\x01\x00\x00,\x01\x00\x00\x07\x01\x00\x00+\x01\x00\x00,\x01\x00\x00\t\x01\x00\x00\x07\x01\x00\x00-\x01\x00\x00\t\x01\x00\x00,\x01\x00\x00-\x01\x00\x00\x0b\x01\x00\x00\t\x01\x00\x00.\x01\x00\x00\x0b\x01\x00\x00-\x01\x00\x00.\x01\x00\x00\r\x01\x00\x00\x0b\x01\x00\x00/\x01\x00\x00\r\x01\x00\x00.\x01\x00\x00/\x01\x00\x000\x01\x00\x00\r\x01\x00\x001\x01\x00\x000\x01\x00\x00/\x01\x00\x003\x01\x00\x00\x1a\x01\x00\x002\x01\x00\x002\x01\x00\x00\x1a\x01\x00\x00\x18\x01\x00\x002\x01\x00\x005\x01\x00\x004\x01\x00\x002\x01\x00\x004\x01\x00\x003\x01\x00\x006\x01\x00\x00\x1b\x01\x00\x003\x01\x00\x003\x01\x00\x00\x1b\x01\x00\x00\x1a\x01\x00\x003\x01\x00\x004\x01\x00\x007\x01\x00\x003\x01\x00\x007\x01\x00\x006\x01\x00\x008\x01\x00\x00\x1c\x01\x00\x006\x01\x00\x006\x01\x00\x00\x1c\x01\x00\x00\x1b\x01\x00\x006\x01\x00\x007\x01\x00\x009\x01\x00\x006\x01\x00\x009\x01\x00\x008\x01\x00\x00:\x01\x00\x00\x1d\x01\x00\x008\x01\x00\x008\x01\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x008\x01\x00\x009\x01\x00\x00;\x01\x00\x008\x01\x00\x00;\x01\x00\x00:\x01\x00\x00<\x01\x00\x00\x1e\x01\x00\x00:\x01\x00\x00:\x01\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00:\x01\x00\x00;\x01\x00\x00=\x01\x00\x00:\x01\x00\x00=\x01\x00\x00<\x01\x00\x00>\x01\x00\x00\x1f\x01\x00\x00<\x01\x00\x00<\x01\x00\x00\x1f\x01\x00\x00\x1e\x01\x00\x00<\x01\x00\x00=\x01\x00\x00?\x01\x00\x00<\x01\x00\x00?\x01\x00\x00>\x01\x00\x00@\x01\x00\x00 \x01\x00\x00>\x01\x00\x00>\x01\x00\x00 \x01\x00\x00\x1f\x01\x00\x00>\x01\x00\x00?\x01\x00\x00A\x01\x00\x00>\x01\x00\x00A\x01\x00\x00@\x01\x00\x00B\x01\x00\x00!\x01\x00\x00@\x01\x00\x00@\x01\x00\x00!\x01\x00\x00 \x01\x00\x00@\x01\x00\x00A\x01\x00\x00C\x01\x00\x00@\x01\x00\x00C\x01\x00\x00B\x01\x00\x00D\x01\x00\x00"\x01\x00\x00B\x01\x00\x00B\x01\x00\x00"\x01\x00\x00!\x01\x00\x00B\x01\x00\x00C\x01\x00\x00E\x01\x00\x00B\x01\x00\x00E\x01\x00\x00D\x01\x00\x00F\x01\x00\x00#\x01\x00\x00D\x01\x00\x00D\x01\x00\x00#\x01\x00\x00"\x01\x00\x00D\x01\x00\x00E\x01\x00\x00G\x01\x00\x00D\x01\x00\x00G\x01\x00\x00F\x01\x00\x00H\x01\x00\x00$\x01\x00\x00F\x01\x00\x00F\x01\x00\x00$\x01\x00\x00#\x01\x00\x00F\x01\x00\x00G\x01\x00\x00I\x01\x00\x00F\x01\x00\x00I\x01\x00\x00H\x01\x00\x00J\x01\x00\x00%\x01\x00\x00H\x01\x00\x00H\x01\x00\x00%\x01\x00\x00$\x01\x00\x00H\x01\x00\x00I\x01\x00\x00K\x01\x00\x00H\x01\x00\x00K\x01\x00\x00J\x01\x00\x00L\x01\x00\x00&\x01\x00\x00J\x01\x00\x00J\x01\x00\x00&\x01\x00\x00%\x01\x00\x00J\x01\x00\x00K\x01\x00\x00M\x01\x00\x00J\x01\x00\x00M\x01\x00\x00L\x01\x00\x00N\x01\x00\x00\'\x01\x00\x00L\x01\x00\x00L\x01\x00\x00\'\x01\x00\x00&\x01\x00\x00L\x01\x00\x00M\x01\x00\x00O\x01\x00\x00L\x01\x00\x00O\x01\x00\x00N\x01\x00\x00P\x01\x00\x00(\x01\x00\x00N\x01\x00\x00N\x01\x00\x00(\x01\x00\x00\'\x01\x00\x00N\x01\x00\x00O\x01\x00\x00Q\x01\x00\x00N\x01\x00\x00Q\x01\x00\x00P\x01\x00\x00R\x01\x00\x00)\x01\x00\x00P\x01\x00\x00P\x01\x00\x00)\x01\x00\x00(\x01\x00\x00P\x01\x00\x00Q\x01\x00\x00S\x01\x00\x00P\x01\x00\x00S\x01\x00\x00R\x01\x00\x00T\x01\x00\x00*\x01\x00\x00R\x01\x00\x00R\x01\x00\x00*\x01\x00\x00)\x01\x00\x00R\x01\x00\x00S\x01\x00\x00U\x01\x00\x00R\x01\x00\x00U\x01\x00\x00T\x01\x00\x00V\x01\x00\x00+\x01\x00\x00T\x01\x00\x00T\x01\x00\x00+\x01\x00\x00*\x01\x00\x00T\x01\x00\x00U\x01\x00\x00W\x01\x00\x00T\x01\x00\x00W\x01\x00\x00V\x01\x00\x00X\x01\x00\x00,\x01\x00\x00V\x01\x00\x00V\x01\x00\x00,\x01\x00\x00+\x01\x00\x00V\x01\x00\x00W\x01\x00\x00Y\x01\x00\x00V\x01\x00\x00Y\x01\x00\x00X\x01\x00\x00Z\x01\x00\x00-\x01\x00\x00X\x01\x00\x00X\x01\x00\x00-\x01\x00\x00,\x01\x00\x00X\x01\x00\x00Y\x01\x00\x00[\x01\x00\x00X\x01\x00\x00[\x01\x00\x00Z\x01\x00\x00\\\x01\x00\x00.\x01\x00\x00Z\x01\x00\x00Z\x01\x00\x00.\x01\x00\x00-\x01\x00\x00Z\x01\x00\x00[\x01\x00\x00]\x01\x00\x00Z\x01\x00\x00]\x01\x00\x00\\\x01\x00\x00^\x01\x00\x00/\x01\x00\x00\\\x01\x00\x00\\\x01\x00\x00/\x01\x00\x00.\x01\x00\x00\\\x01\x00\x00]\x01\x00\x00_\x01\x00\x00\\\x01\x00\x00_\x01\x00\x00^\x01\x00\x00`\x01\x00\x001\x01\x00\x00^\x01\x00\x00^\x01\x00\x001\x01\x00\x00/\x01\x00\x00b\x01\x00\x009\x01\x00\x00a\x01\x00\x00a\x01\x00\x009\x01\x00\x007\x01\x00\x00c\x01\x00\x00;\x01\x00\x00b\x01\x00\x00b\x01\x00\x00;\x01\x00\x009\x01\x00\x00b\x01\x00\x00e\x01\x00\x00d\x01\x00\x00b\x01\x00\x00d\x01\x00\x00c\x01\x00\x00f\x01\x00\x00=\x01\x00\x00c\x01\x00\x00c\x01\x00\x00=\x01\x00\x00;\x01\x00\x00c\x01\x00\x00d\x01\x00\x00g\x01\x00\x00c\x01\x00\x00g\x01\x00\x00f\x01\x00\x00h\x01\x00\x00?\x01\x00\x00f\x01\x00\x00f\x01\x00\x00?\x01\x00\x00=\x01\x00\x00f\x01\x00\x00g\x01\x00\x00i\x01\x00\x00f\x01\x00\x00i\x01\x00\x00h\x01\x00\x00j\x01\x00\x00A\x01\x00\x00h\x01\x00\x00h\x01\x00\x00A\x01\x00\x00?\x01\x00\x00h\x01\x00\x00i\x01\x00\x00k\x01\x00\x00h\x01\x00\x00k\x01\x00\x00j\x01\x00\x00l\x01\x00\x00C\x01\x00\x00j\x01\x00\x00j\x01\x00\x00C\x01\x00\x00A\x01\x00\x00j\x01\x00\x00k\x01\x00\x00m\x01\x00\x00j\x01\x00\x00m\x01\x00\x00l\x01\x00\x00n\x01\x00\x00E\x01\x00\x00l\x01\x00\x00l\x01\x00\x00E\x01\x00\x00C\x01\x00\x00l\x01\x00\x00m\x01\x00\x00o\x01\x00\x00l\x01\x00\x00o\x01\x00\x00n\x01\x00\x00p\x01\x00\x00G\x01\x00\x00n\x01\x00\x00n\x01\x00\x00G\x01\x00\x00E\x01\x00\x00n\x01\x00\x00o\x01\x00\x00q\x01\x00\x00n\x01\x00\x00q\x01\x00\x00p\x01\x00\x00r\x01\x00\x00I\x01\x00\x00p\x01\x00\x00p\x01\x00\x00I\x01\x00\x00G\x01\x00\x00p\x01\x00\x00q\x01\x00\x00s\x01\x00\x00p\x01\x00\x00s\x01\x00\x00r\x01\x00\x00t\x01\x00\x00K\x01\x00\x00r\x01\x00\x00r\x01\x00\x00K\x01\x00\x00I\x01\x00\x00r\x01\x00\x00s\x01\x00\x00u\x01\x00\x00r\x01\x00\x00u\x01\x00\x00t\x01\x00\x00v\x01\x00\x00M\x01\x00\x00t\x01\x00\x00t\x01\x00\x00M\x01\x00\x00K\x01\x00\x00t\x01\x00\x00u\x01\x00\x00w\x01\x00\x00t\x01\x00\x00w\x01\x00\x00v\x01\x00\x00x\x01\x00\x00O\x01\x00\x00v\x01\x00\x00v\x01\x00\x00O\x01\x00\x00M\x01\x00\x00v\x01\x00\x00w\x01\x00\x00y\x01\x00\x00v\x01\x00\x00y\x01\x00\x00x\x01\x00\x00z\x01\x00\x00Q\x01\x00\x00x\x01\x00\x00x\x01\x00\x00Q\x01\x00\x00O\x01\x00\x00x\x01\x00\x00y\x01\x00\x00{\x01\x00\x00x\x01\x00\x00{\x01\x00\x00z\x01\x00\x00|\x01\x00\x00S\x01\x00\x00z\x01\x00\x00z\x01\x00\x00S\x01\x00\x00Q\x01\x00\x00z\x01\x00\x00{\x01\x00\x00}\x01\x00\x00z\x01\x00\x00}\x01\x00\x00|\x01\x00\x00~\x01\x00\x00U\x01\x00\x00|\x01\x00\x00|\x01\x00\x00U\x01\x00\x00S\x01\x00\x00|\x01\x00\x00}\x01\x00\x00\x7f\x01\x00\x00|\x01\x00\x00\x7f\x01\x00\x00~\x01\x00\x00\x80\x01\x00\x00W\x01\x00\x00~\x01\x00\x00~\x01\x00\x00W\x01\x00\x00U\x01\x00\x00~\x01\x00\x00\x7f\x01\x00\x00\x81\x01\x00\x00~\x01\x00\x00\x81\x01\x00\x00\x80\x01\x00\x00\x82\x01\x00\x00Y\x01\x00\x00\x80\x01\x00\x00\x80\x01\x00\x00Y\x01\x00\x00W\x01\x00\x00\x80\x01\x00\x00\x81\x01\x00\x00\x83\x01\x00\x00\x80\x01\x00\x00\x83\x01\x00\x00\x82\x01\x00\x00\x84\x01\x00\x00[\x01\x00\x00\x82\x01\x00\x00\x82\x01\x00\x00[\x01\x00\x00Y\x01\x00\x00\x82\x01\x00\x00\x83\x01\x00\x00\x85\x01\x00\x00\x82\x01\x00\x00\x85\x01\x00\x00\x84\x01\x00\x00\x86\x01\x00\x00]\x01\x00\x00\x84\x01\x00\x00\x84\x01\x00\x00]\x01\x00\x00[\x01\x00\x00\x84\x01\x00\x00\x85\x01\x00\x00\x87\x01\x00\x00\x84\x01\x00\x00\x87\x01\x00\x00\x86\x01\x00\x00\x88\x01\x00\x00_\x01\x00\x00\x86\x01\x00\x00\x86\x01\x00\x00_\x01\x00\x00]\x01\x00\x00\x8a\x01\x00\x00g\x01\x00\x00\x89\x01\x00\x00\x89\x01\x00\x00g\x01\x00\x00d\x01\x00\x00\x8b\x01\x00\x00i\x01\x00\x00\x8a\x01\x00\x00\x8a\x01\x00\x00i\x01\x00\x00g\x01\x00\x00\x8a\x01\x00\x00\x8d\x01\x00\x00\x8c\x01\x00\x00\x8a\x01\x00\x00\x8c\x01\x00\x00\x8b\x01\x00\x00\x8e\x01\x00\x00k\x01\x00\x00\x8b\x01\x00\x00\x8b\x01\x00\x00k\x01\x00\x00i\x01\x00\x00\x8b\x01\x00\x00\x8c\x01\x00\x00\x8f\x01\x00\x00\x8b\x01\x00\x00\x8f\x01\x00\x00\x8e\x01\x00\x00\x90\x01\x00\x00m\x01\x00\x00\x8e\x01\x00\x00\x8e\x01\x00\x00m\x01\x00\x00k\x01\x00\x00\x8e\x01\x00\x00\x8f\x01\x00\x00\x91\x01\x00\x00\x8e\x01\x00\x00\x91\x01\x00\x00\x90\x01\x00\x00\x92\x01\x00\x00o\x01\x00\x00\x90\x01\x00\x00\x90\x01\x00\x00o\x01\x00\x00m\x01\x00\x00\x90\x01\x00\x00\x91\x01\x00\x00\x93\x01\x00\x00\x90\x01\x00\x00\x93\x01\x00\x00\x92\x01\x00\x00\x94\x01\x00\x00q\x01\x00\x00\x92\x01\x00\x00\x92\x01\x00\x00q\x01\x00\x00o\x01\x00\x00\x92\x01\x00\x00\x93\x01\x00\x00\x95\x01\x00\x00\x92\x01\x00\x00\x95\x01\x00\x00\x94\x01\x00\x00\x96\x01\x00\x00s\x01\x00\x00\x94\x01\x00\x00\x94\x01\x00\x00s\x01\x00\x00q\x01\x00\x00\x94\x01\x00\x00\x95\x01\x00\x00\x97\x01\x00\x00\x94\x01\x00\x00\x97\x01\x00\x00\x96\x01\x00\x00\x98\x01\x00\x00u\x01\x00\x00\x96\x01\x00\x00\x96\x01\x00\x00u\x01\x00\x00s\x01\x00\x00\x96\x01\x00\x00\x97\x01\x00\x00\x99\x01\x00\x00\x96\x01\x00\x00\x99\x01\x00\x00\x98\x01\x00\x00\x9a\x01\x00\x00w\x01\x00\x00\x98\x01\x00\x00\x98\x01\x00\x00w\x01\x00\x00u\x01\x00\x00\x98\x01\x00\x00\x99\x01\x00\x00\x9b\x01\x00\x00\x98\x01\x00\x00\x9b\x01\x00\x00\x9a\x01\x00\x00\x9c\x01\x00\x00y\x01\x00\x00\x9a\x01\x00\x00\x9a\x01\x00\x00y\x01\x00\x00w\x01\x00\x00\x9a\x01\x00\x00\x9b\x01\x00\x00\x9d\x01\x00\x00\x9a\x01\x00\x00\x9d\x01\x00\x00\x9c\x01\x00\x00\x9e\x01\x00\x00{\x01\x00\x00\x9c\x01\x00\x00\x9c\x01\x00\x00{\x01\x00\x00y\x01\x00\x00\x9c\x01\x00\x00\x9d\x01\x00\x00\x9f\x01\x00\x00\x9c\x01\x00\x00\x9f\x01\x00\x00\x9e\x01\x00\x00\xa0\x01\x00\x00}\x01\x00\x00\x9e\x01\x00\x00\x9e\x01\x00\x00}\x01\x00\x00{\x01\x00\x00\x9e\x01\x00\x00\x9f\x01\x00\x00\xa1\x01\x00\x00\x9e\x01\x00\x00\xa1\x01\x00\x00\xa0\x01\x00\x00\xa2\x01\x00\x00\x7f\x01\x00\x00\xa0\x01\x00\x00\xa0\x01\x00\x00\x7f\x01\x00\x00}\x01\x00\x00\xa0\x01\x00\x00\xa1\x01\x00\x00\xa3\x01\x00\x00\xa0\x01\x00\x00\xa3\x01\x00\x00\xa2\x01\x00\x00\xa4\x01\x00\x00\x81\x01\x00\x00\xa2\x01\x00\x00\xa2\x01\x00\x00\x81\x01\x00\x00\x7f\x01\x00\x00\xa2\x01\x00\x00\xa3\x01\x00\x00\xa5\x01\x00\x00\xa2\x01\x00\x00\xa5\x01\x00\x00\xa4\x01\x00\x00\xa6\x01\x00\x00\x83\x01\x00\x00\xa4\x01\x00\x00\xa4\x01\x00\x00\x83\x01\x00\x00\x81\x01\x00\x00\xa4\x01\x00\x00\xa5\x01\x00\x00\xa7\x01\x00\x00\xa4\x01\x00\x00\xa7\x01\x00\x00\xa6\x01\x00\x00\xa8\x01\x00\x00\x85\x01\x00\x00\xa6\x01\x00\x00\xa6\x01\x00\x00\x85\x01\x00\x00\x83\x01\x00\x00\xa6\x01\x00\x00\xa7\x01\x00\x00\xa9\x01\x00\x00\xa6\x01\x00\x00\xa9\x01\x00\x00\xa8\x01\x00\x00\xaa\x01\x00\x00\x87\x01\x00\x00\xa8\x01\x00\x00\xa8\x01\x00\x00\x87\x01\x00\x00\x85\x01\x00\x00\xac\x01\x00\x00\x91\x01\x00\x00\xab\x01\x00\x00\xab\x01\x00\x00\x91\x01\x00\x00\x8f\x01\x00\x00\xad\x01\x00\x00\x93\x01\x00\x00\xac\x01\x00\x00\xac\x01\x00\x00\x93\x01\x00\x00\x91\x01\x00\x00\xac\x01\x00\x00\xaf\x01\x00\x00\xae\x01\x00\x00\xac\x01\x00\x00\xae\x01\x00\x00\xad\x01\x00\x00\xb0\x01\x00\x00\x95\x01\x00\x00\xad\x01\x00\x00\xad\x01\x00\x00\x95\x01\x00\x00\x93\x01\x00\x00\xad\x01\x00\x00\xae\x01\x00\x00\xb1\x01\x00\x00\xad\x01\x00\x00\xb1\x01\x00\x00\xb0\x01\x00\x00\xb2\x01\x00\x00\x97\x01\x00\x00\xb0\x01\x00\x00\xb0\x01\x00\x00\x97\x01\x00\x00\x95\x01\x00\x00\xb0\x01\x00\x00\xb1\x01\x00\x00\xb3\x01\x00\x00\xb0\x01\x00\x00\xb3\x01\x00\x00\xb2\x01\x00\x00\xb5\x01\x00\x00\xb4\x01\x00\x00\xb2\x01\x00\x00\xb4\x01\x00\x00\x97\x01\x00\x00\xb2\x01\x00\x00\xb4\x01\x00\x00\x99\x01\x00\x00\x97\x01\x00\x00\xb5\x01\x00\x00\xb2\x01\x00\x00\xb3\x01\x00\x00\xb4\x01\x00\x00\x9b\x01\x00\x00\x99\x01\x00\x00\xb6\x01\x00\x00\x9b\x01\x00\x00\xb4\x01\x00\x00\xb6\x01\x00\x00\x9d\x01\x00\x00\x9b\x01\x00\x00\xb7\x01\x00\x00\x9d\x01\x00\x00\xb6\x01\x00\x00\xb7\x01\x00\x00\x9f\x01\x00\x00\x9d\x01\x00\x00\xb8\x01\x00\x00\x9f\x01\x00\x00\xb7\x01\x00\x00\xb8\x01\x00\x00\xa1\x01\x00\x00\x9f\x01\x00\x00\xb9\x01\x00\x00\xa1\x01\x00\x00\xb8\x01\x00\x00\xb9\x01\x00\x00\xa3\x01\x00\x00\xa1\x01\x00\x00\xba\x01\x00\x00\xa3\x01\x00\x00\xb9\x01\x00\x00\xba\x01\x00\x00\xa5\x01\x00\x00\xa3\x01\x00\x00\xbb\x01\x00\x00\xa5\x01\x00\x00\xba\x01\x00\x00\xbb\x01\x00\x00\xa7\x01\x00\x00\xa5\x01\x00\x00\xbc\x01\x00\x00\xa7\x01\x00\x00\xbb\x01\x00\x00\xbe\x01\x00\x00\xa9\x01\x00\x00\xbd\x01\x00\x00\xa9\x01\x00\x00\xbc\x01\x00\x00\xbd\x01\x00\x00\xa9\x01\x00\x00\xa7\x01\x00\x00\xbc\x01\x00\x00\xbf\x01\x00\x00\xbe\x01\x00\x00\xbd\x01\x00\x00\xc1\x01\x00\x00\xc0\x01\x00\x00\xbe\x01\x00\x00\xbe\x01\x00\x00\xc0\x01\x00\x00\xa9\x01\x00\x00\xc2\x01\x00\x00\xb1\x01\x00\x00\xae\x01\x00\x00\xc3\x01\x00\x00\xb1\x01\x00\x00\xc2\x01\x00\x00\xc3\x01\x00\x00\xb3\x01\x00\x00\xb1\x01\x00\x00\xc4\x01\x00\x00\xb3\x01\x00\x00\xc3\x01\x00\x00\xc5\x01\x00\x00\xb4\x01\x00\x00\xb5\x01\x00\x00\xc6\x01\x00\x00\xc5\x01\x00\x00\xb5\x01\x00\x00\xb3\x01\x00\x00\xc6\x01\x00\x00\xb5\x01\x00\x00\xc4\x01\x00\x00\xc6\x01\x00\x00\xb3\x01\x00\x00\xc7\x01\x00\x00\xb6\x01\x00\x00\xc5\x01\x00\x00\xc5\x01\x00\x00\xb6\x01\x00\x00\xb4\x01\x00\x00\xc5\x01\x00\x00\xc6\x01\x00\x00\xc8\x01\x00\x00\xc5\x01\x00\x00\xc8\x01\x00\x00\xc7\x01\x00\x00\xc9\x01\x00\x00\xb7\x01\x00\x00\xc7\x01\x00\x00\xc7\x01\x00\x00\xb7\x01\x00\x00\xb6\x01\x00\x00\xc7\x01\x00\x00\xc8\x01\x00\x00\xca\x01\x00\x00\xc7\x01\x00\x00\xca\x01\x00\x00\xc9\x01\x00\x00\xcb\x01\x00\x00\xb8\x01\x00\x00\xc9\x01\x00\x00\xc9\x01\x00\x00\xb8\x01\x00\x00\xb7\x01\x00\x00\xc9\x01\x00\x00\xca\x01\x00\x00\xcc\x01\x00\x00\xc9\x01\x00\x00\xcc\x01\x00\x00\xcb\x01\x00\x00\xcd\x01\x00\x00\xb9\x01\x00\x00\xcb\x01\x00\x00\xcb\x01\x00\x00\xb9\x01\x00\x00\xb8\x01\x00\x00\xcb\x01\x00\x00\xcc\x01\x00\x00\xce\x01\x00\x00\xcb\x01\x00\x00\xce\x01\x00\x00\xcd\x01\x00\x00\xcf\x01\x00\x00\xba\x01\x00\x00\xcd\x01\x00\x00\xcd\x01\x00\x00\xba\x01\x00\x00\xb9\x01\x00\x00\xcd\x01\x00\x00\xce\x01\x00\x00\xd0\x01\x00\x00\xcd\x01\x00\x00\xd0\x01\x00\x00\xcf\x01\x00\x00\xd1\x01\x00\x00\xbb\x01\x00\x00\xcf\x01\x00\x00\xcf\x01\x00\x00\xbb\x01\x00\x00\xba\x01\x00\x00\xcf\x01\x00\x00\xd0\x01\x00\x00\xd2\x01\x00\x00\xcf\x01\x00\x00\xd2\x01\x00\x00\xd1\x01\x00\x00\xd3\x01\x00\x00\xbc\x01\x00\x00\xd1\x01\x00\x00\xd1\x01\x00\x00\xbc\x01\x00\x00\xbb\x01\x00\x00\xd1\x01\x00\x00\xd2\x01\x00\x00\xd4\x01\x00\x00\xd1\x01\x00\x00\xd4\x01\x00\x00\xd3\x01\x00\x00\xd3\x01\x00\x00\xbd\x01\x00\x00\xbc\x01\x00\x00\xbf\x01\x00\x00\xbd\x01\x00\x00\xd3\x01\x00\x00\xd4\x01\x00\x00\xbf\x01\x00\x00\xd3\x01\x00\x00\xd5\x01\x00\x00\xbf\x01\x00\x00\xd4\x01\x00\x00\xd7\x01\x00\x00\xc6\x01\x00\x00\xd6\x01\x00\x00\xd6\x01\x00\x00\xc6\x01\x00\x00\xc4\x01\x00\x00\xd8\x01\x00\x00\xc8\x01\x00\x00\xd7\x01\x00\x00\xd7\x01\x00\x00\xc8\x01\x00\x00\xc6\x01\x00\x00\xd7\x01\x00\x00\xda\x01\x00\x00\xd9\x01\x00\x00\xd7\x01\x00\x00\xd9\x01\x00\x00\xd8\x01\x00\x00\xdb\x01\x00\x00\xca\x01\x00\x00\xd8\x01\x00\x00\xd8\x01\x00\x00\xca\x01\x00\x00\xc8\x01\x00\x00\xd8\x01\x00\x00\xd9\x01\x00\x00\xdc\x01\x00\x00\xd8\x01\x00\x00\xdc\x01\x00\x00\xdb\x01\x00\x00\xdd\x01\x00\x00\xcc\x01\x00\x00\xdb\x01\x00\x00\xdb\x01\x00\x00\xcc\x01\x00\x00\xca\x01\x00\x00\xdb\x01\x00\x00\xdc\x01\x00\x00\xde\x01\x00\x00\xdb\x01\x00\x00\xde\x01\x00\x00\xdd\x01\x00\x00\xdf\x01\x00\x00\xce\x01\x00\x00\xdd\x01\x00\x00\xdd\x01\x00\x00\xce\x01\x00\x00\xcc\x01\x00\x00\xdd\x01\x00\x00\xde\x01\x00\x00\xe0\x01\x00\x00\xdd\x01\x00\x00\xe0\x01\x00\x00\xdf\x01\x00\x00\xe1\x01\x00\x00\xd0\x01\x00\x00\xdf\x01\x00\x00\xdf\x01\x00\x00\xd0\x01\x00\x00\xce\x01\x00\x00\xe2\x01\x00\x00\xd2\x01\x00\x00\xe1\x01\x00\x00\xe1\x01\x00\x00\xd2\x01\x00\x00\xd0\x01\x00\x00\xe1\x01\x00\x00\xe4\x01\x00\x00\xe3\x01\x00\x00\xe1\x01\x00\x00\xe3\x01\x00\x00\xe2\x01\x00\x00\xe5\x01\x00\x00\xd4\x01\x00\x00\xe2\x01\x00\x00\xe2\x01\x00\x00\xd4\x01\x00\x00\xd2\x01\x00\x00\xe2\x01\x00\x00\xe3\x01\x00\x00\xe6\x01\x00\x00\xe2\x01\x00\x00\xe6\x01\x00\x00\xe5\x01\x00\x00\xe7\x01\x00\x00\xd5\x01\x00\x00\xe5\x01\x00\x00\xe5\x01\x00\x00\xd5\x01\x00\x00\xd4\x01\x00\x00\xe8\x01\x00\x00\xd9\x01\x00\x00\xda\x01\x00\x00\xe9\x01\x00\x00\xd9\x01\x00\x00\xe8\x01\x00\x00\xe9\x01\x00\x00\xdc\x01\x00\x00\xd9\x01\x00\x00\xea\x01\x00\x00\xdc\x01\x00\x00\xe9\x01\x00\x00\xea\x01\x00\x00\xde\x01\x00\x00\xdc\x01\x00\x00\xeb\x01\x00\x00\xde\x01\x00\x00\xea\x01\x00\x00\xeb\x01\x00\x00\xe0\x01\x00\x00\xde\x01\x00\x00\xec\x01\x00\x00\xe0\x01\x00\x00\xeb\x01\x00\x00\xec\x01\x00\x00\xe4\x01\x00\x00\xe0\x01\x00\x00\xed\x01\x00\x00\xe4\x01\x00\x00\xec\x01\x00\x00\xed\x01\x00\x00\xe3\x01\x00\x00\xe4\x01\x00\x00\xee\x01\x00\x00\xe3\x01\x00\x00\xed\x01\x00\x00\xee\x01\x00\x00\xe6\x01\x00\x00\xe3\x01\x00\x00\xef\x01\x00\x00\xe6\x01\x00\x00\xee\x01\x00\x00\xf1\x01\x00\x00\xe9\x01\x00\x00\xf0\x01\x00\x00\xf0\x01\x00\x00\xe9\x01\x00\x00\xe8\x01\x00\x00\xf2\x01\x00\x00\xea\x01\x00\x00\xf1\x01\x00\x00\xf1\x01\x00\x00\xea\x01\x00\x00\xe9\x01\x00\x00\xf1\x01\x00\x00\xf4\x01\x00\x00\xf3\x01\x00\x00\xf1\x01\x00\x00\xf3\x01\x00\x00\xf2\x01\x00\x00\xf5\x01\x00\x00\xeb\x01\x00\x00\xf2\x01\x00\x00\xf2\x01\x00\x00\xeb\x01\x00\x00\xea\x01\x00\x00\xf2\x01\x00\x00\xf3\x01\x00\x00\xf6\x01\x00\x00\xf2\x01\x00\x00\xf6\x01\x00\x00\xf5\x01\x00\x00\xf7\x01\x00\x00\xec\x01\x00\x00\xf5\x01\x00\x00\xf5\x01\x00\x00\xec\x01\x00\x00\xeb\x01\x00\x00\xf5\x01\x00\x00\xf6\x01\x00\x00\xf8\x01\x00\x00\xf5\x01\x00\x00\xf8\x01\x00\x00\xf7\x01\x00\x00\xf9\x01\x00\x00\xed\x01\x00\x00\xf7\x01\x00\x00\xf7\x01\x00\x00\xed\x01\x00\x00\xec\x01\x00\x00\xf7\x01\x00\x00\xf8\x01\x00\x00\xfa\x01\x00\x00\xf7\x01\x00\x00\xfa\x01\x00\x00\xf9\x01\x00\x00\xfb\x01\x00\x00\xee\x01\x00\x00\xf9\x01\x00\x00\xf9\x01\x00\x00\xee\x01\x00\x00\xed\x01\x00\x00\xf9\x01\x00\x00\xfa\x01\x00\x00\xfc\x01\x00\x00\xf9\x01\x00\x00\xfc\x01\x00\x00\xfb\x01\x00\x00\xfd\x01\x00\x00\xef\x01\x00\x00\xfb\x01\x00\x00\xfb\x01\x00\x00\xef\x01\x00\x00\xee\x01\x00\x00\xff\x01\x00\x00\xf3\x01\x00\x00\xfe\x01\x00\x00\xfe\x01\x00\x00\xf3\x01\x00\x00\xf4\x01\x00\x00\x00\x02\x00\x00\xf6\x01\x00\x00\xff\x01\x00\x00\xff\x01\x00\x00\xf6\x01\x00\x00\xf3\x01\x00\x00\x01\x02\x00\x00\xf8\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\xf8\x01\x00\x00\xf6\x01\x00\x00\x00\x02\x00\x00\x03\x02\x00\x00\x02\x02\x00\x00\x00\x02\x00\x00\x02\x02\x00\x00\x01\x02\x00\x00\x04\x02\x00\x00\xfa\x01\x00\x00\x01\x02\x00\x00\x01\x02\x00\x00\xfa\x01\x00\x00\xf8\x01\x00\x00\x01\x02\x00\x00\x02\x02\x00\x00\x05\x02\x00\x00\x01\x02\x00\x00\x05\x02\x00\x00\x04\x02\x00\x00\x06\x02\x00\x00\xfc\x01\x00\x00\x04\x02\x00\x00\x04\x02\x00\x00\xfc\x01\x00\x00\xfa\x01\x00\x00\x04\x02\x00\x00\x05\x02\x00\x00\x07\x02\x00\x00\x04\x02\x00\x00\x07\x02\x00\x00\x06\x02\x00\x00\t\x02\x00\x00\x08\x02\x00\x00\x06\x02\x00\x00\x06\x02\x00\x00\x08\x02\x00\x00\xfc\x01\x00\x00\x0b\x02\x00\x00\n\x02\x00\x00\t\x02\x00\x00\t\x02\x00\x00\n\x02\x00\x00\x08\x02\x00\x00\r\x02\x00\x00\x03\x02\x00\x00\x0c\x02\x00\x00\x0e\x02\x00\x00\x03\x02\x00\x00\r\x02\x00\x00\x0e\x02\x00\x00\x02\x02\x00\x00\x03\x02\x00\x00\x0f\x02\x00\x00\x02\x02\x00\x00\x0e\x02\x00\x00\x0f\x02\x00\x00\x05\x02\x00\x00\x02\x02\x00\x00\x10\x02\x00\x00\x05\x02\x00\x00\x0f\x02\x00\x00\x10\x02\x00\x00\x07\x02\x00\x00\x05\x02\x00\x00\x11\x02\x00\x00\x07\x02\x00\x00\x10\x02\x00\x00\x11\x02\x00\x00\x12\x02\x00\x00\x07\x02\x00\x00\x13\x02\x00\x00\x12\x02\x00\x00\x11\x02\x00\x00\x13\x02\x00\x00\x14\x02\x00\x00\x12\x02\x00\x00\x15\x02\x00\x00\x14\x02\x00\x00\x13\x02\x00\x00\x16\x02\x00\x00\x0e\x02\x00\x00\r\x02\x00\x00\x17\x02\x00\x00\x0e\x02\x00\x00\x16\x02\x00\x00\x17\x02\x00\x00\x0f\x02\x00\x00\x0e\x02\x00\x00\x18\x02\x00\x00\x0f\x02\x00\x00\x17\x02\x00\x00\x18\x02\x00\x00\x10\x02\x00\x00\x0f\x02\x00\x00\x19\x02\x00\x00\x10\x02\x00\x00\x18\x02\x00\x00\x19\x02\x00\x00\x11\x02\x00\x00\x10\x02\x00\x00\x1a\x02\x00\x00\x11\x02\x00\x00\x19\x02\x00\x00\x1a\x02\x00\x00\x13\x02\x00\x00\x11\x02\x00\x00\x1b\x02\x00\x00\x13\x02\x00\x00\x1a\x02\x00\x00\x1b\x02\x00\x00\x15\x02\x00\x00\x13\x02\x00\x00\x1c\x02\x00\x00\x15\x02\x00\x00\x1b\x02\x00\x00\x1c\x02\x00\x00\x1d\x02\x00\x00\x15\x02\x00\x00\x1e\x02\x00\x00\x1d\x02\x00\x00\x1c\x02\x00\x00 \x02\x00\x00\x17\x02\x00\x00\x1f\x02\x00\x00\x1f\x02\x00\x00\x17\x02\x00\x00\x16\x02\x00\x00!\x02\x00\x00\x18\x02\x00\x00 \x02\x00\x00 \x02\x00\x00\x18\x02\x00\x00\x17\x02\x00\x00"\x02\x00\x00\x19\x02\x00\x00!\x02\x00\x00!\x02\x00\x00\x19\x02\x00\x00\x18\x02\x00\x00!\x02\x00\x00$\x02\x00\x00#\x02\x00\x00!\x02\x00\x00#\x02\x00\x00"\x02\x00\x00%\x02\x00\x00\x1a\x02\x00\x00"\x02\x00\x00"\x02\x00\x00\x1a\x02\x00\x00\x19\x02\x00\x00"\x02\x00\x00#\x02\x00\x00&\x02\x00\x00"\x02\x00\x00&\x02\x00\x00%\x02\x00\x00\'\x02\x00\x00\x1b\x02\x00\x00%\x02\x00\x00%\x02\x00\x00\x1b\x02\x00\x00\x1a\x02\x00\x00%\x02\x00\x00&\x02\x00\x00(\x02\x00\x00%\x02\x00\x00(\x02\x00\x00\'\x02\x00\x00)\x02\x00\x00\x1c\x02\x00\x00\'\x02\x00\x00\'\x02\x00\x00\x1c\x02\x00\x00\x1b\x02\x00\x00*\x02\x00\x00&\x02\x00\x00#\x02\x00\x00+\x02\x00\x00&\x02\x00\x00*\x02\x00\x00+\x02\x00\x00(\x02\x00\x00&\x02\x00\x00,\x02\x00\x00(\x02\x00\x00+\x02\x00\x00/\x02\x00\x00.\x02\x00\x00-\x02\x00\x00.\x02\x00\x000\x02\x00\x00-\x02\x00\x00.\x02\x00\x001\x02\x00\x000\x02\x00\x00-\x02\x00\x000\x02\x00\x002\x02\x00\x002\x02\x00\x000\x02\x00\x003\x02\x00\x002\x02\x00\x003\x02\x00\x004\x02\x00\x004\x02\x00\x003\x02\x00\x005\x02\x00\x008\x02\x00\x007\x02\x00\x006\x02\x00\x006\x02\x00\x007\x02\x00\x009\x02\x00\x006\x02\x00\x009\x02\x00\x00:\x02\x00\x00:\x02\x00\x009\x02\x00\x00;\x02\x00\x00;\x02\x00\x00<\x02\x00\x00:\x02\x00\x001\x02\x00\x00:\x02\x00\x00<\x02\x00\x00=\x02\x00\x001\x02\x00\x00<\x02\x00\x000\x02\x00\x001\x02\x00\x00=\x02\x00\x00=\x02\x00\x003\x02\x00\x000\x02\x00\x00>\x02\x00\x003\x02\x00\x00=\x02\x00\x00>\x02\x00\x005\x02\x00\x003\x02\x00\x00?\x02\x00\x005\x02\x00\x00>\x02\x00\x00?\x02\x00\x00@\x02\x00\x005\x02\x00\x00A\x02\x00\x00@\x02\x00\x00?\x02\x00\x00A\x02\x00\x00B\x02\x00\x00@\x02\x00\x00C\x02\x00\x00B\x02\x00\x00A\x02\x00\x00C\x02\x00\x00D\x02\x00\x00B\x02\x00\x00E\x02\x00\x00D\x02\x00\x00C\x02\x00\x00G\x02\x00\x00D\x02\x00\x00F\x02\x00\x00D\x02\x00\x00H\x02\x00\x00F\x02\x00\x00D\x02\x00\x00E\x02\x00\x00H\x02\x00\x00K\x02\x00\x00J\x02\x00\x00I\x02\x00\x00L\x02\x00\x009\x02\x00\x007\x02\x00\x00M\x02\x00\x009\x02\x00\x00L\x02\x00\x00M\x02\x00\x00;\x02\x00\x009\x02\x00\x00N\x02\x00\x00;\x02\x00\x00M\x02\x00\x00<\x02\x00\x00;\x02\x00\x00O\x02\x00\x00;\x02\x00\x00P\x02\x00\x00O\x02\x00\x00;\x02\x00\x00N\x02\x00\x00P\x02\x00\x00O\x02\x00\x00=\x02\x00\x00<\x02\x00\x00O\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00Q\x02\x00\x00P\x02\x00\x00R\x02\x00\x00Q\x02\x00\x00>\x02\x00\x00=\x02\x00\x00Q\x02\x00\x00=\x02\x00\x00O\x02\x00\x00Q\x02\x00\x00R\x02\x00\x00S\x02\x00\x00S\x02\x00\x00R\x02\x00\x00T\x02\x00\x00S\x02\x00\x00?\x02\x00\x00>\x02\x00\x00S\x02\x00\x00>\x02\x00\x00Q\x02\x00\x00S\x02\x00\x00T\x02\x00\x00U\x02\x00\x00U\x02\x00\x00T\x02\x00\x00V\x02\x00\x00U\x02\x00\x00A\x02\x00\x00?\x02\x00\x00U\x02\x00\x00?\x02\x00\x00S\x02\x00\x00U\x02\x00\x00V\x02\x00\x00W\x02\x00\x00W\x02\x00\x00V\x02\x00\x00X\x02\x00\x00W\x02\x00\x00C\x02\x00\x00A\x02\x00\x00W\x02\x00\x00A\x02\x00\x00U\x02\x00\x00W\x02\x00\x00X\x02\x00\x00Y\x02\x00\x00Y\x02\x00\x00X\x02\x00\x00Z\x02\x00\x00Y\x02\x00\x00E\x02\x00\x00C\x02\x00\x00Y\x02\x00\x00C\x02\x00\x00W\x02\x00\x00Y\x02\x00\x00Z\x02\x00\x00[\x02\x00\x00[\x02\x00\x00Z\x02\x00\x00\\\x02\x00\x00[\x02\x00\x00H\x02\x00\x00E\x02\x00\x00[\x02\x00\x00E\x02\x00\x00Y\x02\x00\x00[\x02\x00\x00\\\x02\x00\x00]\x02\x00\x00]\x02\x00\x00\\\x02\x00\x00^\x02\x00\x00]\x02\x00\x00_\x02\x00\x00H\x02\x00\x00]\x02\x00\x00H\x02\x00\x00[\x02\x00\x00]\x02\x00\x00^\x02\x00\x00`\x02\x00\x00`\x02\x00\x00^\x02\x00\x00a\x02\x00\x00`\x02\x00\x00a\x02\x00\x00b\x02\x00\x00b\x02\x00\x00a\x02\x00\x00c\x02\x00\x00b\x02\x00\x00c\x02\x00\x00d\x02\x00\x00d\x02\x00\x00c\x02\x00\x00e\x02\x00\x00J\x02\x00\x00K\x02\x00\x00f\x02\x00\x00K\x02\x00\x00g\x02\x00\x00f\x02\x00\x00K\x02\x00\x00h\x02\x00\x00g\x02\x00\x00f\x02\x00\x00g\x02\x00\x00i\x02\x00\x00i\x02\x00\x00g\x02\x00\x00j\x02\x00\x00i\x02\x00\x00M\x02\x00\x00L\x02\x00\x00i\x02\x00\x00L\x02\x00\x00f\x02\x00\x00i\x02\x00\x00j\x02\x00\x00k\x02\x00\x00k\x02\x00\x00j\x02\x00\x00l\x02\x00\x00k\x02\x00\x00N\x02\x00\x00M\x02\x00\x00k\x02\x00\x00M\x02\x00\x00i\x02\x00\x00k\x02\x00\x00l\x02\x00\x00m\x02\x00\x00m\x02\x00\x00l\x02\x00\x00n\x02\x00\x00m\x02\x00\x00P\x02\x00\x00N\x02\x00\x00m\x02\x00\x00N\x02\x00\x00k\x02\x00\x00m\x02\x00\x00n\x02\x00\x00o\x02\x00\x00o\x02\x00\x00n\x02\x00\x00p\x02\x00\x00o\x02\x00\x00R\x02\x00\x00P\x02\x00\x00o\x02\x00\x00P\x02\x00\x00m\x02\x00\x00o\x02\x00\x00p\x02\x00\x00q\x02\x00\x00q\x02\x00\x00p\x02\x00\x00r\x02\x00\x00q\x02\x00\x00T\x02\x00\x00R\x02\x00\x00q\x02\x00\x00R\x02\x00\x00o\x02\x00\x00r\x02\x00\x00s\x02\x00\x00q\x02\x00\x00T\x02\x00\x00q\x02\x00\x00s\x02\x00\x00t\x02\x00\x00T\x02\x00\x00s\x02\x00\x00V\x02\x00\x00T\x02\x00\x00t\x02\x00\x00t\x02\x00\x00X\x02\x00\x00V\x02\x00\x00u\x02\x00\x00X\x02\x00\x00t\x02\x00\x00u\x02\x00\x00Z\x02\x00\x00X\x02\x00\x00v\x02\x00\x00Z\x02\x00\x00u\x02\x00\x00v\x02\x00\x00\\\x02\x00\x00Z\x02\x00\x00w\x02\x00\x00\\\x02\x00\x00v\x02\x00\x00w\x02\x00\x00^\x02\x00\x00\\\x02\x00\x00x\x02\x00\x00^\x02\x00\x00w\x02\x00\x00x\x02\x00\x00a\x02\x00\x00^\x02\x00\x00y\x02\x00\x00a\x02\x00\x00x\x02\x00\x00y\x02\x00\x00c\x02\x00\x00a\x02\x00\x00z\x02\x00\x00c\x02\x00\x00y\x02\x00\x00z\x02\x00\x00e\x02\x00\x00c\x02\x00\x00{\x02\x00\x00e\x02\x00\x00z\x02\x00\x00~\x02\x00\x00}\x02\x00\x00|\x02\x00\x00|\x02\x00\x00}\x02\x00\x00\x7f\x02\x00\x00|\x02\x00\x00\x7f\x02\x00\x00\x80\x02\x00\x00\x80\x02\x00\x00\x7f\x02\x00\x00\x81\x02\x00\x00\x80\x02\x00\x00g\x02\x00\x00h\x02\x00\x00\x80\x02\x00\x00h\x02\x00\x00|\x02\x00\x00\x80\x02\x00\x00\x81\x02\x00\x00\x82\x02\x00\x00\x82\x02\x00\x00\x81\x02\x00\x00\x83\x02\x00\x00\x82\x02\x00\x00j\x02\x00\x00g\x02\x00\x00\x82\x02\x00\x00g\x02\x00\x00\x80\x02\x00\x00\x82\x02\x00\x00\x83\x02\x00\x00\x84\x02\x00\x00\x84\x02\x00\x00\x83\x02\x00\x00\x85\x02\x00\x00\x84\x02\x00\x00l\x02\x00\x00j\x02\x00\x00\x84\x02\x00\x00j\x02\x00\x00\x82\x02\x00\x00\x85\x02\x00\x00\x86\x02\x00\x00\x84\x02\x00\x00l\x02\x00\x00\x84\x02\x00\x00\x86\x02\x00\x00\x87\x02\x00\x00l\x02\x00\x00\x86\x02\x00\x00n\x02\x00\x00l\x02\x00\x00\x87\x02\x00\x00\x87\x02\x00\x00p\x02\x00\x00n\x02\x00\x00\x88\x02\x00\x00p\x02\x00\x00\x87\x02\x00\x00\x88\x02\x00\x00r\x02\x00\x00p\x02\x00\x00\x89\x02\x00\x00r\x02\x00\x00\x88\x02\x00\x00s\x02\x00\x00r\x02\x00\x00\x8a\x02\x00\x00r\x02\x00\x00\x8b\x02\x00\x00\x8a\x02\x00\x00r\x02\x00\x00\x89\x02\x00\x00\x8b\x02\x00\x00\x8a\x02\x00\x00t\x02\x00\x00s\x02\x00\x00\x8a\x02\x00\x00\x8b\x02\x00\x00\x8c\x02\x00\x00\x8c\x02\x00\x00\x8b\x02\x00\x00\x8d\x02\x00\x00\x8c\x02\x00\x00u\x02\x00\x00t\x02\x00\x00\x8c\x02\x00\x00t\x02\x00\x00\x8a\x02\x00\x00\x8c\x02\x00\x00\x8d\x02\x00\x00\x8e\x02\x00\x00\x8e\x02\x00\x00\x8d\x02\x00\x00\x8f\x02\x00\x00\x8e\x02\x00\x00v\x02\x00\x00u\x02\x00\x00\x8e\x02\x00\x00u\x02\x00\x00\x8c\x02\x00\x00\x8e\x02\x00\x00\x8f\x02\x00\x00\x90\x02\x00\x00\x90\x02\x00\x00\x8f\x02\x00\x00\x91\x02\x00\x00\x90\x02\x00\x00w\x02\x00\x00v\x02\x00\x00\x90\x02\x00\x00v\x02\x00\x00\x8e\x02\x00\x00\x90\x02\x00\x00\x91\x02\x00\x00\x92\x02\x00\x00\x92\x02\x00\x00\x91\x02\x00\x00\x93\x02\x00\x00\x92\x02\x00\x00x\x02\x00\x00w\x02\x00\x00\x92\x02\x00\x00w\x02\x00\x00\x90\x02\x00\x00\x92\x02\x00\x00\x93\x02\x00\x00\x94\x02\x00\x00\x94\x02\x00\x00\x93\x02\x00\x00\x95\x02\x00\x00\x94\x02\x00\x00y\x02\x00\x00x\x02\x00\x00\x94\x02\x00\x00x\x02\x00\x00\x92\x02\x00\x00\x94\x02\x00\x00\x95\x02\x00\x00\x96\x02\x00\x00\x96\x02\x00\x00\x95\x02\x00\x00\x97\x02\x00\x00\x96\x02\x00\x00z\x02\x00\x00y\x02\x00\x00\x96\x02\x00\x00y\x02\x00\x00\x94\x02\x00\x00\x96\x02\x00\x00\x97\x02\x00\x00\x98\x02\x00\x00\x98\x02\x00\x00\x97\x02\x00\x00\x99\x02\x00\x00\x9c\x02\x00\x00\x9b\x02\x00\x00\x9a\x02\x00\x00\x9a\x02\x00\x00\x9b\x02\x00\x00\x9d\x02\x00\x00\x9a\x02\x00\x00}\x02\x00\x00\x9e\x02\x00\x00\x9a\x02\x00\x00\x9e\x02\x00\x00\x9c\x02\x00\x00\x9a\x02\x00\x00\x9d\x02\x00\x00\x9f\x02\x00\x00\x9f\x02\x00\x00\x9d\x02\x00\x00\xa0\x02\x00\x00\x9f\x02\x00\x00\x7f\x02\x00\x00}\x02\x00\x00\x9f\x02\x00\x00}\x02\x00\x00\x9a\x02\x00\x00\xa0\x02\x00\x00\xa1\x02\x00\x00\x9f\x02\x00\x00\x7f\x02\x00\x00\x9f\x02\x00\x00\xa1\x02\x00\x00\xa2\x02\x00\x00\x7f\x02\x00\x00\xa1\x02\x00\x00\x81\x02\x00\x00\x7f\x02\x00\x00\xa2\x02\x00\x00\xa2\x02\x00\x00\x83\x02\x00\x00\x81\x02\x00\x00\xa3\x02\x00\x00\x83\x02\x00\x00\xa2\x02\x00\x00\xa3\x02\x00\x00\x85\x02\x00\x00\x83\x02\x00\x00\xa4\x02\x00\x00\x85\x02\x00\x00\xa3\x02\x00\x00\x86\x02\x00\x00\x85\x02\x00\x00\xa5\x02\x00\x00\x85\x02\x00\x00\xa6\x02\x00\x00\xa5\x02\x00\x00\x85\x02\x00\x00\xa4\x02\x00\x00\xa6\x02\x00\x00\xa5\x02\x00\x00\x87\x02\x00\x00\x86\x02\x00\x00\xa5\x02\x00\x00\xa6\x02\x00\x00\xa7\x02\x00\x00\xa7\x02\x00\x00\xa6\x02\x00\x00\xa8\x02\x00\x00\xa7\x02\x00\x00\x88\x02\x00\x00\x87\x02\x00\x00\xa7\x02\x00\x00\x87\x02\x00\x00\xa5\x02\x00\x00\xa7\x02\x00\x00\xa8\x02\x00\x00\xa9\x02\x00\x00\xa9\x02\x00\x00\xa8\x02\x00\x00\xaa\x02\x00\x00\xa9\x02\x00\x00\x89\x02\x00\x00\x88\x02\x00\x00\xa9\x02\x00\x00\x88\x02\x00\x00\xa7\x02\x00\x00\xa9\x02\x00\x00\xaa\x02\x00\x00\xab\x02\x00\x00\xab\x02\x00\x00\xaa\x02\x00\x00\xac\x02\x00\x00\xab\x02\x00\x00\x8b\x02\x00\x00\x89\x02\x00\x00\xab\x02\x00\x00\x89\x02\x00\x00\xa9\x02\x00\x00\xab\x02\x00\x00\xac\x02\x00\x00\xad\x02\x00\x00\xad\x02\x00\x00\xac\x02\x00\x00\xae\x02\x00\x00\xad\x02\x00\x00\x8d\x02\x00\x00\x8b\x02\x00\x00\xad\x02\x00\x00\x8b\x02\x00\x00\xab\x02\x00\x00\xad\x02\x00\x00\xae\x02\x00\x00\xaf\x02\x00\x00\xaf\x02\x00\x00\xae\x02\x00\x00\xb0\x02\x00\x00\xaf\x02\x00\x00\x8f\x02\x00\x00\x8d\x02\x00\x00\xaf\x02\x00\x00\x8d\x02\x00\x00\xad\x02\x00\x00\xaf\x02\x00\x00\xb0\x02\x00\x00\xb1\x02\x00\x00\xb1\x02\x00\x00\xb0\x02\x00\x00\xb2\x02\x00\x00\xb1\x02\x00\x00\x91\x02\x00\x00\x8f\x02\x00\x00\xb1\x02\x00\x00\x8f\x02\x00\x00\xaf\x02\x00\x00\xb1\x02\x00\x00\xb2\x02\x00\x00\xb3\x02\x00\x00\xb3\x02\x00\x00\xb2\x02\x00\x00\xb4\x02\x00\x00\xb3\x02\x00\x00\x93\x02\x00\x00\x91\x02\x00\x00\xb3\x02\x00\x00\x91\x02\x00\x00\xb1\x02\x00\x00\xb3\x02\x00\x00\xb4\x02\x00\x00\xb5\x02\x00\x00\xb5\x02\x00\x00\xb4\x02\x00\x00\xb6\x02\x00\x00\xb5\x02\x00\x00\x95\x02\x00\x00\x93\x02\x00\x00\xb5\x02\x00\x00\x93\x02\x00\x00\xb3\x02\x00\x00\xb5\x02\x00\x00\xb6\x02\x00\x00\xb7\x02\x00\x00\xb7\x02\x00\x00\xb6\x02\x00\x00\xb8\x02\x00\x00\xb7\x02\x00\x00\x97\x02\x00\x00\x95\x02\x00\x00\xb7\x02\x00\x00\x95\x02\x00\x00\xb5\x02\x00\x00\xb7\x02\x00\x00\xb8\x02\x00\x00\xb9\x02\x00\x00\xb9\x02\x00\x00\xb8\x02\x00\x00\xba\x02\x00\x00\xb9\x02\x00\x00\x99\x02\x00\x00\x97\x02\x00\x00\xb9\x02\x00\x00\x97\x02\x00\x00\xb7\x02\x00\x00\xb9\x02\x00\x00\xba\x02\x00\x00\xbb\x02\x00\x00\xbb\x02\x00\x00\xba\x02\x00\x00\xbc\x02\x00\x00\xbd\x02\x00\x00\x9d\x02\x00\x00\x9b\x02\x00\x00\xbe\x02\x00\x00\x9d\x02\x00\x00\xbd\x02\x00\x00\xbe\x02\x00\x00\xa0\x02\x00\x00\x9d\x02\x00\x00\xbf\x02\x00\x00\xa0\x02\x00\x00\xbe\x02\x00\x00\xa1\x02\x00\x00\xa0\x02\x00\x00\xc0\x02\x00\x00\xa0\x02\x00\x00\xc1\x02\x00\x00\xc0\x02\x00\x00\xa0\x02\x00\x00\xbf\x02\x00\x00\xc1\x02\x00\x00\xc0\x02\x00\x00\xa2\x02\x00\x00\xa1\x02\x00\x00\xc0\x02\x00\x00\xc1\x02\x00\x00\xc2\x02\x00\x00\xc2\x02\x00\x00\xc1\x02\x00\x00\xc3\x02\x00\x00\xc2\x02\x00\x00\xa3\x02\x00\x00\xa2\x02\x00\x00\xc2\x02\x00\x00\xa2\x02\x00\x00\xc0\x02\x00\x00\xc2\x02\x00\x00\xc3\x02\x00\x00\xc4\x02\x00\x00\xc4\x02\x00\x00\xc3\x02\x00\x00\xc5\x02\x00\x00\xc4\x02\x00\x00\xa4\x02\x00\x00\xa3\x02\x00\x00\xc4\x02\x00\x00\xa3\x02\x00\x00\xc2\x02\x00\x00\xc4\x02\x00\x00\xc5\x02\x00\x00\xc6\x02\x00\x00\xc6\x02\x00\x00\xc5\x02\x00\x00\xc7\x02\x00\x00\xc6\x02\x00\x00\xa6\x02\x00\x00\xa4\x02\x00\x00\xc6\x02\x00\x00\xa4\x02\x00\x00\xc4\x02\x00\x00\xc6\x02\x00\x00\xc7\x02\x00\x00\xc8\x02\x00\x00\xc8\x02\x00\x00\xc7\x02\x00\x00\xc9\x02\x00\x00\xc8\x02\x00\x00\xa8\x02\x00\x00\xa6\x02\x00\x00\xc8\x02\x00\x00\xa6\x02\x00\x00\xc6\x02\x00\x00\xc8\x02\x00\x00\xc9\x02\x00\x00\xca\x02\x00\x00\xca\x02\x00\x00\xc9\x02\x00\x00\xcb\x02\x00\x00\xca\x02\x00\x00\xaa\x02\x00\x00\xa8\x02\x00\x00\xca\x02\x00\x00\xa8\x02\x00\x00\xc8\x02\x00\x00\xca\x02\x00\x00\xcb\x02\x00\x00\xcc\x02\x00\x00\xcc\x02\x00\x00\xcb\x02\x00\x00\xcd\x02\x00\x00\xcc\x02\x00\x00\xac\x02\x00\x00\xaa\x02\x00\x00\xcc\x02\x00\x00\xaa\x02\x00\x00\xca\x02\x00\x00\xcc\x02\x00\x00\xcd\x02\x00\x00\xce\x02\x00\x00\xce\x02\x00\x00\xcd\x02\x00\x00\xcf\x02\x00\x00\xce\x02\x00\x00\xae\x02\x00\x00\xac\x02\x00\x00\xce\x02\x00\x00\xac\x02\x00\x00\xcc\x02\x00\x00\xce\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xd0\x02\x00\x00\xcf\x02\x00\x00\xd1\x02\x00\x00\xd0\x02\x00\x00\xb0\x02\x00\x00\xae\x02\x00\x00\xd0\x02\x00\x00\xae\x02\x00\x00\xce\x02\x00\x00\xd0\x02\x00\x00\xd1\x02\x00\x00\xd2\x02\x00\x00\xd2\x02\x00\x00\xd1\x02\x00\x00\xd3\x02\x00\x00\xd2\x02\x00\x00\xb2\x02\x00\x00\xb0\x02\x00\x00\xd2\x02\x00\x00\xb0\x02\x00\x00\xd0\x02\x00\x00\xd2\x02\x00\x00\xd3\x02\x00\x00\xd4\x02\x00\x00\xd4\x02\x00\x00\xd3\x02\x00\x00\xd5\x02\x00\x00\xd4\x02\x00\x00\xb4\x02\x00\x00\xb2\x02\x00\x00\xd4\x02\x00\x00\xb2\x02\x00\x00\xd2\x02\x00\x00\xd4\x02\x00\x00\xd5\x02\x00\x00\xd6\x02\x00\x00\xd6\x02\x00\x00\xd5\x02\x00\x00\xd7\x02\x00\x00\xd6\x02\x00\x00\xb6\x02\x00\x00\xb4\x02\x00\x00\xd6\x02\x00\x00\xb4\x02\x00\x00\xd4\x02\x00\x00\xd6\x02\x00\x00\xd7\x02\x00\x00\xd8\x02\x00\x00\xd8\x02\x00\x00\xd7\x02\x00\x00\xd9\x02\x00\x00\xd8\x02\x00\x00\xb8\x02\x00\x00\xb6\x02\x00\x00\xd8\x02\x00\x00\xb6\x02\x00\x00\xd6\x02\x00\x00\xd8\x02\x00\x00\xd9\x02\x00\x00\xda\x02\x00\x00\xda\x02\x00\x00\xd9\x02\x00\x00\xdb\x02\x00\x00\xda\x02\x00\x00\xba\x02\x00\x00\xb8\x02\x00\x00\xda\x02\x00\x00\xb8\x02\x00\x00\xd8\x02\x00\x00\xda\x02\x00\x00\xdb\x02\x00\x00\xdc\x02\x00\x00\xdc\x02\x00\x00\xdb\x02\x00\x00\xdd\x02\x00\x00\xdc\x02\x00\x00\xbc\x02\x00\x00\xba\x02\x00\x00\xdc\x02\x00\x00\xba\x02\x00\x00\xda\x02\x00\x00\xdc\x02\x00\x00\xdd\x02\x00\x00\xde\x02\x00\x00\xde\x02\x00\x00\xdd\x02\x00\x00\xdf\x02\x00\x00\xde\x02\x00\x00\xe0\x02\x00\x00\xbc\x02\x00\x00\xde\x02\x00\x00\xbc\x02\x00\x00\xdc\x02\x00\x00\xde\x02\x00\x00\xdf\x02\x00\x00\xe1\x02\x00\x00\xe1\x02\x00\x00\xdf\x02\x00\x00\xe2\x02\x00\x00\xe1\x02\x00\x00\xe3\x02\x00\x00\xe0\x02\x00\x00\xe1\x02\x00\x00\xe0\x02\x00\x00\xde\x02\x00\x00\xe1\x02\x00\x00\xe2\x02\x00\x00\xe4\x02\x00\x00\xe4\x02\x00\x00\xe2\x02\x00\x00\xe5\x02\x00\x00\xe8\x02\x00\x00\xe7\x02\x00\x00\xe6\x02\x00\x00\xe6\x02\x00\x00\xe7\x02\x00\x00\xe9\x02\x00\x00\xe6\x02\x00\x00\xbe\x02\x00\x00\xbd\x02\x00\x00\xe6\x02\x00\x00\xbd\x02\x00\x00\xe8\x02\x00\x00\xe6\x02\x00\x00\xe9\x02\x00\x00\xea\x02\x00\x00\xea\x02\x00\x00\xe9\x02\x00\x00\xeb\x02\x00\x00\xea\x02\x00\x00\xbf\x02\x00\x00\xbe\x02\x00\x00\xea\x02\x00\x00\xbe\x02\x00\x00\xe6\x02\x00\x00\xea\x02\x00\x00\xeb\x02\x00\x00\xec\x02\x00\x00\xec\x02\x00\x00\xeb\x02\x00\x00\xed\x02\x00\x00\xec\x02\x00\x00\xc1\x02\x00\x00\xbf\x02\x00\x00\xec\x02\x00\x00\xbf\x02\x00\x00\xea\x02\x00\x00\xec\x02\x00\x00\xed\x02\x00\x00\xee\x02\x00\x00\xee\x02\x00\x00\xed\x02\x00\x00\xef\x02\x00\x00\xee\x02\x00\x00\xc3\x02\x00\x00\xc1\x02\x00\x00\xee\x02\x00\x00\xc1\x02\x00\x00\xec\x02\x00\x00\xee\x02\x00\x00\xef\x02\x00\x00\xf0\x02\x00\x00\xf0\x02\x00\x00\xef\x02\x00\x00\xf1\x02\x00\x00\xf0\x02\x00\x00\xc5\x02\x00\x00\xc3\x02\x00\x00\xf0\x02\x00\x00\xc3\x02\x00\x00\xee\x02\x00\x00\xf0\x02\x00\x00\xf1\x02\x00\x00\xf2\x02\x00\x00\xf2\x02\x00\x00\xf1\x02\x00\x00\xf3\x02\x00\x00\xf2\x02\x00\x00\xc7\x02\x00\x00\xc5\x02\x00\x00\xf2\x02\x00\x00\xc5\x02\x00\x00\xf0\x02\x00\x00\xf2\x02\x00\x00\xf3\x02\x00\x00\xf4\x02\x00\x00\xf4\x02\x00\x00\xf3\x02\x00\x00\xf5\x02\x00\x00\xf4\x02\x00\x00\xc9\x02\x00\x00\xc7\x02\x00\x00\xf4\x02\x00\x00\xc7\x02\x00\x00\xf2\x02\x00\x00\xf4\x02\x00\x00\xf5\x02\x00\x00\xf6\x02\x00\x00\xf6\x02\x00\x00\xf5\x02\x00\x00\xf7\x02\x00\x00\xf6\x02\x00\x00\xcb\x02\x00\x00\xc9\x02\x00\x00\xf6\x02\x00\x00\xc9\x02\x00\x00\xf4\x02\x00\x00\xf6\x02\x00\x00\xf7\x02\x00\x00\xf8\x02\x00\x00\xf8\x02\x00\x00\xf7\x02\x00\x00\xf9\x02\x00\x00\xf8\x02\x00\x00\xcd\x02\x00\x00\xcb\x02\x00\x00\xf8\x02\x00\x00\xcb\x02\x00\x00\xf6\x02\x00\x00\xf8\x02\x00\x00\xf9\x02\x00\x00\xfa\x02\x00\x00\xfa\x02\x00\x00\xf9\x02\x00\x00\xfb\x02\x00\x00\xfa\x02\x00\x00\xcf\x02\x00\x00\xcd\x02\x00\x00\xfa\x02\x00\x00\xcd\x02\x00\x00\xf8\x02\x00\x00\xfa\x02\x00\x00\xfb\x02\x00\x00\xfc\x02\x00\x00\xfc\x02\x00\x00\xfb\x02\x00\x00\xfd\x02\x00\x00\xfc\x02\x00\x00\xd1\x02\x00\x00\xcf\x02\x00\x00\xfc\x02\x00\x00\xcf\x02\x00\x00\xfa\x02\x00\x00\xfc\x02\x00\x00\xfd\x02\x00\x00\xfe\x02\x00\x00\xfe\x02\x00\x00\xfd\x02\x00\x00\xff\x02\x00\x00\xfe\x02\x00\x00\xd3\x02\x00\x00\xd1\x02\x00\x00\xfe\x02\x00\x00\xd1\x02\x00\x00\xfc\x02\x00\x00\xfe\x02\x00\x00\xff\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\xff\x02\x00\x00\x01\x03\x00\x00\x00\x03\x00\x00\xd5\x02\x00\x00\xd3\x02\x00\x00\x00\x03\x00\x00\xd3\x02\x00\x00\xfe\x02\x00\x00\x00\x03\x00\x00\x01\x03\x00\x00\x02\x03\x00\x00\x02\x03\x00\x00\x01\x03\x00\x00\x03\x03\x00\x00\x02\x03\x00\x00\xd7\x02\x00\x00\xd5\x02\x00\x00\x02\x03\x00\x00\xd5\x02\x00\x00\x00\x03\x00\x00\x02\x03\x00\x00\x03\x03\x00\x00\x04\x03\x00\x00\x04\x03\x00\x00\x03\x03\x00\x00\x05\x03\x00\x00\x04\x03\x00\x00\xd9\x02\x00\x00\xd7\x02\x00\x00\x04\x03\x00\x00\xd7\x02\x00\x00\x02\x03\x00\x00\x04\x03\x00\x00\x05\x03\x00\x00\x06\x03\x00\x00\x06\x03\x00\x00\x05\x03\x00\x00\x07\x03\x00\x00\x06\x03\x00\x00\xdb\x02\x00\x00\xd9\x02\x00\x00\x06\x03\x00\x00\xd9\x02\x00\x00\x04\x03\x00\x00\x06\x03\x00\x00\x07\x03\x00\x00\x08\x03\x00\x00\x08\x03\x00\x00\x07\x03\x00\x00\t\x03\x00\x00\x08\x03\x00\x00\xdd\x02\x00\x00\xdb\x02\x00\x00\x08\x03\x00\x00\xdb\x02\x00\x00\x06\x03\x00\x00\x08\x03\x00\x00\t\x03\x00\x00\n\x03\x00\x00\n\x03\x00\x00\t\x03\x00\x00\x0b\x03\x00\x00\n\x03\x00\x00\xdf\x02\x00\x00\xdd\x02\x00\x00\n\x03\x00\x00\xdd\x02\x00\x00\x08\x03\x00\x00\n\x03\x00\x00\x0b\x03\x00\x00\x0c\x03\x00\x00\x0c\x03\x00\x00\x0b\x03\x00\x00\r\x03\x00\x00\x0c\x03\x00\x00\xe2\x02\x00\x00\xdf\x02\x00\x00\x0c\x03\x00\x00\xdf\x02\x00\x00\n\x03\x00\x00\x0c\x03\x00\x00\r\x03\x00\x00\x0e\x03\x00\x00\x0e\x03\x00\x00\r\x03\x00\x00\x0f\x03\x00\x00\x0e\x03\x00\x00\xe5\x02\x00\x00\xe2\x02\x00\x00\x0e\x03\x00\x00\xe2\x02\x00\x00\x0c\x03\x00\x00\x0e\x03\x00\x00\x0f\x03\x00\x00\x10\x03\x00\x00\x10\x03\x00\x00\x0f\x03\x00\x00\x11\x03\x00\x00\x10\x03\x00\x00\x12\x03\x00\x00\xe5\x02\x00\x00\x10\x03\x00\x00\xe5\x02\x00\x00\x0e\x03\x00\x00\x10\x03\x00\x00\x11\x03\x00\x00\x13\x03\x00\x00\x13\x03\x00\x00\x11\x03\x00\x00\x14\x03\x00\x00\x13\x03\x00\x00\x15\x03\x00\x00\x12\x03\x00\x00\x13\x03\x00\x00\x12\x03\x00\x00\x10\x03\x00\x00\x13\x03\x00\x00\x14\x03\x00\x00\x16\x03\x00\x00\x16\x03\x00\x00\x14\x03\x00\x00\x17\x03\x00\x00\x16\x03\x00\x00\x17\x03\x00\x00\x18\x03\x00\x00\x18\x03\x00\x00\x17\x03\x00\x00\x19\x03\x00\x00\x1c\x03\x00\x00\x1b\x03\x00\x00\x1a\x03\x00\x00\x1a\x03\x00\x00\x1b\x03\x00\x00\x1d\x03\x00\x00\x1a\x03\x00\x00\xe9\x02\x00\x00\xe7\x02\x00\x00\x1a\x03\x00\x00\xe7\x02\x00\x00\x1c\x03\x00\x00\x1a\x03\x00\x00\x1d\x03\x00\x00\x1e\x03\x00\x00\x1e\x03\x00\x00\x1d\x03\x00\x00\x1f\x03\x00\x00\x1e\x03\x00\x00\xeb\x02\x00\x00\xe9\x02\x00\x00\x1e\x03\x00\x00\xe9\x02\x00\x00\x1a\x03\x00\x00\x1e\x03\x00\x00\x1f\x03\x00\x00 \x03\x00\x00 \x03\x00\x00\x1f\x03\x00\x00!\x03\x00\x00 \x03\x00\x00\xed\x02\x00\x00\xeb\x02\x00\x00 \x03\x00\x00\xeb\x02\x00\x00\x1e\x03\x00\x00 \x03\x00\x00!\x03\x00\x00"\x03\x00\x00"\x03\x00\x00!\x03\x00\x00#\x03\x00\x00"\x03\x00\x00\xef\x02\x00\x00\xed\x02\x00\x00"\x03\x00\x00\xed\x02\x00\x00 \x03\x00\x00"\x03\x00\x00#\x03\x00\x00$\x03\x00\x00$\x03\x00\x00#\x03\x00\x00%\x03\x00\x00$\x03\x00\x00\xf1\x02\x00\x00\xef\x02\x00\x00$\x03\x00\x00\xef\x02\x00\x00"\x03\x00\x00%\x03\x00\x00&\x03\x00\x00$\x03\x00\x00\xf1\x02\x00\x00$\x03\x00\x00&\x03\x00\x00\'\x03\x00\x00\xf1\x02\x00\x00&\x03\x00\x00\xf3\x02\x00\x00\xf1\x02\x00\x00\'\x03\x00\x00\'\x03\x00\x00\xf5\x02\x00\x00\xf3\x02\x00\x00(\x03\x00\x00\xf5\x02\x00\x00\'\x03\x00\x00(\x03\x00\x00\xf7\x02\x00\x00\xf5\x02\x00\x00)\x03\x00\x00\xf7\x02\x00\x00(\x03\x00\x00)\x03\x00\x00\xf9\x02\x00\x00\xf7\x02\x00\x00*\x03\x00\x00\xf9\x02\x00\x00)\x03\x00\x00*\x03\x00\x00\xfb\x02\x00\x00\xf9\x02\x00\x00+\x03\x00\x00\xfb\x02\x00\x00*\x03\x00\x00+\x03\x00\x00\xfd\x02\x00\x00\xfb\x02\x00\x00,\x03\x00\x00\xfd\x02\x00\x00+\x03\x00\x00,\x03\x00\x00\xff\x02\x00\x00\xfd\x02\x00\x00-\x03\x00\x00\xff\x02\x00\x00,\x03\x00\x00-\x03\x00\x00\x01\x03\x00\x00\xff\x02\x00\x00.\x03\x00\x00\x01\x03\x00\x00-\x03\x00\x00.\x03\x00\x00\x03\x03\x00\x00\x01\x03\x00\x00/\x03\x00\x00\x03\x03\x00\x00.\x03\x00\x00/\x03\x00\x00\x05\x03\x00\x00\x03\x03\x00\x000\x03\x00\x00\x05\x03\x00\x00/\x03\x00\x000\x03\x00\x00\x07\x03\x00\x00\x05\x03\x00\x001\x03\x00\x00\x07\x03\x00\x000\x03\x00\x001\x03\x00\x00\t\x03\x00\x00\x07\x03\x00\x002\x03\x00\x00\t\x03\x00\x001\x03\x00\x002\x03\x00\x00\x0b\x03\x00\x00\t\x03\x00\x003\x03\x00\x00\x0b\x03\x00\x002\x03\x00\x003\x03\x00\x00\r\x03\x00\x00\x0b\x03\x00\x004\x03\x00\x00\r\x03\x00\x003\x03\x00\x004\x03\x00\x00\x0f\x03\x00\x00\r\x03\x00\x005\x03\x00\x00\x0f\x03\x00\x004\x03\x00\x005\x03\x00\x00\x11\x03\x00\x00\x0f\x03\x00\x006\x03\x00\x00\x11\x03\x00\x005\x03\x00\x006\x03\x00\x00\x14\x03\x00\x00\x11\x03\x00\x007\x03\x00\x00\x14\x03\x00\x006\x03\x00\x007\x03\x00\x00\x17\x03\x00\x00\x14\x03\x00\x008\x03\x00\x00\x17\x03\x00\x007\x03\x00\x008\x03\x00\x00\x19\x03\x00\x00\x17\x03\x00\x009\x03\x00\x00\x19\x03\x00\x008\x03\x00\x00<\x03\x00\x00;\x03\x00\x00:\x03\x00\x00\x1b\x03\x00\x00:\x03\x00\x00;\x03\x00\x00=\x03\x00\x00\x1b\x03\x00\x00;\x03\x00\x00\x1d\x03\x00\x00\x1b\x03\x00\x00=\x03\x00\x00=\x03\x00\x00\x1f\x03\x00\x00\x1d\x03\x00\x00>\x03\x00\x00\x1f\x03\x00\x00=\x03\x00\x00>\x03\x00\x00!\x03\x00\x00\x1f\x03\x00\x00?\x03\x00\x00!\x03\x00\x00>\x03\x00\x00?\x03\x00\x00#\x03\x00\x00!\x03\x00\x00@\x03\x00\x00#\x03\x00\x00?\x03\x00\x00@\x03\x00\x00%\x03\x00\x00#\x03\x00\x00A\x03\x00\x00%\x03\x00\x00@\x03\x00\x00&\x03\x00\x00%\x03\x00\x00B\x03\x00\x00%\x03\x00\x00C\x03\x00\x00B\x03\x00\x00%\x03\x00\x00A\x03\x00\x00C\x03\x00\x00B\x03\x00\x00\'\x03\x00\x00&\x03\x00\x00B\x03\x00\x00C\x03\x00\x00D\x03\x00\x00D\x03\x00\x00C\x03\x00\x00E\x03\x00\x00D\x03\x00\x00(\x03\x00\x00\'\x03\x00\x00D\x03\x00\x00\'\x03\x00\x00B\x03\x00\x00D\x03\x00\x00E\x03\x00\x00F\x03\x00\x00F\x03\x00\x00E\x03\x00\x00G\x03\x00\x00F\x03\x00\x00)\x03\x00\x00(\x03\x00\x00F\x03\x00\x00(\x03\x00\x00D\x03\x00\x00F\x03\x00\x00G\x03\x00\x00H\x03\x00\x00H\x03\x00\x00G\x03\x00\x00I\x03\x00\x00H\x03\x00\x00*\x03\x00\x00)\x03\x00\x00H\x03\x00\x00)\x03\x00\x00F\x03\x00\x00H\x03\x00\x00I\x03\x00\x00J\x03\x00\x00J\x03\x00\x00I\x03\x00\x00K\x03\x00\x00J\x03\x00\x00+\x03\x00\x00*\x03\x00\x00J\x03\x00\x00*\x03\x00\x00H\x03\x00\x00J\x03\x00\x00K\x03\x00\x00L\x03\x00\x00L\x03\x00\x00K\x03\x00\x00M\x03\x00\x00L\x03\x00\x00,\x03\x00\x00+\x03\x00\x00L\x03\x00\x00+\x03\x00\x00J\x03\x00\x00L\x03\x00\x00M\x03\x00\x00N\x03\x00\x00N\x03\x00\x00M\x03\x00\x00O\x03\x00\x00N\x03\x00\x00-\x03\x00\x00,\x03\x00\x00N\x03\x00\x00,\x03\x00\x00L\x03\x00\x00N\x03\x00\x00O\x03\x00\x00P\x03\x00\x00P\x03\x00\x00O\x03\x00\x00Q\x03\x00\x00P\x03\x00\x00.\x03\x00\x00-\x03\x00\x00P\x03\x00\x00-\x03\x00\x00N\x03\x00\x00P\x03\x00\x00Q\x03\x00\x00R\x03\x00\x00R\x03\x00\x00Q\x03\x00\x00S\x03\x00\x00R\x03\x00\x00/\x03\x00\x00.\x03\x00\x00R\x03\x00\x00.\x03\x00\x00P\x03\x00\x00R\x03\x00\x00S\x03\x00\x00T\x03\x00\x00T\x03\x00\x00S\x03\x00\x00U\x03\x00\x00T\x03\x00\x000\x03\x00\x00/\x03\x00\x00T\x03\x00\x00/\x03\x00\x00R\x03\x00\x00T\x03\x00\x00U\x03\x00\x00V\x03\x00\x00V\x03\x00\x00U\x03\x00\x00W\x03\x00\x00V\x03\x00\x001\x03\x00\x000\x03\x00\x00V\x03\x00\x000\x03\x00\x00T\x03\x00\x00V\x03\x00\x00W\x03\x00\x00X\x03\x00\x00X\x03\x00\x00W\x03\x00\x00Y\x03\x00\x00X\x03\x00\x002\x03\x00\x001\x03\x00\x00X\x03\x00\x001\x03\x00\x00V\x03\x00\x00X\x03\x00\x00Y\x03\x00\x00Z\x03\x00\x00Z\x03\x00\x00Y\x03\x00\x00[\x03\x00\x00Z\x03\x00\x003\x03\x00\x002\x03\x00\x00Z\x03\x00\x002\x03\x00\x00X\x03\x00\x00Z\x03\x00\x00[\x03\x00\x00\\\x03\x00\x00\\\x03\x00\x00[\x03\x00\x00]\x03\x00\x00\\\x03\x00\x004\x03\x00\x003\x03\x00\x00\\\x03\x00\x003\x03\x00\x00Z\x03\x00\x00\\\x03\x00\x00]\x03\x00\x00^\x03\x00\x00^\x03\x00\x00]\x03\x00\x00_\x03\x00\x00^\x03\x00\x005\x03\x00\x004\x03\x00\x00^\x03\x00\x004\x03\x00\x00\\\x03\x00\x00^\x03\x00\x00_\x03\x00\x00`\x03\x00\x00`\x03\x00\x00_\x03\x00\x00a\x03\x00\x00`\x03\x00\x006\x03\x00\x005\x03\x00\x00`\x03\x00\x005\x03\x00\x00^\x03\x00\x00`\x03\x00\x00a\x03\x00\x00b\x03\x00\x00b\x03\x00\x00a\x03\x00\x00c\x03\x00\x00b\x03\x00\x007\x03\x00\x006\x03\x00\x00b\x03\x00\x006\x03\x00\x00`\x03\x00\x00b\x03\x00\x00c\x03\x00\x00d\x03\x00\x00d\x03\x00\x00c\x03\x00\x00e\x03\x00\x00d\x03\x00\x008\x03\x00\x007\x03\x00\x00d\x03\x00\x007\x03\x00\x00b\x03\x00\x00d\x03\x00\x00e\x03\x00\x00f\x03\x00\x00f\x03\x00\x00e\x03\x00\x00g\x03\x00\x00f\x03\x00\x009\x03\x00\x008\x03\x00\x00f\x03\x00\x008\x03\x00\x00d\x03\x00\x00j\x03\x00\x00i\x03\x00\x00h\x03\x00\x00;\x03\x00\x00<\x03\x00\x00k\x03\x00\x00<\x03\x00\x00l\x03\x00\x00k\x03\x00\x00<\x03\x00\x00m\x03\x00\x00l\x03\x00\x00k\x03\x00\x00=\x03\x00\x00;\x03\x00\x00k\x03\x00\x00l\x03\x00\x00n\x03\x00\x00n\x03\x00\x00l\x03\x00\x00o\x03\x00\x00n\x03\x00\x00>\x03\x00\x00=\x03\x00\x00n\x03\x00\x00=\x03\x00\x00k\x03\x00\x00n\x03\x00\x00o\x03\x00\x00p\x03\x00\x00p\x03\x00\x00o\x03\x00\x00q\x03\x00\x00p\x03\x00\x00?\x03\x00\x00>\x03\x00\x00p\x03\x00\x00>\x03\x00\x00n\x03\x00\x00p\x03\x00\x00q\x03\x00\x00r\x03\x00\x00r\x03\x00\x00q\x03\x00\x00s\x03\x00\x00r\x03\x00\x00@\x03\x00\x00?\x03\x00\x00r\x03\x00\x00?\x03\x00\x00p\x03\x00\x00r\x03\x00\x00s\x03\x00\x00t\x03\x00\x00t\x03\x00\x00s\x03\x00\x00u\x03\x00\x00t\x03\x00\x00A\x03\x00\x00@\x03\x00\x00t\x03\x00\x00@\x03\x00\x00r\x03\x00\x00t\x03\x00\x00u\x03\x00\x00v\x03\x00\x00v\x03\x00\x00u\x03\x00\x00w\x03\x00\x00v\x03\x00\x00C\x03\x00\x00A\x03\x00\x00v\x03\x00\x00A\x03\x00\x00t\x03\x00\x00v\x03\x00\x00w\x03\x00\x00x\x03\x00\x00x\x03\x00\x00w\x03\x00\x00y\x03\x00\x00x\x03\x00\x00E\x03\x00\x00C\x03\x00\x00x\x03\x00\x00C\x03\x00\x00v\x03\x00\x00x\x03\x00\x00y\x03\x00\x00z\x03\x00\x00z\x03\x00\x00y\x03\x00\x00{\x03\x00\x00z\x03\x00\x00G\x03\x00\x00E\x03\x00\x00z\x03\x00\x00E\x03\x00\x00x\x03\x00\x00z\x03\x00\x00{\x03\x00\x00|\x03\x00\x00|\x03\x00\x00{\x03\x00\x00}\x03\x00\x00|\x03\x00\x00I\x03\x00\x00G\x03\x00\x00|\x03\x00\x00G\x03\x00\x00z\x03\x00\x00|\x03\x00\x00}\x03\x00\x00~\x03\x00\x00~\x03\x00\x00}\x03\x00\x00\x7f\x03\x00\x00~\x03\x00\x00K\x03\x00\x00I\x03\x00\x00~\x03\x00\x00I\x03\x00\x00|\x03\x00\x00~\x03\x00\x00\x7f\x03\x00\x00\x80\x03\x00\x00\x80\x03\x00\x00\x7f\x03\x00\x00\x81\x03\x00\x00\x80\x03\x00\x00M\x03\x00\x00K\x03\x00\x00\x80\x03\x00\x00K\x03\x00\x00~\x03\x00\x00\x80\x03\x00\x00\x81\x03\x00\x00\x82\x03\x00\x00\x82\x03\x00\x00\x81\x03\x00\x00\x83\x03\x00\x00\x82\x03\x00\x00O\x03\x00\x00M\x03\x00\x00\x82\x03\x00\x00M\x03\x00\x00\x80\x03\x00\x00\x82\x03\x00\x00\x83\x03\x00\x00\x84\x03\x00\x00\x84\x03\x00\x00\x83\x03\x00\x00\x85\x03\x00\x00\x84\x03\x00\x00Q\x03\x00\x00O\x03\x00\x00\x84\x03\x00\x00O\x03\x00\x00\x82\x03\x00\x00\x84\x03\x00\x00\x85\x03\x00\x00\x86\x03\x00\x00\x86\x03\x00\x00\x85\x03\x00\x00\x87\x03\x00\x00\x86\x03\x00\x00S\x03\x00\x00Q\x03\x00\x00\x86\x03\x00\x00Q\x03\x00\x00\x84\x03\x00\x00\x86\x03\x00\x00\x87\x03\x00\x00\x88\x03\x00\x00\x88\x03\x00\x00\x87\x03\x00\x00\x89\x03\x00\x00\x88\x03\x00\x00U\x03\x00\x00S\x03\x00\x00\x88\x03\x00\x00S\x03\x00\x00\x86\x03\x00\x00\x88\x03\x00\x00\x89\x03\x00\x00\x8a\x03\x00\x00\x8a\x03\x00\x00\x89\x03\x00\x00\x8b\x03\x00\x00\x8a\x03\x00\x00W\x03\x00\x00U\x03\x00\x00\x8a\x03\x00\x00U\x03\x00\x00\x88\x03\x00\x00\x8a\x03\x00\x00\x8b\x03\x00\x00\x8c\x03\x00\x00\x8c\x03\x00\x00\x8b\x03\x00\x00\x8d\x03\x00\x00\x8c\x03\x00\x00Y\x03\x00\x00W\x03\x00\x00\x8c\x03\x00\x00W\x03\x00\x00\x8a\x03\x00\x00\x8c\x03\x00\x00\x8d\x03\x00\x00\x8e\x03\x00\x00\x8e\x03\x00\x00\x8d\x03\x00\x00\x8f\x03\x00\x00\x8e\x03\x00\x00[\x03\x00\x00Y\x03\x00\x00\x8e\x03\x00\x00Y\x03\x00\x00\x8c\x03\x00\x00\x8e\x03\x00\x00\x8f\x03\x00\x00\x90\x03\x00\x00\x90\x03\x00\x00\x8f\x03\x00\x00\x91\x03\x00\x00\x90\x03\x00\x00]\x03\x00\x00[\x03\x00\x00\x90\x03\x00\x00[\x03\x00\x00\x8e\x03\x00\x00\x90\x03\x00\x00\x91\x03\x00\x00\x92\x03\x00\x00\x92\x03\x00\x00\x91\x03\x00\x00\x93\x03\x00\x00\x92\x03\x00\x00_\x03\x00\x00]\x03\x00\x00\x92\x03\x00\x00]\x03\x00\x00\x90\x03\x00\x00\x92\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00\x94\x03\x00\x00\x93\x03\x00\x00\x95\x03\x00\x00\x94\x03\x00\x00a\x03\x00\x00_\x03\x00\x00\x94\x03\x00\x00_\x03\x00\x00\x92\x03\x00\x00\x94\x03\x00\x00\x95\x03\x00\x00\x96\x03\x00\x00\x96\x03\x00\x00\x95\x03\x00\x00\x97\x03\x00\x00\x96\x03\x00\x00c\x03\x00\x00a\x03\x00\x00\x96\x03\x00\x00a\x03\x00\x00\x94\x03\x00\x00\x96\x03\x00\x00\x97\x03\x00\x00\x98\x03\x00\x00\x98\x03\x00\x00\x97\x03\x00\x00\x99\x03\x00\x00\x98\x03\x00\x00e\x03\x00\x00c\x03\x00\x00\x98\x03\x00\x00c\x03\x00\x00\x96\x03\x00\x00\x98\x03\x00\x00\x99\x03\x00\x00\x9a\x03\x00\x00\x9a\x03\x00\x00\x99\x03\x00\x00\x9b\x03\x00\x00\x9a\x03\x00\x00g\x03\x00\x00e\x03\x00\x00\x9a\x03\x00\x00e\x03\x00\x00\x98\x03\x00\x00\x9a\x03\x00\x00\x9b\x03\x00\x00\x9c\x03\x00\x00\x9c\x03\x00\x00\x9b\x03\x00\x00\x9d\x03\x00\x00\x9c\x03\x00\x00\x9e\x03\x00\x00g\x03\x00\x00\x9c\x03\x00\x00g\x03\x00\x00\x9a\x03\x00\x00\x9c\x03\x00\x00\x9d\x03\x00\x00\x9f\x03\x00\x00\x9f\x03\x00\x00\x9d\x03\x00\x00\xa0\x03\x00\x00\xa3\x03\x00\x00\xa2\x03\x00\x00\xa1\x03\x00\x00\xa1\x03\x00\x00\xa2\x03\x00\x00\xa4\x03\x00\x00\xa7\x03\x00\x00\xa6\x03\x00\x00\xa5\x03\x00\x00\xa5\x03\x00\x00\xa6\x03\x00\x00\xa8\x03\x00\x00\xa5\x03\x00\x00\xa8\x03\x00\x00\xa9\x03\x00\x00\xa9\x03\x00\x00\xa8\x03\x00\x00\xaa\x03\x00\x00\xa9\x03\x00\x00\xaa\x03\x00\x00j\x03\x00\x00\xaa\x03\x00\x00i\x03\x00\x00j\x03\x00\x00\xaa\x03\x00\x00\xab\x03\x00\x00i\x03\x00\x00\xae\x03\x00\x00\xad\x03\x00\x00\xac\x03\x00\x00\xac\x03\x00\x00\xad\x03\x00\x00\xaf\x03\x00\x00\xac\x03\x00\x00l\x03\x00\x00m\x03\x00\x00\xac\x03\x00\x00m\x03\x00\x00\xae\x03\x00\x00\xac\x03\x00\x00\xaf\x03\x00\x00\xb0\x03\x00\x00\xb0\x03\x00\x00\xaf\x03\x00\x00\xb1\x03\x00\x00\xb0\x03\x00\x00o\x03\x00\x00l\x03\x00\x00\xb0\x03\x00\x00l\x03\x00\x00\xac\x03\x00\x00\xb0\x03\x00\x00\xb1\x03\x00\x00\xb2\x03\x00\x00\xb2\x03\x00\x00\xb1\x03\x00\x00\xb3\x03\x00\x00\xb2\x03\x00\x00q\x03\x00\x00o\x03\x00\x00\xb2\x03\x00\x00o\x03\x00\x00\xb0\x03\x00\x00\xb2\x03\x00\x00\xb3\x03\x00\x00\xb4\x03\x00\x00\xb4\x03\x00\x00\xb3\x03\x00\x00\xb5\x03\x00\x00\xb4\x03\x00\x00s\x03\x00\x00q\x03\x00\x00\xb4\x03\x00\x00q\x03\x00\x00\xb2\x03\x00\x00\xb4\x03\x00\x00\xb5\x03\x00\x00\xb6\x03\x00\x00\xb6\x03\x00\x00\xb5\x03\x00\x00\xb7\x03\x00\x00\xb6\x03\x00\x00u\x03\x00\x00s\x03\x00\x00\xb6\x03\x00\x00s\x03\x00\x00\xb4\x03\x00\x00\xb6\x03\x00\x00\xb7\x03\x00\x00\xb8\x03\x00\x00\xb8\x03\x00\x00\xb7\x03\x00\x00\xb9\x03\x00\x00\xb8\x03\x00\x00w\x03\x00\x00u\x03\x00\x00\xb8\x03\x00\x00u\x03\x00\x00\xb6\x03\x00\x00\xb8\x03\x00\x00\xb9\x03\x00\x00\xba\x03\x00\x00\xba\x03\x00\x00\xb9\x03\x00\x00\xbb\x03\x00\x00\xba\x03\x00\x00y\x03\x00\x00w\x03\x00\x00\xba\x03\x00\x00w\x03\x00\x00\xb8\x03\x00\x00\xba\x03\x00\x00\xbb\x03\x00\x00\xbc\x03\x00\x00\xbc\x03\x00\x00\xbb\x03\x00\x00\xbd\x03\x00\x00\xbc\x03\x00\x00{\x03\x00\x00y\x03\x00\x00\xbc\x03\x00\x00y\x03\x00\x00\xba\x03\x00\x00\xbc\x03\x00\x00\xbd\x03\x00\x00\xbe\x03\x00\x00\xbe\x03\x00\x00\xbd\x03\x00\x00\xbf\x03\x00\x00\xbe\x03\x00\x00}\x03\x00\x00{\x03\x00\x00\xbe\x03\x00\x00{\x03\x00\x00\xbc\x03\x00\x00\xbe\x03\x00\x00\xbf\x03\x00\x00\xc0\x03\x00\x00\xc0\x03\x00\x00\xbf\x03\x00\x00\xc1\x03\x00\x00\xc0\x03\x00\x00\x7f\x03\x00\x00}\x03\x00\x00\xc0\x03\x00\x00}\x03\x00\x00\xbe\x03\x00\x00\xc0\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\xc2\x03\x00\x00\xc1\x03\x00\x00\xc3\x03\x00\x00\xc2\x03\x00\x00\x81\x03\x00\x00\x7f\x03\x00\x00\xc2\x03\x00\x00\x7f\x03\x00\x00\xc0\x03\x00\x00\xc2\x03\x00\x00\xc3\x03\x00\x00\xc4\x03\x00\x00\xc4\x03\x00\x00\xc3\x03\x00\x00\xc5\x03\x00\x00\xc4\x03\x00\x00\x83\x03\x00\x00\x81\x03\x00\x00\xc4\x03\x00\x00\x81\x03\x00\x00\xc2\x03\x00\x00\xc4\x03\x00\x00\xc5\x03\x00\x00\xc6\x03\x00\x00\xc6\x03\x00\x00\xc5\x03\x00\x00\xc7\x03\x00\x00\xc6\x03\x00\x00\x85\x03\x00\x00\x83\x03\x00\x00\xc6\x03\x00\x00\x83\x03\x00\x00\xc4\x03\x00\x00\xc6\x03\x00\x00\xc7\x03\x00\x00\xc8\x03\x00\x00\xc8\x03\x00\x00\xc7\x03\x00\x00\xc9\x03\x00\x00\xc8\x03\x00\x00\x87\x03\x00\x00\x85\x03\x00\x00\xc8\x03\x00\x00\x85\x03\x00\x00\xc6\x03\x00\x00\xc8\x03\x00\x00\xc9\x03\x00\x00\xca\x03\x00\x00\xca\x03\x00\x00\xc9\x03\x00\x00\xcb\x03\x00\x00\xca\x03\x00\x00\x89\x03\x00\x00\x87\x03\x00\x00\xca\x03\x00\x00\x87\x03\x00\x00\xc8\x03\x00\x00\xca\x03\x00\x00\xcb\x03\x00\x00\xcc\x03\x00\x00\xcc\x03\x00\x00\xcb\x03\x00\x00\xcd\x03\x00\x00\xcc\x03\x00\x00\x8b\x03\x00\x00\x89\x03\x00\x00\xcc\x03\x00\x00\x89\x03\x00\x00\xca\x03\x00\x00\xcc\x03\x00\x00\xcd\x03\x00\x00\xce\x03\x00\x00\xce\x03\x00\x00\xcd\x03\x00\x00\xcf\x03\x00\x00\xce\x03\x00\x00\x8d\x03\x00\x00\x8b\x03\x00\x00\xce\x03\x00\x00\x8b\x03\x00\x00\xcc\x03\x00\x00\xce\x03\x00\x00\xcf\x03\x00\x00\xd0\x03\x00\x00\xd0\x03\x00\x00\xcf\x03\x00\x00\xd1\x03\x00\x00\xd0\x03\x00\x00\x8f\x03\x00\x00\x8d\x03\x00\x00\xd0\x03\x00\x00\x8d\x03\x00\x00\xce\x03\x00\x00\xd0\x03\x00\x00\xd1\x03\x00\x00\xd2\x03\x00\x00\xd2\x03\x00\x00\xd1\x03\x00\x00\xd3\x03\x00\x00\xd2\x03\x00\x00\x91\x03\x00\x00\x8f\x03\x00\x00\xd2\x03\x00\x00\x8f\x03\x00\x00\xd0\x03\x00\x00\xd2\x03\x00\x00\xd3\x03\x00\x00\xd4\x03\x00\x00\xd4\x03\x00\x00\xd3\x03\x00\x00\xd5\x03\x00\x00\xd4\x03\x00\x00\x93\x03\x00\x00\x91\x03\x00\x00\xd4\x03\x00\x00\x91\x03\x00\x00\xd2\x03\x00\x00\xd4\x03\x00\x00\xd5\x03\x00\x00\xd6\x03\x00\x00\xd6\x03\x00\x00\xd5\x03\x00\x00\xd7\x03\x00\x00\xd6\x03\x00\x00\x95\x03\x00\x00\x93\x03\x00\x00\xd6\x03\x00\x00\x93\x03\x00\x00\xd4\x03\x00\x00\xd6\x03\x00\x00\xd7\x03\x00\x00\xd8\x03\x00\x00\xd8\x03\x00\x00\xd7\x03\x00\x00\xd9\x03\x00\x00\xd8\x03\x00\x00\x97\x03\x00\x00\x95\x03\x00\x00\xd8\x03\x00\x00\x95\x03\x00\x00\xd6\x03\x00\x00\xd8\x03\x00\x00\xd9\x03\x00\x00\xda\x03\x00\x00\xda\x03\x00\x00\xd9\x03\x00\x00\xdb\x03\x00\x00\xda\x03\x00\x00\x99\x03\x00\x00\x97\x03\x00\x00\xda\x03\x00\x00\x97\x03\x00\x00\xd8\x03\x00\x00\xda\x03\x00\x00\xdb\x03\x00\x00\xdc\x03\x00\x00\xdc\x03\x00\x00\xdb\x03\x00\x00\xdd\x03\x00\x00\xdc\x03\x00\x00\x9b\x03\x00\x00\x99\x03\x00\x00\xdc\x03\x00\x00\x99\x03\x00\x00\xda\x03\x00\x00\xdc\x03\x00\x00\xdd\x03\x00\x00\xde\x03\x00\x00\xde\x03\x00\x00\xdd\x03\x00\x00\xdf\x03\x00\x00\xde\x03\x00\x00\x9d\x03\x00\x00\x9b\x03\x00\x00\xde\x03\x00\x00\x9b\x03\x00\x00\xdc\x03\x00\x00\xde\x03\x00\x00\xdf\x03\x00\x00\xe0\x03\x00\x00\xe0\x03\x00\x00\xdf\x03\x00\x00\xe1\x03\x00\x00\xe0\x03\x00\x00\xa0\x03\x00\x00\x9d\x03\x00\x00\xe0\x03\x00\x00\x9d\x03\x00\x00\xde\x03\x00\x00\xe0\x03\x00\x00\xe1\x03\x00\x00\xe2\x03\x00\x00\xe2\x03\x00\x00\xe1\x03\x00\x00\xe3\x03\x00\x00\xe2\x03\x00\x00\xe4\x03\x00\x00\xa0\x03\x00\x00\xe2\x03\x00\x00\xa0\x03\x00\x00\xe0\x03\x00\x00\xe2\x03\x00\x00\xe3\x03\x00\x00\xe5\x03\x00\x00\xe5\x03\x00\x00\xe3\x03\x00\x00\xe6\x03\x00\x00\xe5\x03\x00\x00\xa2\x03\x00\x00\xe4\x03\x00\x00\xe5\x03\x00\x00\xe4\x03\x00\x00\xe2\x03\x00\x00\xe5\x03\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\xe7\x03\x00\x00\xe6\x03\x00\x00\xe8\x03\x00\x00\xe7\x03\x00\x00\xa4\x03\x00\x00\xa2\x03\x00\x00\xe7\x03\x00\x00\xa2\x03\x00\x00\xe5\x03\x00\x00\xe7\x03\x00\x00\xe8\x03\x00\x00\xe9\x03\x00\x00\xe9\x03\x00\x00\xe8\x03\x00\x00\xea\x03\x00\x00\xe9\x03\x00\x00\xeb\x03\x00\x00\xa4\x03\x00\x00\xe9\x03\x00\x00\xa4\x03\x00\x00\xe7\x03\x00\x00\xe9\x03\x00\x00\xea\x03\x00\x00\xec\x03\x00\x00\xec\x03\x00\x00\xea\x03\x00\x00\xed\x03\x00\x00\xec\x03\x00\x00\xed\x03\x00\x00\xee\x03\x00\x00\xee\x03\x00\x00\xed\x03\x00\x00\xef\x03\x00\x00\xee\x03\x00\x00\xef\x03\x00\x00\xf0\x03\x00\x00\xf0\x03\x00\x00\xef\x03\x00\x00\xf1\x03\x00\x00\xf0\x03\x00\x00\xf3\x03\x00\x00\xf2\x03\x00\x00\xf0\x03\x00\x00\xf2\x03\x00\x00\xee\x03\x00\x00\xf0\x03\x00\x00\xf1\x03\x00\x00\xf4\x03\x00\x00\xf4\x03\x00\x00\xf1\x03\x00\x00\xf5\x03\x00\x00\xf8\x03\x00\x00\xf7\x03\x00\x00\xf6\x03\x00\x00\xf6\x03\x00\x00\xf7\x03\x00\x00\xf9\x03\x00\x00\xf6\x03\x00\x00\xf9\x03\x00\x00\xfa\x03\x00\x00\xfa\x03\x00\x00\xf9\x03\x00\x00\xfb\x03\x00\x00\xfa\x03\x00\x00\xa6\x03\x00\x00\xfc\x03\x00\x00\xfa\x03\x00\x00\xfc\x03\x00\x00\xf6\x03\x00\x00\xfa\x03\x00\x00\xfb\x03\x00\x00\xfd\x03\x00\x00\xfd\x03\x00\x00\xfb\x03\x00\x00\xfe\x03\x00\x00\xfd\x03\x00\x00\xa8\x03\x00\x00\xa6\x03\x00\x00\xfd\x03\x00\x00\xa6\x03\x00\x00\xfa\x03\x00\x00\xfd\x03\x00\x00\xfe\x03\x00\x00\xff\x03\x00\x00\xff\x03\x00\x00\xfe\x03\x00\x00\x00\x04\x00\x00\xff\x03\x00\x00\xaa\x03\x00\x00\xa8\x03\x00\x00\xff\x03\x00\x00\xa8\x03\x00\x00\xfd\x03\x00\x00\xff\x03\x00\x00\x00\x04\x00\x00\x01\x04\x00\x00\x01\x04\x00\x00\x00\x04\x00\x00\x02\x04\x00\x00\x01\x04\x00\x00\xab\x03\x00\x00\xaa\x03\x00\x00\x01\x04\x00\x00\xaa\x03\x00\x00\xff\x03\x00\x00\x03\x04\x00\x00\xaf\x03\x00\x00\xad\x03\x00\x00\x04\x04\x00\x00\xaf\x03\x00\x00\x03\x04\x00\x00\x04\x04\x00\x00\xb1\x03\x00\x00\xaf\x03\x00\x00\x05\x04\x00\x00\xb1\x03\x00\x00\x04\x04\x00\x00\x05\x04\x00\x00\xb3\x03\x00\x00\xb1\x03\x00\x00\x06\x04\x00\x00\xb3\x03\x00\x00\x05\x04\x00\x00\x06\x04\x00\x00\xb5\x03\x00\x00\xb3\x03\x00\x00\x07\x04\x00\x00\xb5\x03\x00\x00\x06\x04\x00\x00\x07\x04\x00\x00\xb7\x03\x00\x00\xb5\x03\x00\x00\x08\x04\x00\x00\xb7\x03\x00\x00\x07\x04\x00\x00\x08\x04\x00\x00\xb9\x03\x00\x00\xb7\x03\x00\x00\t\x04\x00\x00\xb9\x03\x00\x00\x08\x04\x00\x00\t\x04\x00\x00\xbb\x03\x00\x00\xb9\x03\x00\x00\n\x04\x00\x00\xbb\x03\x00\x00\t\x04\x00\x00\n\x04\x00\x00\xbd\x03\x00\x00\xbb\x03\x00\x00\x0b\x04\x00\x00\xbd\x03\x00\x00\n\x04\x00\x00\x0b\x04\x00\x00\xbf\x03\x00\x00\xbd\x03\x00\x00\x0c\x04\x00\x00\xbf\x03\x00\x00\x0b\x04\x00\x00\x0c\x04\x00\x00\xc1\x03\x00\x00\xbf\x03\x00\x00\r\x04\x00\x00\xc1\x03\x00\x00\x0c\x04\x00\x00\r\x04\x00\x00\xc3\x03\x00\x00\xc1\x03\x00\x00\x0e\x04\x00\x00\xc3\x03\x00\x00\r\x04\x00\x00\x0e\x04\x00\x00\xc5\x03\x00\x00\xc3\x03\x00\x00\x0f\x04\x00\x00\xc5\x03\x00\x00\x0e\x04\x00\x00\x0f\x04\x00\x00\xc7\x03\x00\x00\xc5\x03\x00\x00\x10\x04\x00\x00\xc7\x03\x00\x00\x0f\x04\x00\x00\x10\x04\x00\x00\xc9\x03\x00\x00\xc7\x03\x00\x00\x11\x04\x00\x00\xc9\x03\x00\x00\x10\x04\x00\x00\x11\x04\x00\x00\xcb\x03\x00\x00\xc9\x03\x00\x00\x12\x04\x00\x00\xcb\x03\x00\x00\x11\x04\x00\x00\x12\x04\x00\x00\xcd\x03\x00\x00\xcb\x03\x00\x00\x13\x04\x00\x00\xcd\x03\x00\x00\x12\x04\x00\x00\x13\x04\x00\x00\xcf\x03\x00\x00\xcd\x03\x00\x00\x14\x04\x00\x00\xcf\x03\x00\x00\x13\x04\x00\x00\x14\x04\x00\x00\xd1\x03\x00\x00\xcf\x03\x00\x00\x15\x04\x00\x00\xd1\x03\x00\x00\x14\x04\x00\x00\x15\x04\x00\x00\xd3\x03\x00\x00\xd1\x03\x00\x00\x16\x04\x00\x00\xd3\x03\x00\x00\x15\x04\x00\x00\x16\x04\x00\x00\xd5\x03\x00\x00\xd3\x03\x00\x00\x17\x04\x00\x00\xd5\x03\x00\x00\x16\x04\x00\x00\x17\x04\x00\x00\xd7\x03\x00\x00\xd5\x03\x00\x00\x18\x04\x00\x00\xd7\x03\x00\x00\x17\x04\x00\x00\x18\x04\x00\x00\xd9\x03\x00\x00\xd7\x03\x00\x00\x19\x04\x00\x00\xd9\x03\x00\x00\x18\x04\x00\x00\x19\x04\x00\x00\xdb\x03\x00\x00\xd9\x03\x00\x00\x1a\x04\x00\x00\xdb\x03\x00\x00\x19\x04\x00\x00\x1a\x04\x00\x00\xdd\x03\x00\x00\xdb\x03\x00\x00\x1b\x04\x00\x00\xdd\x03\x00\x00\x1a\x04\x00\x00\x1b\x04\x00\x00\xdf\x03\x00\x00\xdd\x03\x00\x00\x1c\x04\x00\x00\xdf\x03\x00\x00\x1b\x04\x00\x00\x1c\x04\x00\x00\xe1\x03\x00\x00\xdf\x03\x00\x00\x1d\x04\x00\x00\xe1\x03\x00\x00\x1c\x04\x00\x00\x1d\x04\x00\x00\xe3\x03\x00\x00\xe1\x03\x00\x00\x1e\x04\x00\x00\xe3\x03\x00\x00\x1d\x04\x00\x00\x1e\x04\x00\x00\xe6\x03\x00\x00\xe3\x03\x00\x00\x1f\x04\x00\x00\xe6\x03\x00\x00\x1e\x04\x00\x00\x1f\x04\x00\x00\xe8\x03\x00\x00\xe6\x03\x00\x00 \x04\x00\x00\xe8\x03\x00\x00\x1f\x04\x00\x00 \x04\x00\x00\xea\x03\x00\x00\xe8\x03\x00\x00!\x04\x00\x00\xea\x03\x00\x00 \x04\x00\x00!\x04\x00\x00\xed\x03\x00\x00\xea\x03\x00\x00"\x04\x00\x00\xed\x03\x00\x00!\x04\x00\x00"\x04\x00\x00\xef\x03\x00\x00\xed\x03\x00\x00#\x04\x00\x00\xef\x03\x00\x00"\x04\x00\x00#\x04\x00\x00\xf1\x03\x00\x00\xef\x03\x00\x00$\x04\x00\x00\xf1\x03\x00\x00#\x04\x00\x00$\x04\x00\x00\xf5\x03\x00\x00\xf1\x03\x00\x00%\x04\x00\x00\xf5\x03\x00\x00$\x04\x00\x00%\x04\x00\x00&\x04\x00\x00\xf5\x03\x00\x00\'\x04\x00\x00&\x04\x00\x00%\x04\x00\x00(\x04\x00\x00\xf9\x03\x00\x00\xf7\x03\x00\x00)\x04\x00\x00\xf9\x03\x00\x00(\x04\x00\x00)\x04\x00\x00\xfb\x03\x00\x00\xf9\x03\x00\x00*\x04\x00\x00\xfb\x03\x00\x00)\x04\x00\x00*\x04\x00\x00\xfe\x03\x00\x00\xfb\x03\x00\x00+\x04\x00\x00\xfe\x03\x00\x00*\x04\x00\x00+\x04\x00\x00\x00\x04\x00\x00\xfe\x03\x00\x00,\x04\x00\x00\x00\x04\x00\x00+\x04\x00\x00,\x04\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00-\x04\x00\x00\x02\x04\x00\x00,\x04\x00\x00\x03\x00\x01\x00p\x88\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00.\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00&\x07\x00\x00\x80\x00\x00\x00\xa82\x00\x00\xa82\x00\x00\xa82\x00\x00\xa82\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00rock1 \x00\x00 A\xbfY\xccC\xe8y>A\x00\x00 A\x9e|\xccCn\xdb\x0eB\x00\x00\xf0A"\xb5\xd4C\xe8y>A\x00\x00\xf0A#\r\xd5Cn\xdb\x0eB\x00\x00 A\xa8\x94\xccCb\x18nB\x00\x00\xf0A\x00W\xd5Cb\x18nB\x00\x00 Ai\xa3\xccC\xab\xaa\xa6B\x00\x00\xf0A\xed\x93\xd5C\xab\xaa\xa6B\x00\x00 A\xc6\xaa\xccC%I\xd6B\x00\x00\xf0A\x88\xc5\xd5C%I\xd6B\x00\x00 A\xde\xac\xccC\xcf\xf3\x02C\x00\x00\xf0A\xc1\xed\xd5C\xcf\xf3\x02C\x00\x00 A\xf9\xab\xccC\x0c\xc3\x1aC\x00\x00\xf0A\xc7\x0e\xd6C\x0c\xc3\x1aC\x00\x00 AW\xaa\xccCI\x922C\x00\x00\xf0A\xd2*\xd6CI\x922C\x00\x00 A\x00\xaa\xccC\x86aJC\x00\x00\xf0A\xd1C\xd6C\x86aJC\x00\x00 A:\xac\xccC\xc30bC\x00\x00\xf0A\xfdZ\xd6C\xc30bC\x00\x00 A\xf1\xb0\xccC\x00\x00zC\x00\x00\xf0A\x97p\xd6C\x00\x00zC\x00\x00 A{\xb7\xccC\x9e\xe7\x88C\x00\x00\xf0AF\x84\xd6C\x9e\xe7\x88C\x00\x00 A\x08\xbf\xccC=\xcf\x94C\x00\x00\xf0Aw\x95\xd6C=\xcf\x94C\x00\x00 A\xbd\xc6\xccC\xdb\xb6\xa0C\x00\x00\xf0A\xaa\xa3\xd6C\xdb\xb6\xa0C\x00\x00 A\xdc\xcd\xccCz\x9e\xacC\x00\x00\xf0A\x95\xae\xd6Cz\x9e\xacC\x00\x00 A\xd8\xd3\xccC\x18\x86\xb8C\x00\x00\xf0AG\xb6\xd6C\x18\x86\xb8C\x00\x00 AU\xd8\xccC\xb7m\xc4C\x00\x00\xf0A\x17\xbb\xd6C\xb7m\xc4C\x00\x00 A,\xdb\xccCUU\xd0C\x00\x00\xf0A\xa3\xbd\xd6CUU\xd0C\x00\x00 Ak\xdc\xccC\xf4<\xdcC\x00\x00\xf0A\xab\xbe\xd6C\xf4<\xdcC\x00\x00 AQ\xdc\xccC\x92$\xe8C\x00\x00\xf0A\xdf\xbe\xd6C\x92$\xe8C\x00\x00 A\x9f\xdb\xccC1\x0c\xf4C\x00\x00\xf0A\xc5\xbe\xd6C1\x0c\xf4C\x00\x00 A\x9f\xdb\xccC\xcf\xf3\xffC\x00\x00\xf0A\xc5\xbe\xd6C\xcf\xf3\xffC\x00\x00 AQ\xdc\xccC\xb7\xed\x05D\x00\x00\xf0A\xdf\xbe\xd6C\xb7\xed\x05D\x00\x00 Ak\xdc\xccC\x86\xe1\x0bD\x00\x00\xf0A\xab\xbe\xd6C\x86\xe1\x0bD\x00\x00 A,\xdb\xccCU\xd5\x11D\x00\x00\xf0A\xa3\xbd\xd6CU\xd5\x11D\x00\x00 AU\xd8\xccC%\xc9\x17D\x00\x00\xf0A\x17\xbb\xd6C%\xc9\x17D\x00\x00 A\xd8\xd3\xccC\xf4\xbc\x1dD\x00\x00\xf0AG\xb6\xd6C\xf4\xbc\x1dD\x00\x00 A\xdc\xcd\xccC\xc3\xb0#D\x00\x00\xf0A\x95\xae\xd6C\xc3\xb0#D\x00\x00 A\xbd\xc6\xccC\x92\xa4)D\x00\x00\xf0A\xaa\xa3\xd6C\x92\xa4)D\x00\x00 A\x08\xbf\xccCb\x98/D\x00\x00\xf0Aw\x95\xd6Cb\x98/D\x00\x00 A{\xb7\xccC1\x8c5D\x00\x00\xf0AF\x84\xd6C1\x8c5D\x00\x00 A\xf1\xb0\xccC\x00\x80;D\x00\x00\xf0A\x97p\xd6C\x00\x80;D\x00\x00 A:\xac\xccC\xcfsAD\x00\x00\xf0A\xfdZ\xd6C\xcfsAD\x00\x00 A\x00\xaa\xccC\x9egGD\x00\x00\xf0A\xd1C\xd6C\x9egGD\x00\x00 AW\xaa\xccCn[MD\x00\x00\xf0A\xd2*\xd6Cn[MD\x00\x00 A\xf9\xab\xccC=OSD\x00\x00\xf0A\xc7\x0e\xd6C=OSD\x00\x00 A\xde\xac\xccC\x0cCYD\x00\x00\xf0A\xc1\xed\xd5C\x0cCYD\x00\x00 A\xc6\xaa\xccC\xdb6_D\x00\x00\xf0A\x88\xc5\xd5C\xdb6_D\x00\x00 Ai\xa3\xccC\xab*eD\x00\x00\xf0A\xed\x93\xd5C\xab*eD\x00\x00 A\xa8\x94\xccCz\x1ekD\x00\x00\xf0A\x00W\xd5Cz\x1ekD\x00\x00 A\x9e|\xccCI\x12qD\x00\x00\xf0A#\r\xd5CI\x12qD\x00\x00 A\xbfY\xccC\x18\x06wD\x00\x00\xf0A"\xb5\xd4C\x18\x06wDv\x11!B\xf3\x1a\xd9C\xe8y>A\xdb\xea\x1cB\xf3\x1a\xd9Cn\xdb\x0eB\x00\x00HB\x04\xdc\xddCn\xdb\x0eB\x00\x00HB\xe1J\xddC\xe8y>AZ\x81\x19B\xf3\x1a\xd9Cb\x18nB\x00\x00HB\xd4[\xdeCb\x18nB\xc0\xbb\x16B\xf3\x1a\xd9C\xab\xaa\xa6B\x00\x00HB\x01\xcb\xdeC\xab\xaa\xa6B-\x80\x14B\xf3\x1a\xd9C%I\xd6B\x00\x00HB\xa7*\xdfC%I\xd6B\xdc\xb4\x12B\xf3\x1a\xd9C\xcf\xf3\x02C\x00\x00HBM|\xdfC\xcf\xf3\x02Cs@\x11B\xf3\x1a\xd9C\x0c\xc3\x1aC\x00\x00HB\xcd\xc1\xdfC\x0c\xc3\x1aC\x8b\x0b\x10B\xf3\x1a\xd9CI\x922C\x00\x00HB\x17\xfd\xdfCI\x922C\xc6\x02\x0fB\xf3\x1a\xd9C\x86aJC\x00\x00HB\xeb/\xe0C\x86aJCv\x19\x0eB\xf3\x1a\xd9C\xc30bC\x00\x00HBw[\xe0C\xc30bC\xb4J\rB\xf3\x1a\xd9C\x00\x00zC\x00\x00HB?\x80\xe0C\x00\x00zC\xd2\x96\x0cB\xf3\x1a\xd9C\x9e\xe7\x88C\x00\x00HBE\x9e\xe0C\x9e\xe7\x88C\x04\x00\x0cB\xf3\x1a\xd9C=\xcf\x94C\x00\x00HBn\xb5\xe0C=\xcf\x94C[\x88\x0bB\xf3\x1a\xd9C\xdb\xb6\xa0C\x00\x00HB\xbc\xc5\xe0C\xdb\xb6\xa0C,0\x0bB\xf3\x1a\xd9Cz\x9e\xacC\x00\x00HB\x8c\xcf\xe0Cz\x9e\xacC4\xf5\nB\xf3\x1a\xd9C\x18\x86\xb8C\x00\x00HB\xad\xd3\xe0C\x18\x86\xb8C\xdc\xd2\nB\xf3\x1a\xd9C\xb7m\xc4C\x00\x00HBg\xd3\xe0C\xb7m\xc4CT\xc2\nB\xf3\x1a\xd9CUU\xd0C\x00\x00HBh\xd0\xe0CUU\xd0C\x03\xbc\nB\xf3\x1a\xd9C\xf4<\xdcC\x00\x00HB\x92\xcc\xe0C\xf4<\xdcC\xda\xb9\nB\xf3\x1a\xd9C\x92$\xe8C\x00\x00HB\x95\xc9\xe0C\x92$\xe8C\x1a\xb9\nB\xf3\x1a\xd9C1\x0c\xf4C\x00\x00HB*\xc8\xe0C1\x0c\xf4C\x1a\xb9\nB\xf3\x1a\xd9C\xcf\xf3\xffC\x00\x00HB*\xc8\xe0C\xcf\xf3\xffC\xda\xb9\nB\xf3\x1a\xd9C\xb7\xed\x05D\x00\x00HB\x95\xc9\xe0C\xb7\xed\x05D\x03\xbc\nB\xf3\x1a\xd9C\x86\xe1\x0bD\x00\x00HB\x92\xcc\xe0C\x86\xe1\x0bDT\xc2\nB\xf3\x1a\xd9CU\xd5\x11D\x00\x00HBh\xd0\xe0CU\xd5\x11D\xdc\xd2\nB\xf3\x1a\xd9C%\xc9\x17D\x00\x00HBg\xd3\xe0C%\xc9\x17D4\xf5\nB\xf3\x1a\xd9C\xf4\xbc\x1dD\x00\x00HB\xad\xd3\xe0C\xf4\xbc\x1dD,0\x0bB\xf3\x1a\xd9C\xc3\xb0#D\x00\x00HB\x8c\xcf\xe0C\xc3\xb0#D[\x88\x0bB\xf3\x1a\xd9C\x92\xa4)D\x00\x00HB\xbc\xc5\xe0C\x92\xa4)D\x04\x00\x0cB\xf3\x1a\xd9Cb\x98/D\x00\x00HBn\xb5\xe0Cb\x98/D\xd2\x96\x0cB\xf3\x1a\xd9C1\x8c5D\x00\x00HBE\x9e\xe0C1\x8c5D\xb4J\rB\xf3\x1a\xd9C\x00\x80;D\x00\x00HB?\x80\xe0C\x00\x80;Dv\x19\x0eB\xf3\x1a\xd9C\xcfsAD\x00\x00HBw[\xe0C\xcfsAD\xc6\x02\x0fB\xf3\x1a\xd9C\x9egGD\x8b\x0b\x10B\xf3\x1a\xd9Cn[MD\xc0\xbb\x16B\xf3\x1a\xd9C\xab*eDZ\x81\x19B\xf3\x1a\xd9Cz\x1ekD\xdb\xea\x1cB\xf3\x1a\xd9CI\x12qDv\x11!B\xf3\x1a\xd9C\x18\x06wD\x00\x00\x8cB^C\xe6C&\xc3\x8fAeW\x89B^C\xe6Cn\xdb\x0eB\x00\x00\x8cB_\x0e\xe6C\xe8y>A\x00\x00\x8cB\xe3\xdc\xe6Cn\xdb\x0eBIE\x86B^C\xe6Cb\x18nB\x00\x00\x8cB\xa1\x96\xe7Cb\x18nB\x85\xab\x83B^C\xe6C\xab\xaa\xa6B\x00\x00\x8cB\x1a<\xe8C\xab\xaa\xa6B\x91|\x81B^C\xe6C%I\xd6B\x00\x00\x8cB\xb7\xcd\xe8C%I\xd6B_U\x7fB^C\xe6C\xcf\xf3\x02C\x00\x00\x8cBKL\xe9C\xcf\xf3\x02C\xe2P|B^C\xe6C\x0c\xc3\x1aC\x00\x00\x8cB\x00\xb9\xe9C\x0c\xc3\x1aCf\xd2yB^C\xe6CI\x922C\x00\x00\x8cB?\x15\xeaCI\x922C0\xc4wB^C\xe6C\x86aJC\x00\x00\x8cBgb\xeaC\x86aJC\x08\x16vB^C\xe6C\xc30bC\x00\x00\x8cB\x97\xa1\xeaC\xc30bCy\xbdtB^C\xe6C\x00\x00zC\x00\x00\x8cB\x8b\xd3\xeaC\x00\x00zC\x7f\xb4sB^C\xe6C\x9e\xe7\x88C\x00\x00\x8cB\xc6\xf8\xeaC\x9e\xe7\x88C\x06\xf7rB^C\xe6C=\xcf\x94C\x00\x00\x8cB\xcb\x11\xebC=\xcf\x94Cs\x80rB^C\xe6C\xdb\xb6\xa0C\x00\x00\x8cBe\x1f\xebC\xdb\xb6\xa0C0JrB^C\xe6Cz\x9e\xacC\x00\x00\x8cB\xc1"\xebCz\x9e\xacC+JrB^C\xe6C\x18\x86\xb8C\x00\x00\x8cB\x97\x1d\xebC\x18\x86\xb8CcrrB^C\xe6C\xb7m\xc4C\x00\x00\x8cB*\x12\xebC\xb7m\xc4C~\xb0rB^C\xe6CUU\xd0C\x00\x00\x8cBS\x03\xebCUU\xd0C\xde\xeerB^C\xe6C\xf4<\xdcC\x00\x00\x8cBr\xf4\xeaC\xf4<\xdcCZ\x19sB^C\xe6C\x92$\xe8C\x00\x00\x8cB\xfd\xe8\xeaC\x92$\xe8C3)sB^C\xe6C1\x0c\xf4C\x00\x00\x8cB5\xe3\xeaC1\x0c\xf4C3)sB^C\xe6C\xcf\xf3\xffC\x00\x00\x8cB5\xe3\xeaC\xcf\xf3\xffCZ\x19sB^C\xe6C\xb7\xed\x05D\x00\x00\x8cB\xfd\xe8\xeaC\xb7\xed\x05D\xde\xeerB^C\xe6C\x86\xe1\x0bD\x00\x00\x8cBr\xf4\xeaC\x86\xe1\x0bD~\xb0rB^C\xe6CU\xd5\x11D\x00\x00\x8cBS\x03\xebCU\xd5\x11DcrrB^C\xe6C%\xc9\x17D\x00\x00\x8cB*\x12\xebC%\xc9\x17D+JrB^C\xe6C\xf4\xbc\x1dD\x00\x00\x8cB\x97\x1d\xebC\xf4\xbc\x1dD0JrB^C\xe6C\xc3\xb0#D\x00\x00\x8cB\xc1"\xebC\xc3\xb0#Ds\x80rB^C\xe6C\x92\xa4)D\x00\x00\x8cBe\x1f\xebC\x92\xa4)D\x06\xf7rB^C\xe6Cb\x98/D\x7f\xb4sB^C\xe6C1\x8c5Dy\xbdtB^C\xe6C\x00\x80;D\x08\x16vB^C\xe6C\xcfsAD\xe3\xef\x8cB^C\xe6C\xe8y>A\x00\x00\xb4B:\xe5\xeeC\xe8y>A\x00\x00\xb4B\xfa\xf5\xefCn\xdb\x0eB\x00\x00\xb4B\xa4\xef\xf0Cb\x18nB\x00\x00\xb4Br\xd1\xf1C\xab\xaa\xa6B\x00\x00\xb4B\xdf\x9a\xf2C%I\xd6B\x00\x00\xb4B\xb1K\xf3C\xcf\xf3\x02C\x00\x00\xb4B\xcak\xf3C\x18\xf6\x07C\xb0,\xb2B\xcak\xf3C\x0c\xc3\x1aC\x00\x00\xb4B\xc5\xe2\xf3C\x0c\xc3\x1aC\xaeF\xb0B\xcak\xf3CI\x922C\x00\x00\xb4B\xd3a\xf4CI\x922C;\xc1\xaeB\xcak\xf3C\x86aJC\x00\x00\xb4B\xea\xc9\xf4C\x86aJC7\x92\xadB\xcak\xf3C\xc30bC\x00\x00\xb4B\xf2\x1b\xf5C\xc30bCI\xb1\xacB\xcak\xf3C\x00\x00zC\x00\x00\xb4B\xf2X\xf5C\x00\x00zC\x84\x17\xacB\xcak\xf3C\x9e\xe7\x88C\x00\x00\xb4B \x82\xf5C\x9e\xe7\x88C\x9c\xbe\xabB\xcak\xf3C=\xcf\x94C\x00\x00\xb4B\xfa\x98\xf5C=\xcf\x94C\x11\xa0\xabB\xcak\xf3C\xdb\xb6\xa0C\x00\x00\xb4BU\x9f\xf5C\xdb\xb6\xa0C\xa2\xb4\xabB\xcak\xf3Cz\x9e\xacC\x00\x00\xb4Bi\x97\xf5Cz\x9e\xacC\x9a\xf3\xabB\xcak\xf3C\x18\x86\xb8C\x00\x00\xb4B\xdc\x83\xf5C\x18\x86\xb8C6R\xacB\xcak\xf3C\xb7m\xc4C\x00\x00\xb4B\xdag\xf5C\xb7m\xc4C\xd4\xc2\xacB\xcak\xf3CUU\xd0C\x00\x00\xb4B<G\xf5CUU\xd0C\xf63\xadB\xcak\xf3C\xf4<\xdcC\x00\x00\xb4B\xb5&\xf5C\xf4<\xdcC\xee\x8e\xadB\xcak\xf3C\x92$\xe8C\x00\x00\xb4B/\x0c\xf5C\x92$\xe8C\x1f\xbb\xadB\xcak\xf3C1\x0c\xf4C\x00\x00\xb4B1\xfe\xf4C1\x0c\xf4C\x1f\xbb\xadB\xcak\xf3C\xcf\xf3\xffC\x00\x00\xb4B1\xfe\xf4C\xcf\xf3\xffC\xee\x8e\xadB\xcak\xf3C\xb7\xed\x05D\x00\x00\xb4B/\x0c\xf5C\xb7\xed\x05D\xf63\xadB\xcak\xf3C\x86\xe1\x0bD\x00\x00\xb4B\xb5&\xf5C\x86\xe1\x0bD\xd4\xc2\xacB\xcak\xf3CU\xd5\x11D\x00\x00\xb4B<G\xf5CU\xd5\x11D6R\xacB\xcak\xf3C%\xc9\x17D\x00\x00\xb4B\xdag\xf5C%\xc9\x17D\x9a\xf3\xabB\xcak\xf3C\xf4\xbc\x1dD\x00\x00\xb4B\xdc\x83\xf5C\xf4\xbc\x1dD\xa2\xb4\xabB\xcak\xf3C\xc3\xb0#D\x00\x00\xb4Bi\x97\xf5C\xc3\xb0#D\x11\xa0\xabB\xcak\xf3C\x92\xa4)D\x85]\xc8B\xcak\xf3C\xe8y>AP \xc3B\xcak\xf3Cn\xdb\x0eB\x00\x00\xdcB \x18\xf9Cn\xdb\x0eB\x00\x00\xdcB\xe1\xc4\xf7C\xe8y>A\xa4\x92\xbeB\xcak\xf3Cb\x18nB\x00\x00\xdcB9R\xfaCb\x18nB\xef\xa6\xbaB\xcak\xf3C\xab\xaa\xa6B\xb4O\xb7B\xcak\xf3C%I\xd6B\xac\x7f\xb4B\xcak\xf3C\xcf\xf3\x02C\x00\x00\xdcB\xbdY\xfdC\xcf\xf3\x02C\x00\x00\xdcB\x8et\xfcC%I\xd6B\x00\x00\xdcB\xc9\x1f\xfeC\x0c\xc3\x1aC\x00\x00\xdcB\xba\xc5\xfeCI\x922C\x00\x00\xdcB.K\xffC\x86aJC\x00\x00\xdcB\xa9\xb0\xffC\xc30bC\x00\x00\xdcB\xac\xf7\xffC\x00\x00zC\x00\x00\xdcBJ\x11\x00D\x9e\xe7\x88C\x00\x00\xdcB,\x1a\x00D=\xcf\x94C\x00\x00\xdcB*\x18\x00D\xdb\xb6\xa0C\x00\x00\xdcB\x08\r\x00Dz\x9e\xacC\x00\x00\xdcBM\xf5\xffC\x18\x86\xb8C\x00\x00\xdcB\x1e\xc6\xffC\xb7m\xc4C\x00\x00\xdcB"\x91\xffCUU\xd0C\x00\x00\xdcB\xd8[\xffC\xf4<\xdcC\x00\x00\xdcB\x19-\xffC\x92$\xe8C\x00\x00\xdcB4\x0e\xffC1\x0c\xf4C\x00\x00\xdcB4\x0e\xffC\xcf\xf3\xffC\x00\x00\xdcB\x19-\xffC\xb7\xed\x05D\x00\x00\xdcB\xd8[\xffC\x86\xe1\x0bD\x00\x00\xdcB"\x91\xffCU\xd5\x11D\x00\x00\xdcB\x1e\xc6\xffC%\xc9\x17D\x00\x00\xdcBM\xf5\xffC\xf4\xbc\x1dD\x00\x00\xdcB\x08\r\x00D\xc3\xb0#D\x00\x00\xb4BU\x9f\xf5C\x92\xa4)D\x00\x00\xdcB*\x18\x00D\x92\xa4)D\xad\xd6\xe8B\x1bJ\x00D\xcf\xf3\x02C\x05\x96\xe5B\x1bJ\x00D\x0c\xc3\x1aC\x00\x00\x02C\x97*\x04D\x0c\xc3\x1aC\x00\x00\x02C\xcb\xaf\x03D\xcf\xf3\x02C\xde\xf3\xe2B\x1bJ\x00DI\x922C\x00\x00\x02C"\x91\x04DI\x922C\xce\xe4\xe0B\x1bJ\x00D\x86aJC\x00\x00\x02Ci\xe2\x04D\x86aJC\x94\\\xdfB\x1bJ\x00D\xc30bC\x00\x00\x02CZ\x1e\x05D\xc30bC)N\xdeB\x1bJ\x00D\x00\x00zC\x00\x00\x02C\x12F\x05D\x00\x00zC]\xac\xddB\x1bJ\x00D\x9e\xe7\x88C\x00\x00\x02C\xa6[\x05D\x9e\xe7\x88C6j\xddB\x1bJ\x00D=\xcf\x94C\x00\x00\x02C\x95a\x05D=\xcf\x94C\xf8z\xddB\x1bJ\x00D\xdb\xb6\xa0C\x00\x00\x02CuZ\x05D\xdb\xb6\xa0C\x06\xd2\xddB\x1bJ\x00Dz\x9e\xacC\x00\x00\x02C\xc8H\x05Dz\x9e\xacC<b\xdeB\x1bJ\x00D\x18\x86\xb8C\x00\x00\x02C\n/\x05D\x18\x86\xb8C\x16\x1d\xdfB\x1bJ\x00D\xb7m\xc4C\x00\x00\x02C\xca\x0f\x05D\xb7m\xc4C\x83\xf1\xdfB\x1bJ\x00DUU\xd0C\x00\x00\x02C\xe4\xed\x04DUU\xd0CF\xca\xe0B\x1bJ\x00D\xf4<\xdcC\x00\x00\x02C\xd1\xcc\x04D\xf4<\xdcC\xd7\x8b\xe1B\x1bJ\x00D\x92$\xe8C\x00\x00\x02C\x0f\xb1\x04D\x92$\xe8C\xfc\x0e\xe2B\x1bJ\x00D1\x0c\xf4C\x00\x00\x02Cn\xa0\x04D1\x0c\xf4C\xfc\x0e\xe2B\x1bJ\x00D\xcf\xf3\xffC\x00\x00\x02Cn\xa0\x04D\xcf\xf3\xffC\xd7\x8b\xe1B\x1bJ\x00D\xb7\xed\x05D\x00\x00\x02C\x0f\xb1\x04D\xb7\xed\x05DF\xca\xe0B\x1bJ\x00D\x86\xe1\x0bD\x00\x00\x02C\xd1\xcc\x04D\x86\xe1\x0bD\x83\xf1\xdfB\x1bJ\x00DU\xd5\x11D\x00\x00\x02C\xe4\xed\x04DU\xd5\x11D\x16\x1d\xdfB\x1bJ\x00D%\xc9\x17D\x00\x00\x02C\xca\x0f\x05D%\xc9\x17D<b\xdeB\x1bJ\x00D\xf4\xbc\x1dD\x00\x00\x02C\n/\x05D\xf4\xbc\x1dD\x06\xd2\xddB\x1bJ\x00D\xc3\xb0#D\x00\x00\x02C\xc8H\x05D\xc3\xb0#D\xf8z\xddB\x1bJ\x00D\x92\xa4)D\x9f\xf9\nCQ\xde\x06DI\x922C)\xa6\tCQ\xde\x06D\x86aJC\x0b\xb3\x08CQ\xde\x06D\xc30bC\x00\x00\x16C\x00O\nD\xc30bC\x00\x00\x16C\x18\n\nD\x86aJC3\x16\x08CQ\xde\x06D\x00\x00zC\x00\x00\x16C\xbez\nD\x00\x00zC\xe4\xc3\x07CQ\xde\x06D\x9e\xe7\x88C\x00\x00\x16C\xa0\x90\nD\x9e\xe7\x88C~\xb0\x07CQ\xde\x06D=\xcf\x94C\x00\x00\x16C[\x94\nD=\xcf\x94CU\xd1\x07CQ\xde\x06D\xdb\xb6\xa0C\x00\x00\x16Cp\x89\nD\xdb\xb6\xa0C\x90\x1c\x08CQ\xde\x06Dz\x9e\xacC\x00\x00\x16C\x18s\nDz\x9e\xacC\x9f\x88\x08CQ\xde\x06D\x18\x86\xb8C\x00\x00\x16CZT\nD\x18\x86\xb8Cz\x0b\tCQ\xde\x06D\xb7m\xc4C\x00\x00\x16CF0\nD\xb7m\xc4C\x89\x99\tCQ\xde\x06DUU\xd0C\x00\x00\x16C5\n\nDUU\xd0C6$\nCQ\xde\x06D\xf4<\xdcC\x00\x00\x16C)\xe6\tD\xf4<\xdcC.\x98\nCQ\xde\x06D\x92$\xe8C\x00\x00\x16C\t\xc9\tD\x92$\xe8C\x02\xdd\nCQ\xde\x06D1\x0c\xf4C\x00\x00\x16C_\xb8\tD1\x0c\xf4C\x02\xdd\nCQ\xde\x06D\xcf\xf3\xffC\x00\x00\x16C_\xb8\tD\xcf\xf3\xffC.\x98\nCQ\xde\x06D\xb7\xed\x05D\x00\x00\x16C\t\xc9\tD\xb7\xed\x05D6$\nCQ\xde\x06D\x86\xe1\x0bD\x00\x00\x16C)\xe6\tD\x86\xe1\x0bD\x89\x99\tCQ\xde\x06DU\xd5\x11D\x00\x00\x16C5\n\nDU\xd5\x11Dz\x0b\tCQ\xde\x06D%\xc9\x17D\x00\x00\x16CF0\nD%\xc9\x17D\x9f\x88\x08CQ\xde\x06D\xf4\xbc\x1dD\x00\x00\x16CZT\nD\xf4\xbc\x1dD\x90\x1c\x08CQ\xde\x06D\xc3\xb0#DGf"C\x87r\rD\xc30bC\xb2\xae!C\x87r\rD\x00\x00zC\xecU!C\x87r\rD\x9e\xe7\x88C\x00\x00*Cr\x9d\x0fD\x9e\xe7\x88C\x00\x00*C\x04\x86\x0fD\x00\x00zC\xa2I!C\x87r\rD=\xcf\x94C\x00\x00*C\x02\xa1\x0fD=\xcf\x94C\x15z!C\x87r\rD\xdb\xb6\xa0C\x00\x00*C\xe9\x94\x0fD\xdb\xb6\xa0C\x82\xd9!C\x87r\rDz\x9e\xacC\x00\x00*C\xe2|\x0fDz\x9e\xacC\x1b["C\x87r\rD\x18\x86\xb8C\x00\x00*C]\\\x0fD\x18\x86\xb8C\xe4\xf1"C\x87r\rD\xb7m\xc4C\x00\x00*C\xc06\x0fD\xb7m\xc4C\x8b\x8f#C\x87r\rDUU\xd0C\x00\x00*C\xa8\x0f\x0fDUU\xd0C0#$C\x87r\rD\xf4<\xdcC\x00\x00*C9\xeb\x0eD\xf4<\xdcC\xef\x98$C\x87r\rD\x92$\xe8C\x00\x00*C<\xce\x0eD\x92$\xe8C\x87\xdb$C\x87r\rD1\x0c\xf4C\x00\x00*C\xd4\xbd\x0eD1\x0c\xf4C\x87\xdb$C\x87r\rD\xcf\xf3\xffC\x00\x00*C\xd4\xbd\x0eD\xcf\xf3\xffC\xef\x98$C\x87r\rD\xb7\xed\x05D\x00\x00*C<\xce\x0eD\xb7\xed\x05D0#$C\x87r\rD\x86\xe1\x0bD\x00\x00*C9\xeb\x0eD\x86\xe1\x0bD\x8b\x8f#C\x87r\rDU\xd5\x11D\x00\x00*C\xa8\x0f\x0fDU\xd5\x11D\xe4\xf1"C\x87r\rD%\xc9\x17D\x00\x00*C\xc06\x0fD%\xc9\x17D\x1b["C\x87r\rD\xf4\xbc\x1dD/#<C\xbd\x06\x14D=\xcf\x94CtN<C\xbd\x06\x14D\xdb\xb6\xa0C\xb4\xac<C\xbd\x06\x14Dz\x9e\xacC\x00\x00>C\xd8W\x14Dz\x9e\xacC\x00\x00>C\tn\x14D\xdb\xb6\xa0C7.=C\xbd\x06\x14D\x18\x86\xb8C\x00\x00>C\x0c9\x14D\x18\x86\xb8C\xbb\xc3=C\xbd\x06\x14D\xb7m\xc4C\x00\x00>C=\x15\x14D\xb7m\xc4C\x00\x00>C\xdc\xef\x13DUU\xd0C\x00\x00>C\xbd\x06\x14D%\x14\xc9C\x00\x00>C\x15\xcd\x13D\xf4<\xdcC\x00\x00>Cb\xb1\x13D\x92$\xe8C\x00\x00>Cb\xa1\x13D1\x0c\xf4C\x00\x00>Cb\xa1\x13D\xcf\xf3\xffC\x00\x00>Cb\xb1\x13D\xb7\xed\x05D\x00\x00>C\x15\xcd\x13D\x86\xe1\x0bD\x00\x00>C\xdc\xef\x13DU\xd5\x11D\x00\x00>C\xbd\x06\x14D\xeeu\x15D\xbb\xc3=C\xbd\x06\x14D%\xc9\x17D\x00\x00>C=\x15\x14D%\xc9\x17D\x00\x00*C]\\\x0fD\xf4\xbc\x1dD7.=C\xbd\x06\x14D\xf4\xbc\x1dD\x00\x00RC\xb2\xef\x18Dz\x9e\xacC\x00\x00RCD\xd6\x18D\x18\x86\xb8C\x00\x00RC\xa8\xb7\x18D\xb7m\xc4C&a>C\xbd\x06\x14DUU\xd0C\x00\x00RC\x93\x97\x18DUU\xd0Cd\xf4>C\xbd\x06\x14D\xf4<\xdcC\x00\x00RC\xb3y\x18D\xf4<\xdcC\\i?C\xbd\x06\x14D\x92$\xe8C\x00\x00RC\xdaa\x18D\x92$\xe8C\xea\xac?C\xbd\x06\x14D1\x0c\xf4C\x00\x00RC\x0fT\x18D1\x0c\xf4C\xea\xac?C\xbd\x06\x14D\xcf\xf3\xffC\x00\x00RC\x0fT\x18D\xcf\xf3\xffC\\i?C\xbd\x06\x14D\xb7\xed\x05D\x00\x00RC\xdaa\x18D\xb7\xed\x05Dd\xf4>C\xbd\x06\x14D\x86\xe1\x0bD\x00\x00RC\xb3y\x18D\x86\xe1\x0bD&a>C\xbd\x06\x14DU\xd5\x11D\x00\x00RC\x93\x97\x18DU\xd5\x11D\x00\x00RC\xa8\xb7\x18D%\xc9\x17Dp\x88ZC\xf3\x9a\x1aD\xb7m\xc4C3\x0e[C\xf3\x9a\x1aDUU\xd0C\x04\x8a[C\xf3\x9a\x1aD\xf4<\xdcC\x00\x00fC"\xe6\x1cD\xf4<\xdcC\x00\x00fC\xe5\xfd\x1cDUU\xd0C\xda\xeb[C\xf3\x9a\x1aD\x92$\xe8C\x00\x00fC9\xd3\x1cD\x92$\xe8C\x8b#\\C\xf3\x9a\x1aD1\x0c\xf4C\x00\x00fC\x84\xc8\x1cD1\x0c\xf4C\x8b#\\C\xf3\x9a\x1aD\xcf\xf3\xffC\x00\x00fC\x84\xc8\x1cD\xcf\xf3\xffC\xda\xeb[C\xf3\x9a\x1aD\xb7\xed\x05D\x04\x8a[C\xf3\x9a\x1aD\x86\xe1\x0bD\x00\x00fC"\xe6\x1cD\x86\xe1\x0bD\x00\x00fC9\xd3\x1cD\xb7\xed\x05D3\x0e[C\xf3\x9a\x1aDU\xd5\x11D\x00\x00fC\xe5\xfd\x1cDU\xd5\x11Dp\x88ZC\xf3\x9a\x1aD%\xc9\x17D\x00\x00zCr\x1c!DUU\xd0C\x00\x00zC\xef\n!D\xf4<\xdcC\x00\x00zC\xf4\xfc D\x92$\xe8C\x00\x00zC"\xf5 D1\x0c\xf4C\x00\x00zC"\xf5 D\xcf\xf3\xffC\x00\x00zC\xf4\xfc D\xb7\xed\x05D\x00\x00zC\xef\n!D\x86\xe1\x0bD\x00\x00zCr\x1c!DU\xd5\x11D\xc7`zC(/!DUU\xd0C+\xbazC(/!D\xf4<\xdcC\xd2\x00{C(/!D\x92$\xe8C\x00\x00\x87C\x10\xcd$D\x92$\xe8C\x00\x00\x87C\x06\xd6$D\xf4<\xdcC\x0c({C(/!D1\x0c\xf4C\x00\x00\x87C\xfc\xc7$D1\x0c\xf4C\x0c({C(/!D\xcf\xf3\xffC\x00\x00\x87C\xfc\xc7$D\xcf\xf3\xffC\xd2\x00{C(/!D\xb7\xed\x05D\x00\x00\x87C\x10\xcd$D\xb7\xed\x05D+\xbazC(/!D\x86\xe1\x0bD\x00\x00\x87C\x06\xd6$D\x86\xe1\x0bD\xc7`zC(/!DU\xd5\x11D8Z\x8fC^\xc3\'D\xf4<\xdcC\xa9i\x8fC^\xc3\'D\x92$\xe8C\xber\x8fC^\xc3\'D1\x0c\xf4C\xber\x8fC^\xc3\'D\xcf\xf3\xffC\x00\x00\x91C]K(D\xcf\xf3\xffC\x00\x00\x91C]K(D1\x0c\xf4C\xa9i\x8fC^\xc3\'D\xb7\xed\x05D\x00\x00\x91C&N(D\xb7\xed\x05D8Z\x8fC^\xc3\'D\x86\xe1\x0bD\x00\x00\x91C\xc6R(D\x86\xe1\x0bD\x00\x00\x87C\xc2\xe0$DU\xd5\x11D\x8bI\x8fC^\xc3\'DU\xd5\x11D\x00\x00\x87C\x92\xea$D%\xc9\x17D\xb3>\x8fC^\xc3\'D%\xc9\x17D\x00\x00\x91C&N(D\x92$\xe8C\x00\x00\x9bCAq+D\x92$\xe8C\x00\x00\x9bCmp+D1\x0c\xf4C\x00\x00\x9bCmp+D\xcf\xf3\xffC\x00\x00\x9bCAq+D\xb7\xed\x05D\x00\x00\x9bC\x17r+D\x86\xe1\x0bD\x00\x00\x91C|W(DU\xd5\x11D\x00\x00\x9bCbq+DU\xd5\x11D\x00\x00\x91C\xe9Y(D%\xc9\x17D\x00\x00\x9bC\xf5l+D%\xc9\x17D\x00\x00\xa5C`F.D\x92$\xe8C\x00\x00\xa5CEG.D1\x0c\xf4C\x00\x00\xa5CEG.D\xcf\xf3\xffC\x00\x00\xa5C`F.D\xb7\xed\x05D\x00\x00\xa5C\xdcC.D\x86\xe1\x0bD\x00\x00\xa5CL>.DU\xd5\x11D\x00\x00\xa5C\xb23.D%\xc9\x17D\x00\x00\x9bC)b+D\xf4\xbc\x1dD\x00\x00\xa5C\x90!.D\xf4\xbc\x1dD\xd1C\xa5C\x94W.D\x92$\xe8C#@\xa5C\x94W.D1\x0c\xf4C#@\xa5C\x94W.D\xcf\xf3\xffC\xd1C\xa5C\x94W.D\xb7\xed\x05D\x00\x00\xafC\x1e\xbc0D\xb7\xed\x05D\x00\x00\xafCy\xbe0D\xcf\xf3\xffC\x1cN\xa5C\x94W.D\x86\xe1\x0bD\x00\x00\xafC\xc1\xb60D\x86\xe1\x0bD\xd3d\xa5C\x94W.DU\xd5\x11D\x00\x00\xafC\x1b\xad0DU\xd5\x11Df\x90\xa5C\x94W.D%\xc9\x17D\x00\x00\xb9C=\xe32D\xb7\xed\x05D\x00\x00\xb9CZ\xdb2D\x86\xe1\x0bD\x00\x00\xb9C\x06\xce2DU\xd5\x11D\xae\xba7D(/!D\x0c\xc3\x1aC\x00\x806D\xc5\x14!D\xcf\xf3\x02C\x00\x806D(/!D:\x93\x05C\x00\x80;DP\xa1\x1eD\x0c\xc3\x1aC\x00\x80;D\xca\xbd\x1dD\xcf\xf3\x02C\x86\xe18D(/!DI\x922C\x00\x80;D\xe8b\x1fDI\x922C.\xcd9D(/!D\x86aJC\x00\x80;D\x8d\x00 D\x86aJCM\x81>D\xf3\x9a\x1aD%I\xd6B\x00\x80@D\xe3\x0f\x18D\xab\xaa\xa6B\x91\xf3<D\xf3\x9a\x1aD\xab\xaa\xa6B\x00\x80@D\xd0%\x19D%I\xd6B\x8c\xdc?D\xf3\x9a\x1aD\xcf\xf3\x02C\x00\x80@Dx!\x1aD\xcf\xf3\x02C\x00\x80@D\xf3\x9a\x1aD\xac\xfd\x0fC\x00\x80@D\t\xfc\x1aD\x0c\xc3\x1aC\x00\x80@D\xab\xb1\x1bDI\x922C\x00\x80@D\xecB\x1cD\x86aJC\x00\x80;Diz D\xc30bC\x00\x80@D^\xaf\x1cD\xc30bC\x00\x80;D,\xd3 D\x00\x00zC\x00\x80@D|\xfa\x1cD\x00\x00zC\x00\x80;D \x0f!D\x9e\xe7\x88C\x00\x80@Dr)\x1dD\x9e\xe7\x88C\xfe\x84;D(/!D=\xcf\x94C\x00\x80;D(/!D\x1c\x83\x93C\x00\x80@DrA\x1dD=\xcf\x94C\x12VDD\xbd\x06\x14Db\x18nB\x00\x80ED\xbd\x06\x14D\xcc\xec\x9cB\x00\x80EDv"\x13Db\x18nB\x00\x80ED\xdd?\x14D\xab\xaa\xa6B\x00\x80ED\xd8A\x15D%I\xd6B\x00\x80ED_+\x16D\xcf\xf3\x02C\xac\xfc@D\xf3\x9a\x1aD\x0c\xc3\x1aC\x00\x80ED\xef\xf8\x16D\x0c\xc3\x1aC2\xe1AD\xf3\x9a\x1aDI\x922C\x00\x80ED\\\xa6\x17DI\x922CZ\x92BD\xf3\x9a\x1aD\x86aJC\x00\x80ED\n/\x18D\x86aJC\x02\x11CD\xf3\x9a\x1aD\xc30bC\x00\x80ED&\x91\x18D\xc30bC\xeacCD\xf3\x9a\x1aD\x00\x00zC\x00\x80EDM\xd1\x18D\x00\x00zC\xb6\x93CD\xf3\x9a\x1aD\x9e\xe7\x88C\x00\x80ED\x9a\xf5\x18D\x9e\xe7\x88C\x18\xa8CD\xf3\x9a\x1aD=\xcf\x94C\x00\x80ED\x95\x03\x19D=\xcf\x94C\x99\xa7CD\xf3\x9a\x1aD\xdb\xb6\xa0C\x00\x80ED%\x00\x19D\xdb\xb6\xa0C\x00\x80@DSG\x1dD\xdb\xb6\xa0C\xd5\x97CD\xf3\x9a\x1aDz\x9e\xacC\x00\x80ED\xb2\xef\x18Dz\x9e\xacC\xc3}CD\xf3\x9a\x1aD\x18\x86\xb8C\x00\x80EDD\xd6\x18D\x18\x86\xb8C\xe4]CD\xf3\x9a\x1aD\xb7m\xc4C\x00\x80ED\xa8\xb7\x18D\xb7m\xc4C\x03\xc7ED\xbd\x06\x14D\xab\xaa\xa6B\x00\x80JD\xcb\x1f\x10D\xab\xaa\xa6B\x00\x80JDF\x1b\x0fDb\x18nB:\xffFD\xbd\x06\x14D%I\xd6B\x00\x80JDd\x10\x11D%I\xd6B<\x0eHD\xbd\x06\x14D\xcf\xf3\x02C\x00\x80JDI\xea\x11D\xcf\xf3\x02C\xd4\xf3HD\xbd\x06\x14D\x0c\xc3\x1aC\x00\x80JD\r\xaa\x12D\x0c\xc3\x1aC\xbd\xaeID\xbd\x06\x14DI\x922C\x00\x80JD\x80K\x13DI\x922C\x94<JD\xbd\x06\x14D\x86aJC\x00\x80JD\x99\xc9\x13D\x86aJC\x00\x80JD\xbd\x06\x14D\x8a\xe7ZC\x00\x80JD\xdc \x14D\xc30bC\x00\x80JD4V\x14D\x00\x00zC\x00\x80JD}q\x14D\x9e\xe7\x88C\x00\x80JD\xecw\x14D=\xcf\x94C\x00\x80JD\tn\x14D\xdb\xb6\xa0C\x00\x80JD\xd8W\x14Dz\x9e\xacC\x00\x80JD\x0c9\x14D\x18\x86\xb8C\x00\x80JD=\x15\x14D\xb7m\xc4C}yLD\x87r\rDb\x18nB\x00\x80OD\xa5\xdc\tDn\xdb\x0eBp3KD\x87r\rDn\xdb\x0eB\x00\x80OD\xda\xd9\nDb\x18nB\x84\x9aMD\x87r\rD\xab\xaa\xa6B\x00\x80OD\x8f\xc6\x0bD\xab\xaa\xa6B\xc7\x97ND\x87r\rD%I\xd6B\x00\x80OD\xa4\xa0\x0cD%I\xd6B\xfaqOD\x87r\rD\xcf\xf3\x02C\x00\x80OD\x8fe\rD\xcf\xf3\x02C\x00\x80OD\x87r\rDC\xbe\x04C\x00\x80OD$\x0e\x0eD\x0c\xc3\x1aC\x00\x80OD\xd6\x9a\x0eDI\x922C\x00\x80OD\x84\x08\x0fD\x86aJC\x02\x9cJD\xbd\x06\x14D\xc30bC\x00\x80OD\xf9U\x0fD\xc30bC\x8e\xd4JD\xbd\x06\x14D\x00\x00zC\x00\x80OD\x04\x86\x0fD\x00\x00zC\xef\xf0JD\xbd\x06\x14D\x9e\xe7\x88C\x00\x80ODr\x9d\x0fD\x9e\xe7\x88C4\xf7JD\xbd\x06\x14D=\xcf\x94C\x00\x80OD\x02\xa1\x0fD=\xcf\x94Cb\xecJD\xbd\x06\x14D\xdb\xb6\xa0C\x00\x80OD\xe9\x94\x0fD\xdb\xb6\xa0C\xd3\xd4JD\xbd\x06\x14Dz\x9e\xacC\x00\x80OD\xe2|\x0fDz\x9e\xacCr\xb4JD\xbd\x06\x14D\x18\x86\xb8C\x00\x80OD]\\\x0fD\x18\x86\xb8C\x12\x8fJD\xbd\x06\x14D\xb7m\xc4C\x00\x80OD\xc06\x0fD\xb7m\xc4C\x9f\xfbRDQ\xde\x06Dn\xdb\x0eB\x00\x80TD\x0f\x9d\x04D\xe8y>A\xdc\xd5QDQ\xde\x06D\xe8y>A\x00\x80TD_\x8b\x05Dn\xdb\x0eB\x00\x80OD\xb5\xd0\x08D\xe8y>AT\x00TDQ\xde\x06Db\x18nB\x00\x80TD\x98k\x06Db\x18nB\x00\x80TDQ\xde\x06DM@\x91B\x00\x80TD]:\x07D\xab\xaa\xa6B\x00\x80TD\xb3\xf5\x07D%I\xd6B\x00\x80TD\xbf\x9d\x08D\xcf\xf3\x02C\xad"PD\x87r\rD\x0c\xc3\x1aC\x00\x80TD!0\tD\x0c\xc3\x1aC~\xb0PD\x87r\rDI\x922C\x00\x80TDJ\xaa\tDI\x922C\xdb\x1bQD\x87r\rD\x86aJC\x00\x80TD\x18\n\nD\x86aJCnfQD\x87r\rD\xc30bC\x00\x80TD\x00O\nD\xc30bCS\x94QD\x87r\rD\x00\x00zC\x00\x80TD\xbez\nD\x00\x00zC\x84\xaaQD\x87r\rD\x9e\xe7\x88C\x00\x80TD\xa0\x90\nD\x9e\xe7\x88C\x98\xadQD\x87r\rD=\xcf\x94C\x00\x80TD[\x94\nD=\xcf\x94Cz\xa1QD\x87r\rD\xdb\xb6\xa0C\x00\x80TDp\x89\nD\xdb\xb6\xa0C\x9f\x89QD\x87r\rDz\x9e\xacC\x00\x80TD\x18s\nDz\x9e\xacC9iQD\x87r\rD\x18\x86\xb8C\x00\x80TDZT\nD\x18\x86\xb8C\x87CQD\x87r\rD\xb7m\xc4C\x00\x80TDF0\nD\xb7m\xc4C\x1d\x1cQD\x87r\rDUU\xd0C\x00\x80TD5\n\nDUU\xd0C\x00\x80YD\xbbL\x00D\xe8y>A\x00\x80YD^\x17\x01Dn\xdb\x0eB\x00\x80YD\xa3\xd4\x01Db\x18nB\xc4\xe2TDQ\xde\x06D\xab\xaa\xa6B\x00\x80YDW\x83\x02D\xab\xaa\xa6B?\xa4UDQ\xde\x06D%I\xd6B\x00\x80YD3"\x03D%I\xd6B\\IVDQ\xde\x06D\xcf\xf3\x02C\x00\x80YD\xcb\xaf\x03D\xcf\xf3\x02C\xe7\xd2VDQ\xde\x06D\x0c\xc3\x1aC\x00\x80YD\x97*\x04D\x0c\xc3\x1aC\x98AWDQ\xde\x06DI\x922C\x00\x80YD"\x91\x04DI\x922Cv\x96WDQ\xde\x06D\x86aJC\x00\x80YDi\xe2\x04D\x86aJC>\xd3WDQ\xde\x06D\xc30bC\x00\x80YDZ\x1e\x05D\xc30bCs\xfaWDQ\xde\x06D\x00\x00zC\x00\x80YD\x12F\x05D\x00\x00zC\x06\x0fXDQ\xde\x06D\x9e\xe7\x88C\x00\x80YD\xa6[\x05D\x9e\xe7\x88C\xe0\x13XDQ\xde\x06D=\xcf\x94C\x00\x80YD\x95a\x05D=\xcf\x94C\xaa\x0bXDQ\xde\x06D\xdb\xb6\xa0C\x00\x80YDuZ\x05D\xdb\xb6\xa0C\xdc\xf8WDQ\xde\x06Dz\x9e\xacC\x00\x80YD\xc8H\x05Dz\x9e\xacC\xd8\xddWDQ\xde\x06D\x18\x86\xb8C\x00\x80YD\n/\x05D\x18\x86\xb8C"\xbdWDQ\xde\x06D\xb7m\xc4C\x00\x80YD\xca\x0f\x05D\xb7m\xc4C\x9e\x99WDQ\xde\x06DUU\xd0C\x00\x80YD\xe4\xed\x04DUU\xd0C\xf2vWDQ\xde\x06D\xf4<\xdcC\x00\x80YD\xd1\xcc\x04D\xf4<\xdcC\x00\x80TD)\xe6\tD\xf4<\xdcC\xf5YWDQ\xde\x06D\x92$\xe8C\x00\x80YD\x0f\xb1\x04D\x92$\xe8C\x00\x80TD\t\xc9\tD\x92$\xe8C\xc0HWDQ\xde\x06D1\x0c\xf4C\x00\x80YDn\xa0\x04D1\x0c\xf4CEcZD\x1bJ\x00Dn\xdb\x0eB\x00\x80^D\xe1\xc4\xf7C\xe8y>A\x00\x83YD\x1bJ\x00D\xe8y>A\x00\x80^D \x18\xf9Cn\xdb\x0eBs([D\x1bJ\x00Db\x18nB\x00\x80^D9R\xfaCb\x18nB(\xd4[D\x1bJ\x00D\xab\xaa\xa6B\x00\x80^D\x8dq\xfbC\xab\xaa\xa6B\xecg\\D\x1bJ\x00D%I\xd6B\x00\x80^D\x8et\xfcC%I\xd6B*\xe5\\D\x1bJ\x00D\xcf\xf3\x02C\x00\x80^D\xbdY\xfdC\xcf\xf3\x02C?M]D\x1bJ\x00D\x0c\xc3\x1aC\x00\x80^D\xc9\x1f\xfeC\x0c\xc3\x1aC\x84\xa1]D\x1bJ\x00DI\x922C\x00\x80^D\xba\xc5\xfeCI\x922Cf\xe3]D\x1bJ\x00D\x86aJC\x00\x80^D.K\xffC\x86aJCm\x14^D\x1bJ\x00D\xc30bC\x00\x80^D\xa9\xb0\xffC\xc30bC;6^D\x1bJ\x00D\x00\x00zC\x00\x80^D\xac\xf7\xffC\x00\x00zCtJ^D\x1bJ\x00D\x9e\xe7\x88C\x00\x80^DJ\x11\x00D\x9e\xe7\x88C\xb9R^D\x1bJ\x00D=\xcf\x94C\x00\x80^D,\x1a\x00D=\xcf\x94C\xa0P^D\x1bJ\x00D\xdb\xb6\xa0C\x00\x80^D*\x18\x00D\xdb\xb6\xa0C\xc0E^D\x1bJ\x00Dz\x9e\xacC\x00\x80^D\x08\r\x00Dz\x9e\xacC\xb83^D\x1bJ\x00D\x18\x86\xb8C\x00\x80^DM\xf5\xffC\x18\x86\xb8C^\x1c^D\x1bJ\x00D\xb7m\xc4C\x00\x80^D\x1e\xc6\xffC\xb7m\xc4C\xcf\x01^D\x1bJ\x00DUU\xd0C\x00\x80^D"\x91\xffCUU\xd0C\xb7\xe6]D\x1bJ\x00D\xf4<\xdcC\x00\x80^D\xd8[\xffC\xf4<\xdcC\x85\xce]D\x1bJ\x00D\x92$\xe8C\x00\x80^D\x19-\xffC\x92$\xe8C!\xbe]D\x1bJ\x00D1\x0c\xf4C\x00\x80^D4\x0e\xffC1\x0c\xf4C!\xbe]D\x1bJ\x00D\xcf\xf3\xffC\x00\x80^D4\x0e\xffC\xcf\xf3\xffC\x00\x80YDn\xa0\x04D\xcf\xf3\xffC\x85\xce]D\x1bJ\x00D\xb7\xed\x05D\x00\x80^D\x19-\xffC\xb7\xed\x05D\x00\x80YD\x0f\xb1\x04D\xb7\xed\x05D\xb7\xe6]D\x1bJ\x00D\x86\xe1\x0bD\x00\x80^D\xd8[\xffC\x86\xe1\x0bD\xcf\x01^D\x1bJ\x00DU\xd5\x11D\x00\x80^D"\x91\xffCU\xd5\x11D\xf6\x9baD\xcak\xf3Cn\xdb\x0eB\x00\x80cD:\xe5\xeeC\xe8y>AP\xf4`D\xcak\xf3C\xe8y>A\x00\x80cD\xfa\xf5\xefCn\xdb\x0eB\xac-bD\xcak\xf3Cb\x18nB\x00\x80cD\xa4\xef\xf0Cb\x18nB"\xabbD\xcak\xf3C\xab\xaa\xa6B\x00\x80cDr\xd1\xf1C\xab\xaa\xa6B\n\x16cD\xcak\xf3C%I\xd6B\x00\x80cD\xdf\x9a\xf2C%I\xd6B\x0bpcD\xcak\xf3C\xcf\xf3\x02C\x00\x80cD\xb1K\xf3C\xcf\xf3\x02C\x00\x80cD\xcak\xf3C\x18\xf6\x07C\x00\x80cD\xc5\xe2\xf3C\x0c\xc3\x1aC\x00\x80cD\xd3a\xf4CI\x922C\x00\x80cD\xea\xc9\xf4C\x86aJC\x00\x80cD\xf2\x1b\xf5C\xc30bC\x00\x80cD\xf2X\xf5C\x00\x00zC\x00\x80cD \x82\xf5C\x9e\xe7\x88C\x00\x80cD\xfa\x98\xf5C=\xcf\x94C\x00\x80cDU\x9f\xf5C\xdb\xb6\xa0C\x00\x80cDi\x97\xf5Cz\x9e\xacC\x00\x80cD\xdc\x83\xf5C\x18\x86\xb8C\x00\x80cD\xdag\xf5C\xb7m\xc4C\x00\x80cD<G\xf5CUU\xd0C\x00\x80cD\xb5&\xf5C\xf4<\xdcC\x00\x80cD/\x0c\xf5C\x92$\xe8C\x00\x80cD1\xfe\xf4C1\x0c\xf4C\x00\x80cD1\xfe\xf4C\xcf\xf3\xffC\x00\x80cD/\x0c\xf5C\xb7\xed\x05D\x00\x80cD\xb5&\xf5C\x86\xe1\x0bD\x00\x80cD<G\xf5CU\xd5\x11D\x04bhD^C\xe6C\xe8y>A\x00\x80hD^C\xe6C&\xc3\x8fA\x00\x80hD_\x0e\xe6C\xe8y>A\x00\x80hD\xe3\xdc\xe6Cn\xdb\x0eB\x00\x80hD\xa1\x96\xe7Cb\x18nB\x00\x80hD\x1a<\xe8C\xab\xaa\xa6B\x00\x80hD\xba\xcd\xe8C%I\xd6B\x00\x80hDKL\xe9C\xcf\xf3\x02Cj\xbacD\xcak\xf3C\x0c\xc3\x1aC\x00\x80hD\x00\xb9\xe9C\x0c\xc3\x1aC*\xf7cD\xcak\xf3CI\x922C\x00\x80hD?\x15\xeaCI\x922C\xd9\'dD\xcak\xf3C\x86aJC\x00\x80hDgb\xeaC\x86aJC\xb9MdD\xcak\xf3C\xc30bC\x00\x80hD\x97\xa1\xeaC\xc30bC\xd8idD\xcak\xf3C\x00\x00zC\x00\x80hD\x8b\xd3\xeaC\x00\x00zC\x10}dD\xcak\xf3C\x9e\xe7\x88C\x00\x80hD\xc6\xf8\xeaC\x9e\xe7\x88C-\x88dD\xcak\xf3C=\xcf\x94C\x00\x80hD\xcb\x11\xebC=\xcf\x94C\xfe\x8bdD\xcak\xf3C\xdb\xb6\xa0C\x00\x80hDe\x1f\xebC\xdb\xb6\xa0Cl\x89dD\xcak\xf3Cz\x9e\xacC\x00\x80hD\xc1"\xebCz\x9e\xacC\x8c\x81dD\xcak\xf3C\x18\x86\xb8C\x00\x80hD\x97\x1d\xebC\x18\x86\xb8C\xb9udD\xcak\xf3C\xb7m\xc4C\x00\x80hD*\x12\xebC\xb7m\xc4C\xa5gdD\xcak\xf3CUU\xd0C\x00\x80hDS\x03\xebCUU\xd0C\x81YdD\xcak\xf3C\xf4<\xdcC\x00\x80hDr\xf4\xeaC\xf4<\xdcC"NdD\xcak\xf3C\x92$\xe8C\x00\x80hD\xfd\xe8\xeaC\x92$\xe8C\x9cHdD\xcak\xf3C1\x0c\xf4C\x00\x80hD5\xe3\xeaC1\x0c\xf4C\x9cHdD\xcak\xf3C\xcf\xf3\xffC\x00\x80hD5\xe3\xeaC\xcf\xf3\xffC"NdD\xcak\xf3C\xb7\xed\x05D\x00\x80hD\xfd\xe8\xeaC\xb7\xed\x05D\x81YdD\xcak\xf3C\x86\xe1\x0bD\x00\x80hDr\xf4\xeaC\x86\xe1\x0bD\xa5gdD\xcak\xf3CU\xd5\x11D\x00\x80hDS\x03\xebCU\xd5\x11D\x04bhD^C\xe6C\x18\x06wD\x00\x80hD_\x0e\xe6C\x18\x06wD\x00\x80hD^C\xe6C\xe6\x81uD\x14\xd5hD^C\xe6Cn\xdb\x0eB\x00\x80mD\x04\xdc\xddCn\xdb\x0eB\x00\x80mD\xe1J\xddC\xe8y>AW7iD^C\xe6Cb\x18nB\x00\x80mD\xd4[\xdeCb\x18nB\x8f\x8aiD^C\xe6C\xab\xaa\xa6B\x00\x80mD\x01\xcb\xdeC\xab\xaa\xa6Bp\xd0iD^C\xe6C%I\xd6B\x00\x80mD\xa7*\xdfC%I\xd6B\xaa\njD^C\xe6C\xcf\xf3\x02C\x00\x80mDM|\xdfC\xcf\xf3\x02C\xf2:jD^C\xe6C\x0c\xc3\x1aC\x00\x80mD\xcd\xc1\xdfC\x0c\xc3\x1aC\xdabjD^C\xe6CI\x922C\x00\x80mD\x17\xfd\xdfCI\x922C\xbd\x83jD^C\xe6C\x86aJC\x00\x80mD\xeb/\xe0C\x86aJC\x9f\x9ejD^C\xe6C\xc30bC\x00\x80mDw[\xe0C\xc30bC)\xb4jD^C\xe6C\x00\x00zC\x00\x80mD?\x80\xe0C\x00\x00zC\xb8\xc4jD^C\xe6C\x9e\xe7\x88C\x00\x80mDE\x9e\xe0C\x9e\xe7\x88C\x8f\xd0jD^C\xe6C=\xcf\x94C\x00\x80mDn\xb5\xe0C=\xcf\x94C\xf8\xd7jD^C\xe6C\xdb\xb6\xa0C\x00\x80mD\xbc\xc5\xe0C\xdb\xb6\xa0C]\xdbjD^C\xe6Cz\x9e\xacC\x00\x80mD\x8c\xcf\xe0Cz\x9e\xacC]\xdbjD^C\xe6C\x18\x86\xb8C\x00\x80mD\xad\xd3\xe0C\x18\x86\xb8C\xda\xd8jD^C\xe6C\xb7m\xc4C\x00\x80mDg\xd3\xe0C\xb7m\xc4C\xf8\xd4jD^C\xe6CUU\xd0C\x00\x80mDh\xd0\xe0CUU\xd0C\x12\xd1jD^C\xe6C\xf4<\xdcC\x00\x80mD\x92\xcc\xe0C\xf4<\xdcCj\xcejD^C\xe6C\x92$\xe8C\x00\x80mD\x95\xc9\xe0C\x92$\xe8Cl\xcdjD^C\xe6C1\x0c\xf4C\x00\x80mD*\xc8\xe0C1\x0c\xf4Cl\xcdjD^C\xe6C\xcf\xf3\xffC\x00\x80mD*\xc8\xe0C\xcf\xf3\xffCj\xcejD^C\xe6C\xb7\xed\x05D\x00\x80mD\x95\xc9\xe0C\xb7\xed\x05D\x12\xd1jD^C\xe6C\x86\xe1\x0bD\x00\x80mD\x92\xcc\xe0C\x86\xe1\x0bD\xf8\xd4jD^C\xe6CU\xd5\x11D\x00\x80mDh\xd0\xe0CU\xd5\x11D\xda\xd8jD^C\xe6C%\xc9\x17D\x00\x80mDg\xd3\xe0C%\xc9\x17D\x00\x80hD*\x12\xebC%\xc9\x17D]\xdbjD^C\xe6C\xf4\xbc\x1dD\x00\x80mD\xad\xd3\xe0C\xf4\xbc\x1dD\x8f\xd0jD^C\xe6Cb\x98/D\x00\x80mD\xbc\xc5\xe0C\x92\xa4)D\xf8\xd7jD^C\xe6C\x92\xa4)D\x00\x80mDn\xb5\xe0Cb\x98/DW7iD^C\xe6Cz\x1ekD\x00\x80mD\x01\xcb\xdeC\xab*eD\x8f\x8aiD^C\xe6C\xab*eD\x00\x80mD\xd4[\xdeCz\x1ekD\x14\xd5hD^C\xe6CI\x12qD\x00\x80mD\x04\xdc\xddCI\x12qD\x00\x80mD\xe1J\xddC\x18\x06wDR1pD\xf3\x1a\xd9Cn\xdb\x0eB\x00\x80rD"\xb5\xd4C\xe8y>A\xe9\xeeoD\xf3\x1a\xd9C\xe8y>A\x00\x80rD#\r\xd5Cn\xdb\x0eB\xeagpD\xf3\x1a\xd9Cb\x18nB\x00\x80rD\x00W\xd5Cb\x18nBD\x94pD\xf3\x1a\xd9C\xab\xaa\xa6B\x00\x80rD\xed\x93\xd5C\xab\xaa\xa6B\xfd\xb7pD\xf3\x1a\xd9C%I\xd6B\x00\x80rD\x88\xc5\xd5C%I\xd6B\xb2\xd4pD\xf3\x1a\xd9C\xcf\xf3\x02C\x00\x80rD\xc1\xed\xd5C\xcf\xf3\x02C\xf9\xebpD\xf3\x1a\xd9C\x0c\xc3\x1aC\x00\x80rD\xc7\x0e\xd6C\x0c\xc3\x1aCG\xffpD\xf3\x1a\xd9CI\x922C\x00\x80rD\xd2*\xd6CI\x922C\xd4\x0fqD\xf3\x1a\xd9C\x86aJC\x00\x80rD\xd1C\xd6C\x86aJCi\x1eqD\xf3\x1a\xd9C\xc30bC\x00\x80rD\xfdZ\xd6C\xc30bCU+qD\xf3\x1a\xd9C\x00\x00zC\x00\x80rD\x97p\xd6C\x00\x00zC\x946qD\xf3\x1a\xd9C\x9e\xe7\x88C\x00\x80rDF\x84\xd6C\x9e\xe7\x88C\x00@qD\xf3\x1a\xd9C=\xcf\x94C\x00\x80rDw\x95\xd6C=\xcf\x94CzGqD\xf3\x1a\xd9C\xdb\xb6\xa0C\x00\x80rD\xaa\xa3\xd6C\xdb\xb6\xa0C\xfdLqD\xf3\x1a\xd9Cz\x9e\xacC\x00\x80rD\x95\xae\xd6Cz\x9e\xacC\xadPqD\xf3\x1a\xd9C\x18\x86\xb8C\x00\x80rDG\xb6\xd6C\x18\x86\xb8C\xd3RqD\xf3\x1a\xd9C\xb7m\xc4C\x00\x80rD\x17\xbb\xd6C\xb7m\xc4C\xdaSqD\xf3\x1a\xd9CUU\xd0C\x00\x80rD\xa3\xbd\xd6CUU\xd0C@TqD\xf3\x1a\xd9C\xf4<\xdcC\x00\x80rD\xab\xbe\xd6C\xf4<\xdcCcTqD\xf3\x1a\xd9C\x92$\xe8C\x00\x80rD\xdf\xbe\xd6C\x92$\xe8CnTqD\xf3\x1a\xd9C1\x0c\xf4C\x00\x80rD\xc5\xbe\xd6C1\x0c\xf4CnTqD\xf3\x1a\xd9C\xcf\xf3\xffC\x00\x80rD\xc5\xbe\xd6C\xcf\xf3\xffCcTqD\xf3\x1a\xd9C\xb7\xed\x05D\x00\x80rD\xdf\xbe\xd6C\xb7\xed\x05D@TqD\xf3\x1a\xd9C\x86\xe1\x0bD\x00\x80rD\xab\xbe\xd6C\x86\xe1\x0bD\xdaSqD\xf3\x1a\xd9CU\xd5\x11D\x00\x80rD\xa3\xbd\xd6CU\xd5\x11D\xd3RqD\xf3\x1a\xd9C%\xc9\x17D\x00\x80rD\x17\xbb\xd6C%\xc9\x17D\xadPqD\xf3\x1a\xd9C\xf4\xbc\x1dD\x00\x80rDG\xb6\xd6C\xf4\xbc\x1dD\xfdLqD\xf3\x1a\xd9C\xc3\xb0#D\x00\x80rD\x95\xae\xd6C\xc3\xb0#D\x00\x80mD\x8c\xcf\xe0C\xc3\xb0#DzGqD\xf3\x1a\xd9C\x92\xa4)D\x00\x80rD\xaa\xa3\xd6C\x92\xa4)D\x00@qD\xf3\x1a\xd9Cb\x98/D\x00\x80rDw\x95\xd6Cb\x98/D\x946qD\xf3\x1a\xd9C1\x8c5D\x00\x80rDF\x84\xd6C1\x8c5D\x00\x80mDE\x9e\xe0C1\x8c5DU+qD\xf3\x1a\xd9C\x00\x80;D\x00\x80rD\x97p\xd6C\x00\x80;Di\x1eqD\xf3\x1a\xd9C\xcfsAD\x00\x80rD\xfdZ\xd6C\xcfsAD\xd4\x0fqD\xf3\x1a\xd9C\x9egGD\x00\x80rD\xd1C\xd6C\x9egGD\x00\x80mDw[\xe0C\xcfsAD\x00\x80mD\xeb/\xe0C\x9egGDG\xffpD\xf3\x1a\xd9Cn[MD\x00\x80rD\xd2*\xd6Cn[MD\xfd\xb7pD\xf3\x1a\xd9C\xdb6_D\x00\x80rD\xc1\xed\xd5C\x0cCYD\xb2\xd4pD\xf3\x1a\xd9C\x0cCYD\x00\x80rD\x88\xc5\xd5C\xdb6_DD\x94pD\xf3\x1a\xd9C\xab*eD\x00\x80rD\xed\x93\xd5C\xab*eD\x00\x80mD\xa7*\xdfC\xdb6_D\xeagpD\xf3\x1a\xd9Cz\x1ekD\x00\x80rD\x00W\xd5Cz\x1ekDR1pD\xf3\x1a\xd9CI\x12qD\x00\x80rD#\r\xd5CI\x12qD\xe9\xeeoD\xf3\x1a\xd9C\x18\x06wD\x00\x80rD"\xb5\xd4C\x18\x06wD\x00\x80wD\xbfY\xccC\xe8y>A\x00\x80wD\x9e|\xccCn\xdb\x0eB\x00\x80wD\xa8\x94\xccCb\x18nB\x00\x80wDi\xa3\xccC\xab\xaa\xa6B\x00\x80wD\xc6\xaa\xccC%I\xd6B\x00\x80wD\xde\xac\xccC\xcf\xf3\x02C\x00\x80wD\xf9\xab\xccC\x0c\xc3\x1aC\x00\x80wDW\xaa\xccCI\x922C\x00\x80wD\x00\xaa\xccC\x86aJC\x00\x80wD:\xac\xccC\xc30bC\x00\x80wD\xf1\xb0\xccC\x00\x00zC\x00\x80wD{\xb7\xccC\x9e\xe7\x88C\x00\x80wD\x08\xbf\xccC=\xcf\x94C\x00\x80wD\xbd\xc6\xccC\xdb\xb6\xa0C\x00\x80wD\xdc\xcd\xccCz\x9e\xacC\x00\x80wD\xd8\xd3\xccC\x18\x86\xb8C\x00\x80wDU\xd8\xccC\xb7m\xc4C\x00\x80wD,\xdb\xccCUU\xd0C\x00\x80wDk\xdc\xccC\xf4<\xdcC\x00\x80wDQ\xdc\xccC\x92$\xe8C\x00\x80wD\x9f\xdb\xccC1\x0c\xf4C\x00\x80wD\x9f\xdb\xccC\xcf\xf3\xffC\x00\x80wDQ\xdc\xccC\xb7\xed\x05D\x00\x80wDk\xdc\xccC\x86\xe1\x0bD\x00\x80wD,\xdb\xccCU\xd5\x11D\x00\x80wDU\xd8\xccC%\xc9\x17D\x00\x80wD\xd8\xd3\xccC\xf4\xbc\x1dD\x00\x80wD\xdc\xcd\xccC\xc3\xb0#D\x00\x80wD\xbd\xc6\xccC\x92\xa4)D\x00\x80wD\x08\xbf\xccCb\x98/D\x00\x80wD{\xb7\xccC1\x8c5D\x00\x80wD\xf1\xb0\xccC\x00\x80;D\x00\x80wD:\xac\xccC\xcfsAD\x00\x80wD\x00\xaa\xccC\x9egGD\x00\x80wDW\xaa\xccCn[MD\x00\x80rD\xc7\x0e\xd6C=OSD\x00\x80wD\xf9\xab\xccC=OSD\x00\x80wD\xde\xac\xccC\x0cCYD\x00\x80wD\xc6\xaa\xccC\xdb6_D\x00\x80wDi\xa3\xccC\xab*eD\x00\x80wD\xa8\x94\xccCz\x1ekD\x00\x80wD\x9e|\xccCI\x12qD\x00\x80wD\xbfY\xccC\x18\x06wD\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x00\t\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x00\n\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\r\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x00\x0e\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00\x10\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00\x12\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\x17\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00\x18\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\x1d\x00\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00\x1e\x00\x00\x00 \x00\x00\x00!\x00\x00\x00\x1f\x00\x00\x00 \x00\x00\x00!\x00\x00\x00 \x00\x00\x00"\x00\x00\x00#\x00\x00\x00!\x00\x00\x00"\x00\x00\x00#\x00\x00\x00"\x00\x00\x00$\x00\x00\x00%\x00\x00\x00#\x00\x00\x00$\x00\x00\x00%\x00\x00\x00$\x00\x00\x00&\x00\x00\x00\'\x00\x00\x00%\x00\x00\x00&\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00(\x00\x00\x00)\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00)\x00\x00\x00(\x00\x00\x00*\x00\x00\x00+\x00\x00\x00)\x00\x00\x00*\x00\x00\x00+\x00\x00\x00*\x00\x00\x00,\x00\x00\x00-\x00\x00\x00+\x00\x00\x00,\x00\x00\x00-\x00\x00\x00,\x00\x00\x00.\x00\x00\x00/\x00\x00\x00-\x00\x00\x00.\x00\x00\x00/\x00\x00\x00.\x00\x00\x000\x00\x00\x001\x00\x00\x00/\x00\x00\x000\x00\x00\x001\x00\x00\x000\x00\x00\x002\x00\x00\x003\x00\x00\x001\x00\x00\x002\x00\x00\x003\x00\x00\x002\x00\x00\x004\x00\x00\x005\x00\x00\x003\x00\x00\x004\x00\x00\x005\x00\x00\x004\x00\x00\x006\x00\x00\x007\x00\x00\x005\x00\x00\x006\x00\x00\x007\x00\x00\x006\x00\x00\x008\x00\x00\x009\x00\x00\x007\x00\x00\x008\x00\x00\x009\x00\x00\x008\x00\x00\x00:\x00\x00\x00;\x00\x00\x009\x00\x00\x00:\x00\x00\x00;\x00\x00\x00:\x00\x00\x00<\x00\x00\x00=\x00\x00\x00;\x00\x00\x00<\x00\x00\x00=\x00\x00\x00<\x00\x00\x00>\x00\x00\x00?\x00\x00\x00=\x00\x00\x00>\x00\x00\x00?\x00\x00\x00>\x00\x00\x00@\x00\x00\x00A\x00\x00\x00?\x00\x00\x00@\x00\x00\x00A\x00\x00\x00@\x00\x00\x00B\x00\x00\x00C\x00\x00\x00A\x00\x00\x00B\x00\x00\x00C\x00\x00\x00B\x00\x00\x00D\x00\x00\x00E\x00\x00\x00C\x00\x00\x00D\x00\x00\x00E\x00\x00\x00D\x00\x00\x00F\x00\x00\x00G\x00\x00\x00E\x00\x00\x00F\x00\x00\x00G\x00\x00\x00F\x00\x00\x00H\x00\x00\x00I\x00\x00\x00G\x00\x00\x00H\x00\x00\x00I\x00\x00\x00H\x00\x00\x00J\x00\x00\x00K\x00\x00\x00I\x00\x00\x00J\x00\x00\x00K\x00\x00\x00J\x00\x00\x00L\x00\x00\x00M\x00\x00\x00K\x00\x00\x00L\x00\x00\x00M\x00\x00\x00L\x00\x00\x00N\x00\x00\x00O\x00\x00\x00M\x00\x00\x00N\x00\x00\x00O\x00\x00\x00N\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00O\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00R\x00\x00\x00S\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00U\x00\x00\x00T\x00\x00\x00\x03\x00\x00\x00T\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00T\x00\x00\x00V\x00\x00\x00W\x00\x00\x00T\x00\x00\x00U\x00\x00\x00V\x00\x00\x00X\x00\x00\x00U\x00\x00\x00\x05\x00\x00\x00U\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00U\x00\x00\x00Y\x00\x00\x00V\x00\x00\x00U\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00Z\x00\x00\x00X\x00\x00\x00\x07\x00\x00\x00X\x00\x00\x00\x05\x00\x00\x00\x07\x00\x00\x00X\x00\x00\x00[\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00\\\x00\x00\x00Z\x00\x00\x00\t\x00\x00\x00Z\x00\x00\x00\x07\x00\x00\x00\t\x00\x00\x00Z\x00\x00\x00]\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00\\\x00\x00\x00]\x00\x00\x00^\x00\x00\x00\\\x00\x00\x00\x0b\x00\x00\x00\\\x00\x00\x00\t\x00\x00\x00\x0b\x00\x00\x00\\\x00\x00\x00_\x00\x00\x00]\x00\x00\x00\\\x00\x00\x00^\x00\x00\x00_\x00\x00\x00`\x00\x00\x00^\x00\x00\x00\r\x00\x00\x00^\x00\x00\x00\x0b\x00\x00\x00\r\x00\x00\x00^\x00\x00\x00a\x00\x00\x00_\x00\x00\x00^\x00\x00\x00`\x00\x00\x00a\x00\x00\x00b\x00\x00\x00`\x00\x00\x00\x0f\x00\x00\x00`\x00\x00\x00\r\x00\x00\x00\x0f\x00\x00\x00`\x00\x00\x00c\x00\x00\x00a\x00\x00\x00`\x00\x00\x00b\x00\x00\x00c\x00\x00\x00d\x00\x00\x00b\x00\x00\x00\x11\x00\x00\x00b\x00\x00\x00\x0f\x00\x00\x00\x11\x00\x00\x00b\x00\x00\x00e\x00\x00\x00c\x00\x00\x00b\x00\x00\x00d\x00\x00\x00e\x00\x00\x00f\x00\x00\x00d\x00\x00\x00\x13\x00\x00\x00d\x00\x00\x00\x11\x00\x00\x00\x13\x00\x00\x00d\x00\x00\x00g\x00\x00\x00e\x00\x00\x00d\x00\x00\x00f\x00\x00\x00g\x00\x00\x00h\x00\x00\x00f\x00\x00\x00\x15\x00\x00\x00f\x00\x00\x00\x13\x00\x00\x00\x15\x00\x00\x00f\x00\x00\x00i\x00\x00\x00g\x00\x00\x00f\x00\x00\x00h\x00\x00\x00i\x00\x00\x00j\x00\x00\x00h\x00\x00\x00\x17\x00\x00\x00h\x00\x00\x00\x15\x00\x00\x00\x17\x00\x00\x00h\x00\x00\x00k\x00\x00\x00i\x00\x00\x00h\x00\x00\x00j\x00\x00\x00k\x00\x00\x00l\x00\x00\x00j\x00\x00\x00\x19\x00\x00\x00j\x00\x00\x00\x17\x00\x00\x00\x19\x00\x00\x00j\x00\x00\x00m\x00\x00\x00k\x00\x00\x00j\x00\x00\x00l\x00\x00\x00m\x00\x00\x00n\x00\x00\x00l\x00\x00\x00\x1b\x00\x00\x00l\x00\x00\x00\x19\x00\x00\x00\x1b\x00\x00\x00l\x00\x00\x00o\x00\x00\x00m\x00\x00\x00l\x00\x00\x00n\x00\x00\x00o\x00\x00\x00p\x00\x00\x00n\x00\x00\x00\x1d\x00\x00\x00n\x00\x00\x00\x1b\x00\x00\x00\x1d\x00\x00\x00n\x00\x00\x00q\x00\x00\x00o\x00\x00\x00n\x00\x00\x00p\x00\x00\x00q\x00\x00\x00r\x00\x00\x00p\x00\x00\x00\x1f\x00\x00\x00p\x00\x00\x00\x1d\x00\x00\x00\x1f\x00\x00\x00p\x00\x00\x00s\x00\x00\x00q\x00\x00\x00p\x00\x00\x00r\x00\x00\x00s\x00\x00\x00t\x00\x00\x00r\x00\x00\x00!\x00\x00\x00r\x00\x00\x00\x1f\x00\x00\x00!\x00\x00\x00r\x00\x00\x00u\x00\x00\x00s\x00\x00\x00r\x00\x00\x00t\x00\x00\x00u\x00\x00\x00v\x00\x00\x00t\x00\x00\x00#\x00\x00\x00t\x00\x00\x00!\x00\x00\x00#\x00\x00\x00t\x00\x00\x00w\x00\x00\x00u\x00\x00\x00t\x00\x00\x00v\x00\x00\x00w\x00\x00\x00x\x00\x00\x00v\x00\x00\x00%\x00\x00\x00v\x00\x00\x00#\x00\x00\x00%\x00\x00\x00v\x00\x00\x00y\x00\x00\x00w\x00\x00\x00v\x00\x00\x00x\x00\x00\x00y\x00\x00\x00z\x00\x00\x00x\x00\x00\x00\'\x00\x00\x00x\x00\x00\x00%\x00\x00\x00\'\x00\x00\x00x\x00\x00\x00{\x00\x00\x00y\x00\x00\x00x\x00\x00\x00z\x00\x00\x00{\x00\x00\x00|\x00\x00\x00z\x00\x00\x00)\x00\x00\x00z\x00\x00\x00\'\x00\x00\x00)\x00\x00\x00z\x00\x00\x00}\x00\x00\x00{\x00\x00\x00z\x00\x00\x00|\x00\x00\x00}\x00\x00\x00~\x00\x00\x00|\x00\x00\x00+\x00\x00\x00|\x00\x00\x00)\x00\x00\x00+\x00\x00\x00|\x00\x00\x00\x7f\x00\x00\x00}\x00\x00\x00|\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00~\x00\x00\x00-\x00\x00\x00~\x00\x00\x00+\x00\x00\x00-\x00\x00\x00~\x00\x00\x00\x81\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\x82\x00\x00\x00\x80\x00\x00\x00/\x00\x00\x00\x80\x00\x00\x00-\x00\x00\x00/\x00\x00\x00\x80\x00\x00\x00\x83\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\x82\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00\x82\x00\x00\x001\x00\x00\x00\x82\x00\x00\x00/\x00\x00\x001\x00\x00\x00\x82\x00\x00\x00\x85\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\x84\x00\x00\x003\x00\x00\x00\x84\x00\x00\x001\x00\x00\x003\x00\x00\x00\x84\x00\x00\x00\x87\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x88\x00\x00\x00\x86\x00\x00\x005\x00\x00\x00\x86\x00\x00\x003\x00\x00\x005\x00\x00\x00\x86\x00\x00\x00\x89\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00\x8a\x00\x00\x00\x88\x00\x00\x007\x00\x00\x00\x88\x00\x00\x005\x00\x00\x007\x00\x00\x00\x88\x00\x00\x00\x8b\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00\x8c\x00\x00\x00\x8a\x00\x00\x009\x00\x00\x00\x8a\x00\x00\x007\x00\x00\x009\x00\x00\x00\x8a\x00\x00\x00\x8d\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x8e\x00\x00\x00\x8c\x00\x00\x00;\x00\x00\x00\x8c\x00\x00\x009\x00\x00\x00;\x00\x00\x00\x8c\x00\x00\x00\x8f\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x90\x00\x00\x00\x8e\x00\x00\x00=\x00\x00\x00\x8e\x00\x00\x00;\x00\x00\x00=\x00\x00\x00\x8e\x00\x00\x00\x91\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x90\x00\x00\x00\x91\x00\x00\x00\x92\x00\x00\x00\x90\x00\x00\x00?\x00\x00\x00\x90\x00\x00\x00=\x00\x00\x00?\x00\x00\x00\x90\x00\x00\x00\x93\x00\x00\x00\x91\x00\x00\x00\x90\x00\x00\x00\x92\x00\x00\x00\x93\x00\x00\x00\x94\x00\x00\x00\x92\x00\x00\x00A\x00\x00\x00\x92\x00\x00\x00?\x00\x00\x00A\x00\x00\x00\x92\x00\x00\x00\x95\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00\x94\x00\x00\x00\x95\x00\x00\x00\x96\x00\x00\x00\x94\x00\x00\x00C\x00\x00\x00\x94\x00\x00\x00A\x00\x00\x00C\x00\x00\x00\x97\x00\x00\x00\x96\x00\x00\x00E\x00\x00\x00\x96\x00\x00\x00C\x00\x00\x00E\x00\x00\x00\x99\x00\x00\x00\x98\x00\x00\x00O\x00\x00\x00\x98\x00\x00\x00M\x00\x00\x00O\x00\x00\x00\x9a\x00\x00\x00\x99\x00\x00\x00Q\x00\x00\x00\x99\x00\x00\x00O\x00\x00\x00Q\x00\x00\x00\x9b\x00\x00\x00\x9a\x00\x00\x00S\x00\x00\x00\x9a\x00\x00\x00Q\x00\x00\x00S\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00V\x00\x00\x00V\x00\x00\x00\x9c\x00\x00\x00\x9e\x00\x00\x00V\x00\x00\x00\x9e\x00\x00\x00W\x00\x00\x00\x9f\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00\xa0\x00\x00\x00\x9d\x00\x00\x00Y\x00\x00\x00\x9d\x00\x00\x00V\x00\x00\x00Y\x00\x00\x00\x9d\x00\x00\x00\xa1\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\xa0\x00\x00\x00[\x00\x00\x00\xa0\x00\x00\x00Y\x00\x00\x00[\x00\x00\x00\xa0\x00\x00\x00\xa3\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00\xa2\x00\x00\x00]\x00\x00\x00\xa2\x00\x00\x00[\x00\x00\x00]\x00\x00\x00\xa2\x00\x00\x00\xa5\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xa6\x00\x00\x00\xa4\x00\x00\x00_\x00\x00\x00\xa4\x00\x00\x00]\x00\x00\x00_\x00\x00\x00\xa4\x00\x00\x00\xa7\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xa8\x00\x00\x00\xa6\x00\x00\x00a\x00\x00\x00\xa6\x00\x00\x00_\x00\x00\x00a\x00\x00\x00\xa6\x00\x00\x00\xa9\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xaa\x00\x00\x00\xa8\x00\x00\x00c\x00\x00\x00\xa8\x00\x00\x00a\x00\x00\x00c\x00\x00\x00\xa8\x00\x00\x00\xab\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xac\x00\x00\x00\xaa\x00\x00\x00e\x00\x00\x00\xaa\x00\x00\x00c\x00\x00\x00e\x00\x00\x00\xaa\x00\x00\x00\xad\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xae\x00\x00\x00\xac\x00\x00\x00g\x00\x00\x00\xac\x00\x00\x00e\x00\x00\x00g\x00\x00\x00\xac\x00\x00\x00\xaf\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\xae\x00\x00\x00\xaf\x00\x00\x00\xb0\x00\x00\x00\xae\x00\x00\x00i\x00\x00\x00\xae\x00\x00\x00g\x00\x00\x00i\x00\x00\x00\xae\x00\x00\x00\xb1\x00\x00\x00\xaf\x00\x00\x00\xae\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xb0\x00\x00\x00k\x00\x00\x00\xb0\x00\x00\x00i\x00\x00\x00k\x00\x00\x00\xb0\x00\x00\x00\xb3\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xb2\x00\x00\x00m\x00\x00\x00\xb2\x00\x00\x00k\x00\x00\x00m\x00\x00\x00\xb2\x00\x00\x00\xb5\x00\x00\x00\xb3\x00\x00\x00\xb2\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xb6\x00\x00\x00\xb4\x00\x00\x00o\x00\x00\x00\xb4\x00\x00\x00m\x00\x00\x00o\x00\x00\x00\xb4\x00\x00\x00\xb7\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\xb6\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xb6\x00\x00\x00q\x00\x00\x00\xb6\x00\x00\x00o\x00\x00\x00q\x00\x00\x00\xb6\x00\x00\x00\xb9\x00\x00\x00\xb7\x00\x00\x00\xb6\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\xb8\x00\x00\x00s\x00\x00\x00\xb8\x00\x00\x00q\x00\x00\x00s\x00\x00\x00\xb8\x00\x00\x00\xbb\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\xbc\x00\x00\x00\xba\x00\x00\x00u\x00\x00\x00\xba\x00\x00\x00s\x00\x00\x00u\x00\x00\x00\xba\x00\x00\x00\xbd\x00\x00\x00\xbb\x00\x00\x00\xba\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xbe\x00\x00\x00\xbc\x00\x00\x00w\x00\x00\x00\xbc\x00\x00\x00u\x00\x00\x00w\x00\x00\x00\xbc\x00\x00\x00\xbf\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xbe\x00\x00\x00y\x00\x00\x00\xbe\x00\x00\x00w\x00\x00\x00y\x00\x00\x00\xbe\x00\x00\x00\xc1\x00\x00\x00\xbf\x00\x00\x00\xbe\x00\x00\x00\xc0\x00\x00\x00\xc1\x00\x00\x00\xc2\x00\x00\x00\xc0\x00\x00\x00{\x00\x00\x00\xc0\x00\x00\x00y\x00\x00\x00{\x00\x00\x00\xc0\x00\x00\x00\xc3\x00\x00\x00\xc1\x00\x00\x00\xc0\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xc4\x00\x00\x00\xc2\x00\x00\x00}\x00\x00\x00\xc2\x00\x00\x00{\x00\x00\x00}\x00\x00\x00\xc2\x00\x00\x00\xc5\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\xc4\x00\x00\x00\x7f\x00\x00\x00\xc4\x00\x00\x00}\x00\x00\x00\x7f\x00\x00\x00\xc4\x00\x00\x00\xc7\x00\x00\x00\xc5\x00\x00\x00\xc4\x00\x00\x00\xc6\x00\x00\x00\xc7\x00\x00\x00\xc8\x00\x00\x00\xc6\x00\x00\x00\x81\x00\x00\x00\xc6\x00\x00\x00\x7f\x00\x00\x00\x81\x00\x00\x00\xc6\x00\x00\x00\xc9\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\xc8\x00\x00\x00\x83\x00\x00\x00\xc8\x00\x00\x00\x81\x00\x00\x00\x83\x00\x00\x00\xc8\x00\x00\x00\xcb\x00\x00\x00\xc9\x00\x00\x00\xc8\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\xca\x00\x00\x00\x85\x00\x00\x00\xca\x00\x00\x00\x83\x00\x00\x00\x85\x00\x00\x00\xca\x00\x00\x00\xcd\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xce\x00\x00\x00\xcc\x00\x00\x00\x87\x00\x00\x00\xcc\x00\x00\x00\x85\x00\x00\x00\x87\x00\x00\x00\xcc\x00\x00\x00\xcf\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xce\x00\x00\x00\xcf\x00\x00\x00\xd0\x00\x00\x00\xce\x00\x00\x00\x89\x00\x00\x00\xce\x00\x00\x00\x87\x00\x00\x00\x89\x00\x00\x00\xce\x00\x00\x00\xd1\x00\x00\x00\xcf\x00\x00\x00\xce\x00\x00\x00\xd0\x00\x00\x00\xd1\x00\x00\x00\xd2\x00\x00\x00\xd0\x00\x00\x00\x8b\x00\x00\x00\xd0\x00\x00\x00\x89\x00\x00\x00\x8b\x00\x00\x00\xd0\x00\x00\x00\xd3\x00\x00\x00\xd1\x00\x00\x00\xd0\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\xd2\x00\x00\x00\x8d\x00\x00\x00\xd2\x00\x00\x00\x8b\x00\x00\x00\x8d\x00\x00\x00\xd2\x00\x00\x00\xd5\x00\x00\x00\xd3\x00\x00\x00\xd2\x00\x00\x00\xd4\x00\x00\x00\xd5\x00\x00\x00\xd6\x00\x00\x00\xd4\x00\x00\x00\x8f\x00\x00\x00\xd4\x00\x00\x00\x8d\x00\x00\x00\x8f\x00\x00\x00\xd7\x00\x00\x00\xd6\x00\x00\x00\x91\x00\x00\x00\xd6\x00\x00\x00\x8f\x00\x00\x00\x91\x00\x00\x00\xd8\x00\x00\x00\xd7\x00\x00\x00\x93\x00\x00\x00\xd7\x00\x00\x00\x91\x00\x00\x00\x93\x00\x00\x00\xd9\x00\x00\x00\xd8\x00\x00\x00\x95\x00\x00\x00\xd8\x00\x00\x00\x93\x00\x00\x00\x95\x00\x00\x00\xda\x00\x00\x00\x9e\x00\x00\x00\x9c\x00\x00\x00\x9f\x00\x00\x00\xda\x00\x00\x00\x9c\x00\x00\x00\xdb\x00\x00\x00\xda\x00\x00\x00\x9f\x00\x00\x00\xdc\x00\x00\x00\xdb\x00\x00\x00\x9f\x00\x00\x00\xdc\x00\x00\x00\x9f\x00\x00\x00\xa1\x00\x00\x00\xdd\x00\x00\x00\xdc\x00\x00\x00\xa1\x00\x00\x00\xdd\x00\x00\x00\xa1\x00\x00\x00\xa3\x00\x00\x00\xde\x00\x00\x00\xdd\x00\x00\x00\xa3\x00\x00\x00\xde\x00\x00\x00\xa3\x00\x00\x00\xa5\x00\x00\x00\xdf\x00\x00\x00\xde\x00\x00\x00\xa5\x00\x00\x00\xdf\x00\x00\x00\xa5\x00\x00\x00\xa7\x00\x00\x00\xe0\x00\x00\x00\xdf\x00\x00\x00\xa7\x00\x00\x00\xe2\x00\x00\x00\xe1\x00\x00\x00\xa9\x00\x00\x00\xa9\x00\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x00\xa9\x00\x00\x00\xe0\x00\x00\x00\xa7\x00\x00\x00\xe3\x00\x00\x00\xe1\x00\x00\x00\xe2\x00\x00\x00\xe4\x00\x00\x00\xe2\x00\x00\x00\xab\x00\x00\x00\xe2\x00\x00\x00\xa9\x00\x00\x00\xab\x00\x00\x00\xe2\x00\x00\x00\xe5\x00\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\xe4\x00\x00\x00\xe5\x00\x00\x00\xe6\x00\x00\x00\xe4\x00\x00\x00\xad\x00\x00\x00\xe4\x00\x00\x00\xab\x00\x00\x00\xad\x00\x00\x00\xe4\x00\x00\x00\xe7\x00\x00\x00\xe5\x00\x00\x00\xe4\x00\x00\x00\xe6\x00\x00\x00\xe7\x00\x00\x00\xe8\x00\x00\x00\xe6\x00\x00\x00\xaf\x00\x00\x00\xe6\x00\x00\x00\xad\x00\x00\x00\xaf\x00\x00\x00\xe6\x00\x00\x00\xe9\x00\x00\x00\xe7\x00\x00\x00\xe6\x00\x00\x00\xe8\x00\x00\x00\xe9\x00\x00\x00\xea\x00\x00\x00\xe8\x00\x00\x00\xb1\x00\x00\x00\xe8\x00\x00\x00\xaf\x00\x00\x00\xb1\x00\x00\x00\xe8\x00\x00\x00\xeb\x00\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00\xea\x00\x00\x00\xb3\x00\x00\x00\xea\x00\x00\x00\xb1\x00\x00\x00\xb3\x00\x00\x00\xea\x00\x00\x00\xed\x00\x00\x00\xeb\x00\x00\x00\xea\x00\x00\x00\xec\x00\x00\x00\xed\x00\x00\x00\xee\x00\x00\x00\xec\x00\x00\x00\xb5\x00\x00\x00\xec\x00\x00\x00\xb3\x00\x00\x00\xb5\x00\x00\x00\xec\x00\x00\x00\xef\x00\x00\x00\xed\x00\x00\x00\xec\x00\x00\x00\xee\x00\x00\x00\xef\x00\x00\x00\xf0\x00\x00\x00\xee\x00\x00\x00\xb7\x00\x00\x00\xee\x00\x00\x00\xb5\x00\x00\x00\xb7\x00\x00\x00\xee\x00\x00\x00\xf1\x00\x00\x00\xef\x00\x00\x00\xee\x00\x00\x00\xf0\x00\x00\x00\xf1\x00\x00\x00\xf2\x00\x00\x00\xf0\x00\x00\x00\xb9\x00\x00\x00\xf0\x00\x00\x00\xb7\x00\x00\x00\xb9\x00\x00\x00\xf0\x00\x00\x00\xf3\x00\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\xf2\x00\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\xf2\x00\x00\x00\xbb\x00\x00\x00\xf2\x00\x00\x00\xb9\x00\x00\x00\xbb\x00\x00\x00\xf2\x00\x00\x00\xf5\x00\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\xf6\x00\x00\x00\xf4\x00\x00\x00\xbd\x00\x00\x00\xf4\x00\x00\x00\xbb\x00\x00\x00\xbd\x00\x00\x00\xf4\x00\x00\x00\xf7\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xf6\x00\x00\x00\xf7\x00\x00\x00\xf8\x00\x00\x00\xf6\x00\x00\x00\xbf\x00\x00\x00\xf6\x00\x00\x00\xbd\x00\x00\x00\xbf\x00\x00\x00\xf6\x00\x00\x00\xf9\x00\x00\x00\xf7\x00\x00\x00\xf6\x00\x00\x00\xf8\x00\x00\x00\xf9\x00\x00\x00\xfa\x00\x00\x00\xf8\x00\x00\x00\xc1\x00\x00\x00\xf8\x00\x00\x00\xbf\x00\x00\x00\xc1\x00\x00\x00\xf8\x00\x00\x00\xfb\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xfa\x00\x00\x00\xfb\x00\x00\x00\xfc\x00\x00\x00\xfa\x00\x00\x00\xc3\x00\x00\x00\xfa\x00\x00\x00\xc1\x00\x00\x00\xc3\x00\x00\x00\xfa\x00\x00\x00\xfd\x00\x00\x00\xfb\x00\x00\x00\xfa\x00\x00\x00\xfc\x00\x00\x00\xfd\x00\x00\x00\xfe\x00\x00\x00\xfc\x00\x00\x00\xc5\x00\x00\x00\xfc\x00\x00\x00\xc3\x00\x00\x00\xc5\x00\x00\x00\xfc\x00\x00\x00\xff\x00\x00\x00\xfd\x00\x00\x00\xfc\x00\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00\x00\x01\x00\x00\xfe\x00\x00\x00\xc7\x00\x00\x00\xfe\x00\x00\x00\xc5\x00\x00\x00\xc7\x00\x00\x00\xfe\x00\x00\x00\x01\x01\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\x02\x01\x00\x00\x00\x01\x00\x00\xc9\x00\x00\x00\x00\x01\x00\x00\xc7\x00\x00\x00\xc9\x00\x00\x00\x00\x01\x00\x00\x03\x01\x00\x00\x01\x01\x00\x00\x00\x01\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00\x02\x01\x00\x00\xcb\x00\x00\x00\x02\x01\x00\x00\xc9\x00\x00\x00\xcb\x00\x00\x00\x02\x01\x00\x00\x05\x01\x00\x00\x03\x01\x00\x00\x02\x01\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\x06\x01\x00\x00\x04\x01\x00\x00\xcd\x00\x00\x00\x04\x01\x00\x00\xcb\x00\x00\x00\xcd\x00\x00\x00\x04\x01\x00\x00\x07\x01\x00\x00\x05\x01\x00\x00\x04\x01\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\x08\x01\x00\x00\x06\x01\x00\x00\xcf\x00\x00\x00\x06\x01\x00\x00\xcd\x00\x00\x00\xcf\x00\x00\x00\x06\x01\x00\x00\t\x01\x00\x00\x07\x01\x00\x00\x06\x01\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\n\x01\x00\x00\x08\x01\x00\x00\xd1\x00\x00\x00\x08\x01\x00\x00\xcf\x00\x00\x00\xd1\x00\x00\x00\x08\x01\x00\x00\x0b\x01\x00\x00\t\x01\x00\x00\x08\x01\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\x0c\x01\x00\x00\n\x01\x00\x00\xd3\x00\x00\x00\n\x01\x00\x00\xd1\x00\x00\x00\xd3\x00\x00\x00\n\x01\x00\x00\r\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x00\x0e\x01\x00\x00\x0c\x01\x00\x00\xd5\x00\x00\x00\x0c\x01\x00\x00\xd3\x00\x00\x00\xd5\x00\x00\x00\x10\x01\x00\x00\x0f\x01\x00\x00\xdc\x00\x00\x00\x0f\x01\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\x0f\x01\x00\x00\x11\x01\x00\x00\x12\x01\x00\x00\x0f\x01\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\x13\x01\x00\x00\x10\x01\x00\x00\xdd\x00\x00\x00\x10\x01\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\x10\x01\x00\x00\x14\x01\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\x13\x01\x00\x00\x14\x01\x00\x00\x15\x01\x00\x00\x13\x01\x00\x00\xde\x00\x00\x00\x13\x01\x00\x00\xdd\x00\x00\x00\xde\x00\x00\x00\x16\x01\x00\x00\x15\x01\x00\x00\xdf\x00\x00\x00\x15\x01\x00\x00\xde\x00\x00\x00\xdf\x00\x00\x00\x17\x01\x00\x00\x16\x01\x00\x00\xe0\x00\x00\x00\x16\x01\x00\x00\xdf\x00\x00\x00\xe0\x00\x00\x00\x16\x01\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00\x16\x01\x00\x00\x17\x01\x00\x00\x18\x01\x00\x00\x17\x01\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xe3\x00\x00\x00\x17\x01\x00\x00\xe1\x00\x00\x00\x18\x01\x00\x00\x17\x01\x00\x00\xe3\x00\x00\x00\x1a\x01\x00\x00\x18\x01\x00\x00\xe3\x00\x00\x00\x1a\x01\x00\x00\xe3\x00\x00\x00\xe5\x00\x00\x00\x1b\x01\x00\x00\x1a\x01\x00\x00\xe5\x00\x00\x00\x1b\x01\x00\x00\xe5\x00\x00\x00\xe7\x00\x00\x00\x1c\x01\x00\x00\x1b\x01\x00\x00\xe7\x00\x00\x00\x1c\x01\x00\x00\xe7\x00\x00\x00\xe9\x00\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x00\xe9\x00\x00\x00\x1d\x01\x00\x00\xe9\x00\x00\x00\xeb\x00\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00\xeb\x00\x00\x00\x1e\x01\x00\x00\xeb\x00\x00\x00\xed\x00\x00\x00\x1f\x01\x00\x00\x1e\x01\x00\x00\xed\x00\x00\x00\x1f\x01\x00\x00\xed\x00\x00\x00\xef\x00\x00\x00 \x01\x00\x00\x1f\x01\x00\x00\xef\x00\x00\x00 \x01\x00\x00\xef\x00\x00\x00\xf1\x00\x00\x00!\x01\x00\x00 \x01\x00\x00\xf1\x00\x00\x00!\x01\x00\x00\xf1\x00\x00\x00\xf3\x00\x00\x00"\x01\x00\x00!\x01\x00\x00\xf3\x00\x00\x00"\x01\x00\x00\xf3\x00\x00\x00\xf5\x00\x00\x00#\x01\x00\x00"\x01\x00\x00\xf5\x00\x00\x00#\x01\x00\x00\xf5\x00\x00\x00\xf7\x00\x00\x00$\x01\x00\x00#\x01\x00\x00\xf7\x00\x00\x00$\x01\x00\x00\xf7\x00\x00\x00\xf9\x00\x00\x00%\x01\x00\x00$\x01\x00\x00\xf9\x00\x00\x00%\x01\x00\x00\xf9\x00\x00\x00\xfb\x00\x00\x00&\x01\x00\x00%\x01\x00\x00\xfb\x00\x00\x00&\x01\x00\x00\xfb\x00\x00\x00\xfd\x00\x00\x00\'\x01\x00\x00&\x01\x00\x00\xfd\x00\x00\x00\'\x01\x00\x00\xfd\x00\x00\x00\xff\x00\x00\x00(\x01\x00\x00\'\x01\x00\x00\xff\x00\x00\x00(\x01\x00\x00\xff\x00\x00\x00\x01\x01\x00\x00)\x01\x00\x00(\x01\x00\x00\x01\x01\x00\x00)\x01\x00\x00\x01\x01\x00\x00\x03\x01\x00\x00*\x01\x00\x00)\x01\x00\x00\x03\x01\x00\x00*\x01\x00\x00\x03\x01\x00\x00\x05\x01\x00\x00+\x01\x00\x00*\x01\x00\x00\x05\x01\x00\x00+\x01\x00\x00\x05\x01\x00\x00\x07\x01\x00\x00,\x01\x00\x00+\x01\x00\x00\x07\x01\x00\x00,\x01\x00\x00\x07\x01\x00\x00\t\x01\x00\x00-\x01\x00\x00,\x01\x00\x00\t\x01\x00\x00-\x01\x00\x00\t\x01\x00\x00\x0b\x01\x00\x00.\x01\x00\x00-\x01\x00\x00\x0b\x01\x00\x00.\x01\x00\x00\x0b\x01\x00\x00\r\x01\x00\x00/\x01\x00\x00.\x01\x00\x00\r\x01\x00\x00/\x01\x00\x00\r\x01\x00\x000\x01\x00\x001\x01\x00\x00/\x01\x00\x000\x01\x00\x003\x01\x00\x002\x01\x00\x00\x1a\x01\x00\x002\x01\x00\x00\x18\x01\x00\x00\x1a\x01\x00\x002\x01\x00\x004\x01\x00\x005\x01\x00\x002\x01\x00\x003\x01\x00\x004\x01\x00\x006\x01\x00\x003\x01\x00\x00\x1b\x01\x00\x003\x01\x00\x00\x1a\x01\x00\x00\x1b\x01\x00\x003\x01\x00\x007\x01\x00\x004\x01\x00\x003\x01\x00\x006\x01\x00\x007\x01\x00\x008\x01\x00\x006\x01\x00\x00\x1c\x01\x00\x006\x01\x00\x00\x1b\x01\x00\x00\x1c\x01\x00\x006\x01\x00\x009\x01\x00\x007\x01\x00\x006\x01\x00\x008\x01\x00\x009\x01\x00\x00:\x01\x00\x008\x01\x00\x00\x1d\x01\x00\x008\x01\x00\x00\x1c\x01\x00\x00\x1d\x01\x00\x008\x01\x00\x00;\x01\x00\x009\x01\x00\x008\x01\x00\x00:\x01\x00\x00;\x01\x00\x00<\x01\x00\x00:\x01\x00\x00\x1e\x01\x00\x00:\x01\x00\x00\x1d\x01\x00\x00\x1e\x01\x00\x00:\x01\x00\x00=\x01\x00\x00;\x01\x00\x00:\x01\x00\x00<\x01\x00\x00=\x01\x00\x00>\x01\x00\x00<\x01\x00\x00\x1f\x01\x00\x00<\x01\x00\x00\x1e\x01\x00\x00\x1f\x01\x00\x00<\x01\x00\x00?\x01\x00\x00=\x01\x00\x00<\x01\x00\x00>\x01\x00\x00?\x01\x00\x00@\x01\x00\x00>\x01\x00\x00 \x01\x00\x00>\x01\x00\x00\x1f\x01\x00\x00 \x01\x00\x00>\x01\x00\x00A\x01\x00\x00?\x01\x00\x00>\x01\x00\x00@\x01\x00\x00A\x01\x00\x00B\x01\x00\x00@\x01\x00\x00!\x01\x00\x00@\x01\x00\x00 \x01\x00\x00!\x01\x00\x00@\x01\x00\x00C\x01\x00\x00A\x01\x00\x00@\x01\x00\x00B\x01\x00\x00C\x01\x00\x00D\x01\x00\x00B\x01\x00\x00"\x01\x00\x00B\x01\x00\x00!\x01\x00\x00"\x01\x00\x00B\x01\x00\x00E\x01\x00\x00C\x01\x00\x00B\x01\x00\x00D\x01\x00\x00E\x01\x00\x00F\x01\x00\x00D\x01\x00\x00#\x01\x00\x00D\x01\x00\x00"\x01\x00\x00#\x01\x00\x00D\x01\x00\x00G\x01\x00\x00E\x01\x00\x00D\x01\x00\x00F\x01\x00\x00G\x01\x00\x00H\x01\x00\x00F\x01\x00\x00$\x01\x00\x00F\x01\x00\x00#\x01\x00\x00$\x01\x00\x00F\x01\x00\x00I\x01\x00\x00G\x01\x00\x00F\x01\x00\x00H\x01\x00\x00I\x01\x00\x00J\x01\x00\x00H\x01\x00\x00%\x01\x00\x00H\x01\x00\x00$\x01\x00\x00%\x01\x00\x00H\x01\x00\x00K\x01\x00\x00I\x01\x00\x00H\x01\x00\x00J\x01\x00\x00K\x01\x00\x00L\x01\x00\x00J\x01\x00\x00&\x01\x00\x00J\x01\x00\x00%\x01\x00\x00&\x01\x00\x00J\x01\x00\x00M\x01\x00\x00K\x01\x00\x00J\x01\x00\x00L\x01\x00\x00M\x01\x00\x00N\x01\x00\x00L\x01\x00\x00\'\x01\x00\x00L\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00L\x01\x00\x00O\x01\x00\x00M\x01\x00\x00L\x01\x00\x00N\x01\x00\x00O\x01\x00\x00P\x01\x00\x00N\x01\x00\x00(\x01\x00\x00N\x01\x00\x00\'\x01\x00\x00(\x01\x00\x00N\x01\x00\x00Q\x01\x00\x00O\x01\x00\x00N\x01\x00\x00P\x01\x00\x00Q\x01\x00\x00R\x01\x00\x00P\x01\x00\x00)\x01\x00\x00P\x01\x00\x00(\x01\x00\x00)\x01\x00\x00P\x01\x00\x00S\x01\x00\x00Q\x01\x00\x00P\x01\x00\x00R\x01\x00\x00S\x01\x00\x00T\x01\x00\x00R\x01\x00\x00*\x01\x00\x00R\x01\x00\x00)\x01\x00\x00*\x01\x00\x00R\x01\x00\x00U\x01\x00\x00S\x01\x00\x00R\x01\x00\x00T\x01\x00\x00U\x01\x00\x00V\x01\x00\x00T\x01\x00\x00+\x01\x00\x00T\x01\x00\x00*\x01\x00\x00+\x01\x00\x00T\x01\x00\x00W\x01\x00\x00U\x01\x00\x00T\x01\x00\x00V\x01\x00\x00W\x01\x00\x00X\x01\x00\x00V\x01\x00\x00,\x01\x00\x00V\x01\x00\x00+\x01\x00\x00,\x01\x00\x00V\x01\x00\x00Y\x01\x00\x00W\x01\x00\x00V\x01\x00\x00X\x01\x00\x00Y\x01\x00\x00Z\x01\x00\x00X\x01\x00\x00-\x01\x00\x00X\x01\x00\x00,\x01\x00\x00-\x01\x00\x00X\x01\x00\x00[\x01\x00\x00Y\x01\x00\x00X\x01\x00\x00Z\x01\x00\x00[\x01\x00\x00\\\x01\x00\x00Z\x01\x00\x00.\x01\x00\x00Z\x01\x00\x00-\x01\x00\x00.\x01\x00\x00Z\x01\x00\x00]\x01\x00\x00[\x01\x00\x00Z\x01\x00\x00\\\x01\x00\x00]\x01\x00\x00^\x01\x00\x00\\\x01\x00\x00/\x01\x00\x00\\\x01\x00\x00.\x01\x00\x00/\x01\x00\x00\\\x01\x00\x00_\x01\x00\x00]\x01\x00\x00\\\x01\x00\x00^\x01\x00\x00_\x01\x00\x00`\x01\x00\x00^\x01\x00\x001\x01\x00\x00^\x01\x00\x00/\x01\x00\x001\x01\x00\x00b\x01\x00\x00a\x01\x00\x009\x01\x00\x00a\x01\x00\x007\x01\x00\x009\x01\x00\x00c\x01\x00\x00b\x01\x00\x00;\x01\x00\x00b\x01\x00\x009\x01\x00\x00;\x01\x00\x00b\x01\x00\x00d\x01\x00\x00e\x01\x00\x00b\x01\x00\x00c\x01\x00\x00d\x01\x00\x00f\x01\x00\x00c\x01\x00\x00=\x01\x00\x00c\x01\x00\x00;\x01\x00\x00=\x01\x00\x00c\x01\x00\x00g\x01\x00\x00d\x01\x00\x00c\x01\x00\x00f\x01\x00\x00g\x01\x00\x00h\x01\x00\x00f\x01\x00\x00?\x01\x00\x00f\x01\x00\x00=\x01\x00\x00?\x01\x00\x00f\x01\x00\x00i\x01\x00\x00g\x01\x00\x00f\x01\x00\x00h\x01\x00\x00i\x01\x00\x00j\x01\x00\x00h\x01\x00\x00A\x01\x00\x00h\x01\x00\x00?\x01\x00\x00A\x01\x00\x00h\x01\x00\x00k\x01\x00\x00i\x01\x00\x00h\x01\x00\x00j\x01\x00\x00k\x01\x00\x00l\x01\x00\x00j\x01\x00\x00C\x01\x00\x00j\x01\x00\x00A\x01\x00\x00C\x01\x00\x00j\x01\x00\x00m\x01\x00\x00k\x01\x00\x00j\x01\x00\x00l\x01\x00\x00m\x01\x00\x00n\x01\x00\x00l\x01\x00\x00E\x01\x00\x00l\x01\x00\x00C\x01\x00\x00E\x01\x00\x00l\x01\x00\x00o\x01\x00\x00m\x01\x00\x00l\x01\x00\x00n\x01\x00\x00o\x01\x00\x00p\x01\x00\x00n\x01\x00\x00G\x01\x00\x00n\x01\x00\x00E\x01\x00\x00G\x01\x00\x00n\x01\x00\x00q\x01\x00\x00o\x01\x00\x00n\x01\x00\x00p\x01\x00\x00q\x01\x00\x00r\x01\x00\x00p\x01\x00\x00I\x01\x00\x00p\x01\x00\x00G\x01\x00\x00I\x01\x00\x00p\x01\x00\x00s\x01\x00\x00q\x01\x00\x00p\x01\x00\x00r\x01\x00\x00s\x01\x00\x00t\x01\x00\x00r\x01\x00\x00K\x01\x00\x00r\x01\x00\x00I\x01\x00\x00K\x01\x00\x00r\x01\x00\x00u\x01\x00\x00s\x01\x00\x00r\x01\x00\x00t\x01\x00\x00u\x01\x00\x00v\x01\x00\x00t\x01\x00\x00M\x01\x00\x00t\x01\x00\x00K\x01\x00\x00M\x01\x00\x00t\x01\x00\x00w\x01\x00\x00u\x01\x00\x00t\x01\x00\x00v\x01\x00\x00w\x01\x00\x00x\x01\x00\x00v\x01\x00\x00O\x01\x00\x00v\x01\x00\x00M\x01\x00\x00O\x01\x00\x00v\x01\x00\x00y\x01\x00\x00w\x01\x00\x00v\x01\x00\x00x\x01\x00\x00y\x01\x00\x00z\x01\x00\x00x\x01\x00\x00Q\x01\x00\x00x\x01\x00\x00O\x01\x00\x00Q\x01\x00\x00x\x01\x00\x00{\x01\x00\x00y\x01\x00\x00x\x01\x00\x00z\x01\x00\x00{\x01\x00\x00|\x01\x00\x00z\x01\x00\x00S\x01\x00\x00z\x01\x00\x00Q\x01\x00\x00S\x01\x00\x00z\x01\x00\x00}\x01\x00\x00{\x01\x00\x00z\x01\x00\x00|\x01\x00\x00}\x01\x00\x00~\x01\x00\x00|\x01\x00\x00U\x01\x00\x00|\x01\x00\x00S\x01\x00\x00U\x01\x00\x00|\x01\x00\x00\x7f\x01\x00\x00}\x01\x00\x00|\x01\x00\x00~\x01\x00\x00\x7f\x01\x00\x00\x80\x01\x00\x00~\x01\x00\x00W\x01\x00\x00~\x01\x00\x00U\x01\x00\x00W\x01\x00\x00~\x01\x00\x00\x81\x01\x00\x00\x7f\x01\x00\x00~\x01\x00\x00\x80\x01\x00\x00\x81\x01\x00\x00\x82\x01\x00\x00\x80\x01\x00\x00Y\x01\x00\x00\x80\x01\x00\x00W\x01\x00\x00Y\x01\x00\x00\x80\x01\x00\x00\x83\x01\x00\x00\x81\x01\x00\x00\x80\x01\x00\x00\x82\x01\x00\x00\x83\x01\x00\x00\x84\x01\x00\x00\x82\x01\x00\x00[\x01\x00\x00\x82\x01\x00\x00Y\x01\x00\x00[\x01\x00\x00\x82\x01\x00\x00\x85\x01\x00\x00\x83\x01\x00\x00\x82\x01\x00\x00\x84\x01\x00\x00\x85\x01\x00\x00\x86\x01\x00\x00\x84\x01\x00\x00]\x01\x00\x00\x84\x01\x00\x00[\x01\x00\x00]\x01\x00\x00\x84\x01\x00\x00\x87\x01\x00\x00\x85\x01\x00\x00\x84\x01\x00\x00\x86\x01\x00\x00\x87\x01\x00\x00\x88\x01\x00\x00\x86\x01\x00\x00_\x01\x00\x00\x86\x01\x00\x00]\x01\x00\x00_\x01\x00\x00\x8a\x01\x00\x00\x89\x01\x00\x00g\x01\x00\x00\x89\x01\x00\x00d\x01\x00\x00g\x01\x00\x00\x8b\x01\x00\x00\x8a\x01\x00\x00i\x01\x00\x00\x8a\x01\x00\x00g\x01\x00\x00i\x01\x00\x00\x8a\x01\x00\x00\x8c\x01\x00\x00\x8d\x01\x00\x00\x8a\x01\x00\x00\x8b\x01\x00\x00\x8c\x01\x00\x00\x8e\x01\x00\x00\x8b\x01\x00\x00k\x01\x00\x00\x8b\x01\x00\x00i\x01\x00\x00k\x01\x00\x00\x8b\x01\x00\x00\x8f\x01\x00\x00\x8c\x01\x00\x00\x8b\x01\x00\x00\x8e\x01\x00\x00\x8f\x01\x00\x00\x90\x01\x00\x00\x8e\x01\x00\x00m\x01\x00\x00\x8e\x01\x00\x00k\x01\x00\x00m\x01\x00\x00\x8e\x01\x00\x00\x91\x01\x00\x00\x8f\x01\x00\x00\x8e\x01\x00\x00\x90\x01\x00\x00\x91\x01\x00\x00\x92\x01\x00\x00\x90\x01\x00\x00o\x01\x00\x00\x90\x01\x00\x00m\x01\x00\x00o\x01\x00\x00\x90\x01\x00\x00\x93\x01\x00\x00\x91\x01\x00\x00\x90\x01\x00\x00\x92\x01\x00\x00\x93\x01\x00\x00\x94\x01\x00\x00\x92\x01\x00\x00q\x01\x00\x00\x92\x01\x00\x00o\x01\x00\x00q\x01\x00\x00\x92\x01\x00\x00\x95\x01\x00\x00\x93\x01\x00\x00\x92\x01\x00\x00\x94\x01\x00\x00\x95\x01\x00\x00\x96\x01\x00\x00\x94\x01\x00\x00s\x01\x00\x00\x94\x01\x00\x00q\x01\x00\x00s\x01\x00\x00\x94\x01\x00\x00\x97\x01\x00\x00\x95\x01\x00\x00\x94\x01\x00\x00\x96\x01\x00\x00\x97\x01\x00\x00\x98\x01\x00\x00\x96\x01\x00\x00u\x01\x00\x00\x96\x01\x00\x00s\x01\x00\x00u\x01\x00\x00\x96\x01\x00\x00\x99\x01\x00\x00\x97\x01\x00\x00\x96\x01\x00\x00\x98\x01\x00\x00\x99\x01\x00\x00\x9a\x01\x00\x00\x98\x01\x00\x00w\x01\x00\x00\x98\x01\x00\x00u\x01\x00\x00w\x01\x00\x00\x98\x01\x00\x00\x9b\x01\x00\x00\x99\x01\x00\x00\x98\x01\x00\x00\x9a\x01\x00\x00\x9b\x01\x00\x00\x9c\x01\x00\x00\x9a\x01\x00\x00y\x01\x00\x00\x9a\x01\x00\x00w\x01\x00\x00y\x01\x00\x00\x9a\x01\x00\x00\x9d\x01\x00\x00\x9b\x01\x00\x00\x9a\x01\x00\x00\x9c\x01\x00\x00\x9d\x01\x00\x00\x9e\x01\x00\x00\x9c\x01\x00\x00{\x01\x00\x00\x9c\x01\x00\x00y\x01\x00\x00{\x01\x00\x00\x9c\x01\x00\x00\x9f\x01\x00\x00\x9d\x01\x00\x00\x9c\x01\x00\x00\x9e\x01\x00\x00\x9f\x01\x00\x00\xa0\x01\x00\x00\x9e\x01\x00\x00}\x01\x00\x00\x9e\x01\x00\x00{\x01\x00\x00}\x01\x00\x00\x9e\x01\x00\x00\xa1\x01\x00\x00\x9f\x01\x00\x00\x9e\x01\x00\x00\xa0\x01\x00\x00\xa1\x01\x00\x00\xa2\x01\x00\x00\xa0\x01\x00\x00\x7f\x01\x00\x00\xa0\x01\x00\x00}\x01\x00\x00\x7f\x01\x00\x00\xa0\x01\x00\x00\xa3\x01\x00\x00\xa1\x01\x00\x00\xa0\x01\x00\x00\xa2\x01\x00\x00\xa3\x01\x00\x00\xa4\x01\x00\x00\xa2\x01\x00\x00\x81\x01\x00\x00\xa2\x01\x00\x00\x7f\x01\x00\x00\x81\x01\x00\x00\xa2\x01\x00\x00\xa5\x01\x00\x00\xa3\x01\x00\x00\xa2\x01\x00\x00\xa4\x01\x00\x00\xa5\x01\x00\x00\xa6\x01\x00\x00\xa4\x01\x00\x00\x83\x01\x00\x00\xa4\x01\x00\x00\x81\x01\x00\x00\x83\x01\x00\x00\xa4\x01\x00\x00\xa7\x01\x00\x00\xa5\x01\x00\x00\xa4\x01\x00\x00\xa6\x01\x00\x00\xa7\x01\x00\x00\xa8\x01\x00\x00\xa6\x01\x00\x00\x85\x01\x00\x00\xa6\x01\x00\x00\x83\x01\x00\x00\x85\x01\x00\x00\xa6\x01\x00\x00\xa9\x01\x00\x00\xa7\x01\x00\x00\xa6\x01\x00\x00\xa8\x01\x00\x00\xa9\x01\x00\x00\xaa\x01\x00\x00\xa8\x01\x00\x00\x87\x01\x00\x00\xa8\x01\x00\x00\x85\x01\x00\x00\x87\x01\x00\x00\xac\x01\x00\x00\xab\x01\x00\x00\x91\x01\x00\x00\xab\x01\x00\x00\x8f\x01\x00\x00\x91\x01\x00\x00\xad\x01\x00\x00\xac\x01\x00\x00\x93\x01\x00\x00\xac\x01\x00\x00\x91\x01\x00\x00\x93\x01\x00\x00\xac\x01\x00\x00\xae\x01\x00\x00\xaf\x01\x00\x00\xac\x01\x00\x00\xad\x01\x00\x00\xae\x01\x00\x00\xb0\x01\x00\x00\xad\x01\x00\x00\x95\x01\x00\x00\xad\x01\x00\x00\x93\x01\x00\x00\x95\x01\x00\x00\xad\x01\x00\x00\xb1\x01\x00\x00\xae\x01\x00\x00\xad\x01\x00\x00\xb0\x01\x00\x00\xb1\x01\x00\x00\xb2\x01\x00\x00\xb0\x01\x00\x00\x97\x01\x00\x00\xb0\x01\x00\x00\x95\x01\x00\x00\x97\x01\x00\x00\xb0\x01\x00\x00\xb3\x01\x00\x00\xb1\x01\x00\x00\xb0\x01\x00\x00\xb2\x01\x00\x00\xb3\x01\x00\x00\xb5\x01\x00\x00\xb2\x01\x00\x00\xb4\x01\x00\x00\xb4\x01\x00\x00\xb2\x01\x00\x00\x97\x01\x00\x00\xb4\x01\x00\x00\x97\x01\x00\x00\x99\x01\x00\x00\xb5\x01\x00\x00\xb3\x01\x00\x00\xb2\x01\x00\x00\xb4\x01\x00\x00\x99\x01\x00\x00\x9b\x01\x00\x00\xb6\x01\x00\x00\xb4\x01\x00\x00\x9b\x01\x00\x00\xb6\x01\x00\x00\x9b\x01\x00\x00\x9d\x01\x00\x00\xb7\x01\x00\x00\xb6\x01\x00\x00\x9d\x01\x00\x00\xb7\x01\x00\x00\x9d\x01\x00\x00\x9f\x01\x00\x00\xb8\x01\x00\x00\xb7\x01\x00\x00\x9f\x01\x00\x00\xb8\x01\x00\x00\x9f\x01\x00\x00\xa1\x01\x00\x00\xb9\x01\x00\x00\xb8\x01\x00\x00\xa1\x01\x00\x00\xb9\x01\x00\x00\xa1\x01\x00\x00\xa3\x01\x00\x00\xba\x01\x00\x00\xb9\x01\x00\x00\xa3\x01\x00\x00\xba\x01\x00\x00\xa3\x01\x00\x00\xa5\x01\x00\x00\xbb\x01\x00\x00\xba\x01\x00\x00\xa5\x01\x00\x00\xbb\x01\x00\x00\xa5\x01\x00\x00\xa7\x01\x00\x00\xbc\x01\x00\x00\xbb\x01\x00\x00\xa7\x01\x00\x00\xbe\x01\x00\x00\xbd\x01\x00\x00\xa9\x01\x00\x00\xa9\x01\x00\x00\xbd\x01\x00\x00\xbc\x01\x00\x00\xa9\x01\x00\x00\xbc\x01\x00\x00\xa7\x01\x00\x00\xbf\x01\x00\x00\xbd\x01\x00\x00\xbe\x01\x00\x00\xc1\x01\x00\x00\xbe\x01\x00\x00\xc0\x01\x00\x00\xbe\x01\x00\x00\xa9\x01\x00\x00\xc0\x01\x00\x00\xc2\x01\x00\x00\xae\x01\x00\x00\xb1\x01\x00\x00\xc3\x01\x00\x00\xc2\x01\x00\x00\xb1\x01\x00\x00\xc3\x01\x00\x00\xb1\x01\x00\x00\xb3\x01\x00\x00\xc4\x01\x00\x00\xc3\x01\x00\x00\xb3\x01\x00\x00\xc5\x01\x00\x00\xb5\x01\x00\x00\xb4\x01\x00\x00\xc6\x01\x00\x00\xb5\x01\x00\x00\xc5\x01\x00\x00\xb3\x01\x00\x00\xb5\x01\x00\x00\xc6\x01\x00\x00\xc4\x01\x00\x00\xb3\x01\x00\x00\xc6\x01\x00\x00\xc7\x01\x00\x00\xc5\x01\x00\x00\xb6\x01\x00\x00\xc5\x01\x00\x00\xb4\x01\x00\x00\xb6\x01\x00\x00\xc5\x01\x00\x00\xc8\x01\x00\x00\xc6\x01\x00\x00\xc5\x01\x00\x00\xc7\x01\x00\x00\xc8\x01\x00\x00\xc9\x01\x00\x00\xc7\x01\x00\x00\xb7\x01\x00\x00\xc7\x01\x00\x00\xb6\x01\x00\x00\xb7\x01\x00\x00\xc7\x01\x00\x00\xca\x01\x00\x00\xc8\x01\x00\x00\xc7\x01\x00\x00\xc9\x01\x00\x00\xca\x01\x00\x00\xcb\x01\x00\x00\xc9\x01\x00\x00\xb8\x01\x00\x00\xc9\x01\x00\x00\xb7\x01\x00\x00\xb8\x01\x00\x00\xc9\x01\x00\x00\xcc\x01\x00\x00\xca\x01\x00\x00\xc9\x01\x00\x00\xcb\x01\x00\x00\xcc\x01\x00\x00\xcd\x01\x00\x00\xcb\x01\x00\x00\xb9\x01\x00\x00\xcb\x01\x00\x00\xb8\x01\x00\x00\xb9\x01\x00\x00\xcb\x01\x00\x00\xce\x01\x00\x00\xcc\x01\x00\x00\xcb\x01\x00\x00\xcd\x01\x00\x00\xce\x01\x00\x00\xcf\x01\x00\x00\xcd\x01\x00\x00\xba\x01\x00\x00\xcd\x01\x00\x00\xb9\x01\x00\x00\xba\x01\x00\x00\xcd\x01\x00\x00\xd0\x01\x00\x00\xce\x01\x00\x00\xcd\x01\x00\x00\xcf\x01\x00\x00\xd0\x01\x00\x00\xd1\x01\x00\x00\xcf\x01\x00\x00\xbb\x01\x00\x00\xcf\x01\x00\x00\xba\x01\x00\x00\xbb\x01\x00\x00\xcf\x01\x00\x00\xd2\x01\x00\x00\xd0\x01\x00\x00\xcf\x01\x00\x00\xd1\x01\x00\x00\xd2\x01\x00\x00\xd3\x01\x00\x00\xd1\x01\x00\x00\xbc\x01\x00\x00\xd1\x01\x00\x00\xbb\x01\x00\x00\xbc\x01\x00\x00\xd1\x01\x00\x00\xd4\x01\x00\x00\xd2\x01\x00\x00\xd1\x01\x00\x00\xd3\x01\x00\x00\xd4\x01\x00\x00\xd3\x01\x00\x00\xbc\x01\x00\x00\xbd\x01\x00\x00\xbf\x01\x00\x00\xd3\x01\x00\x00\xbd\x01\x00\x00\xd4\x01\x00\x00\xd3\x01\x00\x00\xbf\x01\x00\x00\xd5\x01\x00\x00\xd4\x01\x00\x00\xbf\x01\x00\x00\xd7\x01\x00\x00\xd6\x01\x00\x00\xc6\x01\x00\x00\xd6\x01\x00\x00\xc4\x01\x00\x00\xc6\x01\x00\x00\xd8\x01\x00\x00\xd7\x01\x00\x00\xc8\x01\x00\x00\xd7\x01\x00\x00\xc6\x01\x00\x00\xc8\x01\x00\x00\xd7\x01\x00\x00\xd9\x01\x00\x00\xda\x01\x00\x00\xd7\x01\x00\x00\xd8\x01\x00\x00\xd9\x01\x00\x00\xdb\x01\x00\x00\xd8\x01\x00\x00\xca\x01\x00\x00\xd8\x01\x00\x00\xc8\x01\x00\x00\xca\x01\x00\x00\xd8\x01\x00\x00\xdc\x01\x00\x00\xd9\x01\x00\x00\xd8\x01\x00\x00\xdb\x01\x00\x00\xdc\x01\x00\x00\xdd\x01\x00\x00\xdb\x01\x00\x00\xcc\x01\x00\x00\xdb\x01\x00\x00\xca\x01\x00\x00\xcc\x01\x00\x00\xdb\x01\x00\x00\xde\x01\x00\x00\xdc\x01\x00\x00\xdb\x01\x00\x00\xdd\x01\x00\x00\xde\x01\x00\x00\xdf\x01\x00\x00\xdd\x01\x00\x00\xce\x01\x00\x00\xdd\x01\x00\x00\xcc\x01\x00\x00\xce\x01\x00\x00\xdd\x01\x00\x00\xe0\x01\x00\x00\xde\x01\x00\x00\xdd\x01\x00\x00\xdf\x01\x00\x00\xe0\x01\x00\x00\xe1\x01\x00\x00\xdf\x01\x00\x00\xd0\x01\x00\x00\xdf\x01\x00\x00\xce\x01\x00\x00\xd0\x01\x00\x00\xe2\x01\x00\x00\xe1\x01\x00\x00\xd2\x01\x00\x00\xe1\x01\x00\x00\xd0\x01\x00\x00\xd2\x01\x00\x00\xe1\x01\x00\x00\xe3\x01\x00\x00\xe4\x01\x00\x00\xe1\x01\x00\x00\xe2\x01\x00\x00\xe3\x01\x00\x00\xe5\x01\x00\x00\xe2\x01\x00\x00\xd4\x01\x00\x00\xe2\x01\x00\x00\xd2\x01\x00\x00\xd4\x01\x00\x00\xe2\x01\x00\x00\xe6\x01\x00\x00\xe3\x01\x00\x00\xe2\x01\x00\x00\xe5\x01\x00\x00\xe6\x01\x00\x00\xe7\x01\x00\x00\xe5\x01\x00\x00\xd5\x01\x00\x00\xe5\x01\x00\x00\xd4\x01\x00\x00\xd5\x01\x00\x00\xe8\x01\x00\x00\xda\x01\x00\x00\xd9\x01\x00\x00\xe9\x01\x00\x00\xe8\x01\x00\x00\xd9\x01\x00\x00\xe9\x01\x00\x00\xd9\x01\x00\x00\xdc\x01\x00\x00\xea\x01\x00\x00\xe9\x01\x00\x00\xdc\x01\x00\x00\xea\x01\x00\x00\xdc\x01\x00\x00\xde\x01\x00\x00\xeb\x01\x00\x00\xea\x01\x00\x00\xde\x01\x00\x00\xeb\x01\x00\x00\xde\x01\x00\x00\xe0\x01\x00\x00\xec\x01\x00\x00\xeb\x01\x00\x00\xe0\x01\x00\x00\xec\x01\x00\x00\xe0\x01\x00\x00\xe4\x01\x00\x00\xed\x01\x00\x00\xec\x01\x00\x00\xe4\x01\x00\x00\xed\x01\x00\x00\xe4\x01\x00\x00\xe3\x01\x00\x00\xee\x01\x00\x00\xed\x01\x00\x00\xe3\x01\x00\x00\xee\x01\x00\x00\xe3\x01\x00\x00\xe6\x01\x00\x00\xef\x01\x00\x00\xee\x01\x00\x00\xe6\x01\x00\x00\xf1\x01\x00\x00\xf0\x01\x00\x00\xe9\x01\x00\x00\xf0\x01\x00\x00\xe8\x01\x00\x00\xe9\x01\x00\x00\xf2\x01\x00\x00\xf1\x01\x00\x00\xea\x01\x00\x00\xf1\x01\x00\x00\xe9\x01\x00\x00\xea\x01\x00\x00\xf1\x01\x00\x00\xf3\x01\x00\x00\xf4\x01\x00\x00\xf1\x01\x00\x00\xf2\x01\x00\x00\xf3\x01\x00\x00\xf5\x01\x00\x00\xf2\x01\x00\x00\xeb\x01\x00\x00\xf2\x01\x00\x00\xea\x01\x00\x00\xeb\x01\x00\x00\xf2\x01\x00\x00\xf6\x01\x00\x00\xf3\x01\x00\x00\xf2\x01\x00\x00\xf5\x01\x00\x00\xf6\x01\x00\x00\xf7\x01\x00\x00\xf5\x01\x00\x00\xec\x01\x00\x00\xf5\x01\x00\x00\xeb\x01\x00\x00\xec\x01\x00\x00\xf5\x01\x00\x00\xf8\x01\x00\x00\xf6\x01\x00\x00\xf5\x01\x00\x00\xf7\x01\x00\x00\xf8\x01\x00\x00\xf9\x01\x00\x00\xf7\x01\x00\x00\xed\x01\x00\x00\xf7\x01\x00\x00\xec\x01\x00\x00\xed\x01\x00\x00\xf7\x01\x00\x00\xfa\x01\x00\x00\xf8\x01\x00\x00\xf7\x01\x00\x00\xf9\x01\x00\x00\xfa\x01\x00\x00\xfb\x01\x00\x00\xf9\x01\x00\x00\xee\x01\x00\x00\xf9\x01\x00\x00\xed\x01\x00\x00\xee\x01\x00\x00\xf9\x01\x00\x00\xfc\x01\x00\x00\xfa\x01\x00\x00\xf9\x01\x00\x00\xfb\x01\x00\x00\xfc\x01\x00\x00\xfd\x01\x00\x00\xfb\x01\x00\x00\xef\x01\x00\x00\xfb\x01\x00\x00\xee\x01\x00\x00\xef\x01\x00\x00\xff\x01\x00\x00\xfe\x01\x00\x00\xf3\x01\x00\x00\xfe\x01\x00\x00\xf4\x01\x00\x00\xf3\x01\x00\x00\x00\x02\x00\x00\xff\x01\x00\x00\xf6\x01\x00\x00\xff\x01\x00\x00\xf3\x01\x00\x00\xf6\x01\x00\x00\x01\x02\x00\x00\x00\x02\x00\x00\xf8\x01\x00\x00\x00\x02\x00\x00\xf6\x01\x00\x00\xf8\x01\x00\x00\x00\x02\x00\x00\x02\x02\x00\x00\x03\x02\x00\x00\x00\x02\x00\x00\x01\x02\x00\x00\x02\x02\x00\x00\x04\x02\x00\x00\x01\x02\x00\x00\xfa\x01\x00\x00\x01\x02\x00\x00\xf8\x01\x00\x00\xfa\x01\x00\x00\x01\x02\x00\x00\x05\x02\x00\x00\x02\x02\x00\x00\x01\x02\x00\x00\x04\x02\x00\x00\x05\x02\x00\x00\x06\x02\x00\x00\x04\x02\x00\x00\xfc\x01\x00\x00\x04\x02\x00\x00\xfa\x01\x00\x00\xfc\x01\x00\x00\x04\x02\x00\x00\x07\x02\x00\x00\x05\x02\x00\x00\x04\x02\x00\x00\x06\x02\x00\x00\x07\x02\x00\x00\t\x02\x00\x00\x06\x02\x00\x00\x08\x02\x00\x00\x06\x02\x00\x00\xfc\x01\x00\x00\x08\x02\x00\x00\x0b\x02\x00\x00\t\x02\x00\x00\n\x02\x00\x00\t\x02\x00\x00\x08\x02\x00\x00\n\x02\x00\x00\r\x02\x00\x00\x0c\x02\x00\x00\x03\x02\x00\x00\x0e\x02\x00\x00\r\x02\x00\x00\x03\x02\x00\x00\x0e\x02\x00\x00\x03\x02\x00\x00\x02\x02\x00\x00\x0f\x02\x00\x00\x0e\x02\x00\x00\x02\x02\x00\x00\x0f\x02\x00\x00\x02\x02\x00\x00\x05\x02\x00\x00\x10\x02\x00\x00\x0f\x02\x00\x00\x05\x02\x00\x00\x10\x02\x00\x00\x05\x02\x00\x00\x07\x02\x00\x00\x11\x02\x00\x00\x10\x02\x00\x00\x07\x02\x00\x00\x11\x02\x00\x00\x07\x02\x00\x00\x12\x02\x00\x00\x13\x02\x00\x00\x11\x02\x00\x00\x12\x02\x00\x00\x13\x02\x00\x00\x12\x02\x00\x00\x14\x02\x00\x00\x15\x02\x00\x00\x13\x02\x00\x00\x14\x02\x00\x00\x16\x02\x00\x00\r\x02\x00\x00\x0e\x02\x00\x00\x17\x02\x00\x00\x16\x02\x00\x00\x0e\x02\x00\x00\x17\x02\x00\x00\x0e\x02\x00\x00\x0f\x02\x00\x00\x18\x02\x00\x00\x17\x02\x00\x00\x0f\x02\x00\x00\x18\x02\x00\x00\x0f\x02\x00\x00\x10\x02\x00\x00\x19\x02\x00\x00\x18\x02\x00\x00\x10\x02\x00\x00\x19\x02\x00\x00\x10\x02\x00\x00\x11\x02\x00\x00\x1a\x02\x00\x00\x19\x02\x00\x00\x11\x02\x00\x00\x1a\x02\x00\x00\x11\x02\x00\x00\x13\x02\x00\x00\x1b\x02\x00\x00\x1a\x02\x00\x00\x13\x02\x00\x00\x1b\x02\x00\x00\x13\x02\x00\x00\x15\x02\x00\x00\x1c\x02\x00\x00\x1b\x02\x00\x00\x15\x02\x00\x00\x1c\x02\x00\x00\x15\x02\x00\x00\x1d\x02\x00\x00\x1e\x02\x00\x00\x1c\x02\x00\x00\x1d\x02\x00\x00 \x02\x00\x00\x1f\x02\x00\x00\x17\x02\x00\x00\x1f\x02\x00\x00\x16\x02\x00\x00\x17\x02\x00\x00!\x02\x00\x00 \x02\x00\x00\x18\x02\x00\x00 \x02\x00\x00\x17\x02\x00\x00\x18\x02\x00\x00"\x02\x00\x00!\x02\x00\x00\x19\x02\x00\x00!\x02\x00\x00\x18\x02\x00\x00\x19\x02\x00\x00!\x02\x00\x00#\x02\x00\x00$\x02\x00\x00!\x02\x00\x00"\x02\x00\x00#\x02\x00\x00%\x02\x00\x00"\x02\x00\x00\x1a\x02\x00\x00"\x02\x00\x00\x19\x02\x00\x00\x1a\x02\x00\x00"\x02\x00\x00&\x02\x00\x00#\x02\x00\x00"\x02\x00\x00%\x02\x00\x00&\x02\x00\x00\'\x02\x00\x00%\x02\x00\x00\x1b\x02\x00\x00%\x02\x00\x00\x1a\x02\x00\x00\x1b\x02\x00\x00%\x02\x00\x00(\x02\x00\x00&\x02\x00\x00%\x02\x00\x00\'\x02\x00\x00(\x02\x00\x00)\x02\x00\x00\'\x02\x00\x00\x1c\x02\x00\x00\'\x02\x00\x00\x1b\x02\x00\x00\x1c\x02\x00\x00*\x02\x00\x00#\x02\x00\x00&\x02\x00\x00+\x02\x00\x00*\x02\x00\x00&\x02\x00\x00+\x02\x00\x00&\x02\x00\x00(\x02\x00\x00,\x02\x00\x00+\x02\x00\x00(\x02\x00\x00/\x02\x00\x00-\x02\x00\x00.\x02\x00\x00.\x02\x00\x00-\x02\x00\x000\x02\x00\x00.\x02\x00\x000\x02\x00\x001\x02\x00\x00-\x02\x00\x002\x02\x00\x000\x02\x00\x002\x02\x00\x003\x02\x00\x000\x02\x00\x002\x02\x00\x004\x02\x00\x003\x02\x00\x004\x02\x00\x005\x02\x00\x003\x02\x00\x008\x02\x00\x006\x02\x00\x007\x02\x00\x006\x02\x00\x009\x02\x00\x007\x02\x00\x006\x02\x00\x00:\x02\x00\x009\x02\x00\x00:\x02\x00\x00;\x02\x00\x009\x02\x00\x00;\x02\x00\x00:\x02\x00\x00<\x02\x00\x001\x02\x00\x00<\x02\x00\x00:\x02\x00\x00=\x02\x00\x00<\x02\x00\x001\x02\x00\x000\x02\x00\x00=\x02\x00\x001\x02\x00\x00=\x02\x00\x000\x02\x00\x003\x02\x00\x00>\x02\x00\x00=\x02\x00\x003\x02\x00\x00>\x02\x00\x003\x02\x00\x005\x02\x00\x00?\x02\x00\x00>\x02\x00\x005\x02\x00\x00?\x02\x00\x005\x02\x00\x00@\x02\x00\x00A\x02\x00\x00?\x02\x00\x00@\x02\x00\x00A\x02\x00\x00@\x02\x00\x00B\x02\x00\x00C\x02\x00\x00A\x02\x00\x00B\x02\x00\x00C\x02\x00\x00B\x02\x00\x00D\x02\x00\x00E\x02\x00\x00C\x02\x00\x00D\x02\x00\x00G\x02\x00\x00F\x02\x00\x00D\x02\x00\x00D\x02\x00\x00F\x02\x00\x00H\x02\x00\x00D\x02\x00\x00H\x02\x00\x00E\x02\x00\x00K\x02\x00\x00I\x02\x00\x00J\x02\x00\x00L\x02\x00\x007\x02\x00\x009\x02\x00\x00M\x02\x00\x00L\x02\x00\x009\x02\x00\x00M\x02\x00\x009\x02\x00\x00;\x02\x00\x00N\x02\x00\x00M\x02\x00\x00;\x02\x00\x00<\x02\x00\x00O\x02\x00\x00;\x02\x00\x00;\x02\x00\x00O\x02\x00\x00P\x02\x00\x00;\x02\x00\x00P\x02\x00\x00N\x02\x00\x00O\x02\x00\x00<\x02\x00\x00=\x02\x00\x00O\x02\x00\x00Q\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00R\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00=\x02\x00\x00>\x02\x00\x00Q\x02\x00\x00O\x02\x00\x00=\x02\x00\x00Q\x02\x00\x00S\x02\x00\x00R\x02\x00\x00S\x02\x00\x00T\x02\x00\x00R\x02\x00\x00S\x02\x00\x00>\x02\x00\x00?\x02\x00\x00S\x02\x00\x00Q\x02\x00\x00>\x02\x00\x00S\x02\x00\x00U\x02\x00\x00T\x02\x00\x00U\x02\x00\x00V\x02\x00\x00T\x02\x00\x00U\x02\x00\x00?\x02\x00\x00A\x02\x00\x00U\x02\x00\x00S\x02\x00\x00?\x02\x00\x00U\x02\x00\x00W\x02\x00\x00V\x02\x00\x00W\x02\x00\x00X\x02\x00\x00V\x02\x00\x00W\x02\x00\x00A\x02\x00\x00C\x02\x00\x00W\x02\x00\x00U\x02\x00\x00A\x02\x00\x00W\x02\x00\x00Y\x02\x00\x00X\x02\x00\x00Y\x02\x00\x00Z\x02\x00\x00X\x02\x00\x00Y\x02\x00\x00C\x02\x00\x00E\x02\x00\x00Y\x02\x00\x00W\x02\x00\x00C\x02\x00\x00Y\x02\x00\x00[\x02\x00\x00Z\x02\x00\x00[\x02\x00\x00\\\x02\x00\x00Z\x02\x00\x00[\x02\x00\x00E\x02\x00\x00H\x02\x00\x00[\x02\x00\x00Y\x02\x00\x00E\x02\x00\x00[\x02\x00\x00]\x02\x00\x00\\\x02\x00\x00]\x02\x00\x00^\x02\x00\x00\\\x02\x00\x00]\x02\x00\x00H\x02\x00\x00_\x02\x00\x00]\x02\x00\x00[\x02\x00\x00H\x02\x00\x00]\x02\x00\x00`\x02\x00\x00^\x02\x00\x00`\x02\x00\x00a\x02\x00\x00^\x02\x00\x00`\x02\x00\x00b\x02\x00\x00a\x02\x00\x00b\x02\x00\x00c\x02\x00\x00a\x02\x00\x00b\x02\x00\x00d\x02\x00\x00c\x02\x00\x00d\x02\x00\x00e\x02\x00\x00c\x02\x00\x00J\x02\x00\x00f\x02\x00\x00K\x02\x00\x00K\x02\x00\x00f\x02\x00\x00g\x02\x00\x00K\x02\x00\x00g\x02\x00\x00h\x02\x00\x00f\x02\x00\x00i\x02\x00\x00g\x02\x00\x00i\x02\x00\x00j\x02\x00\x00g\x02\x00\x00i\x02\x00\x00L\x02\x00\x00M\x02\x00\x00i\x02\x00\x00f\x02\x00\x00L\x02\x00\x00i\x02\x00\x00k\x02\x00\x00j\x02\x00\x00k\x02\x00\x00l\x02\x00\x00j\x02\x00\x00k\x02\x00\x00M\x02\x00\x00N\x02\x00\x00k\x02\x00\x00i\x02\x00\x00M\x02\x00\x00k\x02\x00\x00m\x02\x00\x00l\x02\x00\x00m\x02\x00\x00n\x02\x00\x00l\x02\x00\x00m\x02\x00\x00N\x02\x00\x00P\x02\x00\x00m\x02\x00\x00k\x02\x00\x00N\x02\x00\x00m\x02\x00\x00o\x02\x00\x00n\x02\x00\x00o\x02\x00\x00p\x02\x00\x00n\x02\x00\x00o\x02\x00\x00P\x02\x00\x00R\x02\x00\x00o\x02\x00\x00m\x02\x00\x00P\x02\x00\x00o\x02\x00\x00q\x02\x00\x00p\x02\x00\x00q\x02\x00\x00r\x02\x00\x00p\x02\x00\x00q\x02\x00\x00R\x02\x00\x00T\x02\x00\x00q\x02\x00\x00o\x02\x00\x00R\x02\x00\x00r\x02\x00\x00q\x02\x00\x00s\x02\x00\x00T\x02\x00\x00s\x02\x00\x00q\x02\x00\x00t\x02\x00\x00s\x02\x00\x00T\x02\x00\x00V\x02\x00\x00t\x02\x00\x00T\x02\x00\x00t\x02\x00\x00V\x02\x00\x00X\x02\x00\x00u\x02\x00\x00t\x02\x00\x00X\x02\x00\x00u\x02\x00\x00X\x02\x00\x00Z\x02\x00\x00v\x02\x00\x00u\x02\x00\x00Z\x02\x00\x00v\x02\x00\x00Z\x02\x00\x00\\\x02\x00\x00w\x02\x00\x00v\x02\x00\x00\\\x02\x00\x00w\x02\x00\x00\\\x02\x00\x00^\x02\x00\x00x\x02\x00\x00w\x02\x00\x00^\x02\x00\x00x\x02\x00\x00^\x02\x00\x00a\x02\x00\x00y\x02\x00\x00x\x02\x00\x00a\x02\x00\x00y\x02\x00\x00a\x02\x00\x00c\x02\x00\x00z\x02\x00\x00y\x02\x00\x00c\x02\x00\x00z\x02\x00\x00c\x02\x00\x00e\x02\x00\x00{\x02\x00\x00z\x02\x00\x00e\x02\x00\x00~\x02\x00\x00|\x02\x00\x00}\x02\x00\x00|\x02\x00\x00\x7f\x02\x00\x00}\x02\x00\x00|\x02\x00\x00\x80\x02\x00\x00\x7f\x02\x00\x00\x80\x02\x00\x00\x81\x02\x00\x00\x7f\x02\x00\x00\x80\x02\x00\x00h\x02\x00\x00g\x02\x00\x00\x80\x02\x00\x00|\x02\x00\x00h\x02\x00\x00\x80\x02\x00\x00\x82\x02\x00\x00\x81\x02\x00\x00\x82\x02\x00\x00\x83\x02\x00\x00\x81\x02\x00\x00\x82\x02\x00\x00g\x02\x00\x00j\x02\x00\x00\x82\x02\x00\x00\x80\x02\x00\x00g\x02\x00\x00\x82\x02\x00\x00\x84\x02\x00\x00\x83\x02\x00\x00\x84\x02\x00\x00\x85\x02\x00\x00\x83\x02\x00\x00\x84\x02\x00\x00j\x02\x00\x00l\x02\x00\x00\x84\x02\x00\x00\x82\x02\x00\x00j\x02\x00\x00\x85\x02\x00\x00\x84\x02\x00\x00\x86\x02\x00\x00l\x02\x00\x00\x86\x02\x00\x00\x84\x02\x00\x00\x87\x02\x00\x00\x86\x02\x00\x00l\x02\x00\x00n\x02\x00\x00\x87\x02\x00\x00l\x02\x00\x00\x87\x02\x00\x00n\x02\x00\x00p\x02\x00\x00\x88\x02\x00\x00\x87\x02\x00\x00p\x02\x00\x00\x88\x02\x00\x00p\x02\x00\x00r\x02\x00\x00\x89\x02\x00\x00\x88\x02\x00\x00r\x02\x00\x00s\x02\x00\x00\x8a\x02\x00\x00r\x02\x00\x00r\x02\x00\x00\x8a\x02\x00\x00\x8b\x02\x00\x00r\x02\x00\x00\x8b\x02\x00\x00\x89\x02\x00\x00\x8a\x02\x00\x00s\x02\x00\x00t\x02\x00\x00\x8a\x02\x00\x00\x8c\x02\x00\x00\x8b\x02\x00\x00\x8c\x02\x00\x00\x8d\x02\x00\x00\x8b\x02\x00\x00\x8c\x02\x00\x00t\x02\x00\x00u\x02\x00\x00\x8c\x02\x00\x00\x8a\x02\x00\x00t\x02\x00\x00\x8c\x02\x00\x00\x8e\x02\x00\x00\x8d\x02\x00\x00\x8e\x02\x00\x00\x8f\x02\x00\x00\x8d\x02\x00\x00\x8e\x02\x00\x00u\x02\x00\x00v\x02\x00\x00\x8e\x02\x00\x00\x8c\x02\x00\x00u\x02\x00\x00\x8e\x02\x00\x00\x90\x02\x00\x00\x8f\x02\x00\x00\x90\x02\x00\x00\x91\x02\x00\x00\x8f\x02\x00\x00\x90\x02\x00\x00v\x02\x00\x00w\x02\x00\x00\x90\x02\x00\x00\x8e\x02\x00\x00v\x02\x00\x00\x90\x02\x00\x00\x92\x02\x00\x00\x91\x02\x00\x00\x92\x02\x00\x00\x93\x02\x00\x00\x91\x02\x00\x00\x92\x02\x00\x00w\x02\x00\x00x\x02\x00\x00\x92\x02\x00\x00\x90\x02\x00\x00w\x02\x00\x00\x92\x02\x00\x00\x94\x02\x00\x00\x93\x02\x00\x00\x94\x02\x00\x00\x95\x02\x00\x00\x93\x02\x00\x00\x94\x02\x00\x00x\x02\x00\x00y\x02\x00\x00\x94\x02\x00\x00\x92\x02\x00\x00x\x02\x00\x00\x94\x02\x00\x00\x96\x02\x00\x00\x95\x02\x00\x00\x96\x02\x00\x00\x97\x02\x00\x00\x95\x02\x00\x00\x96\x02\x00\x00y\x02\x00\x00z\x02\x00\x00\x96\x02\x00\x00\x94\x02\x00\x00y\x02\x00\x00\x96\x02\x00\x00\x98\x02\x00\x00\x97\x02\x00\x00\x98\x02\x00\x00\x99\x02\x00\x00\x97\x02\x00\x00\x9c\x02\x00\x00\x9a\x02\x00\x00\x9b\x02\x00\x00\x9a\x02\x00\x00\x9d\x02\x00\x00\x9b\x02\x00\x00\x9a\x02\x00\x00\x9e\x02\x00\x00}\x02\x00\x00\x9a\x02\x00\x00\x9c\x02\x00\x00\x9e\x02\x00\x00\x9a\x02\x00\x00\x9f\x02\x00\x00\x9d\x02\x00\x00\x9f\x02\x00\x00\xa0\x02\x00\x00\x9d\x02\x00\x00\x9f\x02\x00\x00}\x02\x00\x00\x7f\x02\x00\x00\x9f\x02\x00\x00\x9a\x02\x00\x00}\x02\x00\x00\xa0\x02\x00\x00\x9f\x02\x00\x00\xa1\x02\x00\x00\x7f\x02\x00\x00\xa1\x02\x00\x00\x9f\x02\x00\x00\xa2\x02\x00\x00\xa1\x02\x00\x00\x7f\x02\x00\x00\x81\x02\x00\x00\xa2\x02\x00\x00\x7f\x02\x00\x00\xa2\x02\x00\x00\x81\x02\x00\x00\x83\x02\x00\x00\xa3\x02\x00\x00\xa2\x02\x00\x00\x83\x02\x00\x00\xa3\x02\x00\x00\x83\x02\x00\x00\x85\x02\x00\x00\xa4\x02\x00\x00\xa3\x02\x00\x00\x85\x02\x00\x00\x86\x02\x00\x00\xa5\x02\x00\x00\x85\x02\x00\x00\x85\x02\x00\x00\xa5\x02\x00\x00\xa6\x02\x00\x00\x85\x02\x00\x00\xa6\x02\x00\x00\xa4\x02\x00\x00\xa5\x02\x00\x00\x86\x02\x00\x00\x87\x02\x00\x00\xa5\x02\x00\x00\xa7\x02\x00\x00\xa6\x02\x00\x00\xa7\x02\x00\x00\xa8\x02\x00\x00\xa6\x02\x00\x00\xa7\x02\x00\x00\x87\x02\x00\x00\x88\x02\x00\x00\xa7\x02\x00\x00\xa5\x02\x00\x00\x87\x02\x00\x00\xa7\x02\x00\x00\xa9\x02\x00\x00\xa8\x02\x00\x00\xa9\x02\x00\x00\xaa\x02\x00\x00\xa8\x02\x00\x00\xa9\x02\x00\x00\x88\x02\x00\x00\x89\x02\x00\x00\xa9\x02\x00\x00\xa7\x02\x00\x00\x88\x02\x00\x00\xa9\x02\x00\x00\xab\x02\x00\x00\xaa\x02\x00\x00\xab\x02\x00\x00\xac\x02\x00\x00\xaa\x02\x00\x00\xab\x02\x00\x00\x89\x02\x00\x00\x8b\x02\x00\x00\xab\x02\x00\x00\xa9\x02\x00\x00\x89\x02\x00\x00\xab\x02\x00\x00\xad\x02\x00\x00\xac\x02\x00\x00\xad\x02\x00\x00\xae\x02\x00\x00\xac\x02\x00\x00\xad\x02\x00\x00\x8b\x02\x00\x00\x8d\x02\x00\x00\xad\x02\x00\x00\xab\x02\x00\x00\x8b\x02\x00\x00\xad\x02\x00\x00\xaf\x02\x00\x00\xae\x02\x00\x00\xaf\x02\x00\x00\xb0\x02\x00\x00\xae\x02\x00\x00\xaf\x02\x00\x00\x8d\x02\x00\x00\x8f\x02\x00\x00\xaf\x02\x00\x00\xad\x02\x00\x00\x8d\x02\x00\x00\xaf\x02\x00\x00\xb1\x02\x00\x00\xb0\x02\x00\x00\xb1\x02\x00\x00\xb2\x02\x00\x00\xb0\x02\x00\x00\xb1\x02\x00\x00\x8f\x02\x00\x00\x91\x02\x00\x00\xb1\x02\x00\x00\xaf\x02\x00\x00\x8f\x02\x00\x00\xb1\x02\x00\x00\xb3\x02\x00\x00\xb2\x02\x00\x00\xb3\x02\x00\x00\xb4\x02\x00\x00\xb2\x02\x00\x00\xb3\x02\x00\x00\x91\x02\x00\x00\x93\x02\x00\x00\xb3\x02\x00\x00\xb1\x02\x00\x00\x91\x02\x00\x00\xb3\x02\x00\x00\xb5\x02\x00\x00\xb4\x02\x00\x00\xb5\x02\x00\x00\xb6\x02\x00\x00\xb4\x02\x00\x00\xb5\x02\x00\x00\x93\x02\x00\x00\x95\x02\x00\x00\xb5\x02\x00\x00\xb3\x02\x00\x00\x93\x02\x00\x00\xb5\x02\x00\x00\xb7\x02\x00\x00\xb6\x02\x00\x00\xb7\x02\x00\x00\xb8\x02\x00\x00\xb6\x02\x00\x00\xb7\x02\x00\x00\x95\x02\x00\x00\x97\x02\x00\x00\xb7\x02\x00\x00\xb5\x02\x00\x00\x95\x02\x00\x00\xb7\x02\x00\x00\xb9\x02\x00\x00\xb8\x02\x00\x00\xb9\x02\x00\x00\xba\x02\x00\x00\xb8\x02\x00\x00\xb9\x02\x00\x00\x97\x02\x00\x00\x99\x02\x00\x00\xb9\x02\x00\x00\xb7\x02\x00\x00\x97\x02\x00\x00\xb9\x02\x00\x00\xbb\x02\x00\x00\xba\x02\x00\x00\xbb\x02\x00\x00\xbc\x02\x00\x00\xba\x02\x00\x00\xbd\x02\x00\x00\x9b\x02\x00\x00\x9d\x02\x00\x00\xbe\x02\x00\x00\xbd\x02\x00\x00\x9d\x02\x00\x00\xbe\x02\x00\x00\x9d\x02\x00\x00\xa0\x02\x00\x00\xbf\x02\x00\x00\xbe\x02\x00\x00\xa0\x02\x00\x00\xa1\x02\x00\x00\xc0\x02\x00\x00\xa0\x02\x00\x00\xa0\x02\x00\x00\xc0\x02\x00\x00\xc1\x02\x00\x00\xa0\x02\x00\x00\xc1\x02\x00\x00\xbf\x02\x00\x00\xc0\x02\x00\x00\xa1\x02\x00\x00\xa2\x02\x00\x00\xc0\x02\x00\x00\xc2\x02\x00\x00\xc1\x02\x00\x00\xc2\x02\x00\x00\xc3\x02\x00\x00\xc1\x02\x00\x00\xc2\x02\x00\x00\xa2\x02\x00\x00\xa3\x02\x00\x00\xc2\x02\x00\x00\xc0\x02\x00\x00\xa2\x02\x00\x00\xc2\x02\x00\x00\xc4\x02\x00\x00\xc3\x02\x00\x00\xc4\x02\x00\x00\xc5\x02\x00\x00\xc3\x02\x00\x00\xc4\x02\x00\x00\xa3\x02\x00\x00\xa4\x02\x00\x00\xc4\x02\x00\x00\xc2\x02\x00\x00\xa3\x02\x00\x00\xc4\x02\x00\x00\xc6\x02\x00\x00\xc5\x02\x00\x00\xc6\x02\x00\x00\xc7\x02\x00\x00\xc5\x02\x00\x00\xc6\x02\x00\x00\xa4\x02\x00\x00\xa6\x02\x00\x00\xc6\x02\x00\x00\xc4\x02\x00\x00\xa4\x02\x00\x00\xc6\x02\x00\x00\xc8\x02\x00\x00\xc7\x02\x00\x00\xc8\x02\x00\x00\xc9\x02\x00\x00\xc7\x02\x00\x00\xc8\x02\x00\x00\xa6\x02\x00\x00\xa8\x02\x00\x00\xc8\x02\x00\x00\xc6\x02\x00\x00\xa6\x02\x00\x00\xc8\x02\x00\x00\xca\x02\x00\x00\xc9\x02\x00\x00\xca\x02\x00\x00\xcb\x02\x00\x00\xc9\x02\x00\x00\xca\x02\x00\x00\xa8\x02\x00\x00\xaa\x02\x00\x00\xca\x02\x00\x00\xc8\x02\x00\x00\xa8\x02\x00\x00\xca\x02\x00\x00\xcc\x02\x00\x00\xcb\x02\x00\x00\xcc\x02\x00\x00\xcd\x02\x00\x00\xcb\x02\x00\x00\xcc\x02\x00\x00\xaa\x02\x00\x00\xac\x02\x00\x00\xcc\x02\x00\x00\xca\x02\x00\x00\xaa\x02\x00\x00\xcc\x02\x00\x00\xce\x02\x00\x00\xcd\x02\x00\x00\xce\x02\x00\x00\xcf\x02\x00\x00\xcd\x02\x00\x00\xce\x02\x00\x00\xac\x02\x00\x00\xae\x02\x00\x00\xce\x02\x00\x00\xcc\x02\x00\x00\xac\x02\x00\x00\xce\x02\x00\x00\xd0\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xd1\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xae\x02\x00\x00\xb0\x02\x00\x00\xd0\x02\x00\x00\xce\x02\x00\x00\xae\x02\x00\x00\xd0\x02\x00\x00\xd2\x02\x00\x00\xd1\x02\x00\x00\xd2\x02\x00\x00\xd3\x02\x00\x00\xd1\x02\x00\x00\xd2\x02\x00\x00\xb0\x02\x00\x00\xb2\x02\x00\x00\xd2\x02\x00\x00\xd0\x02\x00\x00\xb0\x02\x00\x00\xd2\x02\x00\x00\xd4\x02\x00\x00\xd3\x02\x00\x00\xd4\x02\x00\x00\xd5\x02\x00\x00\xd3\x02\x00\x00\xd4\x02\x00\x00\xb2\x02\x00\x00\xb4\x02\x00\x00\xd4\x02\x00\x00\xd2\x02\x00\x00\xb2\x02\x00\x00\xd4\x02\x00\x00\xd6\x02\x00\x00\xd5\x02\x00\x00\xd6\x02\x00\x00\xd7\x02\x00\x00\xd5\x02\x00\x00\xd6\x02\x00\x00\xb4\x02\x00\x00\xb6\x02\x00\x00\xd6\x02\x00\x00\xd4\x02\x00\x00\xb4\x02\x00\x00\xd6\x02\x00\x00\xd8\x02\x00\x00\xd7\x02\x00\x00\xd8\x02\x00\x00\xd9\x02\x00\x00\xd7\x02\x00\x00\xd8\x02\x00\x00\xb6\x02\x00\x00\xb8\x02\x00\x00\xd8\x02\x00\x00\xd6\x02\x00\x00\xb6\x02\x00\x00\xd8\x02\x00\x00\xda\x02\x00\x00\xd9\x02\x00\x00\xda\x02\x00\x00\xdb\x02\x00\x00\xd9\x02\x00\x00\xda\x02\x00\x00\xb8\x02\x00\x00\xba\x02\x00\x00\xda\x02\x00\x00\xd8\x02\x00\x00\xb8\x02\x00\x00\xda\x02\x00\x00\xdc\x02\x00\x00\xdb\x02\x00\x00\xdc\x02\x00\x00\xdd\x02\x00\x00\xdb\x02\x00\x00\xdc\x02\x00\x00\xba\x02\x00\x00\xbc\x02\x00\x00\xdc\x02\x00\x00\xda\x02\x00\x00\xba\x02\x00\x00\xdc\x02\x00\x00\xde\x02\x00\x00\xdd\x02\x00\x00\xde\x02\x00\x00\xdf\x02\x00\x00\xdd\x02\x00\x00\xde\x02\x00\x00\xbc\x02\x00\x00\xe0\x02\x00\x00\xde\x02\x00\x00\xdc\x02\x00\x00\xbc\x02\x00\x00\xde\x02\x00\x00\xe1\x02\x00\x00\xdf\x02\x00\x00\xe1\x02\x00\x00\xe2\x02\x00\x00\xdf\x02\x00\x00\xe1\x02\x00\x00\xe0\x02\x00\x00\xe3\x02\x00\x00\xe1\x02\x00\x00\xde\x02\x00\x00\xe0\x02\x00\x00\xe1\x02\x00\x00\xe4\x02\x00\x00\xe2\x02\x00\x00\xe4\x02\x00\x00\xe5\x02\x00\x00\xe2\x02\x00\x00\xe8\x02\x00\x00\xe6\x02\x00\x00\xe7\x02\x00\x00\xe6\x02\x00\x00\xe9\x02\x00\x00\xe7\x02\x00\x00\xe6\x02\x00\x00\xbd\x02\x00\x00\xbe\x02\x00\x00\xe6\x02\x00\x00\xe8\x02\x00\x00\xbd\x02\x00\x00\xe6\x02\x00\x00\xea\x02\x00\x00\xe9\x02\x00\x00\xea\x02\x00\x00\xeb\x02\x00\x00\xe9\x02\x00\x00\xea\x02\x00\x00\xbe\x02\x00\x00\xbf\x02\x00\x00\xea\x02\x00\x00\xe6\x02\x00\x00\xbe\x02\x00\x00\xea\x02\x00\x00\xec\x02\x00\x00\xeb\x02\x00\x00\xec\x02\x00\x00\xed\x02\x00\x00\xeb\x02\x00\x00\xec\x02\x00\x00\xbf\x02\x00\x00\xc1\x02\x00\x00\xec\x02\x00\x00\xea\x02\x00\x00\xbf\x02\x00\x00\xec\x02\x00\x00\xee\x02\x00\x00\xed\x02\x00\x00\xee\x02\x00\x00\xef\x02\x00\x00\xed\x02\x00\x00\xee\x02\x00\x00\xc1\x02\x00\x00\xc3\x02\x00\x00\xee\x02\x00\x00\xec\x02\x00\x00\xc1\x02\x00\x00\xee\x02\x00\x00\xf0\x02\x00\x00\xef\x02\x00\x00\xf0\x02\x00\x00\xf1\x02\x00\x00\xef\x02\x00\x00\xf0\x02\x00\x00\xc3\x02\x00\x00\xc5\x02\x00\x00\xf0\x02\x00\x00\xee\x02\x00\x00\xc3\x02\x00\x00\xf0\x02\x00\x00\xf2\x02\x00\x00\xf1\x02\x00\x00\xf2\x02\x00\x00\xf3\x02\x00\x00\xf1\x02\x00\x00\xf2\x02\x00\x00\xc5\x02\x00\x00\xc7\x02\x00\x00\xf2\x02\x00\x00\xf0\x02\x00\x00\xc5\x02\x00\x00\xf2\x02\x00\x00\xf4\x02\x00\x00\xf3\x02\x00\x00\xf4\x02\x00\x00\xf5\x02\x00\x00\xf3\x02\x00\x00\xf4\x02\x00\x00\xc7\x02\x00\x00\xc9\x02\x00\x00\xf4\x02\x00\x00\xf2\x02\x00\x00\xc7\x02\x00\x00\xf4\x02\x00\x00\xf6\x02\x00\x00\xf5\x02\x00\x00\xf6\x02\x00\x00\xf7\x02\x00\x00\xf5\x02\x00\x00\xf6\x02\x00\x00\xc9\x02\x00\x00\xcb\x02\x00\x00\xf6\x02\x00\x00\xf4\x02\x00\x00\xc9\x02\x00\x00\xf6\x02\x00\x00\xf8\x02\x00\x00\xf7\x02\x00\x00\xf8\x02\x00\x00\xf9\x02\x00\x00\xf7\x02\x00\x00\xf8\x02\x00\x00\xcb\x02\x00\x00\xcd\x02\x00\x00\xf8\x02\x00\x00\xf6\x02\x00\x00\xcb\x02\x00\x00\xf8\x02\x00\x00\xfa\x02\x00\x00\xf9\x02\x00\x00\xfa\x02\x00\x00\xfb\x02\x00\x00\xf9\x02\x00\x00\xfa\x02\x00\x00\xcd\x02\x00\x00\xcf\x02\x00\x00\xfa\x02\x00\x00\xf8\x02\x00\x00\xcd\x02\x00\x00\xfa\x02\x00\x00\xfc\x02\x00\x00\xfb\x02\x00\x00\xfc\x02\x00\x00\xfd\x02\x00\x00\xfb\x02\x00\x00\xfc\x02\x00\x00\xcf\x02\x00\x00\xd1\x02\x00\x00\xfc\x02\x00\x00\xfa\x02\x00\x00\xcf\x02\x00\x00\xfc\x02\x00\x00\xfe\x02\x00\x00\xfd\x02\x00\x00\xfe\x02\x00\x00\xff\x02\x00\x00\xfd\x02\x00\x00\xfe\x02\x00\x00\xd1\x02\x00\x00\xd3\x02\x00\x00\xfe\x02\x00\x00\xfc\x02\x00\x00\xd1\x02\x00\x00\xfe\x02\x00\x00\x00\x03\x00\x00\xff\x02\x00\x00\x00\x03\x00\x00\x01\x03\x00\x00\xff\x02\x00\x00\x00\x03\x00\x00\xd3\x02\x00\x00\xd5\x02\x00\x00\x00\x03\x00\x00\xfe\x02\x00\x00\xd3\x02\x00\x00\x00\x03\x00\x00\x02\x03\x00\x00\x01\x03\x00\x00\x02\x03\x00\x00\x03\x03\x00\x00\x01\x03\x00\x00\x02\x03\x00\x00\xd5\x02\x00\x00\xd7\x02\x00\x00\x02\x03\x00\x00\x00\x03\x00\x00\xd5\x02\x00\x00\x02\x03\x00\x00\x04\x03\x00\x00\x03\x03\x00\x00\x04\x03\x00\x00\x05\x03\x00\x00\x03\x03\x00\x00\x04\x03\x00\x00\xd7\x02\x00\x00\xd9\x02\x00\x00\x04\x03\x00\x00\x02\x03\x00\x00\xd7\x02\x00\x00\x04\x03\x00\x00\x06\x03\x00\x00\x05\x03\x00\x00\x06\x03\x00\x00\x07\x03\x00\x00\x05\x03\x00\x00\x06\x03\x00\x00\xd9\x02\x00\x00\xdb\x02\x00\x00\x06\x03\x00\x00\x04\x03\x00\x00\xd9\x02\x00\x00\x06\x03\x00\x00\x08\x03\x00\x00\x07\x03\x00\x00\x08\x03\x00\x00\t\x03\x00\x00\x07\x03\x00\x00\x08\x03\x00\x00\xdb\x02\x00\x00\xdd\x02\x00\x00\x08\x03\x00\x00\x06\x03\x00\x00\xdb\x02\x00\x00\x08\x03\x00\x00\n\x03\x00\x00\t\x03\x00\x00\n\x03\x00\x00\x0b\x03\x00\x00\t\x03\x00\x00\n\x03\x00\x00\xdd\x02\x00\x00\xdf\x02\x00\x00\n\x03\x00\x00\x08\x03\x00\x00\xdd\x02\x00\x00\n\x03\x00\x00\x0c\x03\x00\x00\x0b\x03\x00\x00\x0c\x03\x00\x00\r\x03\x00\x00\x0b\x03\x00\x00\x0c\x03\x00\x00\xdf\x02\x00\x00\xe2\x02\x00\x00\x0c\x03\x00\x00\n\x03\x00\x00\xdf\x02\x00\x00\x0c\x03\x00\x00\x0e\x03\x00\x00\r\x03\x00\x00\x0e\x03\x00\x00\x0f\x03\x00\x00\r\x03\x00\x00\x0e\x03\x00\x00\xe2\x02\x00\x00\xe5\x02\x00\x00\x0e\x03\x00\x00\x0c\x03\x00\x00\xe2\x02\x00\x00\x0e\x03\x00\x00\x10\x03\x00\x00\x0f\x03\x00\x00\x10\x03\x00\x00\x11\x03\x00\x00\x0f\x03\x00\x00\x10\x03\x00\x00\xe5\x02\x00\x00\x12\x03\x00\x00\x10\x03\x00\x00\x0e\x03\x00\x00\xe5\x02\x00\x00\x10\x03\x00\x00\x13\x03\x00\x00\x11\x03\x00\x00\x13\x03\x00\x00\x14\x03\x00\x00\x11\x03\x00\x00\x13\x03\x00\x00\x12\x03\x00\x00\x15\x03\x00\x00\x13\x03\x00\x00\x10\x03\x00\x00\x12\x03\x00\x00\x13\x03\x00\x00\x16\x03\x00\x00\x14\x03\x00\x00\x16\x03\x00\x00\x17\x03\x00\x00\x14\x03\x00\x00\x16\x03\x00\x00\x18\x03\x00\x00\x17\x03\x00\x00\x18\x03\x00\x00\x19\x03\x00\x00\x17\x03\x00\x00\x1c\x03\x00\x00\x1a\x03\x00\x00\x1b\x03\x00\x00\x1a\x03\x00\x00\x1d\x03\x00\x00\x1b\x03\x00\x00\x1a\x03\x00\x00\xe7\x02\x00\x00\xe9\x02\x00\x00\x1a\x03\x00\x00\x1c\x03\x00\x00\xe7\x02\x00\x00\x1a\x03\x00\x00\x1e\x03\x00\x00\x1d\x03\x00\x00\x1e\x03\x00\x00\x1f\x03\x00\x00\x1d\x03\x00\x00\x1e\x03\x00\x00\xe9\x02\x00\x00\xeb\x02\x00\x00\x1e\x03\x00\x00\x1a\x03\x00\x00\xe9\x02\x00\x00\x1e\x03\x00\x00 \x03\x00\x00\x1f\x03\x00\x00 \x03\x00\x00!\x03\x00\x00\x1f\x03\x00\x00 \x03\x00\x00\xeb\x02\x00\x00\xed\x02\x00\x00 \x03\x00\x00\x1e\x03\x00\x00\xeb\x02\x00\x00 \x03\x00\x00"\x03\x00\x00!\x03\x00\x00"\x03\x00\x00#\x03\x00\x00!\x03\x00\x00"\x03\x00\x00\xed\x02\x00\x00\xef\x02\x00\x00"\x03\x00\x00 \x03\x00\x00\xed\x02\x00\x00"\x03\x00\x00$\x03\x00\x00#\x03\x00\x00$\x03\x00\x00%\x03\x00\x00#\x03\x00\x00$\x03\x00\x00\xef\x02\x00\x00\xf1\x02\x00\x00$\x03\x00\x00"\x03\x00\x00\xef\x02\x00\x00%\x03\x00\x00$\x03\x00\x00&\x03\x00\x00\xf1\x02\x00\x00&\x03\x00\x00$\x03\x00\x00\'\x03\x00\x00&\x03\x00\x00\xf1\x02\x00\x00\xf3\x02\x00\x00\'\x03\x00\x00\xf1\x02\x00\x00\'\x03\x00\x00\xf3\x02\x00\x00\xf5\x02\x00\x00(\x03\x00\x00\'\x03\x00\x00\xf5\x02\x00\x00(\x03\x00\x00\xf5\x02\x00\x00\xf7\x02\x00\x00)\x03\x00\x00(\x03\x00\x00\xf7\x02\x00\x00)\x03\x00\x00\xf7\x02\x00\x00\xf9\x02\x00\x00*\x03\x00\x00)\x03\x00\x00\xf9\x02\x00\x00*\x03\x00\x00\xf9\x02\x00\x00\xfb\x02\x00\x00+\x03\x00\x00*\x03\x00\x00\xfb\x02\x00\x00+\x03\x00\x00\xfb\x02\x00\x00\xfd\x02\x00\x00,\x03\x00\x00+\x03\x00\x00\xfd\x02\x00\x00,\x03\x00\x00\xfd\x02\x00\x00\xff\x02\x00\x00-\x03\x00\x00,\x03\x00\x00\xff\x02\x00\x00-\x03\x00\x00\xff\x02\x00\x00\x01\x03\x00\x00.\x03\x00\x00-\x03\x00\x00\x01\x03\x00\x00.\x03\x00\x00\x01\x03\x00\x00\x03\x03\x00\x00/\x03\x00\x00.\x03\x00\x00\x03\x03\x00\x00/\x03\x00\x00\x03\x03\x00\x00\x05\x03\x00\x000\x03\x00\x00/\x03\x00\x00\x05\x03\x00\x000\x03\x00\x00\x05\x03\x00\x00\x07\x03\x00\x001\x03\x00\x000\x03\x00\x00\x07\x03\x00\x001\x03\x00\x00\x07\x03\x00\x00\t\x03\x00\x002\x03\x00\x001\x03\x00\x00\t\x03\x00\x002\x03\x00\x00\t\x03\x00\x00\x0b\x03\x00\x003\x03\x00\x002\x03\x00\x00\x0b\x03\x00\x003\x03\x00\x00\x0b\x03\x00\x00\r\x03\x00\x004\x03\x00\x003\x03\x00\x00\r\x03\x00\x004\x03\x00\x00\r\x03\x00\x00\x0f\x03\x00\x005\x03\x00\x004\x03\x00\x00\x0f\x03\x00\x005\x03\x00\x00\x0f\x03\x00\x00\x11\x03\x00\x006\x03\x00\x005\x03\x00\x00\x11\x03\x00\x006\x03\x00\x00\x11\x03\x00\x00\x14\x03\x00\x007\x03\x00\x006\x03\x00\x00\x14\x03\x00\x007\x03\x00\x00\x14\x03\x00\x00\x17\x03\x00\x008\x03\x00\x007\x03\x00\x00\x17\x03\x00\x008\x03\x00\x00\x17\x03\x00\x00\x19\x03\x00\x009\x03\x00\x008\x03\x00\x00\x19\x03\x00\x00<\x03\x00\x00:\x03\x00\x00;\x03\x00\x00\x1b\x03\x00\x00;\x03\x00\x00:\x03\x00\x00=\x03\x00\x00;\x03\x00\x00\x1b\x03\x00\x00\x1d\x03\x00\x00=\x03\x00\x00\x1b\x03\x00\x00=\x03\x00\x00\x1d\x03\x00\x00\x1f\x03\x00\x00>\x03\x00\x00=\x03\x00\x00\x1f\x03\x00\x00>\x03\x00\x00\x1f\x03\x00\x00!\x03\x00\x00?\x03\x00\x00>\x03\x00\x00!\x03\x00\x00?\x03\x00\x00!\x03\x00\x00#\x03\x00\x00@\x03\x00\x00?\x03\x00\x00#\x03\x00\x00@\x03\x00\x00#\x03\x00\x00%\x03\x00\x00A\x03\x00\x00@\x03\x00\x00%\x03\x00\x00&\x03\x00\x00B\x03\x00\x00%\x03\x00\x00%\x03\x00\x00B\x03\x00\x00C\x03\x00\x00%\x03\x00\x00C\x03\x00\x00A\x03\x00\x00B\x03\x00\x00&\x03\x00\x00\'\x03\x00\x00B\x03\x00\x00D\x03\x00\x00C\x03\x00\x00D\x03\x00\x00E\x03\x00\x00C\x03\x00\x00D\x03\x00\x00\'\x03\x00\x00(\x03\x00\x00D\x03\x00\x00B\x03\x00\x00\'\x03\x00\x00D\x03\x00\x00F\x03\x00\x00E\x03\x00\x00F\x03\x00\x00G\x03\x00\x00E\x03\x00\x00F\x03\x00\x00(\x03\x00\x00)\x03\x00\x00F\x03\x00\x00D\x03\x00\x00(\x03\x00\x00F\x03\x00\x00H\x03\x00\x00G\x03\x00\x00H\x03\x00\x00I\x03\x00\x00G\x03\x00\x00H\x03\x00\x00)\x03\x00\x00*\x03\x00\x00H\x03\x00\x00F\x03\x00\x00)\x03\x00\x00H\x03\x00\x00J\x03\x00\x00I\x03\x00\x00J\x03\x00\x00K\x03\x00\x00I\x03\x00\x00J\x03\x00\x00*\x03\x00\x00+\x03\x00\x00J\x03\x00\x00H\x03\x00\x00*\x03\x00\x00J\x03\x00\x00L\x03\x00\x00K\x03\x00\x00L\x03\x00\x00M\x03\x00\x00K\x03\x00\x00L\x03\x00\x00+\x03\x00\x00,\x03\x00\x00L\x03\x00\x00J\x03\x00\x00+\x03\x00\x00L\x03\x00\x00N\x03\x00\x00M\x03\x00\x00N\x03\x00\x00O\x03\x00\x00M\x03\x00\x00N\x03\x00\x00,\x03\x00\x00-\x03\x00\x00N\x03\x00\x00L\x03\x00\x00,\x03\x00\x00N\x03\x00\x00P\x03\x00\x00O\x03\x00\x00P\x03\x00\x00Q\x03\x00\x00O\x03\x00\x00P\x03\x00\x00-\x03\x00\x00.\x03\x00\x00P\x03\x00\x00N\x03\x00\x00-\x03\x00\x00P\x03\x00\x00R\x03\x00\x00Q\x03\x00\x00R\x03\x00\x00S\x03\x00\x00Q\x03\x00\x00R\x03\x00\x00.\x03\x00\x00/\x03\x00\x00R\x03\x00\x00P\x03\x00\x00.\x03\x00\x00R\x03\x00\x00T\x03\x00\x00S\x03\x00\x00T\x03\x00\x00U\x03\x00\x00S\x03\x00\x00T\x03\x00\x00/\x03\x00\x000\x03\x00\x00T\x03\x00\x00R\x03\x00\x00/\x03\x00\x00T\x03\x00\x00V\x03\x00\x00U\x03\x00\x00V\x03\x00\x00W\x03\x00\x00U\x03\x00\x00V\x03\x00\x000\x03\x00\x001\x03\x00\x00V\x03\x00\x00T\x03\x00\x000\x03\x00\x00V\x03\x00\x00X\x03\x00\x00W\x03\x00\x00X\x03\x00\x00Y\x03\x00\x00W\x03\x00\x00X\x03\x00\x001\x03\x00\x002\x03\x00\x00X\x03\x00\x00V\x03\x00\x001\x03\x00\x00X\x03\x00\x00Z\x03\x00\x00Y\x03\x00\x00Z\x03\x00\x00[\x03\x00\x00Y\x03\x00\x00Z\x03\x00\x002\x03\x00\x003\x03\x00\x00Z\x03\x00\x00X\x03\x00\x002\x03\x00\x00Z\x03\x00\x00\\\x03\x00\x00[\x03\x00\x00\\\x03\x00\x00]\x03\x00\x00[\x03\x00\x00\\\x03\x00\x003\x03\x00\x004\x03\x00\x00\\\x03\x00\x00Z\x03\x00\x003\x03\x00\x00\\\x03\x00\x00^\x03\x00\x00]\x03\x00\x00^\x03\x00\x00_\x03\x00\x00]\x03\x00\x00^\x03\x00\x004\x03\x00\x005\x03\x00\x00^\x03\x00\x00\\\x03\x00\x004\x03\x00\x00^\x03\x00\x00`\x03\x00\x00_\x03\x00\x00`\x03\x00\x00a\x03\x00\x00_\x03\x00\x00`\x03\x00\x005\x03\x00\x006\x03\x00\x00`\x03\x00\x00^\x03\x00\x005\x03\x00\x00`\x03\x00\x00b\x03\x00\x00a\x03\x00\x00b\x03\x00\x00c\x03\x00\x00a\x03\x00\x00b\x03\x00\x006\x03\x00\x007\x03\x00\x00b\x03\x00\x00`\x03\x00\x006\x03\x00\x00b\x03\x00\x00d\x03\x00\x00c\x03\x00\x00d\x03\x00\x00e\x03\x00\x00c\x03\x00\x00d\x03\x00\x007\x03\x00\x008\x03\x00\x00d\x03\x00\x00b\x03\x00\x007\x03\x00\x00d\x03\x00\x00f\x03\x00\x00e\x03\x00\x00f\x03\x00\x00g\x03\x00\x00e\x03\x00\x00f\x03\x00\x008\x03\x00\x009\x03\x00\x00f\x03\x00\x00d\x03\x00\x008\x03\x00\x00j\x03\x00\x00h\x03\x00\x00i\x03\x00\x00;\x03\x00\x00k\x03\x00\x00<\x03\x00\x00<\x03\x00\x00k\x03\x00\x00l\x03\x00\x00<\x03\x00\x00l\x03\x00\x00m\x03\x00\x00k\x03\x00\x00;\x03\x00\x00=\x03\x00\x00k\x03\x00\x00n\x03\x00\x00l\x03\x00\x00n\x03\x00\x00o\x03\x00\x00l\x03\x00\x00n\x03\x00\x00=\x03\x00\x00>\x03\x00\x00n\x03\x00\x00k\x03\x00\x00=\x03\x00\x00n\x03\x00\x00p\x03\x00\x00o\x03\x00\x00p\x03\x00\x00q\x03\x00\x00o\x03\x00\x00p\x03\x00\x00>\x03\x00\x00?\x03\x00\x00p\x03\x00\x00n\x03\x00\x00>\x03\x00\x00p\x03\x00\x00r\x03\x00\x00q\x03\x00\x00r\x03\x00\x00s\x03\x00\x00q\x03\x00\x00r\x03\x00\x00?\x03\x00\x00@\x03\x00\x00r\x03\x00\x00p\x03\x00\x00?\x03\x00\x00r\x03\x00\x00t\x03\x00\x00s\x03\x00\x00t\x03\x00\x00u\x03\x00\x00s\x03\x00\x00t\x03\x00\x00@\x03\x00\x00A\x03\x00\x00t\x03\x00\x00r\x03\x00\x00@\x03\x00\x00t\x03\x00\x00v\x03\x00\x00u\x03\x00\x00v\x03\x00\x00w\x03\x00\x00u\x03\x00\x00v\x03\x00\x00A\x03\x00\x00C\x03\x00\x00v\x03\x00\x00t\x03\x00\x00A\x03\x00\x00v\x03\x00\x00x\x03\x00\x00w\x03\x00\x00x\x03\x00\x00y\x03\x00\x00w\x03\x00\x00x\x03\x00\x00C\x03\x00\x00E\x03\x00\x00x\x03\x00\x00v\x03\x00\x00C\x03\x00\x00x\x03\x00\x00z\x03\x00\x00y\x03\x00\x00z\x03\x00\x00{\x03\x00\x00y\x03\x00\x00z\x03\x00\x00E\x03\x00\x00G\x03\x00\x00z\x03\x00\x00x\x03\x00\x00E\x03\x00\x00z\x03\x00\x00|\x03\x00\x00{\x03\x00\x00|\x03\x00\x00}\x03\x00\x00{\x03\x00\x00|\x03\x00\x00G\x03\x00\x00I\x03\x00\x00|\x03\x00\x00z\x03\x00\x00G\x03\x00\x00|\x03\x00\x00~\x03\x00\x00}\x03\x00\x00~\x03\x00\x00\x7f\x03\x00\x00}\x03\x00\x00~\x03\x00\x00I\x03\x00\x00K\x03\x00\x00~\x03\x00\x00|\x03\x00\x00I\x03\x00\x00~\x03\x00\x00\x80\x03\x00\x00\x7f\x03\x00\x00\x80\x03\x00\x00\x81\x03\x00\x00\x7f\x03\x00\x00\x80\x03\x00\x00K\x03\x00\x00M\x03\x00\x00\x80\x03\x00\x00~\x03\x00\x00K\x03\x00\x00\x80\x03\x00\x00\x82\x03\x00\x00\x81\x03\x00\x00\x82\x03\x00\x00\x83\x03\x00\x00\x81\x03\x00\x00\x82\x03\x00\x00M\x03\x00\x00O\x03\x00\x00\x82\x03\x00\x00\x80\x03\x00\x00M\x03\x00\x00\x82\x03\x00\x00\x84\x03\x00\x00\x83\x03\x00\x00\x84\x03\x00\x00\x85\x03\x00\x00\x83\x03\x00\x00\x84\x03\x00\x00O\x03\x00\x00Q\x03\x00\x00\x84\x03\x00\x00\x82\x03\x00\x00O\x03\x00\x00\x84\x03\x00\x00\x86\x03\x00\x00\x85\x03\x00\x00\x86\x03\x00\x00\x87\x03\x00\x00\x85\x03\x00\x00\x86\x03\x00\x00Q\x03\x00\x00S\x03\x00\x00\x86\x03\x00\x00\x84\x03\x00\x00Q\x03\x00\x00\x86\x03\x00\x00\x88\x03\x00\x00\x87\x03\x00\x00\x88\x03\x00\x00\x89\x03\x00\x00\x87\x03\x00\x00\x88\x03\x00\x00S\x03\x00\x00U\x03\x00\x00\x88\x03\x00\x00\x86\x03\x00\x00S\x03\x00\x00\x88\x03\x00\x00\x8a\x03\x00\x00\x89\x03\x00\x00\x8a\x03\x00\x00\x8b\x03\x00\x00\x89\x03\x00\x00\x8a\x03\x00\x00U\x03\x00\x00W\x03\x00\x00\x8a\x03\x00\x00\x88\x03\x00\x00U\x03\x00\x00\x8a\x03\x00\x00\x8c\x03\x00\x00\x8b\x03\x00\x00\x8c\x03\x00\x00\x8d\x03\x00\x00\x8b\x03\x00\x00\x8c\x03\x00\x00W\x03\x00\x00Y\x03\x00\x00\x8c\x03\x00\x00\x8a\x03\x00\x00W\x03\x00\x00\x8c\x03\x00\x00\x8e\x03\x00\x00\x8d\x03\x00\x00\x8e\x03\x00\x00\x8f\x03\x00\x00\x8d\x03\x00\x00\x8e\x03\x00\x00Y\x03\x00\x00[\x03\x00\x00\x8e\x03\x00\x00\x8c\x03\x00\x00Y\x03\x00\x00\x8e\x03\x00\x00\x90\x03\x00\x00\x8f\x03\x00\x00\x90\x03\x00\x00\x91\x03\x00\x00\x8f\x03\x00\x00\x90\x03\x00\x00[\x03\x00\x00]\x03\x00\x00\x90\x03\x00\x00\x8e\x03\x00\x00[\x03\x00\x00\x90\x03\x00\x00\x92\x03\x00\x00\x91\x03\x00\x00\x92\x03\x00\x00\x93\x03\x00\x00\x91\x03\x00\x00\x92\x03\x00\x00]\x03\x00\x00_\x03\x00\x00\x92\x03\x00\x00\x90\x03\x00\x00]\x03\x00\x00\x92\x03\x00\x00\x94\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00\x95\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00_\x03\x00\x00a\x03\x00\x00\x94\x03\x00\x00\x92\x03\x00\x00_\x03\x00\x00\x94\x03\x00\x00\x96\x03\x00\x00\x95\x03\x00\x00\x96\x03\x00\x00\x97\x03\x00\x00\x95\x03\x00\x00\x96\x03\x00\x00a\x03\x00\x00c\x03\x00\x00\x96\x03\x00\x00\x94\x03\x00\x00a\x03\x00\x00\x96\x03\x00\x00\x98\x03\x00\x00\x97\x03\x00\x00\x98\x03\x00\x00\x99\x03\x00\x00\x97\x03\x00\x00\x98\x03\x00\x00c\x03\x00\x00e\x03\x00\x00\x98\x03\x00\x00\x96\x03\x00\x00c\x03\x00\x00\x98\x03\x00\x00\x9a\x03\x00\x00\x99\x03\x00\x00\x9a\x03\x00\x00\x9b\x03\x00\x00\x99\x03\x00\x00\x9a\x03\x00\x00e\x03\x00\x00g\x03\x00\x00\x9a\x03\x00\x00\x98\x03\x00\x00e\x03\x00\x00\x9a\x03\x00\x00\x9c\x03\x00\x00\x9b\x03\x00\x00\x9c\x03\x00\x00\x9d\x03\x00\x00\x9b\x03\x00\x00\x9c\x03\x00\x00g\x03\x00\x00\x9e\x03\x00\x00\x9c\x03\x00\x00\x9a\x03\x00\x00g\x03\x00\x00\x9c\x03\x00\x00\x9f\x03\x00\x00\x9d\x03\x00\x00\x9f\x03\x00\x00\xa0\x03\x00\x00\x9d\x03\x00\x00\xa3\x03\x00\x00\xa1\x03\x00\x00\xa2\x03\x00\x00\xa1\x03\x00\x00\xa4\x03\x00\x00\xa2\x03\x00\x00\xa7\x03\x00\x00\xa5\x03\x00\x00\xa6\x03\x00\x00\xa5\x03\x00\x00\xa8\x03\x00\x00\xa6\x03\x00\x00\xa5\x03\x00\x00\xa9\x03\x00\x00\xa8\x03\x00\x00\xa9\x03\x00\x00\xaa\x03\x00\x00\xa8\x03\x00\x00\xa9\x03\x00\x00j\x03\x00\x00\xaa\x03\x00\x00\xaa\x03\x00\x00j\x03\x00\x00i\x03\x00\x00\xaa\x03\x00\x00i\x03\x00\x00\xab\x03\x00\x00\xae\x03\x00\x00\xac\x03\x00\x00\xad\x03\x00\x00\xac\x03\x00\x00\xaf\x03\x00\x00\xad\x03\x00\x00\xac\x03\x00\x00m\x03\x00\x00l\x03\x00\x00\xac\x03\x00\x00\xae\x03\x00\x00m\x03\x00\x00\xac\x03\x00\x00\xb0\x03\x00\x00\xaf\x03\x00\x00\xb0\x03\x00\x00\xb1\x03\x00\x00\xaf\x03\x00\x00\xb0\x03\x00\x00l\x03\x00\x00o\x03\x00\x00\xb0\x03\x00\x00\xac\x03\x00\x00l\x03\x00\x00\xb0\x03\x00\x00\xb2\x03\x00\x00\xb1\x03\x00\x00\xb2\x03\x00\x00\xb3\x03\x00\x00\xb1\x03\x00\x00\xb2\x03\x00\x00o\x03\x00\x00q\x03\x00\x00\xb2\x03\x00\x00\xb0\x03\x00\x00o\x03\x00\x00\xb2\x03\x00\x00\xb4\x03\x00\x00\xb3\x03\x00\x00\xb4\x03\x00\x00\xb5\x03\x00\x00\xb3\x03\x00\x00\xb4\x03\x00\x00q\x03\x00\x00s\x03\x00\x00\xb4\x03\x00\x00\xb2\x03\x00\x00q\x03\x00\x00\xb4\x03\x00\x00\xb6\x03\x00\x00\xb5\x03\x00\x00\xb6\x03\x00\x00\xb7\x03\x00\x00\xb5\x03\x00\x00\xb6\x03\x00\x00s\x03\x00\x00u\x03\x00\x00\xb6\x03\x00\x00\xb4\x03\x00\x00s\x03\x00\x00\xb6\x03\x00\x00\xb8\x03\x00\x00\xb7\x03\x00\x00\xb8\x03\x00\x00\xb9\x03\x00\x00\xb7\x03\x00\x00\xb8\x03\x00\x00u\x03\x00\x00w\x03\x00\x00\xb8\x03\x00\x00\xb6\x03\x00\x00u\x03\x00\x00\xb8\x03\x00\x00\xba\x03\x00\x00\xb9\x03\x00\x00\xba\x03\x00\x00\xbb\x03\x00\x00\xb9\x03\x00\x00\xba\x03\x00\x00w\x03\x00\x00y\x03\x00\x00\xba\x03\x00\x00\xb8\x03\x00\x00w\x03\x00\x00\xba\x03\x00\x00\xbc\x03\x00\x00\xbb\x03\x00\x00\xbc\x03\x00\x00\xbd\x03\x00\x00\xbb\x03\x00\x00\xbc\x03\x00\x00y\x03\x00\x00{\x03\x00\x00\xbc\x03\x00\x00\xba\x03\x00\x00y\x03\x00\x00\xbc\x03\x00\x00\xbe\x03\x00\x00\xbd\x03\x00\x00\xbe\x03\x00\x00\xbf\x03\x00\x00\xbd\x03\x00\x00\xbe\x03\x00\x00{\x03\x00\x00}\x03\x00\x00\xbe\x03\x00\x00\xbc\x03\x00\x00{\x03\x00\x00\xbe\x03\x00\x00\xc0\x03\x00\x00\xbf\x03\x00\x00\xc0\x03\x00\x00\xc1\x03\x00\x00\xbf\x03\x00\x00\xc0\x03\x00\x00}\x03\x00\x00\x7f\x03\x00\x00\xc0\x03\x00\x00\xbe\x03\x00\x00}\x03\x00\x00\xc0\x03\x00\x00\xc2\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\xc3\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\x7f\x03\x00\x00\x81\x03\x00\x00\xc2\x03\x00\x00\xc0\x03\x00\x00\x7f\x03\x00\x00\xc2\x03\x00\x00\xc4\x03\x00\x00\xc3\x03\x00\x00\xc4\x03\x00\x00\xc5\x03\x00\x00\xc3\x03\x00\x00\xc4\x03\x00\x00\x81\x03\x00\x00\x83\x03\x00\x00\xc4\x03\x00\x00\xc2\x03\x00\x00\x81\x03\x00\x00\xc4\x03\x00\x00\xc6\x03\x00\x00\xc5\x03\x00\x00\xc6\x03\x00\x00\xc7\x03\x00\x00\xc5\x03\x00\x00\xc6\x03\x00\x00\x83\x03\x00\x00\x85\x03\x00\x00\xc6\x03\x00\x00\xc4\x03\x00\x00\x83\x03\x00\x00\xc6\x03\x00\x00\xc8\x03\x00\x00\xc7\x03\x00\x00\xc8\x03\x00\x00\xc9\x03\x00\x00\xc7\x03\x00\x00\xc8\x03\x00\x00\x85\x03\x00\x00\x87\x03\x00\x00\xc8\x03\x00\x00\xc6\x03\x00\x00\x85\x03\x00\x00\xc8\x03\x00\x00\xca\x03\x00\x00\xc9\x03\x00\x00\xca\x03\x00\x00\xcb\x03\x00\x00\xc9\x03\x00\x00\xca\x03\x00\x00\x87\x03\x00\x00\x89\x03\x00\x00\xca\x03\x00\x00\xc8\x03\x00\x00\x87\x03\x00\x00\xca\x03\x00\x00\xcc\x03\x00\x00\xcb\x03\x00\x00\xcc\x03\x00\x00\xcd\x03\x00\x00\xcb\x03\x00\x00\xcc\x03\x00\x00\x89\x03\x00\x00\x8b\x03\x00\x00\xcc\x03\x00\x00\xca\x03\x00\x00\x89\x03\x00\x00\xcc\x03\x00\x00\xce\x03\x00\x00\xcd\x03\x00\x00\xce\x03\x00\x00\xcf\x03\x00\x00\xcd\x03\x00\x00\xce\x03\x00\x00\x8b\x03\x00\x00\x8d\x03\x00\x00\xce\x03\x00\x00\xcc\x03\x00\x00\x8b\x03\x00\x00\xce\x03\x00\x00\xd0\x03\x00\x00\xcf\x03\x00\x00\xd0\x03\x00\x00\xd1\x03\x00\x00\xcf\x03\x00\x00\xd0\x03\x00\x00\x8d\x03\x00\x00\x8f\x03\x00\x00\xd0\x03\x00\x00\xce\x03\x00\x00\x8d\x03\x00\x00\xd0\x03\x00\x00\xd2\x03\x00\x00\xd1\x03\x00\x00\xd2\x03\x00\x00\xd3\x03\x00\x00\xd1\x03\x00\x00\xd2\x03\x00\x00\x8f\x03\x00\x00\x91\x03\x00\x00\xd2\x03\x00\x00\xd0\x03\x00\x00\x8f\x03\x00\x00\xd2\x03\x00\x00\xd4\x03\x00\x00\xd3\x03\x00\x00\xd4\x03\x00\x00\xd5\x03\x00\x00\xd3\x03\x00\x00\xd4\x03\x00\x00\x91\x03\x00\x00\x93\x03\x00\x00\xd4\x03\x00\x00\xd2\x03\x00\x00\x91\x03\x00\x00\xd4\x03\x00\x00\xd6\x03\x00\x00\xd5\x03\x00\x00\xd6\x03\x00\x00\xd7\x03\x00\x00\xd5\x03\x00\x00\xd6\x03\x00\x00\x93\x03\x00\x00\x95\x03\x00\x00\xd6\x03\x00\x00\xd4\x03\x00\x00\x93\x03\x00\x00\xd6\x03\x00\x00\xd8\x03\x00\x00\xd7\x03\x00\x00\xd8\x03\x00\x00\xd9\x03\x00\x00\xd7\x03\x00\x00\xd8\x03\x00\x00\x95\x03\x00\x00\x97\x03\x00\x00\xd8\x03\x00\x00\xd6\x03\x00\x00\x95\x03\x00\x00\xd8\x03\x00\x00\xda\x03\x00\x00\xd9\x03\x00\x00\xda\x03\x00\x00\xdb\x03\x00\x00\xd9\x03\x00\x00\xda\x03\x00\x00\x97\x03\x00\x00\x99\x03\x00\x00\xda\x03\x00\x00\xd8\x03\x00\x00\x97\x03\x00\x00\xda\x03\x00\x00\xdc\x03\x00\x00\xdb\x03\x00\x00\xdc\x03\x00\x00\xdd\x03\x00\x00\xdb\x03\x00\x00\xdc\x03\x00\x00\x99\x03\x00\x00\x9b\x03\x00\x00\xdc\x03\x00\x00\xda\x03\x00\x00\x99\x03\x00\x00\xdc\x03\x00\x00\xde\x03\x00\x00\xdd\x03\x00\x00\xde\x03\x00\x00\xdf\x03\x00\x00\xdd\x03\x00\x00\xde\x03\x00\x00\x9b\x03\x00\x00\x9d\x03\x00\x00\xde\x03\x00\x00\xdc\x03\x00\x00\x9b\x03\x00\x00\xde\x03\x00\x00\xe0\x03\x00\x00\xdf\x03\x00\x00\xe0\x03\x00\x00\xe1\x03\x00\x00\xdf\x03\x00\x00\xe0\x03\x00\x00\x9d\x03\x00\x00\xa0\x03\x00\x00\xe0\x03\x00\x00\xde\x03\x00\x00\x9d\x03\x00\x00\xe0\x03\x00\x00\xe2\x03\x00\x00\xe1\x03\x00\x00\xe2\x03\x00\x00\xe3\x03\x00\x00\xe1\x03\x00\x00\xe2\x03\x00\x00\xa0\x03\x00\x00\xe4\x03\x00\x00\xe2\x03\x00\x00\xe0\x03\x00\x00\xa0\x03\x00\x00\xe2\x03\x00\x00\xe5\x03\x00\x00\xe3\x03\x00\x00\xe5\x03\x00\x00\xe6\x03\x00\x00\xe3\x03\x00\x00\xe5\x03\x00\x00\xe4\x03\x00\x00\xa2\x03\x00\x00\xe5\x03\x00\x00\xe2\x03\x00\x00\xe4\x03\x00\x00\xe5\x03\x00\x00\xe7\x03\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\xe8\x03\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\xa2\x03\x00\x00\xa4\x03\x00\x00\xe7\x03\x00\x00\xe5\x03\x00\x00\xa2\x03\x00\x00\xe7\x03\x00\x00\xe9\x03\x00\x00\xe8\x03\x00\x00\xe9\x03\x00\x00\xea\x03\x00\x00\xe8\x03\x00\x00\xe9\x03\x00\x00\xa4\x03\x00\x00\xeb\x03\x00\x00\xe9\x03\x00\x00\xe7\x03\x00\x00\xa4\x03\x00\x00\xe9\x03\x00\x00\xec\x03\x00\x00\xea\x03\x00\x00\xec\x03\x00\x00\xed\x03\x00\x00\xea\x03\x00\x00\xec\x03\x00\x00\xee\x03\x00\x00\xed\x03\x00\x00\xee\x03\x00\x00\xef\x03\x00\x00\xed\x03\x00\x00\xee\x03\x00\x00\xf0\x03\x00\x00\xef\x03\x00\x00\xf0\x03\x00\x00\xf1\x03\x00\x00\xef\x03\x00\x00\xf0\x03\x00\x00\xf2\x03\x00\x00\xf3\x03\x00\x00\xf0\x03\x00\x00\xee\x03\x00\x00\xf2\x03\x00\x00\xf0\x03\x00\x00\xf4\x03\x00\x00\xf1\x03\x00\x00\xf4\x03\x00\x00\xf5\x03\x00\x00\xf1\x03\x00\x00\xf8\x03\x00\x00\xf6\x03\x00\x00\xf7\x03\x00\x00\xf6\x03\x00\x00\xf9\x03\x00\x00\xf7\x03\x00\x00\xf6\x03\x00\x00\xfa\x03\x00\x00\xf9\x03\x00\x00\xfa\x03\x00\x00\xfb\x03\x00\x00\xf9\x03\x00\x00\xfa\x03\x00\x00\xfc\x03\x00\x00\xa6\x03\x00\x00\xfa\x03\x00\x00\xf6\x03\x00\x00\xfc\x03\x00\x00\xfa\x03\x00\x00\xfd\x03\x00\x00\xfb\x03\x00\x00\xfd\x03\x00\x00\xfe\x03\x00\x00\xfb\x03\x00\x00\xfd\x03\x00\x00\xa6\x03\x00\x00\xa8\x03\x00\x00\xfd\x03\x00\x00\xfa\x03\x00\x00\xa6\x03\x00\x00\xfd\x03\x00\x00\xff\x03\x00\x00\xfe\x03\x00\x00\xff\x03\x00\x00\x00\x04\x00\x00\xfe\x03\x00\x00\xff\x03\x00\x00\xa8\x03\x00\x00\xaa\x03\x00\x00\xff\x03\x00\x00\xfd\x03\x00\x00\xa8\x03\x00\x00\xff\x03\x00\x00\x01\x04\x00\x00\x00\x04\x00\x00\x01\x04\x00\x00\x02\x04\x00\x00\x00\x04\x00\x00\x01\x04\x00\x00\xaa\x03\x00\x00\xab\x03\x00\x00\x01\x04\x00\x00\xff\x03\x00\x00\xaa\x03\x00\x00\x03\x04\x00\x00\xad\x03\x00\x00\xaf\x03\x00\x00\x04\x04\x00\x00\x03\x04\x00\x00\xaf\x03\x00\x00\x04\x04\x00\x00\xaf\x03\x00\x00\xb1\x03\x00\x00\x05\x04\x00\x00\x04\x04\x00\x00\xb1\x03\x00\x00\x05\x04\x00\x00\xb1\x03\x00\x00\xb3\x03\x00\x00\x06\x04\x00\x00\x05\x04\x00\x00\xb3\x03\x00\x00\x06\x04\x00\x00\xb3\x03\x00\x00\xb5\x03\x00\x00\x07\x04\x00\x00\x06\x04\x00\x00\xb5\x03\x00\x00\x07\x04\x00\x00\xb5\x03\x00\x00\xb7\x03\x00\x00\x08\x04\x00\x00\x07\x04\x00\x00\xb7\x03\x00\x00\x08\x04\x00\x00\xb7\x03\x00\x00\xb9\x03\x00\x00\t\x04\x00\x00\x08\x04\x00\x00\xb9\x03\x00\x00\t\x04\x00\x00\xb9\x03\x00\x00\xbb\x03\x00\x00\n\x04\x00\x00\t\x04\x00\x00\xbb\x03\x00\x00\n\x04\x00\x00\xbb\x03\x00\x00\xbd\x03\x00\x00\x0b\x04\x00\x00\n\x04\x00\x00\xbd\x03\x00\x00\x0b\x04\x00\x00\xbd\x03\x00\x00\xbf\x03\x00\x00\x0c\x04\x00\x00\x0b\x04\x00\x00\xbf\x03\x00\x00\x0c\x04\x00\x00\xbf\x03\x00\x00\xc1\x03\x00\x00\r\x04\x00\x00\x0c\x04\x00\x00\xc1\x03\x00\x00\r\x04\x00\x00\xc1\x03\x00\x00\xc3\x03\x00\x00\x0e\x04\x00\x00\r\x04\x00\x00\xc3\x03\x00\x00\x0e\x04\x00\x00\xc3\x03\x00\x00\xc5\x03\x00\x00\x0f\x04\x00\x00\x0e\x04\x00\x00\xc5\x03\x00\x00\x0f\x04\x00\x00\xc5\x03\x00\x00\xc7\x03\x00\x00\x10\x04\x00\x00\x0f\x04\x00\x00\xc7\x03\x00\x00\x10\x04\x00\x00\xc7\x03\x00\x00\xc9\x03\x00\x00\x11\x04\x00\x00\x10\x04\x00\x00\xc9\x03\x00\x00\x11\x04\x00\x00\xc9\x03\x00\x00\xcb\x03\x00\x00\x12\x04\x00\x00\x11\x04\x00\x00\xcb\x03\x00\x00\x12\x04\x00\x00\xcb\x03\x00\x00\xcd\x03\x00\x00\x13\x04\x00\x00\x12\x04\x00\x00\xcd\x03\x00\x00\x13\x04\x00\x00\xcd\x03\x00\x00\xcf\x03\x00\x00\x14\x04\x00\x00\x13\x04\x00\x00\xcf\x03\x00\x00\x14\x04\x00\x00\xcf\x03\x00\x00\xd1\x03\x00\x00\x15\x04\x00\x00\x14\x04\x00\x00\xd1\x03\x00\x00\x15\x04\x00\x00\xd1\x03\x00\x00\xd3\x03\x00\x00\x16\x04\x00\x00\x15\x04\x00\x00\xd3\x03\x00\x00\x16\x04\x00\x00\xd3\x03\x00\x00\xd5\x03\x00\x00\x17\x04\x00\x00\x16\x04\x00\x00\xd5\x03\x00\x00\x17\x04\x00\x00\xd5\x03\x00\x00\xd7\x03\x00\x00\x18\x04\x00\x00\x17\x04\x00\x00\xd7\x03\x00\x00\x18\x04\x00\x00\xd7\x03\x00\x00\xd9\x03\x00\x00\x19\x04\x00\x00\x18\x04\x00\x00\xd9\x03\x00\x00\x19\x04\x00\x00\xd9\x03\x00\x00\xdb\x03\x00\x00\x1a\x04\x00\x00\x19\x04\x00\x00\xdb\x03\x00\x00\x1a\x04\x00\x00\xdb\x03\x00\x00\xdd\x03\x00\x00\x1b\x04\x00\x00\x1a\x04\x00\x00\xdd\x03\x00\x00\x1b\x04\x00\x00\xdd\x03\x00\x00\xdf\x03\x00\x00\x1c\x04\x00\x00\x1b\x04\x00\x00\xdf\x03\x00\x00\x1c\x04\x00\x00\xdf\x03\x00\x00\xe1\x03\x00\x00\x1d\x04\x00\x00\x1c\x04\x00\x00\xe1\x03\x00\x00\x1d\x04\x00\x00\xe1\x03\x00\x00\xe3\x03\x00\x00\x1e\x04\x00\x00\x1d\x04\x00\x00\xe3\x03\x00\x00\x1e\x04\x00\x00\xe3\x03\x00\x00\xe6\x03\x00\x00\x1f\x04\x00\x00\x1e\x04\x00\x00\xe6\x03\x00\x00\x1f\x04\x00\x00\xe6\x03\x00\x00\xe8\x03\x00\x00 \x04\x00\x00\x1f\x04\x00\x00\xe8\x03\x00\x00 \x04\x00\x00\xe8\x03\x00\x00\xea\x03\x00\x00!\x04\x00\x00 \x04\x00\x00\xea\x03\x00\x00!\x04\x00\x00\xea\x03\x00\x00\xed\x03\x00\x00"\x04\x00\x00!\x04\x00\x00\xed\x03\x00\x00"\x04\x00\x00\xed\x03\x00\x00\xef\x03\x00\x00#\x04\x00\x00"\x04\x00\x00\xef\x03\x00\x00#\x04\x00\x00\xef\x03\x00\x00\xf1\x03\x00\x00$\x04\x00\x00#\x04\x00\x00\xf1\x03\x00\x00$\x04\x00\x00\xf1\x03\x00\x00\xf5\x03\x00\x00%\x04\x00\x00$\x04\x00\x00\xf5\x03\x00\x00%\x04\x00\x00\xf5\x03\x00\x00&\x04\x00\x00\'\x04\x00\x00%\x04\x00\x00&\x04\x00\x00(\x04\x00\x00\xf7\x03\x00\x00\xf9\x03\x00\x00)\x04\x00\x00(\x04\x00\x00\xf9\x03\x00\x00)\x04\x00\x00\xf9\x03\x00\x00\xfb\x03\x00\x00*\x04\x00\x00)\x04\x00\x00\xfb\x03\x00\x00*\x04\x00\x00\xfb\x03\x00\x00\xfe\x03\x00\x00+\x04\x00\x00*\x04\x00\x00\xfe\x03\x00\x00+\x04\x00\x00\xfe\x03\x00\x00\x00\x04\x00\x00,\x04\x00\x00+\x04\x00\x00\x00\x04\x00\x00,\x04\x00\x00\x00\x04\x00\x00\x02\x04\x00\x00-\x04\x00\x00,\x04\x00\x00\x02\x04\x00\x00\x03\x00\x01\x00\xb8\x81\x01\x00\n\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x004\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004\x08\x00\x00\xb2\x0f\x00\x00\x80\x00\x00\x00\xf0b\x00\x00\xf0b\x00\x00\xf0b\x00\x00`\xc5\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\n\x00Topography \x00\x00\x00\x00\xd9\xd8\x07D\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb4\x04D8\x1f\xc3A\x00\x00\x00\x00\xff>\x03D8\x1fCB\x00\x00\x00\x00s\xb6\x0cDjW\x92B\x00\x00\x00\x00\xab\x03\x15D8\x1f\xc3B\x00\x00\x00\x00\xca\xf6\x17D\x06\xe7\xf3B\x00\x00\x00\x00^9\x19DjW\x12C\x00\x00\x00\x00ej\x1fDQ\xbb*C\x00\x00\x00\x00a\xdc&D8\x1fCC\x00\x00\x00\x00\xe27.D\x1f\x83[C\x00\x00\x00\x00\xa2\xdf8D\x06\xe7sC\x00\x00\x00\x00\xf8\x1eDDw%\x86C\x00\x00\x00\x00-\x0bNDjW\x92C\x00\x00\x00\x00\x96\x14WD^\x89\x9eC\x00\x00\x00\x00\xdblaDQ\xbb\xaaC\x00\x00\x00\x00\xc7\xddcDE\xed\xb6C\x00\x00\x00\x00q\xb0_D8\x1f\xc3C\x00\x00\x00\x00\x04\\XD,Q\xcfC\x00\x00\x00\x003\xb1JD\x1f\x83\xdbC\x00\x00\x00\x00\x01m>D\x13\xb5\xe7C\x00\x00\x00\x00\xa9&3D\x06\xe7\xf3C\x00\x00\x00\x00\x96/,D}\x0c\x00D\x00\x00\x00\x00\xb4\xa6&Dw%\x06D\x00\x00\x00\x00z\x14 Dp>\x0cD\x00\x00\x00\x00p\xfd\x16DjW\x12D\x00\x00\x00\x00-Q\x0eDdp\x18D\x00\x00\x00\x00\xb7\x14\x05D^\x89\x1eD\x00\x00\x00\x00\x1a\xf4\xfeCW\xa2$D\x00\x00\x00\x00\x16\xa8\xf7CQ\xbb*D\x00\x00\x00\x00\x92V\xebCK\xd40D\x00\x00\x00\x00\x05\xff\xf0CE\xed6D\x00\x00\x00\x00\x9d\xeb\xf8C>\x06=D\x00\x00\x00\x00\xdf$\xf6C8\x1fCD\x00\x00\x00\x00\xd6\x10\xf4C28ID\x00\x00\x00\x00\x04\xe1\xf0C,QOD\x00\x00\x00\x00\xce\x8d\xe6C%jUD\x00\x00\x00\x00o\xdd\xe3C\x1f\x83[D\x00\x00\x00\x00\xdcW\xe9C\x19\x9caD\x00\x00\x00\x00*\xcc\xefC\x13\xb5gD\x00\x00\x00\x00\x0c3\xf5C\x0c\xcemD\x00\x00\x00\x00o\xf1\xf7C\x06\xe7sD\x00\x00\x00\x00\xe4\x96\xeeC\x00\x00zD\xebC\xa3A\x85\r\tD\x00\x00\x00\x00\xebC\xa3A\xe2\xc0\x06D8\x1f\xc3A\xebC\xa3A\xe0\xd6\x08D8\x1fCB\xebC\xa3A\x95\x15\x0cDjW\x92B\xebC\xa3A-2\x12D8\x1f\xc3B\xebC\xa3A"\xb3\x16D\x06\xe7\xf3B\xebC\xa3A\xf0\x83\x1cDjW\x12C\xebC\xa3A\xb3\xfc$DQ\xbb*C\xebC\xa3A\xc4M+D8\x1fCC\xebC\xa3AF\x134D\x1f\x83[C\xebC\xa3A\x10\x999D\x06\xe7sC\xebC\xa3A@y@Dw%\x86C\xebC\xa3A\x14\xd5LDjW\x92C\xebC\xa3A\xf1\xffXD^\x89\x9eC\xebC\xa3Ak\xf1aDQ\xbb\xaaC\xebC\xa3A\x00\x00fDE\xed\xb6C\xebC\xa3A9\xf2^D8\x1f\xc3C\xebC\xa3A\x9cxTD,Q\xcfC\xebC\xa3A\xf1tHD\x1f\x83\xdbC\xebC\xa3A\x07dAD\x13\xb5\xe7C\xebC\xa3A)y8D\x06\xe7\xf3C\xebC\xa3A\x8432D}\x0c\x00D\xebC\xa3A\x1d\x9f,Dw%\x06D\xebC\xa3AM\xc7&Dp>\x0cD\xebC\xa3AL\x80\x1bDjW\x12D\xebC\xa3A\xd8\x0c\x12Ddp\x18D\xebC\xa3A\x82\xd7\x08D^\x89\x1eD\xebC\xa3A\x800\x01DW\xa2$D\xebC\xa3A\x0f\t\xf8CQ\xbb*D\xebC\xa3A\xd9\xea\xeeCK\xd40D\xebC\xa3A\xcan\xfaCE\xed6D\xebC\xa3A ,\xfdC>\x06=D\xebC\xa3A\xa6\xca\xf5C8\x1fCD\xebC\xa3A\xbf\x81\xefC28ID\xebC\xa3At\xb7\xe7C,QOD\xebC\xa3A\x0f:\xe6C%jUD\xebC\xa3A\xb8\xf3\xe4C\x1f\x83[D\xebC\xa3A\xa3\x15\xe0C\x19\x9caD\xebC\xa3A[-\xe6C\x13\xb5gD\xebC\xa3AM\x9d\xefC\x0c\xcemD\xebC\xa3A>\x18\xecC\x06\xe7sD\xebC\xa3AB\xbc\xe8C\x00\x00zD\xebC#Bw\xfe\tD\x00\x00\x00\x00\xebC#B\x83\x89\tD8\x1f\xc3A\xebC#B\xa1?\x0bD8\x1fCB\xebC#B\xfd\x8e\x0cDjW\x92B\xebC#B\xc6\xb7\rD8\x1f\xc3B\xebC#B4<\x14D\x06\xe7\xf3B\xebC#B\x03<\x1dDjW\x12C\xebC#B}$(DQ\xbb*C\xebC#B\xac\x8b1D8\x1fCC\xebC#BT\x1b7D\x1f\x83[C\xebC#B\xf5\\8D\x06\xe7sC\xebC#BIp@Dw%\x86C\xebC#B\x12\x89KDjW\x92C\xebC#B\xcc\xe3WD^\x89\x9eC\xebC#B\xfcw^DQ\xbb\xaaC\xebC#B\x0bqaDE\xed\xb6C\xebC#B\xd0\x19[D8\x1f\xc3C\xebC#BeYQD,Q\xcfC\xebC#B\xc0\xcfHD\x1f\x83\xdbC\xebC#BxtAD\x13\xb5\xe7C\xebC#BU`;D\x06\xe7\xf3C\xebC#B\xcfW4D}\x0c\x00D\xebC#B\x08\xa00Dw%\x06D\xebC#B\xce\x88)Dp>\x0cD\xebC#B*\xc1\x1fDjW\x12D\xebC#BA\xc1\x17Ddp\x18D\xebC#B\x05\xca\x10D^\x89\x1eD\xebC#B\xfeK\x06DW\xa2$D\xebC#BD$\xfbCQ\xbb*D\xebC#B\x1cc\xf3CK\xd40D\xebC#B\x15\xbc\xf8CE\xed6D\xebC#B\xb8\x03\xf8C>\x06=D\xebC#B->\xedC8\x1fCD\xebC#B\x96\xfe\xe1C28ID\xebC#B\x8e\x8b\xdfC,QOD\xebC#Bx\x96\xd5C%jUD\xebC#B\x87d\xd4C\x1f\x83[D\xebC#B\xc3\x08\xd4C\x19\x9caD\xebC#B\xf5\x08\xd7C\x13\xb5gD\xebC#B~\x00\xdcC\x0c\xcemD\xebC#B\xb09\xe1C\x06\xe7sD\xebC#B\xdfU\xe1C\x00\x00zD\xe1\xe5tB\xc0V\x07D\x00\x00\x00\x00\xe1\xe5tBst\x06D8\x1f\xc3A\xe1\xe5tB\x9aG\x07D8\x1fCB\xe1\xe5tB\xa9F\x07DjW\x92B\xe1\xe5tB~G\x08D8\x1f\xc3B\xe1\xe5tB\xc0\x8a\x10D\x06\xe7\xf3B\xe1\xe5tB~\x92\x18DjW\x12C\xe1\xe5tB\xa5\xab#DQ\xbb*C\xe1\xe5tB\xeb92D8\x1fCC\xe1\xe5tB\xad\xe58D\x1f\x83[C\xe1\xe5tBOb;D\x06\xe7sC\xe1\xe5tB\xdc)BDw%\x86C\xe1\xe5tB\x03\rLDjW\x92C\xe1\xe5tB\x13\xf8QD^\x89\x9eC\xe1\xe5tBOuRDQ\xbb\xaaC\xe1\xe5tB\x10\xecSDE\xed\xb6C\xe1\xe5tBwtRD8\x1f\xc3C\xe1\xe5tB&\xe9ND,Q\xcfC\xe1\xe5tB\xa1aGD\x1f\x83\xdbC\xe1\xe5tB\xe5\x1e?D\x13\xb5\xe7C\xe1\xe5tB\xc2\x928D\x06\xe7\xf3C\xe1\xe5tB(\x992D}\x0c\x00D\xe1\xe5tB\xda\xd1.Dw%\x06D\xe1\xe5tB\xca\x12*Dp>\x0cD\xe1\xe5tB\x8a2"DjW\x12D\xe1\xe5tB\x9f\x91\x19Ddp\x18D\xe1\xe5tB\xe1\xa6\x12D^\x89\x1eD\xe1\xe5tB\xd5\xfb\x08DW\xa2$D\xe1\xe5tBG\xa9\xf6CQ\xbb*D\xe1\xe5tB^H\xebCK\xd40D\xe1\xe5tBu\xfc\xe7CE\xed6D\xe1\xe5tB$\x86\xe7C>\x06=D\xe1\xe5tB\xf01\xe7C8\x1fCD\xe1\xe5tB\xd6\xe4\xddC28ID\xe1\xe5tBK\xec\xd3C,QOD\xe1\xe5tB\xed\xb1\xcaC%jUD\xe1\xe5tB\x17\x9a\xc6C\x1f\x83[D\xe1\xe5tB\x1a\x05\xc8C\x19\x9caD\xe1\xe5tB(C\xc7C\x13\xb5gD\xe1\xe5tB\x90B\xc9C\x0c\xcemD\xe1\xe5tB\x07\xfe\xd2C\x06\xe7sD\xe1\xe5tB\xda-\xd4C\x00\x00zD\xebC\xa3Bm<\x04D\x00\x00\x00\x00\xebC\xa3B\x1c\x99\x05D8\x1f\xc3A\xebC\xa3B\x1c\xbb\x05D8\x1fCB\xebC\xa3B\x02\xb0\x02DjW\x92B\xebC\xa3B\x93\x8b\x03D8\x1f\xc3B\xebC\xa3B\x11r\rD\x06\xe7\xf3B\xebC\xa3B\xb0\xa3\x15DjW\x12C\xebC\xa3B\xd2Y\x1dDQ\xbb*C\xebC\xa3B=[+D8\x1fCC\xebC\xa3B\x08h6D\x1f\x83[C\xebC\xa3B\x96\xec;D\x06\xe7sC\xebC\xa3B\xaf`@Dw%\x86C\xebC\xa3B\xb1\xc3EDjW\x92C\xebC\xa3B\x1e\xbaID^\x89\x9eC\xebC\xa3B\xf2\xcbKDQ\xbb\xaaC\xebC\xa3B\x12\x9cMDE\xed\xb6C\xebC\xa3B\xbd(ID8\x1f\xc3C\xebC\xa3BP{HD,Q\xcfC\xebC\xa3Bp\xf9FD\x1f\x83\xdbC\xebC\xa3BE\xc6@D\x13\xb5\xe7C\xebC\xa3Bd47D\x06\xe7\xf3C\xebC\xa3B\xdf\x1f4D}\x0c\x00D\xebC\xa3B\xa4\x9c3Dw%\x06D\xebC\xa3B\x80\xa8-Dp>\x0cD\xebC\xa3B\x80w%DjW\x12D\xebC\xa3B\xc5\x0c\x1dDdp\x18D\xebC\xa3B\xa6\xbb\x13D^\x89\x1eD\xebC\xa3B\xd6\xc1\nDW\xa2$D\xebC\xa3B-a\xf8CQ\xbb*D\xebC\xa3B\xf3D\xe5CK\xd40D\xebC\xa3BT\x0c\xdeCE\xed6D\xebC\xa3Bm]\xdfC>\x06=D\xebC\xa3B\xe1\xa0\xe3C8\x1fCD\xebC\xa3Bj^\xdbC28ID\xebC\xa3B\xb8\x95\xcbC,QOD\xebC\xa3B\x0b\x85\xc1C%jUD\xebC\xa3B2\xc7\xbfC\x1f\x83[D\xebC\xa3B\xe2\x9c\xc4C\x19\x9caD\xebC\xa3B\xd1\xf2\xbbC\x13\xb5gD\xebC\xa3B\xc4\x92\xbbC\x0c\xcemD\xebC\xa3B\x8a\x02\xbfC\x06\xe7sD\xebC\xa3B\xf0\x1f\xc0C\x00\x00zD\xe6\x14\xccB\xd3\xcd\xf9C\x00\x00\x00\x00\xe6\x14\xccB\x07?\x03D8\x1f\xc3A\xe6\x14\xccB\xf1\xfa\x04D8\x1fCB\xe6\x14\xccB\xf23\xfeCjW\x92B\xe6\x14\xccB\x96\xcf\xf7C8\x1f\xc3B\xe6\x14\xccB#\x9a\x06D\x06\xe7\xf3B\xe6\x14\xccB \xba\x11DjW\x12C\xe6\x14\xccB\xf6\x1b\x17DQ\xbb*C\xe6\x14\xccBpj\x1fD8\x1fCC\xe6\x14\xccB\x8a8,D\x1f\x83[C\xe6\x14\xccB\x18\xbf1D\x06\xe7sC\xe6\x14\xccB\xe6L5Dw%\x86C\xe6\x14\xccB\xb749DjW\x92C\xe6\x14\xccB\xe0\x9c=D^\x89\x9eC\xe6\x14\xccB\xfa\xa5@DQ\xbb\xaaC\xe6\x14\xccB\xaa\x19DDE\xed\xb6C\xe6\x14\xccB\xd5\xbcDD8\x1f\xc3C\xe6\x14\xccB\x1f\x14GD,Q\xcfC\xe6\x14\xccB\x97]GD\x1f\x83\xdbC\xe6\x14\xccB\xd0\xdeCD\x13\xb5\xe7C\xe6\x14\xccBl\xd7<D\x06\xe7\xf3C\xe6\x14\xccB\x80\x1e9D}\x0c\x00D\xe6\x14\xccB\x1cq5Dw%\x06D\xe6\x14\xccB\x9b\xec-Dp>\x0cD\xe6\x14\xccB^\xa3#DjW\x12D\xe6\x14\xccB\x17D\x1cDdp\x18D\xe6\x14\xccB@\x0e\x14D^\x89\x1eD\xe6\x14\xccB{\xc6\x0cDW\xa2$D\xe6\x14\xccB1\x11\x03DQ\xbb*D\xe6\x14\xccB\'\x0f\xedCK\xd40D\xe6\x14\xccB\x9c\xa4\xd8CE\xed6D\xe6\x14\xccB\xb6?\xdaC>\x06=D\xe6\x14\xccBc\xde\xdfC8\x1fCD\xe6\x14\xccB\xdf\x05\xd7C28ID\xe6\x14\xccB\x9f\xca\xc8C,QOD\xe6\x14\xccB\x88~\xbaC%jUD\xe6\x14\xccB\x9a,\xb3C\x1f\x83[D\xe6\x14\xccB\x1f\x08\xb9C\x19\x9caD\xe6\x14\xccBl<\xb7C\x13\xb5gD\xe6\x14\xccB\xe7\xf1\xb2C\x0c\xcemD\xe6\x14\xccB\x13L\xb1C\x06\xe7sD\xe6\x14\xccB\xc2\x92\xafC\x00\x00zD\xe1\xe5\xf4BD\xc3\xdaC\x00\x00\x00\x00\xe1\xe5\xf4Biq\xe8C8\x1f\xc3A\xe1\xe5\xf4B\x15\x18\xefC8\x1fCB\xe1\xe5\xf4B\x1b\xe1\xeaCjW\x92B\xe1\xe5\xf4B\xb5\xe0\xecC8\x1f\xc3B\xe1\xe5\xf4B\xc5\x15\xfeC\x06\xe7\xf3B\xe1\xe5\xf4B\x85\xe0\x08DjW\x12C\xe1\xe5\xf4BU\n\x0fDQ\xbb*C\xe1\xe5\xf4B\x10{\x17D8\x1fCC\xe1\xe5\xf4B\x86\xcb!D\x1f\x83[C\xe1\xe5\xf4B\x16\x9c%D\x06\xe7sC\xe1\xe5\xf4B\x02\x8a(Dw%\x86C\xe1\xe5\xf4Bl\x8b*DjW\x92C\xe1\xe5\xf4BJ\x911D^\x89\x9eC\xe1\xe5\xf4B7*9DQ\xbb\xaaC\xe1\xe5\xf4Bh\x98;DE\xed\xb6C\xe1\xe5\xf4B\xbe\x00>D8\x1f\xc3C\xe1\xe5\xf4B\x9e;AD,Q\xcfC\xe1\xe5\xf4B\xa7\xbcBD\x1f\x83\xdbC\xe1\xe5\xf4B\xdd\x8bAD\x13\xb5\xe7C\xe1\xe5\xf4B\xa4\xfa<D\x06\xe7\xf3C\xe1\xe5\xf4BBg5D}\x0c\x00D\xe1\xe5\xf4B\xb7\x9a.Dw%\x06D\xe1\xe5\xf4B\xaa\x8e)Dp>\x0cD\xe1\xe5\xf4B\x86\xcd!DjW\x12D\xe1\xe5\xf4B\xd4\x0b\x1bDdp\x18D\xe1\xe5\xf4B\x93Y\x15D^\x89\x1eD\xe1\xe5\xf4BnE\x0bDW\xa2$D\xe1\xe5\xf4B\xe8\x0f\x02DQ\xbb*D\xe1\xe5\xf4B\xbf\xda\xeaCK\xd40D\xe1\xe5\xf4B[\xa4\xd7CE\xed6D\xe1\xe5\xf4B\x92_\xdbC>\x06=D\xe1\xe5\xf4B\xdfq\xd9C8\x1fCD\xe1\xe5\xf4B\xc9\xdf\xcdC28ID\xe1\xe5\xf4B7\xa0\xbcC,QOD\xe1\xe5\xf4B\xf0*\xafC%jUD\xe1\xe5\xf4B\xcd\x0b\xacC\x1f\x83[D\xe1\xe5\xf4BB;\xb1C\x19\x9caD\xe1\xe5\xf4BE\\\xa9C\x13\xb5gD\xe1\xe5\xf4B{\xd2\xaaC\x0c\xcemD\xe1\xe5\xf4B\x03\x1a\xaaC\x06\xe7sD\xe1\xe5\xf4B\x8c9\xabC\x00\x00zDn\xdb\x0eCZ\x83\xc0C\x00\x00\x00\x00n\xdb\x0eC\x9c\xaf\xccC8\x1f\xc3An\xdb\x0eC\xbf \xcaC8\x1fCBn\xdb\x0eC\xdb\xea\xceCjW\x92Bn\xdb\x0eC\xb4]\xd5C8\x1f\xc3Bn\xdb\x0eCm)\xeaC\x06\xe7\xf3Bn\xdb\x0eC\x1dK\xfaCjW\x12Cn\xdb\x0eC\xe6\x13\x03DQ\xbb*Cn\xdb\x0eCy\x96\x0cD8\x1fCCn\xdb\x0eC\x96"\x17D\x1f\x83[Cn\xdb\x0eC>)\x1bD\x06\xe7sCn\xdb\x0eC>\xb9\x1fDw%\x86Cn\xdb\x0eC\xf2S"DjW\x92Cn\xdb\x0eC\x065*D^\x89\x9eCn\xdb\x0eCUS3DQ\xbb\xaaCn\xdb\x0eC\xb7\'5DE\xed\xb6Cn\xdb\x0eC\x8b\xde6D8\x1f\xc3Cn\xdb\x0eC8\x01:D,Q\xcfCn\xdb\x0eCW\xdf;D\x1f\x83\xdbCn\xdb\x0eC\xc9\xe0<D\x13\xb5\xe7Cn\xdb\x0eC\\\xf68D\x06\xe7\xf3Cn\xdb\x0eC\x81s3D}\x0c\x00Dn\xdb\x0eC\x93\xbb,Dw%\x06Dn\xdb\x0eC\xa6\xcd$Dp>\x0cDn\xdb\x0eC\x93\x01#DjW\x12Dn\xdb\x0eC\xd6\xb5\x1dDdp\x18Dn\xdb\x0eC\x03\xbf\x14D^\x89\x1eDn\xdb\x0eC\xaa\x16\x0cDW\xa2$Dn\xdb\x0eC\xf5\xbb\x01DQ\xbb*Dn\xdb\x0eC\xc0\x87\xf2CK\xd40Dn\xdb\x0eC\x8f\\\xe6CE\xed6Dn\xdb\x0eCgQ\xe2C>\x06=Dn\xdb\x0eC\xc3\x0e\xdbC8\x1fCDn\xdb\x0eC\xa27\xcbC28IDn\xdb\x0eC\xa6\xfe\xbdC,QODn\xdb\x0eC\x8a^\xb0C%jUDn\xdb\x0eC#6\xaeC\x1f\x83[Dn\xdb\x0eC\xd9\xdc\xa6C\x19\x9caDn\xdb\x0eCD\x03\x9eC\x13\xb5gDn\xdb\x0eC\xd5\xf0\x9dC\x0c\xcemDn\xdb\x0eC\xf8\x1f\xa1C\x06\xe7sDn\xdb\x0eCa\xbe\xa3C\x00\x00zD\xebC#C)E\xa8C\x00\x00\x00\x00\xebC#C\xe9G\xb2C8\x1f\xc3A\xebC#C\xc1\x1d\xb1C8\x1fCB\xebC#C\x8f\x95\xbdCjW\x92B\xebC#C\x1e3\xc2C8\x1f\xc3B\xebC#C\xaf\x17\xd6C\x06\xe7\xf3B\xebC#C*\xf5\xe6CjW\x12C\xebC#C\x91\xa8\xf0CQ\xbb*C\xebC#C\xb8\x8a\x00D8\x1fCC\xebC#C-\xf6\x0cD\x1f\x83[C\xebC#C\xad\xba\x11D\x06\xe7sC\xebC#CL\x92\x18Dw%\x86C\xebC#C\xe6\xa8\x1cDjW\x92C\xebC#C\x16\xc0\x1fD^\x89\x9eC\xebC#Cc\x01+DQ\xbb\xaaC\xebC#C\xfci/DE\xed\xb6C\xebC#CI"0D8\x1f\xc3C\xebC#Cw\x0e3D,Q\xcfC\xebC#C[\xed3D\x1f\x83\xdbC\xebC#C\xa5*4D\x13\xb5\xe7C\xebC#COs1D\x06\xe7\xf3C\xebC#C]\xa9.D}\x0c\x00D\xebC#C\xa6\x0c*Dw%\x06D\xebC#Cw\xd7&Dp>\x0cD\xebC#C"\xa5#DjW\x12D\xebC#C%z\x1dDdp\x18D\xebC#C\x8fz\x13D^\x89\x1eD\xebC#C=\xcd\tDW\xa2$D\xebC#C\x94\x9b\x01DQ\xbb*D\xebC#C\x18\x93\xfbCK\xd40D\xebC#C\xbd}\xedCE\xed6D\xebC#Cy\x91\xe3C>\x06=D\xebC#C\x8a\x15\xd7C8\x1fCD\xebC#C\xcd\xeb\xcaC28ID\xebC#Ce=\xbeC,QOD\xebC#C\x05S\xb2C%jUD\xebC#C\xfex\xa7C\x1f\x83[D\xebC#C\xf5\xc6\x9cC\x19\x9caD\xebC#C\xe8\xc4\x9cC\x13\xb5gD\xebC#C\xbe\xb3\x96C\x0c\xcemD\xebC#C\x00U\x98C\x06\xe7sD\xebC#C\xf6w\x9dC\x00\x00zDh\xac7Cx\xf4\x93C\x00\x00\x00\x00h\xac7C\x83}\xa1C8\x1f\xc3Ah\xac7C\xff\x13\xafC8\x1fCBh\xac7C\xbe\xf7\xb3CjW\x92Bh\xac7C\xf4\x99\xb4C8\x1f\xc3Bh\xac7C ]\xbfC\x06\xe7\xf3Bh\xac7C\xea\x19\xd1CjW\x12Ch\xac7C\xe0\xd2\xe0CQ\xbb*Ch\xac7C\xb5\xb3\xf0C8\x1fCCh\xac7C\xb9\xd9\x01D\x1f\x83[Ch\xac7Cl\x90\tD\x06\xe7sCh\xac7C\x10\x7f\x10Dw%\x86Ch\xac7C8p\x11DjW\x92Ch\xac7C\xc2=\x17D^\x89\x9eCh\xac7C\x91\xad\x1fDQ\xbb\xaaCh\xac7C\xb9\x81&DE\xed\xb6Ch\xac7C\xb2\xe9$D8\x1f\xc3Ch\xac7C6\xac\'D,Q\xcfCh\xac7C\x03#+D\x1f\x83\xdbCh\xac7C\xc5X-D\x13\xb5\xe7Ch\xac7C5\xe9)D\x06\xe7\xf3Ch\xac7C,m&D}\x0c\x00Dh\xac7C\xf3\xb1$Dw%\x06Dh\xac7C\xc8j$Dp>\x0cDh\xac7C\xee\xfb"DjW\x12Dh\xac7C\x8b|\x1eDdp\x18Dh\xac7Cey\x18D^\x89\x1eDh\xac7C\xb1\x86\x0cDW\xa2$Dh\xac7C8A\x02DQ\xbb*Dh\xac7C\xe4]\xf6CK\xd40Dh\xac7C\xb8^\xe7CE\xed6Dh\xac7C\xb2M\xd8C>\x06=Dh\xac7C\xf3\xda\xd4C8\x1fCDh\xac7C{\xef\xc4C28IDh\xac7C\x9b\xaf\xb5C,QODh\xac7C\xf9\xd1\xacC%jUDh\xac7C\xf2\xa7\xa0C\x1f\x83[Dh\xac7C\xf6z\x9fC\x19\x9caDh\xac7C\x16\\\x98C\x13\xb5gDh\xac7C\xc0V\x94C\x0c\xcemDh\xac7C\x9e\x95\x92C\x06\xe7sDh\xac7C\x15^\x96C\x00\x00zD\xe6\x14LC\xa5m\x8aC\x00\x00\x00\x00\xe6\x14LC\x19\xa7\x94C8\x1f\xc3A\xe6\x14LC\x07`\xa7C8\x1fCB\xe6\x14LC\xae\xd8\xacCjW\x92B\xe6\x14LC\x0f\x90\xaeC8\x1f\xc3B\xe6\x14LCw\xf9\xb4C\x06\xe7\xf3B\xe6\x14LC\xfa\xef\xc0CjW\x12C\xe6\x14LC\xf0S\xd3CQ\xbb*C\xe6\x14LC\xe4\xc5\xe6C8\x1fCC\xe6\x14LCrm\xf8C\x1f\x83[C\xe6\x14LC3#\x03D\x06\xe7sC\xe6\x14LC]\xce\x05Dw%\x86C\xe6\x14LC,\xd5\x08DjW\x92C\xe6\x14LC \x0c\x11D^\x89\x9eC\xe6\x14LC\xdb\x82\x17DQ\xbb\xaaC\xe6\x14LCG\xad\x1bDE\xed\xb6C\xe6\x14LC\xddH\x1dD8\x1f\xc3C\xe6\x14LCN\xbb"D,Q\xcfC\xe6\x14LC\xdf\xf6)D\x1f\x83\xdbC\xe6\x14LC|\xb5+D\x13\xb5\xe7C\xe6\x14LC\xe9\xde\'D\x06\xe7\xf3C\xe6\x14LC\xfc($D}\x0c\x00D\xe6\x14LC\x01&"Dw%\x06D\xe6\x14LC?\x8f!Dp>\x0cD\xe6\x14LCP\xa3$DjW\x12D\xe6\x14LC^\xc2\x1fDdp\x18D\xe6\x14LC\x7f\xde\x16D^\x89\x1eD\xe6\x14LCl\xd7\rDW\xa2$D\xe6\x14LC\xf9I\x05DQ\xbb*D\xe6\x14LC\xc3\xf0\xf7CK\xd40D\xe6\x14LCiS\xe6CE\xed6D\xe6\x14LCm\xf2\xd9C>\x06=D\xe6\x14LC\x92@\xd0C8\x1fCD\xe6\x14LC\x8a\x00\xc4C28ID\xe6\x14LC\x8a\x8a\xb2C,QOD\xe6\x14LC\x01V\xacC%jUD\xe6\x14LC\x8b\xff\xaaC\x1f\x83[D\xe6\x14LCHY\xa4C\x19\x9caD\xe6\x14LC\xae\xa9\x9aC\x13\xb5gD\xe6\x14LC\xd0A\x90C\x0c\xcemD\xe6\x14LC\xfa\xb7\x8cC\x06\xe7sD\xe6\x14LC\xf8t\x8fC\x00\x00zDc}`CK?\x85C\x00\x00\x00\x00c}`CQc\x8aC8\x1f\xc3Ac}`C\x1eS\x95C8\x1fCBc}`C\x7f\xf6\x9bCjW\x92Bc}`CE\xb9\xa3C8\x1f\xc3Bc}`C\x04\x96\xadC\x06\xe7\xf3Bc}`C\x03G\xb4CjW\x12Cc}`C\xd9\xc6\xc6CQ\xbb*Cc}`C?y\xdbC8\x1fCCc}`C&\xf4\xe7C\x1f\x83[Cc}`C\xf0=\xf6C\x06\xe7sCc}`C\xf6\xe8\xffCw%\x86Cc}`CT\x83\x03DjW\x92Cc}`C\xa1\xb2\tD^\x89\x9eCc}`C\x130\x10DQ\xbb\xaaCc}`C:P\x15DE\xed\xb6Cc}`C\xa2i\x18D8\x1f\xc3Cc}`C\xdbz\x1fD,Q\xcfCc}`C\x13w\'D\x1f\x83\xdbCc}`C\x9c\xfd(D\x13\xb5\xe7Cc}`CL\')D\x06\xe7\xf3Cc}`C\x00\xd9&D}\x0c\x00Dc}`C\x00\xe3 Dw%\x06Dc}`C\xa78"Dp>\x0cDc}`C\xc7y"DjW\x12Dc}`C\x8e\xb5\x1eDdp\x18Dc}`C\x0b\x01\x16D^\x89\x1eDc}`C\xa5@\x0fDW\xa2$Dc}`C\x9a\xc3\x08DQ\xbb*Dc}`C\xba\x02\xffCK\xd40Dc}`C\xacJ\xedCE\xed6Dc}`C\xb0\r\xe2C>\x06=Dc}`C\x8b\xf2\xd0C8\x1fCDc}`C\xa8\xc8\xc5C28IDc}`C\xf1l\xb6C,QODc}`C\x90]\xadC%jUDc}`C\xb9\x02\xafC\x1f\x83[Dc}`C\xf6\xa6\xa1C\x19\x9caDc}`C\x81#\x99C\x13\xb5gDc}`C|!\x92C\x0c\xcemDc}`CET\x89C\x06\xe7sDc}`C\x98L\x87C\x00\x00zD\xe1\xe5tC\xf8\x9a\x88C\x00\x00\x00\x00\xe1\xe5tCG\xda\x8cC8\x1f\xc3A\xe1\xe5tC\x89\x1b\x89C8\x1fCB\xe1\xe5tC\x16\xd8\x8bCjW\x92B\xe1\xe5tC3M\x9bC8\x1f\xc3B\xe1\xe5tC^a\xa5C\x06\xe7\xf3B\xe1\xe5tC\xbct\xacCjW\x12C\xe1\xe5tCy\x06\xbcCQ\xbb*C\xe1\xe5tC\x8aX\xcaC8\x1fCC\xe1\xe5tCE\xf7\xd8C\x1f\x83[C\xe1\xe5tC9\xac\xe8C\x06\xe7sC\xe1\xe5tC\x93\xb7\xfbCw%\x86C\xe1\xe5tC\xe1\xed\xfcCjW\x92C\xe1\xe5tC\xf9b\x02D^\x89\x9eC\xe1\xe5tCn\xf6\nDQ\xbb\xaaC\xe1\xe5tC\xd9y\x12DE\xed\xb6C\xe1\xe5tC>\x12\x19D8\x1f\xc3C\xe1\xe5tC\x9f \x1fD,Q\xcfC\xe1\xe5tCLC\'D\x1f\x83\xdbC\xe1\xe5tC\xd4\xa9)D\x13\xb5\xe7C\xe1\xe5tC\x88\x1a+D\x06\xe7\xf3C\xe1\xe5tC:\x0b(D}\x0c\x00D\xe1\xe5tC\xf7\xb8$Dw%\x06D\xe1\xe5tCH #Dp>\x0cD\xe1\xe5tC\xcd\x8e!DjW\x12D\xe1\xe5tC\x01\x99\x1cDdp\x18D\xe1\xe5tC\xe6G\x17D^\x89\x1eD\xe1\xe5tC\xc4?\x13DW\xa2$D\xe1\xe5tC\xa2\xe0\x07DQ\xbb*D\xe1\xe5tCv\xa2\x00DK\xd40D\xe1\xe5tC\xe9\xb6\xf7CE\xed6D\xe1\xe5tC\xfc\xec\xe8C>\x06=D\xe1\xe5tC\xf7\xc9\xdcC8\x1fCD\xe1\xe5tC(U\xcbC28ID\xe1\xe5tC\xff\xbf\xbaC,QOD\xe1\xe5tC\xc4\xb7\xb1C%jUD\xe1\xe5tC\xd5\xdd\xabC\x1f\x83[D\xe1\xe5tC\xfc\x08\xa5C\x19\x9caD\xe1\xe5tCr@\x99C\x13\xb5gD\xe1\xe5tC+M\x92C\x0c\xcemD\xe1\xe5tC\xb4\xc4\x8bC\x06\xe7sD\xe1\xe5tC\xe8\xd9\x8dC\x00\x00zD/\xa7\x84C@\xff\x84C\x00\x00\x00\x00/\xa7\x84CX\xa3\x86C8\x1f\xc3A/\xa7\x84C=\xa0yC8\x1fCB/\xa7\x84C\x94\t{CjW\x92B/\xa7\x84C\x85\xb1\x8fC8\x1f\xc3B/\xa7\x84CA=\x9aC\x06\xe7\xf3B/\xa7\x84C13\xa2CjW\x12C/\xa7\x84C\x90/\xb2CQ\xbb*C/\xa7\x84Ch\x11\xbeC8\x1fCC/\xa7\x84C\x9a\xb7\xc7C\x1f\x83[C/\xa7\x84C\xa1V\xdcC\x06\xe7sC/\xa7\x84C\xb9\x85\xf0Cw%\x86C/\xa7\x84C\xac\x87\xf5CjW\x92C/\xa7\x84C\xab\x0f\xfcC^\x89\x9eC/\xa7\x84C\x16W\x06DQ\xbb\xaaC/\xa7\x84C09\x11DE\xed\xb6C/\xa7\x84Csa\x18D8\x1f\xc3C/\xa7\x84Cl\xfd\x1eD,Q\xcfC/\xa7\x84C\xb5\xb9$D\x1f\x83\xdbC/\xa7\x84C\x95\x1e(D\x13\xb5\xe7C/\xa7\x84CXf,D\x06\xe7\xf3C/\xa7\x84C$\x87+D}\x0c\x00D/\xa7\x84C~h)Dw%\x06D/\xa7\x84C\x8b,(Dp>\x0cD/\xa7\x84C\xfa\xee%DjW\x12D/\xa7\x84C\xaa\'!Ddp\x18D/\xa7\x84C?\x91\x19D^\x89\x1eD/\xa7\x84C\xfa\xd1\x15DW\xa2$D/\xa7\x84Ci\xfc\x0cDQ\xbb*D/\xa7\x84C\xb6\xb9\x06DK\xd40D/\xa7\x84CHr\x01DE\xed6D/\xa7\x84C<?\xf2C>\x06=D/\xa7\x84C\x0eN\xe8C8\x1fCD/\xa7\x84C\xeb\x13\xd4C28ID/\xa7\x84C.(\xc0C,QOD/\xa7\x84C\x96\x8c\xb0C%jUD/\xa7\x84C$\xeb\xadC\x1f\x83[D/\xa7\x84C\xc5q\xadC\x19\x9caD/\xa7\x84CG\x96\xa1C\x13\xb5gD/\xa7\x84C\xab)\x90C\x0c\xcemD/\xa7\x84C\x19\xbe\x8cC\x06\xe7sD/\xa7\x84Cn*\x94C\x00\x00zDn\xdb\x8eC\xcb\x82\x81C\x00\x00\x00\x00n\xdb\x8eC\t\xdcvC8\x1f\xc3An\xdb\x8eC\xf3$mC8\x1fCBn\xdb\x8eC\xd6\xc5gCjW\x92Bn\xdb\x8eC\x06`yC8\x1f\xc3Bn\xdb\x8eC\xcbh\x8cC\x06\xe7\xf3Bn\xdb\x8eC|\x89\x99CjW\x12Cn\xdb\x8eC\n\x02\xa7CQ\xbb*Cn\xdb\x8eC\x1c1\xa7C8\x1fCCn\xdb\x8eCT\xa8\xb2C\x1f\x83[Cn\xdb\x8eCH&\xd1C\x06\xe7sCn\xdb\x8eCj\x08\xe6Cw%\x86Cn\xdb\x8eC\xdb~\xeeCjW\x92Cn\xdb\x8eC\xf1,\xf5C^\x89\x9eCn\xdb\x8eC\xe3\xe4\x02DQ\xbb\xaaCn\xdb\x8eC\xa0g\rDE\xed\xb6Cn\xdb\x8eC\x1c\x11\x17D8\x1f\xc3Cn\xdb\x8eCFl\x1dD,Q\xcfCn\xdb\x8eCn\x90$D\x1f\x83\xdbCn\xdb\x8eC\xcc;)D\x13\xb5\xe7Cn\xdb\x8eC\xcd\x1a,D\x06\xe7\xf3Cn\xdb\x8eC-u.D}\x0c\x00Dn\xdb\x8eC#\x900Dw%\x06Dn\xdb\x8eC\xd3\xa4/Dp>\x0cDn\xdb\x8eC\xb2X-DjW\x12Dn\xdb\x8eC\xa8\x8d*Ddp\x18Dn\xdb\x8eCvE#D^\x89\x1eDn\xdb\x8eC8\xc5\x1cDW\xa2$Dn\xdb\x8eC\xf9\x8a\x13DQ\xbb*Dn\xdb\x8eC\xdd\xc3\rDK\xd40Dn\xdb\x8eCn\x04\x06DE\xed6Dn\xdb\x8eC\\Y\xfdC>\x06=Dn\xdb\x8eC\xbdm\xf3C8\x1fCDn\xdb\x8eC\xcb\x88\xdeC28IDn\xdb\x8eC}6\xc2C,QODn\xdb\x8eC*N\xaaC%jUDn\xdb\x8eC\xadi\xacC\x1f\x83[Dn\xdb\x8eC\xd6\xee\xa8C\x19\x9caDn\xdb\x8eC\x18\xfd\xa1C\x13\xb5gDn\xdb\x8eC\xe8V\x98C\x0c\xcemDn\xdb\x8eC\x8c\xe0\x92C\x06\xe7sDn\xdb\x8eC\x05\xf3\x90C\x00\x00zD\xac\x0f\x99Cf\xcb}C\x00\x00\x00\x00\xac\x0f\x99C_\xfffC8\x1f\xc3A\xac\x0f\x99C\xbd\xd3^C8\x1fCB\xac\x0f\x99C\x02\x8bSCjW\x92B\xac\x0f\x99C|\xadVC8\x1f\xc3B\xac\x0f\x99C\x9c\xe2uC\x06\xe7\xf3B\xac\x0f\x99C\x19a\x93CjW\x12C\xac\x0f\x99C\x1f\xff\x9aCQ\xbb*C\xac\x0f\x99C\x1b\x16\x9eC8\x1fCC\xac\x0f\x99C\x9b?\xa9C\x1f\x83[C\xac\x0f\x99Cea\xc3C\x06\xe7sC\xac\x0f\x99C\xdc\x88\xd9Cw%\x86C\xac\x0f\x99C\xa8\x0e\xe4CjW\x92C\xac\x0f\x99C\x04\xf6\xf1C^\x89\x9eC\xac\x0f\x99C\xfbu\x02DQ\xbb\xaaC\xac\x0f\x99Ch\n\x0cDE\xed\xb6C\xac\x0f\x99C>\t\x16D8\x1f\xc3C\xac\x0f\x99Cq5\x1dD,Q\xcfC\xac\x0f\x99C\xfe\xce#D\x1f\x83\xdbC\xac\x0f\x99C\xa2\xab)D\x13\xb5\xe7C\xac\x0f\x99C\x8c\xfb1D\x06\xe7\xf3C\xac\x0f\x99C\xa5\x1f3D}\x0c\x00D\xac\x0f\x99C\xab\x115Dw%\x06D\xac\x0f\x99C\xa7\xb33Dp>\x0cD\xac\x0f\x99C\xe6T5DjW\x12D\xac\x0f\x99CV>4Ddp\x18D\xac\x0f\x99CJ=-D^\x89\x1eD\xac\x0f\x99C\xa2H#DW\xa2$D\xac\x0f\x99C\xc1\x91\x1cDQ\xbb*D\xac\x0f\x99C`\x10\x15DK\xd40D\xac\x0f\x99C\xa7j\nDE\xed6D\xac\x0f\x99C\'%\x05D>\x06=D\xac\x0f\x99C3H\xfeC8\x1fCD\xac\x0f\x99C\xa4\x9b\xeaC28ID\xac\x0f\x99C@\xb9\xd0C,QOD\xac\x0f\x99C\xc4\xb8\xb6C%jUD\xac\x0f\x99C\x0e\xdd\xa8C\x1f\x83[D\xac\x0f\x99C#\x05\xa4C\x19\x9caD\xac\x0f\x99C\x9e\xd7\xa3C\x13\xb5gD\xac\x0f\x99C\xef$\x9eC\x0c\xcemD\xac\x0f\x99C\x87y\x98C\x06\xe7sD\xac\x0f\x99C%\x8c\x99C\x00\x00zD\xebC\xa3C\xd8\\yC\x00\x00\x00\x00\xebC\xa3C\xcdg`C8\x1f\xc3A\xebC\xa3Cf\'[C8\x1fCB\xebC\xa3C8#NCjW\x92B\xebC\xa3C\xae\xc5WC8\x1f\xc3B\xebC\xa3C>\xeakC\x06\xe7\xf3B\xebC\xa3C\xc1\x01\x84CjW\x12C\xebC\xa3C\x1d\xb2\x8dCQ\xbb*C\xebC\xa3C\xe4\x1a\x9cC8\x1fCC\xebC\xa3C\x9f/\xaaC\x1f\x83[C\xebC\xa3C:l\xb9C\x06\xe7sC\xebC\xa3C\x01~\xcbCw%\x86C\xebC\xa3C\x06\x96\xd8CjW\x92C\xebC\xa3C~\xef\xe8C^\x89\x9eC\xebC\xa3CE\xf0\xfdCQ\xbb\xaaC\xebC\xa3C\xbd\x7f\x06DE\xed\xb6C\xebC\xa3C"F\x0eD8\x1f\xc3C\xebC\xa3C\x1a\x92\x16D,Q\xcfC\xebC\xa3C\xd5\xcd\x1dD\x1f\x83\xdbC\xebC\xa3C\xca\xd8)D\x13\xb5\xe7C\xebC\xa3C\x81\x883D\x06\xe7\xf3C\xebC\xa3Cf(6D}\x0c\x00D\xebC\xa3C\xee\xba5Dw%\x06D\xebC\xa3C4\x9d8Dp>\x0cD\xebC\xa3Ca\x04:DjW\x12D\xebC\xa3C>z6Ddp\x18D\xebC\xa3C\x0f\xec/D^\x89\x1eD\xebC\xa3C\xaa\x03&DW\xa2$D\xebC\xa3CKf#DQ\xbb*D\xebC\xa3Cz\xd2\x1dDK\xd40D\xebC\xa3CG\xe8\x14DE\xed6D\xebC\xa3Cd\xd2\rD>\x06=D\xebC\xa3C1)\x04D8\x1fCD\xebC\xa3C\x0cD\xf1C28ID\xebC\xa3C=\xe6\xddC,QOD\xebC\xa3C\x06\x00\xc6C%jUD\xebC\xa3C\xc8\x08\xafC\x1f\x83[D\xebC\xa3C\x95\xfc\xa8C\x19\x9caD\xebC\xa3C\xa2\xd2\xa5C\x13\xb5gD\xebC\xa3C=3\x98C\x0c\xcemD\xebC\xa3CB\x9c\x95C\x06\xe7sD\xebC\xa3C\xb2H\x96C\x00\x00zD*x\xadC\x05\xce|C\x00\x00\x00\x00*x\xadC#\x1f[C8\x1f\xc3A*x\xadC\xe5\xffVC8\x1fCB*x\xadCX\xfcQCjW\x92B*x\xadC\xa7\xeaeC8\x1f\xc3B*x\xadC\x08\x0cxC\x06\xe7\xf3B*x\xadC\xaa\xd9\x81CjW\x12C*x\xadCq~\x84CQ\xbb*C*x\xadCj\x81\x93C8\x1fCC*x\xadC\x84c\xa5C\x1f\x83[C*x\xadC\xc6\xc6\xb3C\x06\xe7sC*x\xadC=g\xbfCw%\x86C*x\xadC\xe7\x01\xcbCjW\x92C*x\xadC\xd9J\xd9C^\x89\x9eC*x\xadC5\r\xebCQ\xbb\xaaC*x\xadCT`\xfaCE\xed\xb6C*x\xadC\x1aO\x04D8\x1f\xc3C*x\xadC\x0e{\x0fD,Q\xcfC*x\xadC\xf3c\x1cD\x1f\x83\xdbC*x\xadC\xfe\xe1\'D\x13\xb5\xe7C*x\xadC\x97\xf4/D\x06\xe7\xf3C*x\xadC\x9f\xd53D}\x0c\x00D*x\xadCQ\xa77Dw%\x06D*x\xadC\xa7\x1a<Dp>\x0cD*x\xadC\xe5\xd9;DjW\x12D*x\xadC*\x103Ddp\x18D*x\xadC\xb1\x9f+D^\x89\x1eD*x\xadCL\x01&DW\xa2$D*x\xadCB\xbd"DQ\xbb*D*x\xadCH\xcb\x1cDK\xd40D*x\xadC\x86#\x16DE\xed6D*x\xadC\x94\x82\rD>\x06=D*x\xadC\x04\xb2\x06D8\x1fCD*x\xadC\n\x15\xf4C28ID*x\xadCF\xe6\xddC,QOD*x\xadC\x1bJ\xcaC%jUD*x\xadC\xe0\xcc\xb3C\x1f\x83[D*x\xadC\x80\xdc\xa3C\x19\x9caD*x\xadC;\xba\xa1C\x13\xb5gD*x\xadCL\xf3\x99C\x0c\xcemD*x\xadC\xd74\x94C\x06\xe7sD*x\xadC\xb6 \x90C\x00\x00zDh\xac\xb7C\xfd\xa6xC\x00\x00\x00\x00h\xac\xb7CZI\\C8\x1f\xc3Ah\xac\xb7C\x00\x00HC8\x1fCBh\xac\xb7C\xcc\xd8KCjW\x92Bh\xac\xb7Ca\xb9`C8\x1f\xc3Bh\xac\xb7C\x7f\xa3tC\x06\xe7\xf3Bh\xac\xb7C\xd9\xdcxCjW\x12Ch\xac\xb7CY\x0b\x82CQ\xbb*Ch\xac\xb7C\xa6\xcc\x8fC8\x1fCCh\xac\xb7C\xac\x0c\x9eC\x1f\x83[Ch\xac\xb7C\xb2\x0c\xacC\x06\xe7sCh\xac\xb7C\xfa\xfa\xb1Cw%\x86Ch\xac\xb7C\xa8\xf8\xc4CjW\x92Ch\xac\xb7C\xbc\x1a\xceC^\x89\x9eCh\xac\xb7C\x98\x9b\xdaCQ\xbb\xaaCh\xac\xb7C\xda\xa7\xecCE\xed\xb6Ch\xac\xb7C\xe7\x11\x01D8\x1f\xc3Ch\xac\xb7C\x9d\xb2\rD,Q\xcfCh\xac\xb7C\x9c\xbe\x1aD\x1f\x83\xdbCh\xac\xb7C\x88i%D\x13\xb5\xe7Ch\xac\xb7C\xbd\x9e+D\x06\xe7\xf3Ch\xac\xb7C\x01j2D}\x0c\x00Dh\xac\xb7C\xd6\xa34Dw%\x06Dh\xac\xb7C\xaeo7Dp>\x0cDh\xac\xb7Cr\xc25DjW\x12Dh\xac\xb7C{22Ddp\x18Dh\xac\xb7C4\x97*D^\x89\x1eDh\xac\xb7C\xadk$DW\xa2$Dh\xac\xb7Cj\x1b\x1fDQ\xbb*Dh\xac\xb7C\x92\x0f\x1aDK\xd40Dh\xac\xb7C\xef\xa3\x14DE\xed6Dh\xac\xb7Cmu\x0eD>\x06=Dh\xac\xb7C\xe2\x10\x05D8\x1fCDh\xac\xb7C\xbb\xdd\xeeC28IDh\xac\xb7C\xfe\x1a\xe0C,QODh\xac\xb7C\xf4\x88\xd0C%jUDh\xac\xb7C/\x14\xb7C\x1f\x83[Dh\xac\xb7C\xd9\xda\xa8C\x19\x9caDh\xac\xb7C\xcb\xf6\xa7C\x13\xb5gDh\xac\xb7C\xff\xcc\xa0C\x0c\xcemDh\xac\xb7CP\xb6\x97C\x06\xe7sDh\xac\xb7C\x85|\x8bC\x00\x00zD\xa7\xe0\xc1C\x1f\xa9\x80C\x00\x00\x00\x00\xa7\xe0\xc1Cp\xb9iC8\x1f\xc3A\xa7\xe0\xc1Cy6QC8\x1fCB\xa7\xe0\xc1C\xd4\xb2MCjW\x92B\xa7\xe0\xc1CK7ZC8\x1f\xc3B\xa7\xe0\xc1CW\xaf_C\x06\xe7\xf3B\xa7\xe0\xc1C\x14\xf0pCjW\x12C\xa7\xe0\xc1C\x0f\xc7\x7fCQ\xbb*C\xa7\xe0\xc1C\x06\x01\x8eC8\x1fCC\xa7\xe0\xc1C\x91|\x9aC\x1f\x83[C\xa7\xe0\xc1C&\xbd\xa3C\x06\xe7sC\xa7\xe0\xc1C"l\xb0Cw%\x86C\xa7\xe0\xc1C\xc5\xff\xbcCjW\x92C\xa7\xe0\xc1C}}\xcbC^\x89\x9eC\xa7\xe0\xc1C\x90[\xddCQ\xbb\xaaC\xa7\xe0\xc1C\x97\xe2\xe5CE\xed\xb6C\xa7\xe0\xc1C\x9d\xef\xfcC8\x1f\xc3C\xa7\xe0\xc1Ch\x95\x0cD,Q\xcfC\xa7\xe0\xc1C6\xcb\x15D\x1f\x83\xdbC\xa7\xe0\xc1C\x83\x0b\x1eD\x13\xb5\xe7C\xa7\xe0\xc1Cmc&D\x06\xe7\xf3C\xa7\xe0\xc1C\x15_-D}\x0c\x00D\xa7\xe0\xc1C\x11q/Dw%\x06D\xa7\xe0\xc1C%H2Dp>\x0cD\xa7\xe0\xc1Cf\x9a4DjW\x12D\xa7\xe0\xc1C\x9c\xa4.Ddp\x18D\xa7\xe0\xc1C\x1c\xc6(D^\x89\x1eD\xa7\xe0\xc1C\xfb\xcb DW\xa2$D\xa7\xe0\xc1C+\x04\x1fDQ\xbb*D\xa7\xe0\xc1C\x84\xa6\x1bDK\xd40D\xa7\xe0\xc1C\xd7\x9a\x15DE\xed6D\xa7\xe0\xc1Cv6\x10D>\x06=D\xa7\xe0\xc1C\x10\x99\x03D8\x1fCD\xa7\xe0\xc1C\x7f9\xeeC28ID\xa7\xe0\xc1C8%\xe3C,QOD\xa7\xe0\xc1Ch\x91\xceC%jUD\xa7\xe0\xc1C\x8c|\xbbC\x1f\x83[D\xa7\xe0\xc1C\x07\xb5\xb1C\x19\x9caD\xa7\xe0\xc1C\x83\x8d\xadC\x13\xb5gD\xa7\xe0\xc1Cg<\xa8C\x0c\xcemD\xa7\xe0\xc1C\xae>\xa0C\x06\xe7sD\xa7\xe0\xc1C\x12\x81\x8bC\x00\x00zD\xe6\x14\xccC\xe5\r\x82C\x00\x00\x00\x00\xe6\x14\xccC\x13\xa3wC8\x1f\xc3A\xe6\x14\xccC WlC8\x1fCB\xe6\x14\xccC\r\xc5jCjW\x92B\xe6\x14\xccC\x0b\x9dkC8\x1f\xc3B\xe6\x14\xccC\x00;\x82C\x06\xe7\xf3B\xe6\x14\xccC\xe9\xb1\x87CjW\x12C\xe6\x14\xccC{\x03\x84CQ\xbb*C\xe6\x14\xccC\xe8^\x90C8\x1fCC\xe6\x14\xccCa\xe9\x9bC\x1f\x83[C\xe6\x14\xccC\xbd\xa7\xa4C\x06\xe7sC\xe6\x14\xccC\xeb\xe3\xabCw%\x86C\xe6\x14\xccC\xb4\x98\xbbCjW\x92C\xe6\x14\xccC&a\xceC^\x89\x9eC\xe6\x14\xccC\x97;\xdbCQ\xbb\xaaC\xe6\x14\xccCF&\xe2CE\xed\xb6C\xe6\x14\xccC\xbaU\xfdC8\x1f\xc3C\xe6\x14\xccC\xeb\x86\x08D,Q\xcfC\xe6\x14\xccC\x0eV\x11D\x1f\x83\xdbC\xe6\x14\xccC\x1b\xa4\x17D\x13\xb5\xe7C\xe6\x14\xccCu\xf3 D\x06\xe7\xf3C\xe6\x14\xccC\x99\xd3)D}\x0c\x00D\xe6\x14\xccCb\xb7+Dw%\x06D\xe6\x14\xccC]k-Dp>\x0cD\xe6\x14\xccCN\x8a-DjW\x12D\xe6\x14\xccC\x15\xd6)Ddp\x18D\xe6\x14\xccCi\xe9"D^\x89\x1eD\xe6\x14\xccCV\xd2\x1fDW\xa2$D\xe6\x14\xccCRD DQ\xbb*D\xe6\x14\xccCm\xe5\x19DK\xd40D\xe6\x14\xccC\xd3\xe8\x15DE\xed6D\xe6\x14\xccC\x17\xaf\x0eD>\x06=D\xe6\x14\xccC\xe3\xf3\x05D8\x1fCD\xe6\x14\xccC\x17\xd5\xf4C28ID\xe6\x14\xccC\x0bX\xdfC,QOD\xe6\x14\xccC\x9c\x10\xcaC%jUD\xe6\x14\xccC{\x8f\xb6C\x1f\x83[D\xe6\x14\xccC\xf1\xa6\xaeC\x19\x9caD\xe6\x14\xccC\xc6M\xb1C\x13\xb5gD\xe6\x14\xccC-\x84\xadC\x0c\xcemD\xe6\x14\xccC\xc0\x1b\xa1C\x06\xe7sD\xe6\x14\xccC\x8b\xd1\x94C\x00\x00zD%I\xd6C1\x8c\x88C\x00\x00\x00\x00%I\xd6Cz\x0c\x81C8\x1f\xc3A%I\xd6C\x1b\xbdtC8\x1fCB%I\xd6CV\xdarCjW\x92B%I\xd6CI\xf3\x85C8\x1f\xc3B%I\xd6C<(\x9bC\x06\xe7\xf3B%I\xd6C\x08\x0b\x9cCjW\x12C%I\xd6Ce\xe1\x90CQ\xbb*C%I\xd6C}\x83\x9bC8\x1fCC%I\xd6Ckt\xa9C\x1f\x83[C%I\xd6C\x1ck\xa8C\x06\xe7sC%I\xd6C\xfeC\xa9Cw%\x86C%I\xd6C&;\xb4CjW\x92C%I\xd6CPZ\xc9C^\x89\x9eC%I\xd6C?\x93\xd4CQ\xbb\xaaC%I\xd6C\xbd\x87\xe4CE\xed\xb6C%I\xd6CR\xfa\xf3C8\x1f\xc3C%I\xd6CZ$\x04D,Q\xcfC%I\xd6C\x1f4\x0cD\x1f\x83\xdbC%I\xd6C]\x8c\x12D\x13\xb5\xe7C%I\xd6C\xbf\xf1\x1aD\x06\xe7\xf3C%I\xd6C\x158"D}\x0c\x00D%I\xd6C\xbe\xd7#Dw%\x06D%I\xd6C:\x7f$Dp>\x0cD%I\xd6C\x1e\xef%DjW\x12D%I\xd6C5\x0b$Ddp\x18D%I\xd6C\xa7\x12\x1fD^\x89\x1eD%I\xd6C\xc7^\x1fDW\xa2$D%I\xd6C\x83\xe2\x1bDQ\xbb*D%I\xd6CJ\xb7\x1cDK\xd40D%I\xd6C5\x00\x18DE\xed6D%I\xd6C\xfb^\x0eD>\x06=D%I\xd6C4\xb4\x08D8\x1fCD%I\xd6C\nJ\xfaC28ID%I\xd6C\xd50\xdaC,QOD%I\xd6CP\x97\xc5C%jUD%I\xd6C\x03\xc1\xb2C\x1f\x83[D%I\xd6C\xf9k\xadC\x19\x9caD%I\xd6C\xe4M\xacC\x13\xb5gD%I\xd6C\xe3\xd7\xa7C\x0c\xcemD%I\xd6C\xf6\xaa\x9bC\x06\xe7sD%I\xd6CE\xfd\x95C\x00\x00zDc}\xe0C\x82\xa9\x84C\x00\x00\x00\x00c}\xe0Ca6\x7fC8\x1f\xc3Ac}\xe0C\xe6\x04}C8\x1fCBc}\xe0C\xf5\xa9}CjW\x92Bc}\xe0C\xa4\xa5\x8bC8\x1f\xc3Bc}\xe0C\xffI\xa0C\x06\xe7\xf3Bc}\xe0C\xed\xbd\xa9CjW\x12Cc}\xe0C\xf2M\xa8CQ\xbb*Cc}\xe0C\xbab\xafC8\x1fCCc}\xe0Cz\xc2\xb3C\x1f\x83[Cc}\xe0Cv:\xadC\x06\xe7sCc}\xe0C\x1c\x02\xb0Cw%\x86Cc}\xe0C\x97L\xb9CjW\x92Cc}\xe0Cg7\xc6C^\x89\x9eCc}\xe0Cb\x8c\xd4CQ\xbb\xaaCc}\xe0C\x17\xd7\xe1CE\xed\xb6Cc}\xe0C&\x94\xf5C8\x1f\xc3Cc}\xe0CYj\x01D,Q\xcfCc}\xe0C\r\x88\x05D\x1f\x83\xdbCc}\xe0C=\x95\x0cD\x13\xb5\xe7Cc}\xe0C.\xac\x12D\x06\xe7\xf3Cc}\xe0C\xba\x8e\x18D}\x0c\x00Dc}\xe0C\'\xe7\x1cDw%\x06Dc}\xe0C\xb1\xad\x1dDp>\x0cDc}\xe0C\xd9t\x1fDjW\x12Dc}\xe0C)\xef\x1eDdp\x18Dc}\xe0CV\xf1\x1cD^\x89\x1eDc}\xe0C5\xfe\x1bDW\xa2$Dc}\xe0C\xadf\x17DQ\xbb*Dc}\xe0CB\xf1\x14DK\xd40Dc}\xe0C\xbe\xab\x12DE\xed6Dc}\xe0C$s\rD>\x06=Dc}\xe0CM\xb0\tD8\x1fCDc}\xe0C\xd9X\x00D28IDc}\xe0C\xd6\xf7\xe2C,QODc}\xe0C\x99\xc5\xcdC%jUDc}\xe0Cx\xeb\xb9C\x1f\x83[Dc}\xe0C\x80\xea\xacC\x19\x9caDc}\xe0C\xa7\x80\xa6C\x13\xb5gDc}\xe0C\to\xa4C\x0c\xcemDc}\xe0C\xdaS\x9fC\x06\xe7sDc}\xe0Cp\xb3\x9aC\x00\x00zD\xa2\xb1\xeaC\xe4\xfa|C\x00\x00\x00\x00\xa2\xb1\xeaCF\x9a\x7fC8\x1f\xc3A\xa2\xb1\xeaC_\xb6|C8\x1fCB\xa2\xb1\xeaCj\x8f\x81CjW\x92B\xa2\xb1\xeaC9\x07\x8cC8\x1f\xc3B\xa2\xb1\xeaC\x02b\x9dC\x06\xe7\xf3B\xa2\xb1\xeaC\x109\xabCjW\x12C\xa2\xb1\xeaC\xb9x\xb7CQ\xbb*C\xa2\xb1\xeaC\xd4\xdb\xbcC8\x1fCC\xa2\xb1\xeaC\t\xd0\xb8C\x1f\x83[C\xa2\xb1\xeaC\x18\x05\xb7C\x06\xe7sC\xa2\xb1\xeaC\xc0\x82\xbbCw%\x86C\xa2\xb1\xeaCt\xb5\xc3CjW\x92C\xa2\xb1\xeaCi\x00\xceC^\x89\x9eC\xa2\xb1\xeaC\xca\xed\xd6CQ\xbb\xaaC\xa2\xb1\xeaCGf\xe2CE\xed\xb6C\xa2\xb1\xeaC\xd9\x05\xf1C8\x1f\xc3C\xa2\xb1\xeaCp\xfa\xf8C,Q\xcfC\xa2\xb1\xeaC\x93\x1c\xffC\x1f\x83\xdbC\xa2\xb1\xeaC\x16U\x04D\x13\xb5\xe7C\xa2\xb1\xeaCf+\x0cD\x06\xe7\xf3C\xa2\xb1\xeaC\xbbq\x10D}\x0c\x00D\xa2\xb1\xeaC\x95\xce\x15Dw%\x06D\xa2\xb1\xeaCR\xaf\x19Dp>\x0cD\xa2\xb1\xeaC\x1b\xd7\x1cDjW\x12D\xa2\xb1\xeaC]\xc2\x1aDdp\x18D\xa2\xb1\xeaC\xfe5\x1bD^\x89\x1eD\xa2\xb1\xeaC\xa2\x93\x19DW\xa2$D\xa2\xb1\xeaC\xed5\x15DQ\xbb*D\xa2\xb1\xeaC\x92\xc4\x10DK\xd40D\xa2\xb1\xeaCh\xab\x0fDE\xed6D\xa2\xb1\xeaC\xe4\xbb\x0eD>\x06=D\xa2\xb1\xeaC\xad\x85\nD8\x1fCD\xa2\xb1\xeaC\xc8\x9d\xffC28ID\xa2\xb1\xeaC\x0f\xf7\xe3C,QOD\xa2\xb1\xeaCe\x99\xd0C%jUD\xa2\xb1\xeaC\xc2\xcd\xbfC\x1f\x83[D\xa2\xb1\xeaC\xeb\xcd\xb3C\x19\x9caD\xa2\xb1\xeaC\x01\xe3\xa3C\x13\xb5gD\xa2\xb1\xeaC\xaa\x8e\xa2C\x0c\xcemD\xa2\xb1\xeaCBb\xa1C\x06\xe7sD\xa2\xb1\xeaCB\xdc\x9dC\x00\x00zD\xe1\xe5\xf4C\xc3\xe6\x7fC\x00\x00\x00\x00\xe1\xe5\xf4C\x84\x83\x81C8\x1f\xc3A\xe1\xe5\xf4C\xba\x19{C8\x1fCB\xe1\xe5\xf4C\x12\'\x84CjW\x92B\xe1\xe5\xf4C\xed\xe7\x8cC8\x1f\xc3B\xe1\xe5\xf4C9q\x97C\x06\xe7\xf3B\xe1\xe5\xf4Cm\x16\xa9CjW\x12C\xe1\xe5\xf4C]\xae\xb8CQ\xbb*C\xe1\xe5\xf4C\xcb&\xc1C8\x1fCC\xe1\xe5\xf4C\xa5\x13\xbeC\x1f\x83[C\xe1\xe5\xf4C\xe7K\xb9C\x06\xe7sC\xe1\xe5\xf4C\xf3\xce\xb8Cw%\x86C\xe1\xe5\xf4C\xeda\xc2CjW\x92C\xe1\xe5\xf4C\xb6\x8e\xcfC^\x89\x9eC\xe1\xe5\xf4C\x00\'\xd7CQ\xbb\xaaC\xe1\xe5\xf4C\xa7\x97\xe1CE\xed\xb6C\xe1\xe5\xf4C\xa9\x14\xe7C8\x1f\xc3C\xe1\xe5\xf4C\xcf\xb9\xefC,Q\xcfC\xe1\xe5\xf4C\x11\x8a\xfeC\x1f\x83\xdbC\xe1\xe5\xf4C!f\xfeC\x13\xb5\xe7C\xe1\xe5\xf4C\x88\x19\x05D\x06\xe7\xf3C\xe1\xe5\xf4C\x99l\nD}\x0c\x00D\xe1\xe5\xf4C\x85|\x0eDw%\x06D\xe1\xe5\xf4C\x8b\xdc\x14Dp>\x0cD\xe1\xe5\xf4C\x815\x1aDjW\x12D\xe1\xe5\xf4C\x9a\x16\x1aDdp\x18D\xe1\xe5\xf4C\xd2\x18\x19D^\x89\x1eD\xe1\xe5\xf4C\x92\xef\x17DW\xa2$D\xe1\xe5\xf4C&e\x16DQ\xbb*D\xe1\xe5\xf4C\x8f\x18\x13DK\xd40D\xe1\xe5\xf4ChR\x10DE\xed6D\xe1\xe5\xf4Cu\x86\x12D>\x06=D\xe1\xe5\xf4C^\xba\x0cD8\x1fCD\xe1\xe5\xf4CY\xbb\x01D28ID\xe1\xe5\xf4C\xe9\xdf\xe5C,QOD\xe1\xe5\xf4C\xdc\xb9\xd3C%jUD\xe1\xe5\xf4C\xe2\xa6\xc1C\x1f\x83[D\xe1\xe5\xf4C\xa0\x13\xbaC\x19\x9caD\xe1\xe5\xf4C\x98\xb9\xb1C\x13\xb5gD\xe1\xe5\xf4C\xe0\xa1\xa9C\x0c\xcemD\xe1\xe5\xf4Ce\x10\xa3C\x06\xe7sD\xe1\xe5\xf4C\x1d\x8c\xa0C\x00\x00zD\x1f\x1a\xffC\xadi\x87C\x00\x00\x00\x00\x1f\x1a\xffC5\x0e\x83C8\x1f\xc3A\x1f\x1a\xffCf\x88\x81C8\x1fCB\x1f\x1a\xffC+\xf9\x87CjW\x92B\x1f\x1a\xffCg\xe1\x8cC8\x1f\xc3B\x1f\x1a\xffC\xca\xbf\x99C\x06\xe7\xf3B\x1f\x1a\xffC\xec \xadCjW\x12C\x1f\x1a\xffCl\x9b\xc0CQ\xbb*C\x1f\x1a\xffCCO\xc6C8\x1fCC\x1f\x1a\xffC\x1b\xe8\xc3C\x1f\x83[C\x1f\x1a\xffC5\xfc\xc0C\x06\xe7sC\x1f\x1a\xffC\xc6\xdb\xbfCw%\x86C\x1f\x1a\xffC\x1b-\xc6CjW\x92C\x1f\x1a\xffC\xca\xba\xd3C^\x89\x9eC\x1f\x1a\xffC~]\xd7CQ\xbb\xaaC\x1f\x1a\xffC\xbf=\xd4CE\xed\xb6C\x1f\x1a\xffC\r(\xd9C8\x1f\xc3C\x1f\x1a\xffC\x19B\xe8C,Q\xcfC\x1f\x1a\xffC \xf8\xfdC\x1f\x83\xdbC\x1f\x1a\xffC"\xd7\x00D\x13\xb5\xe7C\x1f\x1a\xffC\xc6\xbd\x00D\x06\xe7\xf3C\x1f\x1a\xffC\xa1\xa4\x06D}\x0c\x00D\x1f\x1a\xffCI\x90\rDw%\x06D\x1f\x1a\xffC-N\x14Dp>\x0cD\x1f\x1a\xffC\xac\xbc\x16DjW\x12D\x1f\x1a\xffC\x97p\x19Ddp\x18D\x1f\x1a\xffC\xcer\x19D^\x89\x1eD\x1f\x1a\xffC?\x8b\x18DW\xa2$D\x1f\x1a\xffCL0\x19DQ\xbb*D\x1f\x1a\xffC;\x03\x17DK\xd40D\x1f\x1a\xffCB`\x15DE\xed6D\x1f\x1a\xffC< \x16D>\x06=D\x1f\x1a\xffC<\xf5\x0fD8\x1fCD\x1f\x1a\xffC\xc57\x01D28ID\x1f\x1a\xffC\t\xa7\xe8C,QOD\x1f\x1a\xffC[i\xdaC%jUD\x1f\x1a\xffC\xd90\xccC\x1f\x83[D\x1f\x1a\xffC\xb5\x13\xc1C\x19\x9caD\x1f\x1a\xffCw\x0b\xbdC\x13\xb5gD\x1f\x1a\xffC\xe3\xa3\xb4C\x0c\xcemD\x1f\x1a\xffC|k\xabC\x06\xe7sD\x1f\x1a\xffCp,\xaaC\x00\x00zD/\xa7\x04Dsc\x88C\x00\x00\x00\x00/\xa7\x04D\xe0\xc3}C8\x1f\xc3A/\xa7\x04DM\\}C8\x1fCB/\xa7\x04D\x01\x8f\x83CjW\x92B/\xa7\x04D\xb0G\x8fC8\x1f\xc3B/\xa7\x04D\xc8\xa8\xa1C\x06\xe7\xf3B/\xa7\x04D\x85M\xb4CjW\x12C/\xa7\x04D\xdd\x93\xbfCQ\xbb*C/\xa7\x04D\xcc\x84\xbfC8\x1fCC/\xa7\x04D\xe53\xc9C\x1f\x83[C/\xa7\x04D\xa0\x1d\xccC\x06\xe7sC/\xa7\x04Dhv\xceCw%\x86C/\xa7\x04Dz\x8c\xd0CjW\x92C/\xa7\x04D\xeb(\xd7C^\x89\x9eC/\xa7\x04DL\xc1\xd9CQ\xbb\xaaC/\xa7\x04D%\x9b\xd0CE\xed\xb6C/\xa7\x04D\xb7\xee\xd3C8\x1f\xc3C/\xa7\x04D\xcc\xc0\xe1C,Q\xcfC/\xa7\x04D\xb5M\xf2C\x1f\x83\xdbC/\xa7\x04D1#\xfaC\x13\xb5\xe7C/\xa7\x04D\xf18\xfbC\x06\xe7\xf3C/\xa7\x04D\xf5\xe3\x05D}\x0c\x00D/\xa7\x04D\x90 \rDw%\x06D/\xa7\x04D\xdbn\x14Dp>\x0cD/\xa7\x04DJ\xd0\x16DjW\x12D/\xa7\x04DZY\x18Ddp\x18D/\xa7\x04D7\x10\x1dD^\x89\x1eD/\xa7\x04D\x98\x96\x18DW\xa2$D/\xa7\x04D\xae\xe1\x17DQ\xbb*D/\xa7\x04D\x93[\x1bDK\xd40D/\xa7\x04D\xfe-\x19DE\xed6D/\xa7\x04D\xc2\xe0\x15D>\x06=D/\xa7\x04DRK\x10D8\x1fCD/\xa7\x04Dp}\x05D28ID/\xa7\x04DFu\xf5C,QOD/\xa7\x04Dq\x03\xdfC%jUD/\xa7\x04D\x87V\xcdC\x1f\x83[D/\xa7\x04D\x83\x8f\xc2C\x19\x9caD/\xa7\x04D\xfb\xbd\xc3C\x13\xb5gD/\xa7\x04Df\x9b\xb9C\x0c\xcemD/\xa7\x04D\x9d\xee\xb4C\x06\xe7sD/\xa7\x04D\xb2\xd9\xb3C\x00\x00zDN\xc1\tDHi\x8aC\x00\x00\x00\x00N\xc1\tD\xc3\x9a\x83C8\x1f\xc3AN\xc1\tD4\xd6{C8\x1fCBN\xc1\tD\xcbx\x84CjW\x92BN\xc1\tDG\x83\x92C8\x1f\xc3BN\xc1\tDp\x16\xa6C\x06\xe7\xf3BN\xc1\tD\xe5\x17\xbcCjW\x12CN\xc1\tDi{\xc3CQ\xbb*CN\xc1\tD\xbe\x94\xbbC8\x1fCCN\xc1\tD@\x06\xc2C\x1f\x83[CN\xc1\tDr\xc4\xccC\x06\xe7sCN\xc1\tD\x83\xa6\xd3Cw%\x86CN\xc1\tD\xa2\xda\xd8CjW\x92CN\xc1\tD\xe97\xddC^\x89\x9eCN\xc1\tDjw\xd8CQ\xbb\xaaCN\xc1\tD\x06/\xd7CE\xed\xb6CN\xc1\tD6T\xd7C8\x1f\xc3CN\xc1\tD3j\xdaC,Q\xcfCN\xc1\tD\xc2"\xe4C\x1f\x83\xdbCN\xc1\tD\xfcj\xf1C\x13\xb5\xe7CN\xc1\tDoL\xfcC\x06\xe7\xf3CN\xc1\tD\xae\x1e\x04D}\x0c\x00DN\xc1\tD\x8dD\nDw%\x06DN\xc1\tD\x82\xec\x13Dp>\x0cDN\xc1\tDwh\x17DjW\x12DN\xc1\tD\x1c\xde\x1aDdp\x18DN\xc1\tD\n\x13\x1cD^\x89\x1eDN\xc1\tDq,\x1bDW\xa2$DN\xc1\tDx\xc0\x1aDQ\xbb*DN\xc1\tD\xa6k\x1bDK\xd40DN\xc1\tD0\t\x17DE\xed6DN\xc1\tD\xebW\x13D>\x06=DN\xc1\tDD\t\rD8\x1fCDN\xc1\tD\r\t\x08D28IDN\xc1\tD\x01\x11\xfcC,QODN\xc1\tDE\xe1\xdeC%jUDN\xc1\tD\xc6\xe6\xc6C\x1f\x83[DN\xc1\tD\x12\xee\xc3C\x19\x9caDN\xc1\tD\xbe\xdc\xc9C\x13\xb5gDN\xc1\tDQ\x10\xc8C\x0c\xcemDN\xc1\tD\xdb\xea\xc1C\x06\xe7sDN\xc1\tD\x91\xb2\xbfC\x00\x00zDn\xdb\x0eD\xd5\xdc\x8fC\x00\x00\x00\x00n\xdb\x0eDn\x93\x8eC8\x1f\xc3An\xdb\x0eD\x1b<\x8dC8\x1fCBn\xdb\x0eDX\x9c\x90CjW\x92Bn\xdb\x0eDn\xd4\x9dC8\x1f\xc3Bn\xdb\x0eD\xd5#\xb2C\x06\xe7\xf3Bn\xdb\x0eDd\xb2\xc5CjW\x12Cn\xdb\x0eD\xec^\xccCQ\xbb*Cn\xdb\x0eD\xf9\xfd\xc3C8\x1fCCn\xdb\x0eD\xe0\x89\xbfC\x1f\x83[Cn\xdb\x0eD\xdbs\xc4C\x06\xe7sCn\xdb\x0eD\xfa0\xc9Cw%\x86Cn\xdb\x0eD\xab\x7f\xd9CjW\x92Cn\xdb\x0eD\x7f\x91\xe5C^\x89\x9eCn\xdb\x0eD\x16E\xdcCQ\xbb\xaaCn\xdb\x0eD\x06\xb7\xdcCE\xed\xb6Cn\xdb\x0eD\xf6\xce\xd9C8\x1f\xc3Cn\xdb\x0eD\x16\x8d\xdaC,Q\xcfCn\xdb\x0eD\x9e\xa0\xe0C\x1f\x83\xdbCn\xdb\x0eD/&\xf0C\x13\xb5\xe7Cn\xdb\x0eD\x8d\xd5\xf8C\x06\xe7\xf3Cn\xdb\x0eD\x1a\x97\x03D}\x0c\x00Dn\xdb\x0eDm\xf1\x08Dw%\x06Dn\xdb\x0eD\x89\xe2\x0fDp>\x0cDn\xdb\x0eD\xc7\xc5\x15DjW\x12Dn\xdb\x0eD\x8c\xeb\x19Ddp\x18Dn\xdb\x0eD[\xcc\x1cD^\x89\x1eDn\xdb\x0eDf\xb4\x1dDW\xa2$Dn\xdb\x0eD7(\x1bDQ\xbb*Dn\xdb\x0eDG\xf9\x19DK\xd40Dn\xdb\x0eD\xf1\x1d\x14DE\xed6Dn\xdb\x0eDiE\x10D>\x06=Dn\xdb\x0eD\xc2B\x0cD8\x1fCDn\xdb\x0eD\x14\x7f\x04D28IDn\xdb\x0eD\x90\xe1\xf6C,QODn\xdb\x0eD\xea\xf7\xdfC%jUDn\xdb\x0eDVi\xcaC\x1f\x83[Dn\xdb\x0eD\xdft\xc4C\x19\x9caDn\xdb\x0eD:?\xcdC\x13\xb5gDn\xdb\x0eD\x04\xc1\xceC\x0c\xcemDn\xdb\x0eD!y\xccC\x06\xe7sDn\xdb\x0eD\x9dv\xc0C\x00\x00zD\x8d\xf5\x13D\xe1\x93\x9bC\x00\x00\x00\x00\x8d\xf5\x13D\x06\xdf\x97C8\x1f\xc3A\x8d\xf5\x13D\xd8\xca\x96C8\x1fCB\x8d\xf5\x13D\xa3\x11\x9fCjW\x92B\x8d\xf5\x13D\nv\xb0C8\x1f\xc3B\x8d\xf5\x13D\x8aW\xbdC\x06\xe7\xf3B\x8d\xf5\x13D \xb6\xc5CjW\x12C\x8d\xf5\x13D\xbb~\xc9CQ\xbb*C\x8d\xf5\x13D_G\xc4C8\x1fCC\x8d\xf5\x13D\xa9g\xbbC\x1f\x83[C\x8d\xf5\x13D\xecd\xbcC\x06\xe7sC\x8d\xf5\x13D.H\xccCw%\x86C\x8d\xf5\x13D4\x86\xdbCjW\x92C\x8d\xf5\x13DR\xe4\xe0C^\x89\x9eC\x8d\xf5\x13D\xec+\xddCQ\xbb\xaaC\x8d\xf5\x13D\r\x81\xd9CE\xed\xb6C\x8d\xf5\x13D\x1a>\xe0C8\x1f\xc3C\x8d\xf5\x13D1z\xe3C,Q\xcfC\x8d\xf5\x13D\x0c=\xe7C\x1f\x83\xdbC\x8d\xf5\x13D\xd1\xbd\xecC\x13\xb5\xe7C\x8d\xf5\x13D\x1c\xde\xf0C\x06\xe7\xf3C\x8d\xf5\x13D\x0e\xea\xf8C}\x0c\x00D\x8d\xf5\x13D\xe0\x16\x06Dw%\x06D\x8d\xf5\x13D\xf9\xa1\x0bDp>\x0cD\x8d\xf5\x13D\xd9\x19\x11DjW\x12D\x8d\xf5\x13D\xca9\x17Ddp\x18D\x8d\xf5\x13D\xa6\xee\x1aD^\x89\x1eD\x8d\xf5\x13D\xd1\xa4\x1cDW\xa2$D\x8d\xf5\x13D\x997\x18DQ\xbb*D\x8d\xf5\x13D@\xe2\x13DK\xd40D\x8d\xf5\x13D^\xba\x0eDE\xed6D\x8d\xf5\x13DC"\nD>\x06=D\x8d\xf5\x13D\x0fi\tD8\x1fCD\x8d\xf5\x13Dl\x88\x01D28ID\x8d\xf5\x13D\xbf\xf1\xf2C,QOD\x8d\xf5\x13D\xb9;\xe3C%jUD\x8d\xf5\x13D\x07\x1f\xd2C\x1f\x83[D\x8d\xf5\x13D\xc5\x04\xd1C\x19\x9caD\x8d\xf5\x13D\xef\xa3\xd7C\x13\xb5gD\x8d\xf5\x13DXn\xd3C\x0c\xcemD\x8d\xf5\x13D\x1a\xa1\xd0C\x06\xe7sD\x8d\xf5\x13D4f\xc7C\x00\x00zD\xac\x0f\x19Dj\x93\xa5C\x00\x00\x00\x00\xac\x0f\x19DN\xfe\x9dC8\x1f\xc3A\xac\x0f\x19D\x0e\xa3\xa1C8\x1fCB\xac\x0f\x19D|\xc5\xb2CjW\x92B\xac\x0f\x19D\x08\xb2\xbeC8\x1f\xc3B\xac\x0f\x19D\x18\xe8\xc5C\x06\xe7\xf3B\xac\x0f\x19D<X\xcbCjW\x12C\xac\x0f\x19D\xdfu\xcdCQ\xbb*C\xac\x0f\x19D\x80\xdc\xc6C8\x1fCC\xac\x0f\x19D\xe2\x18\xc1C\x1f\x83[C\xac\x0f\x19D\xbd\xa8\xc5C\x06\xe7sC\xac\x0f\x19D\xc9\xf2\xcdCw%\x86C\xac\x0f\x19DO\xf7\xd6CjW\x92C\xac\x0f\x19D\x0f\x05\xdcC^\x89\x9eC\xac\x0f\x19Dc,\xdbCQ\xbb\xaaC\xac\x0f\x19D\x10\xf4\xdcCE\xed\xb6C\xac\x0f\x19D\x80\xfe\xe2C8\x1f\xc3C\xac\x0f\x19D!8\xe6C,Q\xcfC\xac\x0f\x19D4<\xedC\x1f\x83\xdbC\xac\x0f\x19Dlb\xf5C\x13\xb5\xe7C\xac\x0f\x19D\xc0\xaa\xfaC\x06\xe7\xf3C\xac\x0f\x19DH\xad\x00D}\x0c\x00D\xac\x0f\x19D{\xef\x04Dw%\x06D\xac\x0f\x19D\xb5w\x07Dp>\x0cD\xac\x0f\x19D\x13\x17\x0cDjW\x12D\xac\x0f\x19D\xe3\xe9\x13Ddp\x18D\xac\x0f\x19Da\x95\x17D^\x89\x1eD\xac\x0f\x19D@\xb5\x19DW\xa2$D\xac\x0f\x19DC\x19\x17DQ\xbb*D\xac\x0f\x19D78\x15DK\xd40D\xac\x0f\x19D\xbc\xb6\rDE\xed6D\xac\x0f\x19D+\x9c\x08D>\x06=D\xac\x0f\x19D,\x08\x04D8\x1fCD\xac\x0f\x19DV\x15\xfaC28ID\xac\x0f\x19D\xf0\xd2\xe9C,QOD\xac\x0f\x19DTy\xddC%jUD\xac\x0f\x19DB\x1f\xdcC\x1f\x83[D\xac\x0f\x19D\t\xfc\xdbC\x19\x9caD\xac\x0f\x19D\xf08\xd9C\x13\xb5gD\xac\x0f\x19D\xc7\xe7\xd2C\x0c\xcemD\xac\x0f\x19D`\xb7\xd3C\x06\xe7sD\xac\x0f\x19D\xd9\xdf\xd0C\x00\x00zD\xcc)\x1eDxM\xacC\x00\x00\x00\x00\xcc)\x1eD\xf3\xc1\xa7C8\x1f\xc3A\xcc)\x1eDxr\xacC8\x1fCB\xcc)\x1eD\x00\x1d\xbbCjW\x92B\xcc)\x1eDB.\xc4C8\x1f\xc3B\xcc)\x1eD\xd2p\xcfC\x06\xe7\xf3B\xcc)\x1eD>\x94\xd3CjW\x12C\xcc)\x1eD\xf7\x84\xcfCQ\xbb*C\xcc)\x1eD\x8ek\xccC8\x1fCC\xcc)\x1eD\x1d\x86\xcbC\x1f\x83[C\xcc)\x1eDhW\xcdC\x06\xe7sC\xcc)\x1eD\x1d;\xd0Cw%\x86C\xcc)\x1eD\x88\xa3\xdaCjW\x92C\xcc)\x1eDj\xa7\xe3C^\x89\x9eC\xcc)\x1eDh\xa0\xe2CQ\xbb\xaaC\xcc)\x1eDW\xf0\xe8CE\xed\xb6C\xcc)\x1eD\xa6\x7f\xf6C8\x1f\xc3C\xcc)\x1eD8\x1b\xf8C,Q\xcfC\xcc)\x1eD\xe4\x8e\xf6C\x1f\x83\xdbC\xcc)\x1eD\x97-\xfcC\x13\xb5\xe7C\xcc)\x1eD\xb9\xb2\x02D\x06\xe7\xf3C\xcc)\x1eDr\xd9\x05D}\x0c\x00D\xcc)\x1eD\xf7\x8f\x06Dw%\x06D\xcc)\x1eD\xbc\xde\x07Dp>\x0cD\xcc)\x1eD\t\x05\rDjW\x12D\xcc)\x1eD\xc0\xa7\x0eDdp\x18D\xcc)\x1eD\x87\xf3\x15D^\x89\x1eD\xcc)\x1eD\xc6\x0b\x14DW\xa2$D\xcc)\x1eD\x14M\x11DQ\xbb*D\xcc)\x1eD%=\x12DK\xd40D\xcc)\x1eD\x8e\xcb\x0cDE\xed6D\xcc)\x1eD\xd4\xc9\nD>\x06=D\xcc)\x1eD\x19\x8b\x05D8\x1fCD\xcc)\x1eD>6\xf8C28ID\xcc)\x1eD\xc9Q\xeaC,QOD\xcc)\x1eDW\xb3\xe5C%jUD\xcc)\x1eD\xc1\xa3\xeaC\x1f\x83[D\xcc)\x1eD\xb1\xc1\xe5C\x19\x9caD\xcc)\x1eDj\xf7\xdbC\x13\xb5gD\xcc)\x1eD\x84\xd8\xdaC\x0c\xcemD\xcc)\x1eD\xf3\xce\xd9C\x06\xe7sD\xcc)\x1eDq@\xd7C\x00\x00zD\xebC#D\xe0\xfb\xc1C\x00\x00\x00\x00\xebC#D\x01m\xc2C8\x1f\xc3A\xebC#D\x8b\x98\xc0C8\x1fCB\xebC#D\xfc\xcd\xc4CjW\x92B\xebC#DyM\xd3C8\x1f\xc3B\xebC#D\xfd^\xd9C\x06\xe7\xf3B\xebC#D\xd1\x91\xddCjW\x12C\xebC#D\x94\x13\xdcCQ\xbb*C\xebC#D\xde\x1d\xddC8\x1fCC\xebC#D\xc7M\xd8C\x1f\x83[C\xebC#D\x81\xe6\xd6C\x06\xe7sC\xebC#D\x15\xc2\xe2Cw%\x86C\xebC#D-r\xedCjW\x92C\xebC#D\x88\x10\xf3C^\x89\x9eC\xebC#D\xa9\x93\xf4CQ\xbb\xaaC\xebC#Dt6\xf7CE\xed\xb6C\xebC#DZL\x00D8\x1f\xc3C\xebC#DW\xfc\x02D,Q\xcfC\xebC#D\xb66\x00D\x1f\x83\xdbC\xebC#D\xb1\xc4\xfbC\x13\xb5\xe7C\xebC#D\xf5b\x00D\x06\xe7\xf3C\xebC#Dw\xf4\x02D}\x0c\x00D\xebC#D\xda\x8f\x05Dw%\x06D\xebC#DrY\x05Dp>\x0cD\xebC#D\xbd\xfd\x06DjW\x12D\xebC#D<\x9c\x0cDdp\x18D\xebC#D\xa0t\x0fD^\x89\x1eD\xebC#D\xf8\x9a\x0bDW\xa2$D\xebC#D0@\rDQ\xbb*D\xebC#Dn^\x0fDK\xd40D\xebC#D;\x95\rDE\xed6D\xebC#D\x8b)\x0cD>\x06=D\xebC#D\xda\x9d\x08D8\x1fCD\xebC#D\x89k\xfdC28ID\xebC#D\xa8d\xeeC,QOD\xebC#D\xb1\xe3\xeeC%jUD\xebC#D\x1d\x88\xf6C\x1f\x83[D\xebC#D\xc3R\xeaC\x19\x9caD\xebC#D\xaa\x9a\xdbC\x13\xb5gD\xebC#D\x12z\xdeC\x0c\xcemD\xebC#D\xe8\x17\xdfC\x06\xe7sD\xebC#D|\xfe\xd8C\x00\x00zD\n^(D\x12\xf5\xdaC\x00\x00\x00\x00\n^(D\xa2q\xdcC8\x1f\xc3A\n^(D\xf4\x0f\xd9C8\x1fCB\n^(D\xe6\xfd\xddCjW\x92B\n^(D\xcc[\xe4C8\x1f\xc3B\n^(D\x88F\xe6C\x06\xe7\xf3B\n^(Dm\xa3\xeaCjW\x12C\n^(D\xa6`\xf2CQ\xbb*C\n^(D+6\xefC8\x1fCC\n^(DU\x1c\xedC\x1f\x83[C\n^(D\xa1\xd9\xf0C\x06\xe7sC\n^(DuQ\xf9Cw%\x86C\n^(D\xa4\\\x02DjW\x92C\n^(D\xdc0\x02D^\x89\x9eC\n^(D\x12e\xffCQ\xbb\xaaC\n^(D\x97\x1d\xfcCE\xed\xb6C\n^(DD\x9e\x03D8\x1f\xc3C\n^(D\xc8\xa1\x08D,Q\xcfC\n^(D4l\x05D\x1f\x83\xdbC\n^(D\x9a\x07\x02D\x13\xb5\xe7C\n^(D.\xcc\x00D\x06\xe7\xf3C\n^(D\xe3*\x01D}\x0c\x00D\n^(D{y\x00Dw%\x06D\n^(D\xd6)\xffCp>\x0cD\n^(D\nd\x01DjW\x12D\n^(D\xdbd\x06Ddp\x18D\n^(D\xac\xfa\x07D^\x89\x1eD\n^(D%\x00\x05DW\xa2$D\n^(D\x9dQ\x07DQ\xbb*D\n^(Dpc\x0bDK\xd40D\n^(D\xef\xaf\x0cDE\xed6D\n^(D\x83\xca\x0bD>\x06=D\n^(D\xaff\x06D8\x1fCD\n^(D\x05\xfa\xf6C28ID\n^(D\xf2@\xe9C,QOD\n^(D9\x9e\xefC%jUD\n^(Dw\xde\xf6C\x1f\x83[D\n^(Dz\xc4\xeeC\x19\x9caD\n^(D\r\xde\xe1C\x13\xb5gD\n^(D\xe4\x87\xdeC\x0c\xcemD\n^(D\xea\xe0\xdeC\x06\xe7sD\n^(D\x8dg\xd9C\x00\x00zD*x-D\x02y\xebC\x00\x00\x00\x00*x-D\x11?\xf3C8\x1f\xc3A*x-DP\xe9\xf6C8\x1fCB*x-De=\xf5CjW\x92B*x-D\xfaL\xf6C8\x1f\xc3B*x-D<n\xfaC\x06\xe7\xf3B*x-D\xa9D\x01DjW\x12C*x-D)\xde\x01DQ\xbb*C*x-D\xc8\xb9\x02D8\x1fCC*x-D\xfa}\x01D\x1f\x83[C*x-D\x81\xeb\x02D\x06\xe7sC*x-D\x1b\xa6\x06Dw%\x86C*x-D\x9d\x98\tDjW\x92C*x-DD\xf3\nD^\x89\x9eC*x-D\xe3\x93\x07DQ\xbb\xaaC*x-D\xd5^\x07DE\xed\xb6C*x-D\x03\xe2\tD8\x1f\xc3C*x-D\x89\x10\x0cD,Q\xcfC*x-DUA\x0bD\x1f\x83\xdbC*x-D\n\x1e\x08D\x13\xb5\xe7C*x-D\xbb\x9c\x01D\x06\xe7\xf3C*x-D\xf0\x13\x00D}\x0c\x00D*x-D"\xdf\xffCw%\x06D*x-D\xca\xe7\xfeCp>\x0cD*x-D\x1d\x15\xfeCjW\x12D*x-D\xaad\x02Ddp\x18D*x-D\x10?\x05D^\x89\x1eD*x-D\xb1o\x03DW\xa2$D*x-D\x0e~\x06DQ\xbb*D*x-D\x00\x86\nDK\xd40D*x-D\x00$\x0bDE\xed6D*x-D~\xbc\x07D>\x06=D*x-D<\xbf\x04D8\x1fCD*x-D\xc8\x82\xfeC28ID*x-DY\x9c\xf4C,QOD*x-D\xd3Q\xf4C%jUD*x-D\xc5\xa3\xf5C\x1f\x83[D*x-D\xfbj\xf1C\x19\x9caD*x-D\x97\xae\xeeC\x13\xb5gD*x-D\x0e\'\xe2C\x0c\xcemD*x-D$\x06\xddC\x06\xe7sD*x-D|\x84\xd7C\x00\x00zDI\x922D\x9d*\xf3C\x00\x00\x00\x00I\x922D\xb3\x9e\x00D8\x1f\xc3AI\x922D\x96\x90\x06D8\x1fCBI\x922D\xb9\xd8\x07DjW\x92BI\x922Dy\x7f\x07D8\x1f\xc3BI\x922D\xdb\xe1\x08D\x06\xe7\xf3BI\x922D\xfe\xec\x0bDjW\x12CI\x922D\x96\xe0\x0cDQ\xbb*CI\x922Dw{\rD8\x1fCCI\x922D\x9cN\x0cD\x1f\x83[CI\x922D\xad\x85\x0fD\x06\xe7sCI\x922D\x13\x8f\x0fDw%\x86CI\x922Dk\x8e\x10DjW\x92CI\x922D\xfb\x91\x10D^\x89\x9eCI\x922Dn&\x0fDQ\xbb\xaaCI\x922D\x94\xfa\rDE\xed\xb6CI\x922D\xbc\x15\x0fD8\x1f\xc3CI\x922D\x8a\xc4\x0cD,Q\xcfCI\x922D+~\rD\x1f\x83\xdbCI\x922D\xfa\x9f\tD\x13\xb5\xe7CI\x922D\xe6*\x02D\x06\xe7\xf3CI\x922D\x92\x1b\xf8C}\x0c\x00DI\x922Dm\xef\xfaCw%\x06DI\x922Dv\xc4\xffCp>\x0cDI\x922Dv\x03\x00DjW\x12DI\x922D%g\xffCdp\x18DI\x922D\x82\r\x04D^\x89\x1eDI\x922DM\xa6\x03DW\xa2$DI\x922D9M\nDQ\xbb*DI\x922D\xd7\xfd\nDK\xd40DI\x922DN\x9e\x05DE\xed6DI\x922D7\xcc\x00D>\x06=DI\x922D\x8b\x17\x02D8\x1fCDI\x922Dh4\x01D28IDI\x922DO\xef\xf9C,QODI\x922D\x0eS\xf6C%jUDI\x922D\x08\xdf\xeeC\x1f\x83[DI\x922D\x8b:\xe9C\x19\x9caDI\x922D\n\xc2\xe4C\x13\xb5gDI\x922D\xbc\xfa\xdfC\x0c\xcemDI\x922D:\x18\xddC\x06\xe7sDI\x922DB\x1f\xd6C\x00\x00zDh\xac7D\x8f\xbd\xfcC\x00\x00\x00\x00h\xac7D\x99\xad\x04D8\x1f\xc3Ah\xac7D\x16\xcc\nD8\x1fCBh\xac7DRD\rDjW\x92Bh\xac7D\xbb\xff\x11D8\x1f\xc3Bh\xac7D\r\xbf\x13D\x06\xe7\xf3Bh\xac7DH\x94\x15DjW\x12Ch\xac7DYW\x1aDQ\xbb*Ch\xac7DU\xe6\x17D8\x1fCCh\xac7D\xc3r\x15D\x1f\x83[Ch\xac7D\xcc\x90\x16D\x06\xe7sCh\xac7D\xf7\xd9\x14Dw%\x86Ch\xac7D\xde\x93\x12DjW\x92Ch\xac7D>7\x16D^\x89\x9eCh\xac7D\xa0\xf8\x16DQ\xbb\xaaCh\xac7D\x18;\x16DE\xed\xb6Ch\xac7D\x7f\x9d\x16D8\x1f\xc3Ch\xac7Da\x1f\x14D,Q\xcfCh\xac7D\xc9\x0b\x0fD\x1f\x83\xdbCh\xac7D\r\xea\x07D\x13\xb5\xe7Ch\xac7D5\xcd\x00D\x06\xe7\xf3Ch\xac7D\xfe\xb4\xfcC}\x0c\x00Dh\xac7D\x81\xbf\xf7Cw%\x06Dh\xac7DY\x92\xf9Cp>\x0cDh\xac7D\x88_\xf8CjW\x12Dh\xac7D\x92N\xf9Cdp\x18Dh\xac7D\xc9\n\xfcC^\x89\x1eDh\xac7Dv]\x01DW\xa2$Dh\xac7Dg\xb3\x04DQ\xbb*Dh\xac7D7\x98\x06DK\xd40Dh\xac7D\xa2e\x03DE\xed6Dh\xac7D\x8ar\xffC>\x06=Dh\xac7D\x7f\x7f\xfbC8\x1fCDh\xac7D\xd5\xf7\xfcC28IDh\xac7D\xe7Z\xfdC,QODh\xac7D\x01B\xfbC%jUDh\xac7D5\xd7\xedC\x1f\x83[Dh\xac7D\xf2\xc5\xe8C\x19\x9caDh\xac7DEu\xe0C\x13\xb5gDh\xac7D\xbe+\xdaC\x0c\xcemDh\xac7D\xf6r\xd2C\x06\xe7sDh\xac7D\xce\xe4\xcdC\x00\x00zD\x88\xc6<D\xe8\x91\x02D\x00\x00\x00\x00\x88\xc6<D\x12(\x08D8\x1f\xc3A\x88\xc6<D5\xaa\rD8\x1fCB\x88\xc6<D\xdfQ\x11DjW\x92B\x88\xc6<D^\x02\x18D8\x1f\xc3B\x88\xc6<Dx\x9f\x1cD\x06\xe7\xf3B\x88\xc6<Dzb!DjW\x12C\x88\xc6<D\xf5\xd9%DQ\xbb*C\x88\xc6<D&V#D8\x1fCC\x88\xc6<D\xdf?\x1fD\x1f\x83[C\x88\xc6<D3} D\x06\xe7sC\x88\xc6<D\xf2J\x1cDw%\x86C\x88\xc6<D\xfb"\x19DjW\x92C\x88\xc6<Dqq\x1bD^\x89\x9eC\x88\xc6<D\n\xd6\x1bDQ\xbb\xaaC\x88\xc6<D\xb3N\x1aDE\xed\xb6C\x88\xc6<D\xdb\xa3\x1aD8\x1f\xc3C\x88\xc6<DLK\x1aD,Q\xcfC\x88\xc6<D\xd4\xfc\x10D\x1f\x83\xdbC\x88\xc6<DI\xe7\x08D\x13\xb5\xe7C\x88\xc6<D\xd4\x0c\xfdC\x06\xe7\xf3C\x88\xc6<Dz\xce\xf2C}\x0c\x00D\x88\xc6<D\xfc\x99\xf1Cw%\x06D\x88\xc6<D\x04\xd0\xecCp>\x0cD\x88\xc6<D\xa4\xe3\xe9CjW\x12D\x88\xc6<D;w\xebCdp\x18D\x88\xc6<D&V\xf2C^\x89\x1eD\x88\xc6<D0\x0f\xf2CW\xa2$D\x88\xc6<DS\xfd\xf9CQ\xbb*D\x88\xc6<DA\xc2\x01DK\xd40D\x88\xc6<D~\xda\x03DE\xed6D\x88\xc6<D!\xc1\x03D>\x06=D\x88\xc6<D\xf3\xc2\xfdC8\x1fCD\x88\xc6<D\xfd\xf4\xf6C28ID\x88\xc6<DT\xb6\xf6C,QOD\x88\xc6<D\x87\xc8\xf9C%jUD\x88\xc6<D\x84\x05\xedC\x1f\x83[D\x88\xc6<D\x8cm\xe7C\x19\x9caD\x88\xc6<D\rB\xe9C\x13\xb5gD\x88\xc6<DR_\xdcC\x0c\xcemD\x88\xc6<D\xdc\x91\xcfC\x06\xe7sD\x88\xc6<D\xf0~\xcdC\x00\x00zD\xa7\xe0AD\x9c\xf2\x03D\x00\x00\x00\x00\xa7\xe0ADS\xe9\tD8\x1f\xc3A\xa7\xe0AD\xca\xf7\x0eD8\x1fCB\xa7\xe0AD\x9e \x16DjW\x92B\xa7\xe0AD\xd4\xe5\x1cD8\x1f\xc3B\xa7\xe0ADk\xe3 D\x06\xe7\xf3B\xa7\xe0ADB\xe6)DjW\x12C\xa7\xe0ADNp.DQ\xbb*C\xa7\xe0AD\x9c\xdf1D8\x1fCC\xa7\xe0AD<\x0f-D\x1f\x83[C\xa7\xe0AD\x8d\xc2)D\x06\xe7sC\xa7\xe0AD=\xda%Dw%\x86C\xa7\xe0AD%V!DjW\x92C\xa7\xe0AD\x1d\xce D^\x89\x9eC\xa7\xe0AD*\xca\x1eDQ\xbb\xaaC\xa7\xe0AD\xefF\x1eDE\xed\xb6C\xa7\xe0AD\xfe\xbc\x1eD8\x1f\xc3C\xa7\xe0AD. \x1cD,Q\xcfC\xa7\xe0AD\xa5\xbf\x13D\x1f\x83\xdbC\xa7\xe0AD\xa7\xf7\x08D\x13\xb5\xe7C\xa7\xe0AD\xde4\x01D\x06\xe7\xf3C\xa7\xe0AD\xcb\xd9\xf0C}\x0c\x00D\xa7\xe0AD\xc8=\xe7Cw%\x06D\xa7\xe0AD\x8c\\\xe6Cp>\x0cD\xa7\xe0AD6y\xdfCjW\x12D\xa7\xe0AD\xba{\xe3Cdp\x18D\xa7\xe0AD\xa9;\xe4C^\x89\x1eD\xa7\xe0AD/\xca\xe5CW\xa2$D\xa7\xe0ADan\xecCQ\xbb*D\xa7\xe0AD \xf0\xf4CK\xd40D\xa7\xe0AD<\x8e\x04DE\xed6D\xa7\xe0AD\xc4f\x05D>\x06=D\xa7\xe0ADP#\x02D8\x1fCD\xa7\xe0ADa\xa8\xf6C28ID\xa7\xe0AD\xc4\xed\xeeC,QOD\xa7\xe0AD\xdf\xd4\xf2C%jUD\xa7\xe0AD\\\x83\xe8C\x1f\x83[D\xa7\xe0AD\x1a7\xe0C\x19\x9caD\xa7\xe0AD\xb7\x8e\xdeC\x13\xb5gD\xa7\xe0ADT\xc1\xd6C\x0c\xcemD\xa7\xe0AD\xdb\xad\xd0C\x06\xe7sD\xa7\xe0ADZ\xe1\xd2C\x00\x00zD\xc7\xfaFD;\xe3\x03D\x00\x00\x00\x00\xc7\xfaFD\xd3\xe6\x07D8\x1f\xc3A\xc7\xfaFDWt\x0eD8\x1fCB\xc7\xfaFD\xe9\xa0\x17DjW\x92B\xc7\xfaFD\xbf9!D8\x1f\xc3B\xc7\xfaFD\x8b\x1c#D\x06\xe7\xf3B\xc7\xfaFD\xa7w*DjW\x12C\xc7\xfaFD"g2DQ\xbb*C\xc7\xfaFDX\x8f;D8\x1fCC\xc7\xfaFD%d7D\x1f\x83[C\xc7\xfaFD\x1c\xba4D\x06\xe7sC\xc7\xfaFD\x10\xf2-Dw%\x86C\xc7\xfaFD\xbc\x02&DjW\x92C\xc7\xfaFDh\xab#D^\x89\x9eC\xc7\xfaFD\xd6\'!DQ\xbb\xaaC\xc7\xfaFD5\xcf DE\xed\xb6C\xc7\xfaFD\xef0\x1dD8\x1f\xc3C\xc7\xfaFD\xf3\x0e\x15D,Q\xcfC\xc7\xfaFD\xe3\xc0\rD\x1f\x83\xdbC\xc7\xfaFD`\x89\x07D\x13\xb5\xe7C\xc7\xfaFD\xac\x98\x01D\x06\xe7\xf3C\xc7\xfaFD\xe4\xeb\xf2C}\x0c\x00D\xc7\xfaFD\xea\xee\xeaCw%\x06D\xc7\xfaFD\x0b"\xeaCp>\x0cD\xc7\xfaFD\xfb\xbe\xe4CjW\x12D\xc7\xfaFD\xfav\xe4Cdp\x18D\xc7\xfaFD\xd8\x91\xe4C^\x89\x1eD\xc7\xfaFD;\xb4\xe3CW\xa2$D\xc7\xfaFD\xbf\xe5\xe3CQ\xbb*D\xc7\xfaFDL\x1b\xf0CK\xd40D\xc7\xfaFD\x90\xca\x00DE\xed6D\xc7\xfaFD1>\xffC>\x06=D\xc7\xfaFD\x919\xfaC8\x1fCD\xc7\xfaFD\x82\x14\xefC28ID\xc7\xfaFD\x12\x88\xe3C,QOD\xc7\xfaFDf3\xe2C%jUD\xc7\xfaFD!\xfa\xdfC\x1f\x83[D\xc7\xfaFD\x94y\xdcC\x19\x9caD\xc7\xfaFD\xae\x7f\xd6C\x13\xb5gD\xc7\xfaFD\xd1Y\xd6C\x0c\xcemD\xc7\xfaFD.,\xd0C\x06\xe7sD\xc7\xfaFDc\xf3\xd6C\x00\x00zD\xe6\x14LD\xdf\xa8\x05D\x00\x00\x00\x00\xe6\x14LD\x81\xce\x04D8\x1f\xc3A\xe6\x14LD\x9c\xe1\rD8\x1fCB\xe6\x14LD:\'\x1aDjW\x92B\xe6\x14LD\xa7\xab"D8\x1f\xc3B\xe6\x14LD\xdb\xb4%D\x06\xe7\xf3B\xe6\x14LD|\x0e-DjW\x12C\xe6\x14LD\x03\t8DQ\xbb*C\xe6\x14LD|\x84=D8\x1fCC\xe6\x14LDL\x99=D\x1f\x83[C\xe6\x14LD\xda\xc29D\x06\xe7sC\xe6\x14LD\x02b3Dw%\x86C\xe6\x14LD\xa9\xbf,DjW\x92C\xe6\x14LD0\xf0\'D^\x89\x9eC\xe6\x14LD7H DQ\xbb\xaaC\xe6\x14LD\xd8r\x1eDE\xed\xb6C\xe6\x14LD\x02\x1e\x1bD8\x1f\xc3C\xe6\x14LD\xf3@\x12D,Q\xcfC\xe6\x14LD\xe8\x94\x08D\x1f\x83\xdbC\xe6\x14LDq6\x03D\x13\xb5\xe7C\xe6\x14LD\x9a\xc3\x00D\x06\xe7\xf3C\xe6\x14LD|6\xf5C}\x0c\x00D\xe6\x14LD\xb6\n\xedCw%\x06D\xe6\x14LD\x8aE\xecCp>\x0cD\xe6\x14LD\x15\xb6\xe5CjW\x12D\xe6\x14LDZ\x86\xe3Cdp\x18D\xe6\x14LDA\xbe\xe1C^\x89\x1eD\xe6\x14LDX\x91\xd8CW\xa2$D\xe6\x14LD\x01\x9d\xd9CQ\xbb*D\xe6\x14LD\x93r\xe4CK\xd40D\xe6\x14LD\x03\x83\xf1CE\xed6D\xe6\x14LD\xba\x9b\xf6C>\x06=D\xe6\x14LD\xf5\x7f\xeaC8\x1fCD\xe6\x14LD\x15\xb9\xd7C28ID\xe6\x14LD\x83\xda\xd3C,QOD\xe6\x14LD.\xd8\xd7C%jUD\xe6\x14LD\x9ep\xddC\x1f\x83[D\xe6\x14LDqC\xd9C\x19\x9caD\xe6\x14LD\xaf%\xd0C\x13\xb5gD\xe6\x14LDn\xb6\xcdC\x0c\xcemD\xe6\x14LDAz\xccC\x06\xe7sD\xe6\x14LD\x8c\x0e\xd4C\x00\x00zD\x05/QDzu\nD\x00\x00\x00\x00\x05/QD\x01}\x0cD8\x1f\xc3A\x05/QD\x882\x10D8\x1fCB\x05/QDK\xf7\x18DjW\x92B\x05/QD\xd8\x17#D8\x1f\xc3B\x05/QD~\x96-D\x06\xe7\xf3B\x05/QDZ\x993DjW\x12C\x05/QD\x00\x9a;DQ\xbb*C\x05/QDJG<D8\x1fCC\x05/QD\x06a;D\x1f\x83[C\x05/QD\xb9\x18:D\x06\xe7sC\x05/QDW&8Dw%\x86C\x05/QD\xcd\x103DjW\x92C\x05/QD\xe7I-D^\x89\x9eC\x05/QD0\xe2"DQ\xbb\xaaC\x05/QD\x11\xd2\x1bDE\xed\xb6C\x05/QD\xed\xfa\x17D8\x1f\xc3C\x05/QD\xfdh\rD,Q\xcfC\x05/QDTG\x07D\x1f\x83\xdbC\x05/QD\xd6Q\x03D\x13\xb5\xe7C\x05/QD.J\x00D\x06\xe7\xf3C\x05/QD\t\xdc\xf5C}\x0c\x00D\x05/QD\x87\x1b\xf5Cw%\x06D\x05/QD\x96:\xf3Cp>\x0cD\x05/QD\xf6\xeb\xecCjW\x12D\x05/QD\xdc\x98\xe5Cdp\x18D\x05/QD%]\xdbC^\x89\x1eD\x05/QD\x126\xd3CW\xa2$D\x05/QD\xa0\x0e\xd0CQ\xbb*D\x05/QD\xe9n\xd4CK\xd40D\x05/QD\x1e:\xddCE\xed6D\x05/QD\xd9\xbe\xddC>\x06=D\x05/QD\xca\xa2\xdaC8\x1fCD\x05/QDl^\xceC28ID\x05/QDU\xec\xccC,QOD\x05/QD4\x95\xdaC%jUD\x05/QD\x90Y\xd9C\x1f\x83[D\x05/QD\xab\x18\xd2C\x19\x9caD\x05/QD\xa7d\xd2C\x13\xb5gD\x05/QD\xdc\xf7\xceC\x0c\xcemD\x05/QD!2\xcaC\x06\xe7sD\x05/QD\xc7\xbe\xc9C\x00\x00zD%IVDud\x0eD\x00\x00\x00\x00%IVDON\x11D8\x1f\xc3A%IVDx\x89\x14D8\x1fCB%IVD\xd7\x15\x19DjW\x92B%IVD\xf0\xdf"D8\x1f\xc3B%IVDM\x9a-D\x06\xe7\xf3B%IVDN^3DjW\x12C%IVD\xba\x1a:DQ\xbb*C%IVD3\x10:D8\x1fCC%IVD\x80\xa09D\x1f\x83[C%IVD\x98M7D\x06\xe7sC%IVD\xac~8Dw%\x86C%IVD\xc4r8DjW\x92C%IVD\xd2\xaf4D^\x89\x9eC%IVDR )DQ\xbb\xaaC%IVD\x8c\xfb"DE\xed\xb6C%IVD\x13K\x1cD8\x1f\xc3C%IVD\\\x15\x10D,Q\xcfC%IVD\xaf\xa1\nD\x1f\x83\xdbC%IVD+1\tD\x13\xb5\xe7C%IVDa;\x02D\x06\xe7\xf3C%IVD\xed\xff\xfeC}\x0c\x00D%IVD\xf8t\xfdCw%\x06D%IVD\xb7\x12\x00Dp>\x0cD%IVD\xca\xf4\xf6CjW\x12D%IVDC\xd4\xe7Cdp\x18D%IVDsG\xd9C^\x89\x1eD%IVD\xcb\xd7\xd6CW\xa2$D%IVD\n\x9b\xcfCQ\xbb*D%IVD\x08\x84\xd0CK\xd40D%IVD\xb1K\xd3CE\xed6D%IVD\x86\xe3\xdaC>\x06=D%IVD.\x80\xd5C8\x1fCD%IVD\rk\xcfC28ID%IVD\x80\xb1\xcfC,QOD%IVD_5\xdaC%jUD%IVD\x85\xca\xe0C\x1f\x83[D%IVD\xfc\xa6\xd3C\x19\x9caD%IVD\xff\xfc\xd1C\x13\xb5gD%IVDl\x89\xd5C\x0c\xcemD%IVDV!\xd3C\x06\xe7sD%IVDy\x9f\xcdC\x00\x00zDDc[Dw\xdb\x0eD\x00\x00\x00\x00Dc[DRG\x12D8\x1f\xc3ADc[Dv\x95\x15D8\x1fCBDc[D\xa0\\\x18DjW\x92BDc[D!\xd4\x1eD8\x1f\xc3BDc[D\xa1\x01%D\x06\xe7\xf3BDc[D\xa0\x03.DjW\x12CDc[D\xdc\xc56DQ\xbb*CDc[Dh\x089D8\x1fCCDc[D3\xf17D\x1f\x83[CDc[D\xda\x116D\x06\xe7sCDc[D\x0b\x997Dw%\x86CDc[D\xcc<8DjW\x92CDc[D\x9e\xc25D^\x89\x9eCDc[D\xdb\xed0DQ\xbb\xaaCDc[D\x89"+DE\xed\xb6CDc[D\x03\x89%D8\x1f\xc3CDc[DV\x8f\x1bD,Q\xcfCDc[Dj\xc0\x13D\x1f\x83\xdbCDc[D\xcc\xe9\rD\x13\xb5\xe7CDc[D\xcd\xbc\x07D\x06\xe7\xf3CDc[D+\xd3\x03D}\x0c\x00DDc[D\xfd\x17\x03Dw%\x06DDc[D\x84\xba\x00Dp>\x0cDDc[D\x99e\xf8CjW\x12DDc[D\xed\x91\xe6Cdp\x18DDc[D\x13\xcc\xd9C^\x89\x1eDDc[D\xdf0\xd3CW\xa2$DDc[D\x8c\xce\xcdCQ\xbb*DDc[D\x9e\xab\xcfCK\xd40DDc[D\xef\xad\xd2CE\xed6DDc[D\x83\xdc\xdaC>\x06=DDc[D\xa7\xb5\xdaC8\x1fCDDc[Dt\xa0\xd2C28IDDc[D#\xf9\xd2C,QODDc[D?\xf8\xdeC%jUDDc[DY\xd1\xe6C\x1f\x83[DDc[D\x13U\xe1C\x19\x9caDDc[D\x15\x92\xdeC\x13\xb5gDDc[D\x1a\xc0\xdfC\x0c\xcemDDc[D\x97\xb9\xe4C\x06\xe7sDDc[Drx\xd6C\x00\x00zDc}`D\xe7x\tD\x00\x00\x00\x00c}`D\xd4\x88\x0eD8\x1f\xc3Ac}`D\x00\t\x16D8\x1fCBc}`D\xca\x95\x16DjW\x92Bc}`Dh\xe7\x19D8\x1f\xc3Bc}`D\xe8\xac D\x06\xe7\xf3Bc}`D\xa2\xf2)DjW\x12Cc}`DV\xbf1DQ\xbb*Cc}`D\x13T2D8\x1fCCc}`D\x89\xc91D\x1f\x83[Cc}`DH\x96/D\x06\xe7sCc}`D\x05[3Dw%\x86Cc}`D\xbco5DjW\x92Cc}`D\xbb\x975D^\x89\x9eCc}`Dj\x833DQ\xbb\xaaCc}`D\xb3\x18/DE\xed\xb6Cc}`D\x8c\xaf0D8\x1f\xc3Cc}`D\xc3\xdf(D,Q\xcfCc}`D\xa5\xe8\x1aD\x1f\x83\xdbCc}`D,\x97\x0fD\x13\xb5\xe7Cc}`D\x9d\xe1\x08D\x06\xe7\xf3Cc}`D\xe5\x08\x07D}\x0c\x00Dc}`D\'\x97\x07Dw%\x06Dc}`D7\xf4\x03Dp>\x0cDc}`DkQ\x00DjW\x12Dc}`D\xf0j\xe7Cdp\x18Dc}`D{,\xd2C^\x89\x1eDc}`D\x04]\xc9CW\xa2$Dc}`Ds\xb5\xc7CQ\xbb*Dc}`DP4\xd1CK\xd40Dc}`Da[\xdaCE\xed6Dc}`D\x8d\x93\xe1C>\x06=Dc}`D\xed\xe3\xdcC8\x1fCDc}`DH\xbc\xd5C28IDc}`D\xe3M\xd4C,QODc}`D\xa92\xdcC%jUDc}`D\x84\x8f\xe2C\x1f\x83[Dc}`D\x9fD\xdeC\x19\x9caDc}`DA\x1f\xe1C\x13\xb5gDc}`DG\x8e\xe4C\x0c\xcemDc}`D\x81\x00\xeaC\x06\xe7sDc}`D8\xb5\xe1C\x00\x00zD\x83\x97eD\x19\xec\x06D\x00\x00\x00\x00\x83\x97eDA\x89\x0bD8\x1f\xc3A\x83\x97eDB"\x11D8\x1fCB\x83\x97eD\xb1\xb9\x12DjW\x92B\x83\x97eD\x0f[\x14D8\x1f\xc3B\x83\x97eD\x81\xbd\x1cD\x06\xe7\xf3B\x83\x97eD\xb4\xc3#DjW\x12C\x83\x97eD\xa9u\'DQ\xbb*C\x83\x97eDJ\x1a*D8\x1fCC\x83\x97eD\xe3\xd5(D\x1f\x83[C\x83\x97eD\xa4\xf3\'D\x06\xe7sC\x83\x97eD\x9e(/Dw%\x86C\x83\x97eD_\x115DjW\x92C\x83\x97eD\xee[7D^\x89\x9eC\x83\x97eD\x90\xfa6DQ\xbb\xaaC\x83\x97eD\'"8DE\xed\xb6C\x83\x97eD<&7D8\x1f\xc3C\x83\x97eD\xe9v/D,Q\xcfC\x83\x97eD\xe6\xe5$D\x1f\x83\xdbC\x83\x97eDGb\x19D\x13\xb5\xe7C\x83\x97eD\xd9\x8e\x10D\x06\xe7\xf3C\x83\x97eD\xbfO\x0eD}\x0c\x00D\x83\x97eD3A\rDw%\x06D\x83\x97eD\xd3\x1f\x07Dp>\x0cD\x83\x97eDb\x11\x01DjW\x12D\x83\x97eD\x9c\xe5\xe9Cdp\x18D\x83\x97eDh\x9e\xcdC^\x89\x1eD\x83\x97eD\xd7\xb5\xc4CW\xa2$D\x83\x97eD\xa5\xa1\xcdCQ\xbb*D\x83\x97eD\xe7\x0e\xdcCK\xd40D\x83\x97eD\xdft\xe3CE\xed6D\x83\x97eD\x9b\x99\xe0C>\x06=D\x83\x97eD\xcbF\xd9C8\x1fCD\x83\x97eD\n\xa3\xd8C28ID\x83\x97eD\x8a\x95\xd3C,QOD\x83\x97eD\xe2\xb0\xd9C%jUD\x83\x97eD"b\xdcC\x1f\x83[D\x83\x97eD&\x81\xd9C\x19\x9caD\x83\x97eD\xf6\xe9\xd9C\x13\xb5gD\x83\x97eDA\x9e\xe4C\x0c\xcemD\x83\x97eD&\xd6\xe9C\x06\xe7sD\x83\x97eD=G\xecC\x00\x00zD\xa2\xb1jDN\xbb\x04D\x00\x00\x00\x00\xa2\xb1jD\xc34\x0bD8\x1f\xc3A\xa2\xb1jD\xe6y\x0eD8\x1fCB\xa2\xb1jD\xfd,\x0fDjW\x92B\xa2\xb1jDA\x0c\x11D8\x1f\xc3B\xa2\xb1jD\xf5\xdd\x17D\x06\xe7\xf3B\xa2\xb1jD\xec\xc3\x1dDjW\x12C\xa2\xb1jD\xd9#\x1fDQ\xbb*C\xa2\xb1jD\xae #D8\x1fCC\xa2\xb1jD\x8f\x16%D\x1f\x83[C\xa2\xb1jD!\x8c\'D\x06\xe7sC\xa2\xb1jD\xd0\x91/Dw%\x86C\xa2\xb1jD\xedI9DjW\x92C\xa2\xb1jD\x14O<D^\x89\x9eC\xa2\xb1jD\xca\xe6?DQ\xbb\xaaC\xa2\xb1jD\x99\x1f@DE\xed\xb6C\xa2\xb1jD%\xfc<D8\x1f\xc3C\xa2\xb1jD_^5D,Q\xcfC\xa2\xb1jD\xf1\xbc\'D\x1f\x83\xdbC\xa2\xb1jDq\x81!D\x13\xb5\xe7C\xa2\xb1jD\x834\x1bD\x06\xe7\xf3C\xa2\xb1jD!\xa5\x15D}\x0c\x00D\xa2\xb1jD\x82p\x11Dw%\x06D\xa2\xb1jD\xd8\xb3\x0cDp>\x0cD\xa2\xb1jD1g\x06DjW\x12D\xa2\xb1jD@\xa8\xf2Cdp\x18D\xa2\xb1jD#\xc3\xd8C^\x89\x1eD\xa2\xb1jDh\xd8\xcfCW\xa2$D\xa2\xb1jD@\x9e\xd9CQ\xbb*D\xa2\xb1jD\x9c\x87\xe8CK\xd40D\xa2\xb1jDU_\xeaCE\xed6D\xa2\xb1jD-\xf7\xdcC>\x06=D\xa2\xb1jD_s\xd5C8\x1fCD\xa2\xb1jD8w\xd5C28ID\xa2\xb1jDJ\x8c\xd3C,QOD\xa2\xb1jD\xcc\x94\xd0C%jUD\xa2\xb1jD\xe5\xb8\xd3C\x1f\x83[D\xa2\xb1jD\xba\xd2\xd4C\x19\x9caD\xa2\xb1jD\xba\xdd\xdaC\x13\xb5gD\xa2\xb1jD\xb9D\xe6C\x0c\xcemD\xa2\xb1jD\xfc,\xecC\x06\xe7sD\xa2\xb1jD #\xeeC\x00\x00zD\xc1\xcboDi\xbc\x06D\x00\x00\x00\x00\xc1\xcboD\xe6\xd8\nD8\x1f\xc3A\xc1\xcboD\x8c\x87\x0cD8\x1fCB\xc1\xcboD\x01\\\x10DjW\x92B\xc1\xcboDN0\x10D8\x1f\xc3B\xc1\xcboD\xde\x8c\x14D\x06\xe7\xf3B\xc1\xcboD\x19\xcf\x17DjW\x12C\xc1\xcboDg\xaa\x1cDQ\xbb*C\xc1\xcboD\x9f\x1d D8\x1fCC\xc1\xcboD\x1a:$D\x1f\x83[C\xc1\xcboD\x9f\'0D\x06\xe7sC\xc1\xcboD\x87|4Dw%\x86C\xc1\xcboD)\xf9:DjW\x92C\xc1\xcboD\xac\x14CD^\x89\x9eC\xc1\xcboD\xd8\x90GDQ\xbb\xaaC\xc1\xcboD\x14\xaaFDE\xed\xb6C\xc1\xcboD\xbe5ED8\x1f\xc3C\xc1\xcboD@m<D,Q\xcfC\xc1\xcboDL\x870D\x1f\x83\xdbC\xc1\xcboDEx)D\x13\xb5\xe7C\xc1\xcboD2\xc5"D\x06\xe7\xf3C\xc1\xcboD\x88\xad\x1cD}\x0c\x00D\xc1\xcboD\x96|\x18Dw%\x06D\xc1\xcboD\xa6\xb8\x13Dp>\x0cD\xc1\xcboD\xc8_\x0bDjW\x12D\xc1\xcboD\x91\t\x00Ddp\x18D\xc1\xcboD\xc3\x99\xeaC^\x89\x1eD\xc1\xcboD(@\xe6CW\xa2$D\xc1\xcboD\xedP\xe5CQ\xbb*D\xc1\xcboD\x8bK\xe9CK\xd40D\xc1\xcboD$\xa1\xe5CE\xed6D\xc1\xcboD\x90k\xdfC>\x06=D\xc1\xcboD\xab2\xdbC8\x1fCD\xc1\xcboD\xb9\xe5\xdaC28ID\xc1\xcboD\x19\xb0\xd5C,QOD\xc1\xcboD\xcb\xae\xcaC%jUD\xc1\xcboD\xf7\xaa\xd4C\x1f\x83[D\xc1\xcboD\xa4\xfe\xd7C\x19\x9caD\xc1\xcboDrK\xe0C\x13\xb5gD\xc1\xcboD\x87\xbe\xebC\x0c\xcemD\xc1\xcboD\x1b\xaa\xeeC\x06\xe7sD\xc1\xcboDZ\x18\xf0C\x00\x00zD\xe1\xe5tD0H\x08D\x00\x00\x00\x00\xe1\xe5tD%q\tD8\x1f\xc3A\xe1\xe5tD\x15\xe5\x0cD8\x1fCB\xe1\xe5tD\x1c\x83\x11DjW\x92B\xe1\xe5tDiH\x14D8\x1f\xc3B\xe1\xe5tD\x0b\n\x18D\x06\xe7\xf3B\xe1\xe5tDj\x0e\x19DjW\x12C\xe1\xe5tDc\xb3\x1dDQ\xbb*C\xe1\xe5tD\xaf!"D8\x1fCC\xe1\xe5tD\xde])D\x1f\x83[C\xe1\xe5tD\x0e\x894D\x06\xe7sC\xe1\xe5tD\x9bI;Dw%\x86C\xe1\xe5tD\xb2\x8dCDjW\x92C\xe1\xe5tDY\xaaHD^\x89\x9eC\xe1\xe5tD\'\xfbMDQ\xbb\xaaC\xe1\xe5tD\xc7\x8dNDE\xed\xb6C\xe1\xe5tD\xe2\x85ND8\x1f\xc3C\xe1\xe5tD\x9d\xd9ED,Q\xcfC\xe1\xe5tD\x86\xdc9D\x1f\x83\xdbC\xe1\xe5tDF\x8a1D\x13\xb5\xe7C\xe1\xe5tD\xb4\xb6*D\x06\xe7\xf3C\xe1\xe5tD*\x08$D}\x0c\x00D\xe1\xe5tDLo\x1dDw%\x06D\xe1\xe5tDh\x13\x18Dp>\x0cD\xe1\xe5tD]4\x11DjW\x12D\xe1\xe5tD\xa0\xd7\x07Ddp\x18D\xe1\xe5tD\xae\xb9\xfdC^\x89\x1eD\xe1\xe5tD\x18o\xf8CW\xa2$D\xe1\xe5tDT\x1a\xf6CQ\xbb*D\xe1\xe5tD\xd8y\xf0CK\xd40D\xe1\xe5tD\xc5\xf3\xeaCE\xed6D\xe1\xe5tD\x7f\xb3\xe2C>\x06=D\xe1\xe5tD\x86\xde\xe2C8\x1fCD\xe1\xe5tD\xe3\xe9\xe6C28ID\xe1\xe5tD\x8eI\xdfC,QOD\xe1\xe5tDUT\xd3C%jUD\xe1\xe5tD7q\xd5C\x1f\x83[D\xe1\xe5tDrp\xdfC\x19\x9caD\xe1\xe5tD\x8c\xb4\xe7C\x13\xb5gD\xe1\xe5tD\xe5\xc8\xefC\x0c\xcemD\xe1\xe5tD\\\xa8\xf4C\x06\xe7sD\xe1\xe5tDr\x8e\xfaC\x00\x00zD\x00\x00zDN\xfc\x07D\x00\x00\x00\x00\x00\x00zD\xe3!\x06D8\x1f\xc3A\x00\x00zDo\xed\x06D8\x1fCB\x00\x00zD._\x0fDjW\x92B\x00\x00zD\x16t\x17D8\x1f\xc3B\x00\x00zD\x8c\x04\x1bD\x06\xe7\xf3B\x00\x00zD\xd1\xa7\x19DjW\x12C\x00\x00zD0\x03\x1eDQ\xbb*C\x00\x00zDM\xca&D8\x1fCC\x00\x00zD\x1e\xe0,D\x1f\x83[C\x00\x00zD\x1aB5D\x06\xe7sC\x00\x00zD\xcf_BDw%\x86C\x00\x00zDt:JDjW\x92C\x00\x00zDi\xd3PD^\x89\x9eC\x00\x00zD\xe1\xb5ZDQ\xbb\xaaC\x00\x00zD\x957\\DE\xed\xb6C\x00\x00zD\xa2\xe7WD8\x1f\xc3C\x00\x00zD\xa5\xe6PD,Q\xcfC\x00\x00zD\xed\xbdDD\x1f\x83\xdbC\x00\x00zD\x93\xc69D\x13\xb5\xe7C\x00\x00zDB\xb5/D\x06\xe7\xf3C\x00\x00zD6:)D}\x0c\x00D\x00\x00zD\xd8\x9d"Dw%\x06D\x00\x00zD\xc8:\x1dDp>\x0cD\x00\x00zD~\xb5\x13DjW\x12D\x00\x00zD\xd3V\rDdp\x18D\x00\x00zDy\x05\x04D^\x89\x1eD\x00\x00zD\x10\xf3\xfeCW\xa2$D\x00\x00zDK\xa2\xf5CQ\xbb*D\x00\x00zDlb\xeeCK\xd40D\x00\x00zD\x82\xf6\xedCE\xed6D\x00\x00zD\x03\xd4\xebC>\x06=D\x00\x00zD\xc8\xf5\xedC8\x1fCD\x00\x00zD\xd0\xe7\xf2C28ID\x00\x00zD\xa0o\xeeC,QOD\x00\x00zD!x\xdfC%jUD\x00\x00zD\x05\n\xd9C\x1f\x83[D\x00\x00zD\x08\xd2\xe7C\x19\x9caD\x00\x00zDZ,\xf3C\x13\xb5gD\x00\x00zD\xd7\x02\xf4C\x0c\xcemD\x00\x00zD\xe4\x06\xfbC\x06\xe7sD\x00\x00zD7%\xfdC\x00\x00zD\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x12\x08\x00\x00\x13\x08\x00\x00\xe9\x07\x00\x00\xe8\x07\x00\x00\x12\x08\x00\x00\xe9\x07\x00\x00 \x08\x00\x00\xf6\x07\x00\x00\x1f\x08\x00\x00\x1f\x08\x00\x00\xf6\x07\x00\x00\xf5\x07\x00\x00\x0b\x08\x00\x00\xe0\x07\x00\x00\n\x08\x00\x00\xe0\x07\x00\x00\x0b\x08\x00\x00\xe1\x07\x00\x00h\x07\x00\x00\x93\x07\x00\x00i\x07\x00\x00\x93\x07\x00\x00h\x07\x00\x00\x92\x07\x00\x00\x0f\x08\x00\x00\x10\x08\x00\x00\xe5\x07\x00\x00\x10\x08\x00\x00\xe6\x07\x00\x00\xe5\x07\x00\x00\x12\x08\x00\x00\xe7\x07\x00\x00\x11\x08\x00\x00\xe7\x07\x00\x00\x12\x08\x00\x00\xe8\x07\x00\x00\xe7\x07\x00\x00\x10\x08\x00\x00\x11\x08\x00\x00\x10\x08\x00\x00\xe7\x07\x00\x00\xe6\x07\x00\x00\x0e\x08\x00\x00\x0f\x08\x00\x00\xe5\x07\x00\x00\xe4\x07\x00\x00\x0e\x08\x00\x00\xe5\x07\x00\x00,\x04\x00\x00\x01\x04\x00\x00+\x04\x00\x00\x01\x04\x00\x00,\x04\x00\x00\x02\x04\x00\x00\xd8\x03\x00\x00\xd9\x03\x00\x00\xae\x03\x00\x00\xd9\x03\x00\x00\xaf\x03\x00\x00\xae\x03\x00\x00\x03\x04\x00\x00\xd9\x03\x00\x00\x02\x04\x00\x00\xd9\x03\x00\x00\xd8\x03\x00\x00\x02\x04\x00\x00\x82\x05\x00\x00\xab\x05\x00\x00\xac\x05\x00\x00\xab\x05\x00\x00\x82\x05\x00\x00\x81\x05\x00\x00\x82\x05\x00\x00W\x05\x00\x00\x81\x05\x00\x00W\x05\x00\x00\x82\x05\x00\x00X\x05\x00\x00\xce\x05\x00\x00\xf9\x05\x00\x00\xcf\x05\x00\x00\xf9\x05\x00\x00\xce\x05\x00\x00\xf8\x05\x00\x00\xc2\x04\x00\x00\xec\x04\x00\x00\xed\x04\x00\x00\xc3\x04\x00\x00\xc2\x04\x00\x00\xed\x04\x00\x00\x9e\x03\x00\x00s\x03\x00\x00\x9d\x03\x00\x00s\x03\x00\x00\x9e\x03\x00\x00t\x03\x00\x00\xc8\x03\x00\x00\x9e\x03\x00\x00\xc7\x03\x00\x00\x9e\x03\x00\x00\x9d\x03\x00\x00\xc7\x03\x00\x00s\x03\x00\x00\x9c\x03\x00\x00\x9d\x03\x00\x00\x9c\x03\x00\x00s\x03\x00\x00r\x03\x00\x00\x9d\x03\x00\x00\x9c\x03\x00\x00\xc7\x03\x00\x00\x9c\x03\x00\x00\xc6\x03\x00\x00\xc7\x03\x00\x00\xf1\x03\x00\x00\xc6\x03\x00\x00\xf0\x03\x00\x00\xc6\x03\x00\x00\xf1\x03\x00\x00\xc7\x03\x00\x00\x1a\x04\x00\x00\xf1\x03\x00\x00\xf0\x03\x00\x00\xf1\x03\x00\x00\x1a\x04\x00\x00\x1b\x04\x00\x00\xf1\x03\x00\x00\xc8\x03\x00\x00\xc7\x03\x00\x00\xf1\x03\x00\x00\xf2\x03\x00\x00\xc8\x03\x00\x00\xf1\x03\x00\x00\x1b\x04\x00\x00\x1c\x04\x00\x00\xf2\x03\x00\x00\xf1\x03\x00\x00\x1c\x04\x00\x00\xd4\x01\x00\x00\xd5\x01\x00\x00\xaa\x01\x00\x00\xaa\x01\x00\x00\xd5\x01\x00\x00\xab\x01\x00\x00\xb3\x03\x00\x00\xdc\x03\x00\x00\xdd\x03\x00\x00\xdc\x03\x00\x00\xb3\x03\x00\x00\xb2\x03\x00\x00\xdb\x03\x00\x00\xdc\x03\x00\x00\xb2\x03\x00\x00\xb1\x03\x00\x00\xdb\x03\x00\x00\xb2\x03\x00\x00\x0e\x02\x00\x00\xe5\x01\x00\x00\xe4\x01\x00\x00\xe5\x01\x00\x00\x0e\x02\x00\x00\x0f\x02\x00\x00\xf4\x07\x00\x00\x1f\x08\x00\x00\xf5\x07\x00\x00\xf4\x07\x00\x00\x1e\x08\x00\x00\x1f\x08\x00\x00\x1e\x08\x00\x00\xf4\x07\x00\x00\x1d\x08\x00\x00\x1d\x08\x00\x00\xf4\x07\x00\x00\xf3\x07\x00\x00\x14\x08\x00\x00\xea\x07\x00\x00\x13\x08\x00\x00\x13\x08\x00\x00\xea\x07\x00\x00\xe9\x07\x00\x00\xbf\x07\x00\x00\xe8\x07\x00\x00\xe9\x07\x00\x00\xbf\x07\x00\x00\xbe\x07\x00\x00\xe8\x07\x00\x00\xea\x07\x00\x00\xbf\x07\x00\x00\xe9\x07\x00\x00\xbf\x07\x00\x00\xea\x07\x00\x00\xc0\x07\x00\x00c\x07\x00\x00b\x07\x00\x00\x8c\x07\x00\x00c\x07\x00\x00\x8c\x07\x00\x00\x8d\x07\x00\x00c\x07\x00\x008\x07\x00\x00b\x07\x00\x008\x07\x00\x00c\x07\x00\x009\x07\x00\x00?\x07\x00\x00h\x07\x00\x00i\x07\x00\x00h\x07\x00\x00?\x07\x00\x00>\x07\x00\x00\x93\x07\x00\x00j\x07\x00\x00i\x07\x00\x00j\x07\x00\x00\x93\x07\x00\x00\x94\x07\x00\x00j\x07\x00\x00?\x07\x00\x00i\x07\x00\x00?\x07\x00\x00j\x07\x00\x00@\x07\x00\x00h\x07\x00\x00\x91\x07\x00\x00\x92\x07\x00\x00\x91\x07\x00\x00h\x07\x00\x00g\x07\x00\x00\x91\x07\x00\x00\xbc\x07\x00\x00\x92\x07\x00\x00\xbc\x07\x00\x00\x91\x07\x00\x00\xbb\x07\x00\x00\xe6\x07\x00\x00\xbc\x07\x00\x00\xe5\x07\x00\x00\xbc\x07\x00\x00\xbb\x07\x00\x00\xe5\x07\x00\x00=\x07\x00\x00h\x07\x00\x00>\x07\x00\x00h\x07\x00\x00=\x07\x00\x00g\x07\x00\x00=\x07\x00\x00f\x07\x00\x00g\x07\x00\x00f\x07\x00\x00=\x07\x00\x00<\x07\x00\x00\x0e\x08\x00\x00\xe3\x07\x00\x00\r\x08\x00\x00\xe3\x07\x00\x00\x0e\x08\x00\x00\xe4\x07\x00\x00\x8e\x07\x00\x00c\x07\x00\x00\x8d\x07\x00\x00c\x07\x00\x00\x8e\x07\x00\x00d\x07\x00\x00\xb7\x07\x00\x00\x8e\x07\x00\x00\x8d\x07\x00\x00\x8e\x07\x00\x00\xb7\x07\x00\x00\xb8\x07\x00\x00A\x06\x00\x00\x16\x06\x00\x00@\x06\x00\x00\x16\x06\x00\x00A\x06\x00\x00\x17\x06\x00\x00\x10\x00\x00\x00;\x00\x00\x00\x11\x00\x00\x00;\x00\x00\x00\x10\x00\x00\x00:\x00\x00\x00<\x02\x00\x00g\x02\x00\x00=\x02\x00\x00g\x02\x00\x00<\x02\x00\x00f\x02\x00\x00\t\x00\x00\x004\x00\x00\x00\n\x00\x00\x004\x00\x00\x00\t\x00\x00\x003\x00\x00\x00\xa8\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00/\x00\x00\x00\x06\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00/\x00\x00\x000\x00\x00\x000\x00\x00\x00/\x00\x00\x00Z\x00\x00\x00/\x00\x00\x00Y\x00\x00\x00Z\x00\x00\x004\x00\x00\x00\x0b\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x004\x00\x00\x005\x00\x00\x00\xcf\x01\x00\x00\xa4\x01\x00\x00\xce\x01\x00\x00\xa4\x01\x00\x00\xcf\x01\x00\x00\xa5\x01\x00\x00,\x04\x00\x00-\x04\x00\x00\x02\x04\x00\x00-\x04\x00\x00\x03\x04\x00\x00\x02\x04\x00\x00-\x04\x00\x00,\x04\x00\x00V\x04\x00\x00W\x04\x00\x00-\x04\x00\x00V\x04\x00\x00\x03\x05\x00\x00\xd8\x04\x00\x00\x02\x05\x00\x00\xd9\x04\x00\x00\xd8\x04\x00\x00\x03\x05\x00\x00/\x05\x00\x00\x04\x05\x00\x00.\x05\x00\x00\x04\x05\x00\x00/\x05\x00\x00\x05\x05\x00\x00\x04\x05\x00\x00-\x05\x00\x00.\x05\x00\x00-\x05\x00\x00\x04\x05\x00\x00\x03\x05\x00\x00-\x05\x00\x00W\x05\x00\x00X\x05\x00\x00.\x05\x00\x00-\x05\x00\x00X\x05\x00\x00\xac\x04\x00\x00\x81\x04\x00\x00\xab\x04\x00\x00\x81\x04\x00\x00\xac\x04\x00\x00\x82\x04\x00\x00\xac\x04\x00\x00\x83\x04\x00\x00\x82\x04\x00\x00\x83\x04\x00\x00\xac\x04\x00\x00\xad\x04\x00\x00c\x03\x00\x00\x8e\x03\x00\x00d\x03\x00\x00\x8e\x03\x00\x00c\x03\x00\x00\x8d\x03\x00\x00\xd7\x03\x00\x00\x01\x04\x00\x00\x02\x04\x00\x00\xd8\x03\x00\x00\xd7\x03\x00\x00\x02\x04\x00\x00\x01\x04\x00\x00\xd7\x03\x00\x00\x00\x04\x00\x00\xd7\x03\x00\x00\xd6\x03\x00\x00\x00\x04\x00\x00(\x04\x00\x00\'\x04\x00\x00R\x04\x00\x00\'\x04\x00\x00Q\x04\x00\x00R\x04\x00\x00&\x04\x00\x00\'\x04\x00\x00\xfc\x03\x00\x00\xfc\x03\x00\x00\'\x04\x00\x00\xfd\x03\x00\x00#\x06\x00\x00\xf9\x05\x00\x00\xf8\x05\x00\x00"\x06\x00\x00#\x06\x00\x00\xf8\x05\x00\x00\xf9\x05\x00\x00\xfa\x05\x00\x00\xcf\x05\x00\x00\xfa\x05\x00\x00\xd0\x05\x00\x00\xcf\x05\x00\x00\xd0\x05\x00\x00\xa6\x05\x00\x00\xcf\x05\x00\x00\xcf\x05\x00\x00\xa6\x05\x00\x00\xa5\x05\x00\x00\xa6\x05\x00\x00{\x05\x00\x00\xa5\x05\x00\x00{\x05\x00\x00\xa6\x05\x00\x00|\x05\x00\x00\xf8\x04\x00\x00\xcf\x04\x00\x00\xce\x04\x00\x00\xcf\x04\x00\x00\xf8\x04\x00\x00\xf9\x04\x00\x00\xfa\x04\x00\x00\xcf\x04\x00\x00\xf9\x04\x00\x00\xcf\x04\x00\x00\xfa\x04\x00\x00\xd0\x04\x00\x00U\x04\x00\x00,\x04\x00\x00+\x04\x00\x00,\x04\x00\x00U\x04\x00\x00V\x04\x00\x00{\x05\x00\x00Q\x05\x00\x00z\x05\x00\x00z\x05\x00\x00Q\x05\x00\x00P\x05\x00\x00Q\x05\x00\x00|\x05\x00\x00R\x05\x00\x00Q\x05\x00\x00{\x05\x00\x00|\x05\x00\x00\xd5\x04\x00\x00\xac\x04\x00\x00\xab\x04\x00\x00\xac\x04\x00\x00\xd5\x04\x00\x00\xd6\x04\x00\x00\x98\x04\x00\x00\xc2\x04\x00\x00\xc3\x04\x00\x00\x99\x04\x00\x00\x98\x04\x00\x00\xc3\x04\x00\x00\x1d\x04\x00\x00\xf2\x03\x00\x00\x1c\x04\x00\x00\xf2\x03\x00\x00\x1d\x04\x00\x00\xf3\x03\x00\x00\x98\x04\x00\x00o\x04\x00\x00n\x04\x00\x00o\x04\x00\x00\x98\x04\x00\x00\x99\x04\x00\x00o\x04\x00\x00F\x04\x00\x00E\x04\x00\x00F\x04\x00\x00o\x04\x00\x00p\x04\x00\x00\x1b\x04\x00\x00F\x04\x00\x00\x1c\x04\x00\x00E\x04\x00\x00F\x04\x00\x00\x1b\x04\x00\x00F\x04\x00\x00\x1d\x04\x00\x00\x1c\x04\x00\x00\x1d\x04\x00\x00F\x04\x00\x00G\x04\x00\x00o\x04\x00\x00D\x04\x00\x00n\x04\x00\x00D\x04\x00\x00o\x04\x00\x00E\x04\x00\x00\x1a\x04\x00\x00D\x04\x00\x00\x1b\x04\x00\x00D\x04\x00\x00E\x04\x00\x00\x1b\x04\x00\x00 \x04\x00\x00\xf6\x03\x00\x00\xf5\x03\x00\x00 \x04\x00\x00\xf5\x03\x00\x00\x1f\x04\x00\x00 \x04\x00\x00K\x04\x00\x00!\x04\x00\x00K\x04\x00\x00 \x04\x00\x00J\x04\x00\x00\xdb\x01\x00\x00\x04\x02\x00\x00\x05\x02\x00\x00\x04\x02\x00\x00\xdb\x01\x00\x00\xda\x01\x00\x00\xd7\x02\x00\x00\xac\x02\x00\x00\xd6\x02\x00\x00\xac\x02\x00\x00\xd7\x02\x00\x00\xad\x02\x00\x00\xda\x02\x00\x00\x04\x03\x00\x00\x05\x03\x00\x00\xdb\x02\x00\x00\xda\x02\x00\x00\x05\x03\x00\x00\x04\x03\x00\x00.\x03\x00\x00\x05\x03\x00\x00.\x03\x00\x00/\x03\x00\x00\x05\x03\x00\x00(\x00\x00\x00S\x00\x00\x00)\x00\x00\x00S\x00\x00\x00(\x00\x00\x00R\x00\x00\x00Q\x00\x00\x00(\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00\x1f\x01\x00\x00\xf6\x00\x00\x00\xf5\x00\x00\x00\xf6\x00\x00\x00\x1f\x01\x00\x00 \x01\x00\x00M\x01\x00\x00"\x01\x00\x00L\x01\x00\x00"\x01\x00\x00M\x01\x00\x00#\x01\x00\x00\xf7\x07\x00\x00 \x08\x00\x00!\x08\x00\x00\xf7\x07\x00\x00\xf6\x07\x00\x00 \x08\x00\x00\xda\x03\x00\x00\xd9\x03\x00\x00\x03\x04\x00\x00\xda\x03\x00\x00\x03\x04\x00\x00\x04\x04\x00\x00\x05\x04\x00\x00\xda\x03\x00\x00\x04\x04\x00\x00\xdb\x03\x00\x00\xda\x03\x00\x00\x05\x04\x00\x00\x93\x01\x00\x00h\x01\x00\x00\x92\x01\x00\x00h\x01\x00\x00\x93\x01\x00\x00i\x01\x00\x00\x92\x01\x00\x00h\x01\x00\x00\x91\x01\x00\x00h\x01\x00\x00g\x01\x00\x00\x91\x01\x00\x00A\x02\x00\x00l\x02\x00\x00B\x02\x00\x00l\x02\x00\x00A\x02\x00\x00k\x02\x00\x00\x18\x02\x00\x00\xee\x01\x00\x00\xed\x01\x00\x00\x18\x02\x00\x00\xed\x01\x00\x00\x17\x02\x00\x00A\x02\x00\x00\x18\x02\x00\x00\x17\x02\x00\x00\x18\x02\x00\x00A\x02\x00\x00B\x02\x00\x00\xbc\x02\x00\x00\xbd\x02\x00\x00\x93\x02\x00\x00\x92\x02\x00\x00\xbc\x02\x00\x00\x93\x02\x00\x00\r\x02\x00\x00\x0e\x02\x00\x00\xe4\x01\x00\x00\r\x02\x00\x00\xe4\x01\x00\x00\xe3\x01\x00\x00\xef\x03\x00\x00\x18\x04\x00\x00\x19\x04\x00\x00\x18\x04\x00\x00\xef\x03\x00\x00\xee\x03\x00\x00\xc4\x03\x00\x00\xef\x03\x00\x00\xc5\x03\x00\x00\xef\x03\x00\x00\xc4\x03\x00\x00\xee\x03\x00\x00E\x03\x00\x00p\x03\x00\x00F\x03\x00\x00p\x03\x00\x00E\x03\x00\x00o\x03\x00\x00G\x03\x00\x00p\x03\x00\x00q\x03\x00\x00p\x03\x00\x00G\x03\x00\x00F\x03\x00\x00\x15\x05\x00\x00\xeb\x04\x00\x00\x14\x05\x00\x00\xeb\x04\x00\x00\xea\x04\x00\x00\x14\x05\x00\x00\x01\x08\x00\x00*\x08\x00\x00+\x08\x00\x00*\x08\x00\x00\x01\x08\x00\x00\x00\x08\x00\x00,\x08\x00\x00\x01\x08\x00\x00+\x08\x00\x00\x01\x08\x00\x00,\x08\x00\x00\x02\x08\x00\x00\xd8\x07\x00\x00\x01\x08\x00\x00\x02\x08\x00\x00\x01\x08\x00\x00\xd8\x07\x00\x00\xd7\x07\x00\x00\t\x08\x00\x002\x08\x00\x003\x08\x00\x002\x08\x00\x00\t\x08\x00\x00\x08\x08\x00\x002\x08\x00\x00\x07\x08\x00\x001\x08\x00\x00\x07\x08\x00\x002\x08\x00\x00\x08\x08\x00\x00Y\x05\x00\x00/\x05\x00\x00.\x05\x00\x00Y\x05\x00\x00.\x05\x00\x00X\x05\x00\x00Z\x06\x00\x00\x85\x06\x00\x00[\x06\x00\x00\x85\x06\x00\x00Z\x06\x00\x00\x84\x06\x00\x00\xae\x06\x00\x00\x85\x06\x00\x00\x84\x06\x00\x00\x85\x06\x00\x00\xae\x06\x00\x00\xaf\x06\x00\x00\xee\x04\x00\x00\x19\x05\x00\x00\xef\x04\x00\x00\x19\x05\x00\x00\xee\x04\x00\x00\x18\x05\x00\x00\x17\x05\x00\x00\xee\x04\x00\x00\xed\x04\x00\x00\xee\x04\x00\x00\x17\x05\x00\x00\x18\x05\x00\x00\xee\x04\x00\x00\xc3\x04\x00\x00\xed\x04\x00\x00\xee\x04\x00\x00\xc4\x04\x00\x00\xc3\x04\x00\x00\xec\x04\x00\x00\x16\x05\x00\x00\xed\x04\x00\x00\x16\x05\x00\x00\x17\x05\x00\x00\xed\x04\x00\x00\x1c\x08\x00\x00\x1d\x08\x00\x00\xf3\x07\x00\x00\xf2\x07\x00\x00\x1c\x08\x00\x00\xf3\x07\x00\x00\xf7\x07\x00\x00\xcc\x07\x00\x00\xf6\x07\x00\x00\xcc\x07\x00\x00\xf7\x07\x00\x00\xcd\x07\x00\x00\xf6\x07\x00\x00\xcb\x07\x00\x00\xf5\x07\x00\x00\xcc\x07\x00\x00\xcb\x07\x00\x00\xf6\x07\x00\x00\xeb\x07\x00\x00\x14\x08\x00\x00\x15\x08\x00\x00\xeb\x07\x00\x00\xea\x07\x00\x00\x14\x08\x00\x00\xba\x06\x00\x00\xbb\x06\x00\x00\x90\x06\x00\x00\x90\x06\x00\x00\xbb\x06\x00\x00\x91\x06\x00\x00\xe4\x06\x00\x00\xbb\x06\x00\x00\xba\x06\x00\x00\xbb\x06\x00\x00\xe4\x06\x00\x00\xe5\x06\x00\x00\x8c\x07\x00\x00\xb6\x07\x00\x00\x8d\x07\x00\x00\xb6\x07\x00\x00\xb7\x07\x00\x00\x8d\x07\x00\x00\xb6\x07\x00\x00\xe0\x07\x00\x00\xe1\x07\x00\x00\xb7\x07\x00\x00\xb6\x07\x00\x00\xe1\x07\x00\x00\xee\x06\x00\x00\x18\x07\x00\x00\x19\x07\x00\x00\xef\x06\x00\x00\xee\x06\x00\x00\x19\x07\x00\x00\xbd\x07\x00\x00\x93\x07\x00\x00\x92\x07\x00\x00\xbc\x07\x00\x00\xbd\x07\x00\x00\x92\x07\x00\x00\xe7\x07\x00\x00\xbd\x07\x00\x00\xe6\x07\x00\x00\xbd\x07\x00\x00\xbc\x07\x00\x00\xe6\x07\x00\x00\x93\x07\x00\x00\xbd\x07\x00\x00\x94\x07\x00\x00\xbd\x07\x00\x00\xbe\x07\x00\x00\x94\x07\x00\x00\xbd\x07\x00\x00\xe7\x07\x00\x00\xe8\x07\x00\x00\xbe\x07\x00\x00\xbd\x07\x00\x00\xe8\x07\x00\x00\xe2\x07\x00\x00\x0c\x08\x00\x00\r\x08\x00\x00\xe3\x07\x00\x00\xe2\x07\x00\x00\r\x08\x00\x00\xb7\x07\x00\x00\xe2\x07\x00\x00\xb8\x07\x00\x00\xe2\x07\x00\x00\xb7\x07\x00\x00\xe1\x07\x00\x00\x0b\x08\x00\x00\xe2\x07\x00\x00\xe1\x07\x00\x00\x0c\x08\x00\x00\xe2\x07\x00\x00\x0b\x08\x00\x00\xe2\x07\x00\x00\xb9\x07\x00\x00\xb8\x07\x00\x00\xb9\x07\x00\x00\xe2\x07\x00\x00\xe3\x07\x00\x00\xa7\x06\x00\x00\xa8\x06\x00\x00}\x06\x00\x00\xa8\x06\x00\x00~\x06\x00\x00}\x06\x00\x00\x89\x05\x00\x00`\x05\x00\x00_\x05\x00\x00`\x05\x00\x00\x89\x05\x00\x00\x8a\x05\x00\x00\xde\x03\x00\x00\xb3\x03\x00\x00\xdd\x03\x00\x00\xb3\x03\x00\x00\xde\x03\x00\x00\xb4\x03\x00\x00\xe3\x03\x00\x00\xba\x03\x00\x00\xb9\x03\x00\x00\xba\x03\x00\x00\xe3\x03\x00\x00\xe4\x03\x00\x00\x98\x06\x00\x00n\x06\x00\x00\x97\x06\x00\x00n\x06\x00\x00m\x06\x00\x00\x97\x06\x00\x00o\x06\x00\x00n\x06\x00\x00\x99\x06\x00\x00n\x06\x00\x00\x98\x06\x00\x00\x99\x06\x00\x00\x1d\x06\x00\x00\xf2\x05\x00\x00\x1c\x06\x00\x00\xf2\x05\x00\x00\x1d\x06\x00\x00\xf3\x05\x00\x00F\x06\x00\x00\x1b\x06\x00\x00E\x06\x00\x00\x1c\x06\x00\x00\x1b\x06\x00\x00F\x06\x00\x00\xf2\x05\x00\x00\x1b\x06\x00\x00\x1c\x06\x00\x00\x1b\x06\x00\x00\xf2\x05\x00\x00\xf1\x05\x00\x00\x95\x05\x00\x00j\x05\x00\x00\x94\x05\x00\x00j\x05\x00\x00\x95\x05\x00\x00k\x05\x00\x00A\x05\x00\x00\x16\x05\x00\x00@\x05\x00\x00\x16\x05\x00\x00A\x05\x00\x00\x17\x05\x00\x00j\x05\x00\x00A\x05\x00\x00@\x05\x00\x00A\x05\x00\x00j\x05\x00\x00k\x05\x00\x00B\x05\x00\x00\x19\x05\x00\x00\x18\x05\x00\x00\x19\x05\x00\x00B\x05\x00\x00C\x05\x00\x00\x17\x05\x00\x00B\x05\x00\x00\x18\x05\x00\x00A\x05\x00\x00B\x05\x00\x00\x17\x05\x00\x00m\x06\x00\x00l\x06\x00\x00\x97\x06\x00\x00l\x06\x00\x00\x96\x06\x00\x00\x97\x06\x00\x00>\x00\x00\x00\x15\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00>\x00\x00\x00?\x00\x00\x00\x90\x00\x00\x00e\x00\x00\x00\x8f\x00\x00\x00e\x00\x00\x00\x90\x00\x00\x00f\x00\x00\x00e\x00\x00\x00;\x00\x00\x00:\x00\x00\x00e\x00\x00\x00:\x00\x00\x00d\x00\x00\x00\xbb\x01\x00\x00\x90\x01\x00\x00\xba\x01\x00\x00\x90\x01\x00\x00\xbb\x01\x00\x00\x91\x01\x00\x00\xe5\x01\x00\x00\xbb\x01\x00\x00\xe4\x01\x00\x00\xbb\x01\x00\x00\xba\x01\x00\x00\xe4\x01\x00\x00\xb8\x01\x00\x00\xe1\x01\x00\x00\xe2\x01\x00\x00\xe1\x01\x00\x00\xb8\x01\x00\x00\xb7\x01\x00\x00F\x00\x00\x00\x1d\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00F\x00\x00\x00G\x00\x00\x00F\x00\x00\x00q\x00\x00\x00G\x00\x00\x00q\x00\x00\x00F\x00\x00\x00p\x00\x00\x00A\x02\x00\x00@\x02\x00\x00k\x02\x00\x00@\x02\x00\x00j\x02\x00\x00k\x02\x00\x00g\x02\x00\x00h\x02\x00\x00=\x02\x00\x00h\x02\x00\x00>\x02\x00\x00=\x02\x00\x00r\x01\x00\x00\x9d\x01\x00\x00s\x01\x00\x00\x9d\x01\x00\x00r\x01\x00\x00\x9c\x01\x00\x00#\x00\x00\x00N\x00\x00\x00$\x00\x00\x00N\x00\x00\x00#\x00\x00\x00M\x00\x00\x00L\x00\x00\x00#\x00\x00\x00"\x00\x00\x00#\x00\x00\x00L\x00\x00\x00M\x00\x00\x008\x00\x00\x00a\x00\x00\x00b\x00\x00\x00a\x00\x00\x008\x00\x00\x007\x00\x00\x006\x00\x00\x00\r\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x006\x00\x00\x007\x00\x00\x006\x00\x00\x00a\x00\x00\x007\x00\x00\x00a\x00\x00\x006\x00\x00\x00`\x00\x00\x00\x0b\x00\x00\x006\x00\x00\x00\x0c\x00\x00\x006\x00\x00\x00\x0b\x00\x00\x005\x00\x00\x002\x00\x00\x00\t\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x002\x00\x00\x003\x00\x00\x00\xd8\x00\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00\xd8\x00\x00\x00\x03\x01\x00\x00\xd9\x00\x00\x00\xdb\x00\x00\x00\xb0\x00\x00\x00\xda\x00\x00\x00\xb0\x00\x00\x00\xdb\x00\x00\x00\xb1\x00\x00\x00\x7f\x00\x00\x00T\x00\x00\x00~\x00\x00\x00T\x00\x00\x00\x7f\x00\x00\x00U\x00\x00\x00\x01\x00\x00\x00,\x00\x00\x00\x02\x00\x00\x00,\x00\x00\x00\x01\x00\x00\x00+\x00\x00\x00\xfd\x00\x00\x00\xd2\x00\x00\x00\xfc\x00\x00\x00\xd2\x00\x00\x00\xfd\x00\x00\x00\xd3\x00\x00\x00\xa8\x00\x00\x00\xd2\x00\x00\x00\xa9\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xa9\x00\x00\x00\xfd\x00\x00\x00\xd4\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\xfd\x00\x00\x00\xfe\x00\x00\x00Y\x00\x00\x00\x83\x00\x00\x00Z\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00Z\x00\x00\x00\x83\x00\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00\x81\x00\x00\x00\xac\x00\x00\x00\x82\x00\x00\x00\xac\x00\x00\x00\x81\x00\x00\x00\xab\x00\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00\xd9\x00\x00\x00\x04\x01\x00\x00\xda\x00\x00\x00\xd9\x00\x00\x00\x81\x01\x00\x00\xaa\x01\x00\x00\xab\x01\x00\x00\x81\x01\x00\x00\x80\x01\x00\x00\xaa\x01\x00\x001\x02\x00\x00\x07\x02\x00\x00\x06\x02\x00\x000\x02\x00\x001\x02\x00\x00\x06\x02\x00\x001\x02\x00\x00\x08\x02\x00\x00\x07\x02\x00\x00\x08\x02\x00\x001\x02\x00\x002\x02\x00\x00\x0f\x01\x00\x00\x0e\x01\x00\x008\x01\x00\x009\x01\x00\x00\x0f\x01\x00\x008\x01\x00\x00\xb6\x01\x00\x00\xe1\x01\x00\x00\xb7\x01\x00\x00\xe1\x01\x00\x00\xb6\x01\x00\x00\xe0\x01\x00\x008\x00\x00\x00\x0e\x00\x00\x007\x00\x00\x00\x0e\x00\x00\x00\r\x00\x00\x007\x00\x00\x009\x00\x00\x00\x10\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x009\x00\x00\x00:\x00\x00\x00\x0e\x00\x00\x009\x00\x00\x00\x0f\x00\x00\x009\x00\x00\x00\x0e\x00\x00\x008\x00\x00\x00\x89\x01\x00\x00\x8a\x01\x00\x00`\x01\x00\x00\x89\x01\x00\x00`\x01\x00\x00_\x01\x00\x00\x89\x01\x00\x00\xb3\x01\x00\x00\xb4\x01\x00\x00\x8a\x01\x00\x00\x89\x01\x00\x00\xb4\x01\x00\x00\xaf\x01\x00\x00\xd8\x01\x00\x00\xd9\x01\x00\x00\xd8\x01\x00\x00\xaf\x01\x00\x00\xae\x01\x00\x00\xaf\x01\x00\x00\xd9\x01\x00\x00\xda\x01\x00\x00\xb0\x01\x00\x00\xaf\x01\x00\x00\xda\x01\x00\x00I\x03\x00\x00H\x03\x00\x00r\x03\x00\x00s\x03\x00\x00I\x03\x00\x00r\x03\x00\x00I\x03\x00\x00s\x03\x00\x00t\x03\x00\x00J\x03\x00\x00I\x03\x00\x00t\x03\x00\x00{\x03\x00\x00\xa4\x03\x00\x00\xa5\x03\x00\x00\xa4\x03\x00\x00{\x03\x00\x00z\x03\x00\x00\xff\x00\x00\x00)\x01\x00\x00*\x01\x00\x00\x00\x01\x00\x00\xff\x00\x00\x00*\x01\x00\x00\xff\x00\x00\x00\xd4\x00\x00\x00\xfe\x00\x00\x00\xd4\x00\x00\x00\xff\x00\x00\x00\xd5\x00\x00\x00(\x01\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00)\x01\x00\x00\xff\x00\x00\x00(\x01\x00\x00%\x02\x00\x00&\x02\x00\x00\xfb\x01\x00\x00&\x02\x00\x00\xfc\x01\x00\x00\xfb\x01\x00\x00&\x02\x00\x00%\x02\x00\x00O\x02\x00\x00P\x02\x00\x00&\x02\x00\x00O\x02\x00\x00\xd4\x01\x00\x00\xd3\x01\x00\x00\xfe\x01\x00\x00\xfe\x01\x00\x00\xd3\x01\x00\x00\xfd\x01\x00\x00-\x04\x00\x00.\x04\x00\x00\x03\x04\x00\x00\x03\x04\x00\x00.\x04\x00\x00\x04\x04\x00\x00\xd4\x05\x00\x00\xa9\x05\x00\x00\xd3\x05\x00\x00\xa9\x05\x00\x00\xd4\x05\x00\x00\xaa\x05\x00\x00\xa9\x05\x00\x00\xd2\x05\x00\x00\xd3\x05\x00\x00\xd2\x05\x00\x00\xa9\x05\x00\x00\xa8\x05\x00\x00\xac\x04\x00\x00\xd7\x04\x00\x00\xad\x04\x00\x00\xd7\x04\x00\x00\xac\x04\x00\x00\xd6\x04\x00\x00\xae\x04\x00\x00\xd8\x04\x00\x00\xd9\x04\x00\x00\xae\x04\x00\x00\xd9\x04\x00\x00\xaf\x04\x00\x00\xae\x04\x00\x00\x83\x04\x00\x00\xad\x04\x00\x00\x83\x04\x00\x00\xae\x04\x00\x00\x84\x04\x00\x00\xd7\x04\x00\x00\xae\x04\x00\x00\xad\x04\x00\x00\xae\x04\x00\x00\xd7\x04\x00\x00\xd8\x04\x00\x00,\x05\x00\x00U\x05\x00\x00V\x05\x00\x00U\x05\x00\x00,\x05\x00\x00+\x05\x00\x00,\x05\x00\x00\x03\x05\x00\x00\x02\x05\x00\x00,\x05\x00\x00-\x05\x00\x00\x03\x05\x00\x00-\x05\x00\x00,\x05\x00\x00W\x05\x00\x00,\x05\x00\x00V\x05\x00\x00W\x05\x00\x00S\x05\x00\x00*\x05\x00\x00)\x05\x00\x00*\x05\x00\x00S\x05\x00\x00T\x05\x00\x00*\x05\x00\x00U\x05\x00\x00+\x05\x00\x00U\x05\x00\x00*\x05\x00\x00T\x05\x00\x009\x03\x00\x00c\x03\x00\x00d\x03\x00\x00:\x03\x00\x009\x03\x00\x00d\x03\x00\x00;\x03\x00\x00:\x03\x00\x00d\x03\x00\x00;\x03\x00\x00d\x03\x00\x00e\x03\x00\x00\x8e\x03\x00\x00\x8f\x03\x00\x00d\x03\x00\x00d\x03\x00\x00\x8f\x03\x00\x00e\x03\x00\x00\xba\x03\x00\x00\x8f\x03\x00\x00\xb9\x03\x00\x00\x90\x03\x00\x00\x8f\x03\x00\x00\xba\x03\x00\x00a\x03\x00\x00`\x03\x00\x00\x8a\x03\x00\x00\x8b\x03\x00\x00a\x03\x00\x00\x8a\x03\x00\x00\'\x06\x00\x00&\x06\x00\x00P\x06\x00\x00Q\x06\x00\x00\'\x06\x00\x00P\x06\x00\x00\xfc\x05\x00\x00%\x06\x00\x00&\x06\x00\x00%\x06\x00\x00\xfc\x05\x00\x00\xfb\x05\x00\x00\'\x06\x00\x00\xfc\x05\x00\x00&\x06\x00\x00\xfc\x05\x00\x00\'\x06\x00\x00\xfd\x05\x00\x00\xd2\x05\x00\x00\xfc\x05\x00\x00\xd3\x05\x00\x00\xd3\x05\x00\x00\xfc\x05\x00\x00\xfd\x05\x00\x00\xd1\x05\x00\x00\xd2\x05\x00\x00\xa8\x05\x00\x00\xd1\x05\x00\x00\xa8\x05\x00\x00\xa7\x05\x00\x00\xfc\x05\x00\x00\xd1\x05\x00\x00\xfb\x05\x00\x00\xd1\x05\x00\x00\xfc\x05\x00\x00\xd2\x05\x00\x00\xd1\x05\x00\x00\xa6\x05\x00\x00\xd0\x05\x00\x00\xa6\x05\x00\x00\xd1\x05\x00\x00\xa7\x05\x00\x00\xfa\x05\x00\x00\xd1\x05\x00\x00\xd0\x05\x00\x00\xd1\x05\x00\x00\xfa\x05\x00\x00\xfb\x05\x00\x00q\x05\x00\x00\x9a\x05\x00\x00\x9b\x05\x00\x00\x9a\x05\x00\x00q\x05\x00\x00p\x05\x00\x00q\x05\x00\x00H\x05\x00\x00G\x05\x00\x00H\x05\x00\x00q\x05\x00\x00r\x05\x00\x00\x80\x03\x00\x00\x81\x03\x00\x00V\x03\x00\x00V\x03\x00\x00\x81\x03\x00\x00W\x03\x00\x00\xad\x03\x00\x00\xd8\x03\x00\x00\xae\x03\x00\x00\xad\x03\x00\x00\xd7\x03\x00\x00\xd8\x03\x00\x00\xfe\x03\x00\x00\'\x04\x00\x00(\x04\x00\x00\'\x04\x00\x00\xfe\x03\x00\x00\xfd\x03\x00\x00\xfe\x03\x00\x00\xd3\x03\x00\x00\xfd\x03\x00\x00\xd3\x03\x00\x00\xfe\x03\x00\x00\xd4\x03\x00\x00\xd2\x03\x00\x00\xfc\x03\x00\x00\xfd\x03\x00\x00\xd3\x03\x00\x00\xd2\x03\x00\x00\xfd\x03\x00\x00\'\x04\x00\x00P\x04\x00\x00Q\x04\x00\x00P\x04\x00\x00\'\x04\x00\x00&\x04\x00\x00\xa3\x04\x00\x00x\x04\x00\x00\xa2\x04\x00\x00x\x04\x00\x00\xa3\x04\x00\x00y\x04\x00\x00\xa3\x04\x00\x00\xa4\x04\x00\x00z\x04\x00\x00y\x04\x00\x00\xa3\x04\x00\x00z\x04\x00\x00\xf7\x05\x00\x00"\x06\x00\x00\xf8\x05\x00\x00\xf7\x05\x00\x00!\x06\x00\x00"\x06\x00\x00\xfb\x04\x00\x00&\x05\x00\x00\xfc\x04\x00\x00&\x05\x00\x00\xfb\x04\x00\x00%\x05\x00\x00\xcf\x04\x00\x00\xa5\x04\x00\x00\xce\x04\x00\x00\xa5\x04\x00\x00\xa4\x04\x00\x00\xce\x04\x00\x00T\x04\x00\x00\x7f\x04\x00\x00U\x04\x00\x00\x7f\x04\x00\x00T\x04\x00\x00~\x04\x00\x00}\x04\x00\x00\xa8\x04\x00\x00~\x04\x00\x00\xa8\x04\x00\x00}\x04\x00\x00\xa7\x04\x00\x00\x9a\x04\x00\x00o\x04\x00\x00\x99\x04\x00\x00o\x04\x00\x00\x9a\x04\x00\x00p\x04\x00\x00\x9a\x04\x00\x00\x99\x04\x00\x00\xc3\x04\x00\x00\xc4\x04\x00\x00\x9a\x04\x00\x00\xc3\x04\x00\x00q\x04\x00\x00H\x04\x00\x00G\x04\x00\x00H\x04\x00\x00q\x04\x00\x00r\x04\x00\x00q\x04\x00\x00F\x04\x00\x00p\x04\x00\x00F\x04\x00\x00q\x04\x00\x00G\x04\x00\x00\x9a\x04\x00\x00q\x04\x00\x00p\x04\x00\x00q\x04\x00\x00\x9a\x04\x00\x00\x9b\x04\x00\x00I\x04\x00\x00H\x04\x00\x00r\x04\x00\x00s\x04\x00\x00I\x04\x00\x00r\x04\x00\x00I\x04\x00\x00 \x04\x00\x00\x1f\x04\x00\x00 \x04\x00\x00I\x04\x00\x00J\x04\x00\x00I\x04\x00\x00t\x04\x00\x00J\x04\x00\x00t\x04\x00\x00I\x04\x00\x00s\x04\x00\x00\x1d\x04\x00\x00\x1e\x04\x00\x00\xf3\x03\x00\x00\x1e\x04\x00\x00\xf4\x03\x00\x00\xf3\x03\x00\x00\x1e\x04\x00\x00\x1d\x04\x00\x00G\x04\x00\x00H\x04\x00\x00\x1e\x04\x00\x00G\x04\x00\x00\xf5\x03\x00\x00\x1e\x04\x00\x00\x1f\x04\x00\x00\xf4\x03\x00\x00\x1e\x04\x00\x00\xf5\x03\x00\x00I\x04\x00\x00\x1e\x04\x00\x00H\x04\x00\x00\x1e\x04\x00\x00I\x04\x00\x00\x1f\x04\x00\x00\x9e\x04\x00\x00t\x04\x00\x00s\x04\x00\x00\x9e\x04\x00\x00s\x04\x00\x00\x9d\x04\x00\x00#\x04\x00\x00M\x04\x00\x00N\x04\x00\x00$\x04\x00\x00#\x04\x00\x00N\x04\x00\x00\xcb\x04\x00\x00\xf5\x04\x00\x00\xf6\x04\x00\x00\xcb\x04\x00\x00\xf6\x04\x00\x00\xcc\x04\x00\x00E\x05\x00\x00F\x05\x00\x00\x1b\x05\x00\x00\x1b\x05\x00\x00F\x05\x00\x00\x1c\x05\x00\x00q\x05\x00\x00F\x05\x00\x00p\x05\x00\x00F\x05\x00\x00q\x05\x00\x00G\x05\x00\x00\xf2\x03\x00\x00\xc9\x03\x00\x00\xc8\x03\x00\x00\xc9\x03\x00\x00\xf2\x03\x00\x00\xf3\x03\x00\x00\xc9\x03\x00\x00\x9e\x03\x00\x00\xc8\x03\x00\x00\xc9\x03\x00\x00\x9f\x03\x00\x00\x9e\x03\x00\x00K\x04\x00\x00L\x04\x00\x00!\x04\x00\x00!\x04\x00\x00L\x04\x00\x00"\x04\x00\x00#\x04\x00\x00L\x04\x00\x00M\x04\x00\x00L\x04\x00\x00#\x04\x00\x00"\x04\x00\x00u\x04\x00\x00L\x04\x00\x00K\x04\x00\x00L\x04\x00\x00u\x04\x00\x00v\x04\x00\x00u\x04\x00\x00K\x04\x00\x00J\x04\x00\x00t\x04\x00\x00u\x04\x00\x00J\x04\x00\x00/\x02\x00\x000\x02\x00\x00\x06\x02\x00\x00\x05\x02\x00\x00/\x02\x00\x00\x06\x02\x00\x000\x02\x00\x00/\x02\x00\x00Z\x02\x00\x00/\x02\x00\x00Y\x02\x00\x00Z\x02\x00\x00\x04\x02\x00\x00/\x02\x00\x00\x05\x02\x00\x00/\x02\x00\x00\x04\x02\x00\x00.\x02\x00\x00\x03\x02\x00\x00\x04\x02\x00\x00\xda\x01\x00\x00\xd9\x01\x00\x00\x03\x02\x00\x00\xda\x01\x00\x00\x04\x02\x00\x00\x03\x02\x00\x00.\x02\x00\x00\x03\x02\x00\x00-\x02\x00\x00.\x02\x00\x00\xd8\x01\x00\x00\x03\x02\x00\x00\xd9\x01\x00\x00\x03\x02\x00\x00\xd8\x01\x00\x00\x02\x02\x00\x00,\x02\x00\x00\x03\x02\x00\x00\x02\x02\x00\x00-\x02\x00\x00\x03\x02\x00\x00,\x02\x00\x00*\x03\x00\x00)\x03\x00\x00T\x03\x00\x00T\x03\x00\x00)\x03\x00\x00S\x03\x00\x00\xff\x01\x00\x00\xd5\x01\x00\x00\xd4\x01\x00\x00\xff\x01\x00\x00\xd4\x01\x00\x00\xfe\x01\x00\x00,\x03\x00\x00\x02\x03\x00\x00\x01\x03\x00\x00+\x03\x00\x00,\x03\x00\x00\x01\x03\x00\x00\x84\x02\x00\x00Y\x02\x00\x00\x83\x02\x00\x00Y\x02\x00\x00\x84\x02\x00\x00Z\x02\x00\x00\x84\x02\x00\x00\x83\x02\x00\x00\xad\x02\x00\x00\xae\x02\x00\x00\x84\x02\x00\x00\xad\x02\x00\x00\x85\x02\x00\x00\x84\x02\x00\x00\xaf\x02\x00\x00\x84\x02\x00\x00\xae\x02\x00\x00\xaf\x02\x00\x00\x81\x03\x00\x00X\x03\x00\x00W\x03\x00\x00X\x03\x00\x00\x81\x03\x00\x00\x82\x03\x00\x00\x9e\x02\x00\x00\xc7\x02\x00\x00\xc8\x02\x00\x00\xc7\x02\x00\x00\x9e\x02\x00\x00\x9d\x02\x00\x00\x9e\x02\x00\x00\xc9\x02\x00\x00\x9f\x02\x00\x00\xc9\x02\x00\x00\x9e\x02\x00\x00\xc8\x02\x00\x00u\x02\x00\x00\x9e\x02\x00\x00\x9f\x02\x00\x00\x9e\x02\x00\x00u\x02\x00\x00t\x02\x00\x00\x9e\x02\x00\x00s\x02\x00\x00\x9d\x02\x00\x00s\x02\x00\x00\x9e\x02\x00\x00t\x02\x00\x00\xf4\x01\x00\x00\xcb\x01\x00\x00\xca\x01\x00\x00\xcb\x01\x00\x00\xf4\x01\x00\x00\xf5\x01\x00\x00\x15\x03\x00\x00\xec\x02\x00\x00\xeb\x02\x00\x00\xec\x02\x00\x00\x15\x03\x00\x00\x16\x03\x00\x00\x98\x02\x00\x00\xc1\x02\x00\x00\xc2\x02\x00\x00\xc1\x02\x00\x00\x98\x02\x00\x00\x97\x02\x00\x00\xec\x02\x00\x00\xc1\x02\x00\x00\xeb\x02\x00\x00\xc1\x02\x00\x00\xec\x02\x00\x00\xc2\x02\x00\x00\xa6\x00\x00\x00\xd1\x00\x00\x00\xa7\x00\x00\x00\xd1\x00\x00\x00\xa6\x00\x00\x00\xd0\x00\x00\x00{\x00\x00\x00\xa6\x00\x00\x00|\x00\x00\x00\xa6\x00\x00\x00{\x00\x00\x00\xa5\x00\x00\x00Q\x00\x00\x00{\x00\x00\x00R\x00\x00\x00{\x00\x00\x00|\x00\x00\x00R\x00\x00\x00}\x00\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00}\x00\x00\x00|\x00\x00\x00}\x00\x00\x00S\x00\x00\x00R\x00\x00\x00|\x00\x00\x00}\x00\x00\x00R\x00\x00\x00I\x01\x00\x00r\x01\x00\x00s\x01\x00\x00r\x01\x00\x00I\x01\x00\x00H\x01\x00\x00I\x01\x00\x00\x1e\x01\x00\x00H\x01\x00\x00\x1e\x01\x00\x00I\x01\x00\x00\x1f\x01\x00\x00N\x00\x00\x00%\x00\x00\x00$\x00\x00\x00%\x00\x00\x00N\x00\x00\x00O\x00\x00\x00%\x00\x00\x00P\x00\x00\x00&\x00\x00\x00P\x00\x00\x00%\x00\x00\x00O\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00\'\x00\x00\x00&\x00\x00\x00P\x00\x00\x00\'\x00\x00\x00\xcd\x00\x00\x00\xf8\x00\x00\x00\xce\x00\x00\x00\xf8\x00\x00\x00\xcd\x00\x00\x00\xf7\x00\x00\x00!\x01\x00\x00\xf6\x00\x00\x00 \x01\x00\x00\xf6\x00\x00\x00!\x01\x00\x00\xf7\x00\x00\x00!\x01\x00\x00\xf8\x00\x00\x00\xf7\x00\x00\x00\xf8\x00\x00\x00!\x01\x00\x00"\x01\x00\x00$\x01\x00\x00O\x01\x00\x00%\x01\x00\x00O\x01\x00\x00$\x01\x00\x00N\x01\x00\x00M\x01\x00\x00$\x01\x00\x00#\x01\x00\x00$\x01\x00\x00M\x01\x00\x00N\x01\x00\x00\xfb\x00\x00\x00$\x01\x00\x00%\x01\x00\x00$\x01\x00\x00\xfb\x00\x00\x00\xfa\x00\x00\x00\xfb\x00\x00\x00\xd1\x00\x00\x00\xd0\x00\x00\x00\xfa\x00\x00\x00\xfb\x00\x00\x00\xd0\x00\x00\x00y\x01\x00\x00O\x01\x00\x00N\x01\x00\x00x\x01\x00\x00y\x01\x00\x00N\x01\x00\x00M\x01\x00\x00w\x01\x00\x00N\x01\x00\x00w\x01\x00\x00x\x01\x00\x00N\x01\x00\x00\xfa\x07\x00\x00#\x08\x00\x00$\x08\x00\x00#\x08\x00\x00\xfa\x07\x00\x00\xf9\x07\x00\x00%\x08\x00\x00\xfa\x07\x00\x00$\x08\x00\x00\xfa\x07\x00\x00%\x08\x00\x00\xfb\x07\x00\x00\xce\x07\x00\x00\xa5\x07\x00\x00\xa4\x07\x00\x00\xa5\x07\x00\x00\xce\x07\x00\x00\xcf\x07\x00\x00/\x03\x00\x00\x06\x03\x00\x00\x05\x03\x00\x000\x03\x00\x00\x06\x03\x00\x00/\x03\x00\x00\x89\x03\x00\x00\xb3\x03\x00\x00\xb4\x03\x00\x00\x8a\x03\x00\x00\x89\x03\x00\x00\xb4\x03\x00\x00\x85\x03\x00\x00\xb0\x03\x00\x00\x86\x03\x00\x00\xb0\x03\x00\x00\x85\x03\x00\x00\xaf\x03\x00\x00\xd9\x03\x00\x00\xb0\x03\x00\x00\xaf\x03\x00\x00\xda\x03\x00\x00\xb0\x03\x00\x00\xd9\x03\x00\x00\x87\x03\x00\x00\xb0\x03\x00\x00\xb1\x03\x00\x00\xb0\x03\x00\x00\x87\x03\x00\x00\x86\x03\x00\x00\xb0\x03\x00\x00\xdb\x03\x00\x00\xb1\x03\x00\x00\xb0\x03\x00\x00\xda\x03\x00\x00\xdb\x03\x00\x00\x87\x03\x00\x00]\x03\x00\x00\x86\x03\x00\x00\x86\x03\x00\x00]\x03\x00\x00\\\x03\x00\x00?\x01\x00\x00h\x01\x00\x00i\x01\x00\x00h\x01\x00\x00?\x01\x00\x00>\x01\x00\x00\xea\x00\x00\x00\xc1\x00\x00\x00\xc0\x00\x00\x00\xc1\x00\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\x98\x02\x00\x00m\x02\x00\x00\x97\x02\x00\x00m\x02\x00\x00\x98\x02\x00\x00n\x02\x00\x00\x0c\x02\x00\x00\r\x02\x00\x00\xe3\x01\x00\x00\xe2\x01\x00\x00\x0c\x02\x00\x00\xe3\x01\x00\x00\xbd\x01\x00\x00\x94\x01\x00\x00\x93\x01\x00\x00\x94\x01\x00\x00\xbd\x01\x00\x00\xbe\x01\x00\x00;\x02\x00\x00\x10\x02\x00\x00:\x02\x00\x00\x10\x02\x00\x00;\x02\x00\x00\x11\x02\x00\x00\x10\x02\x00\x009\x02\x00\x00:\x02\x00\x009\x02\x00\x00\x10\x02\x00\x00\x0f\x02\x00\x009\x02\x00\x00c\x02\x00\x00d\x02\x00\x00:\x02\x00\x009\x02\x00\x00d\x02\x00\x00\x0e\x02\x00\x009\x02\x00\x00\x0f\x02\x00\x008\x02\x00\x009\x02\x00\x00\x0e\x02\x00\x00>\x05\x00\x00\x13\x05\x00\x00=\x05\x00\x00\x13\x05\x00\x00>\x05\x00\x00\x14\x05\x00\x00B\x04\x00\x00C\x04\x00\x00\x19\x04\x00\x00\x18\x04\x00\x00B\x04\x00\x00\x19\x04\x00\x00\x17\x04\x00\x00B\x04\x00\x00\x18\x04\x00\x00B\x04\x00\x00\x17\x04\x00\x00A\x04\x00\x00E\x03\x00\x00D\x03\x00\x00o\x03\x00\x00D\x03\x00\x00n\x03\x00\x00o\x03\x00\x00\x1c\x03\x00\x00G\x03\x00\x00\x1d\x03\x00\x00G\x03\x00\x00\x1c\x03\x00\x00F\x03\x00\x00\xf3\x02\x00\x00\x1c\x03\x00\x00\x1d\x03\x00\x00\x1c\x03\x00\x00\xf3\x02\x00\x00\xf2\x02\x00\x00\xf3\x02\x00\x00\xc9\x02\x00\x00\xc8\x02\x00\x00\xf2\x02\x00\x00\xf3\x02\x00\x00\xc8\x02\x00\x00\xe6\x04\x00\x00\xbd\x04\x00\x00\xbc\x04\x00\x00\xbd\x04\x00\x00\xe6\x04\x00\x00\xe7\x04\x00\x00\'\x08\x00\x00(\x08\x00\x00\xfd\x07\x00\x00(\x08\x00\x00\xfe\x07\x00\x00\xfd\x07\x00\x00\xb4\x07\x00\x00\x89\x07\x00\x00\xb3\x07\x00\x00\x89\x07\x00\x00\xb4\x07\x00\x00\x8a\x07\x00\x00\x8b\x07\x00\x00\xb4\x07\x00\x00\xb5\x07\x00\x00\xb4\x07\x00\x00\x8b\x07\x00\x00\x8a\x07\x00\x00\xdd\x07\x00\x00\xb4\x07\x00\x00\xb3\x07\x00\x00\xb4\x07\x00\x00\xdd\x07\x00\x00\xde\x07\x00\x00\xdd\x07\x00\x00\x07\x08\x00\x00\x08\x08\x00\x00\xde\x07\x00\x00\xdd\x07\x00\x00\x08\x08\x00\x00\xb4\x07\x00\x00\xdf\x07\x00\x00\xb5\x07\x00\x00\xdf\x07\x00\x00\xb4\x07\x00\x00\xde\x07\x00\x00\t\x08\x00\x00\xdf\x07\x00\x00\x08\x08\x00\x00\xdf\x07\x00\x00\xde\x07\x00\x00\x08\x08\x00\x00\x08\x07\x00\x003\x07\x00\x00\t\x07\x00\x003\x07\x00\x00\x08\x07\x00\x002\x07\x00\x003\x07\x00\x00\n\x07\x00\x00\t\x07\x00\x00\n\x07\x00\x003\x07\x00\x004\x07\x00\x00\x86\x07\x00\x00\xaf\x07\x00\x00\xb0\x07\x00\x00\xaf\x07\x00\x00\x86\x07\x00\x00\x85\x07\x00\x00\x86\x07\x00\x00\\\x07\x00\x00[\x07\x00\x00\x85\x07\x00\x00\x86\x07\x00\x00[\x07\x00\x00\x87\x07\x00\x00\x86\x07\x00\x00\xb1\x07\x00\x00\xb1\x07\x00\x00\x86\x07\x00\x00\xb0\x07\x00\x00\\\x07\x00\x001\x07\x00\x00[\x07\x00\x001\x07\x00\x00\\\x07\x00\x002\x07\x00\x001\x07\x00\x000\x07\x00\x00[\x07\x00\x000\x07\x00\x00Z\x07\x00\x00[\x07\x00\x00\xd8\x07\x00\x00\xad\x07\x00\x00\xd7\x07\x00\x00\xad\x07\x00\x00\xd8\x07\x00\x00\xae\x07\x00\x001\x06\x00\x00Z\x06\x00\x00[\x06\x00\x00Z\x06\x00\x001\x06\x00\x000\x06\x00\x00\x89\x05\x00\x00\xb4\x05\x00\x00\x8a\x05\x00\x00\xb4\x05\x00\x00\x89\x05\x00\x00\xb3\x05\x00\x00\xb4\x05\x00\x00\x8b\x05\x00\x00\x8a\x05\x00\x00\x8b\x05\x00\x00\xb4\x05\x00\x00\xb5\x05\x00\x00\xb7\x05\x00\x00\xe2\x05\x00\x00\xb8\x05\x00\x00\xe2\x05\x00\x00\xb7\x05\x00\x00\xe1\x05\x00\x00\x0b\x06\x00\x00\xe2\x05\x00\x00\xe1\x05\x00\x00\xe2\x05\x00\x00\x0b\x06\x00\x00\x0c\x06\x00\x00\xe2\x05\x00\x00\xe3\x05\x00\x00\xb9\x05\x00\x00\xb8\x05\x00\x00\xe2\x05\x00\x00\xb9\x05\x00\x00\xe3\x05\x00\x00\xe2\x05\x00\x00\r\x06\x00\x00\xe2\x05\x00\x00\x0c\x06\x00\x00\r\x06\x00\x00\x1a\x05\x00\x00E\x05\x00\x00\x1b\x05\x00\x00E\x05\x00\x00\x1a\x05\x00\x00D\x05\x00\x00\x1a\x05\x00\x00\x19\x05\x00\x00C\x05\x00\x00\x1a\x05\x00\x00C\x05\x00\x00D\x05\x00\x00\xc5\x04\x00\x00\xee\x04\x00\x00\xef\x04\x00\x00\xee\x04\x00\x00\xc5\x04\x00\x00\xc4\x04\x00\x00\xc5\x04\x00\x00\x9a\x04\x00\x00\xc4\x04\x00\x00\x9a\x04\x00\x00\xc5\x04\x00\x00\x9b\x04\x00\x00\x9c\x04\x00\x00s\x04\x00\x00r\x04\x00\x00s\x04\x00\x00\x9c\x04\x00\x00\x9d\x04\x00\x00\x9c\x04\x00\x00\xc7\x04\x00\x00\x9d\x04\x00\x00\x9c\x04\x00\x00\xc6\x04\x00\x00\xc7\x04\x00\x00q\x04\x00\x00\x9c\x04\x00\x00r\x04\x00\x00\x9c\x04\x00\x00q\x04\x00\x00\x9b\x04\x00\x00\xc5\x04\x00\x00\x9c\x04\x00\x00\x9b\x04\x00\x00\x9c\x04\x00\x00\xc5\x04\x00\x00\xc6\x04\x00\x00\xf9\x06\x00\x00\xcf\x06\x00\x00\xf8\x06\x00\x00\xcf\x06\x00\x00\xce\x06\x00\x00\xf8\x06\x00\x00\xa4\x06\x00\x00y\x06\x00\x00\xa3\x06\x00\x00\xa4\x06\x00\x00z\x06\x00\x00y\x06\x00\x00\xcf\x06\x00\x00\xa4\x06\x00\x00\xce\x06\x00\x00\xa4\x06\x00\x00\xcf\x06\x00\x00\xa5\x06\x00\x00\xcd\x06\x00\x00\xa4\x06\x00\x00\xa3\x06\x00\x00\xa4\x06\x00\x00\xcd\x06\x00\x00\xce\x06\x00\x00\xa2\x06\x00\x00\xcd\x06\x00\x00\xa3\x06\x00\x00\xcd\x06\x00\x00\xa2\x06\x00\x00\xcc\x06\x00\x00\xea\x07\x00\x00\xc1\x07\x00\x00\xc0\x07\x00\x00\xeb\x07\x00\x00\xc1\x07\x00\x00\xea\x07\x00\x00\x18\x07\x00\x00C\x07\x00\x00\x19\x07\x00\x00B\x07\x00\x00C\x07\x00\x00\x18\x07\x00\x00C\x07\x00\x00B\x07\x00\x00l\x07\x00\x00m\x07\x00\x00C\x07\x00\x00l\x07\x00\x00\x96\x06\x00\x00\xc1\x06\x00\x00\x97\x06\x00\x00\xc1\x06\x00\x00\x96\x06\x00\x00\xc0\x06\x00\x00\xc1\x06\x00\x00\x98\x06\x00\x00\x97\x06\x00\x00\x98\x06\x00\x00\xc1\x06\x00\x00\xc2\x06\x00\x00\xbf\x07\x00\x00\x95\x07\x00\x00\xbe\x07\x00\x00\xbe\x07\x00\x00\x95\x07\x00\x00\x94\x07\x00\x00\x95\x07\x00\x00j\x07\x00\x00\x94\x07\x00\x00\x95\x07\x00\x00k\x07\x00\x00j\x07\x00\x00\x95\x07\x00\x00\xbf\x07\x00\x00\xc0\x07\x00\x00\x95\x07\x00\x00\xc0\x07\x00\x00\x96\x07\x00\x00l\x07\x00\x00\x95\x07\x00\x00\x96\x07\x00\x00k\x07\x00\x00\x95\x07\x00\x00l\x07\x00\x00A\x07\x00\x00\x16\x07\x00\x00@\x07\x00\x00\x16\x07\x00\x00A\x07\x00\x00\x17\x07\x00\x00j\x07\x00\x00A\x07\x00\x00@\x07\x00\x00k\x07\x00\x00A\x07\x00\x00j\x07\x00\x00A\x07\x00\x00B\x07\x00\x00\x18\x07\x00\x00A\x07\x00\x00\x18\x07\x00\x00\x17\x07\x00\x00B\x07\x00\x00A\x07\x00\x00l\x07\x00\x00A\x07\x00\x00k\x07\x00\x00l\x07\x00\x00p\x06\x00\x00F\x06\x00\x00E\x06\x00\x00o\x06\x00\x00p\x06\x00\x00E\x06\x00\x00p\x06\x00\x00o\x06\x00\x00\x99\x06\x00\x00\x9a\x06\x00\x00p\x06\x00\x00\x99\x06\x00\x00\xee\x06\x00\x00\xed\x06\x00\x00\x18\x07\x00\x00\x18\x07\x00\x00\xed\x06\x00\x00\x17\x07\x00\x008\x07\x00\x00\x0f\x07\x00\x00\x0e\x07\x00\x00\x0f\x07\x00\x008\x07\x00\x009\x07\x00\x00\x0f\x07\x00\x00\xe4\x06\x00\x00\x0e\x07\x00\x00\xe4\x06\x00\x00\x0f\x07\x00\x00\xe5\x06\x00\x00c\x07\x00\x00:\x07\x00\x009\x07\x00\x00:\x07\x00\x00c\x07\x00\x00d\x07\x00\x00:\x07\x00\x00\x0f\x07\x00\x009\x07\x00\x00\x0f\x07\x00\x00:\x07\x00\x00\x10\x07\x00\x00\x90\x07\x00\x00\x91\x07\x00\x00g\x07\x00\x00f\x07\x00\x00\x90\x07\x00\x00g\x07\x00\x00\x8e\x07\x00\x00\x8f\x07\x00\x00d\x07\x00\x00d\x07\x00\x00\x8f\x07\x00\x00e\x07\x00\x00\x8f\x07\x00\x00\x8e\x07\x00\x00\xb8\x07\x00\x00\xb9\x07\x00\x00\x8f\x07\x00\x00\xb8\x07\x00\x00\x8f\x07\x00\x00\x90\x07\x00\x00f\x07\x00\x00\x8f\x07\x00\x00f\x07\x00\x00e\x07\x00\x00\x7f\x06\x00\x00\x80\x06\x00\x00U\x06\x00\x00\x80\x06\x00\x00V\x06\x00\x00U\x06\x00\x00\xd0\x06\x00\x00\xcf\x06\x00\x00\xf9\x06\x00\x00\xd0\x06\x00\x00\xf9\x06\x00\x00\xfa\x06\x00\x00\xa4\x06\x00\x00{\x06\x00\x00z\x06\x00\x00{\x06\x00\x00\xa4\x06\x00\x00\xa5\x06\x00\x00{\x06\x00\x00Q\x06\x00\x00P\x06\x00\x00z\x06\x00\x00{\x06\x00\x00P\x06\x00\x00\x88\x05\x00\x00]\x05\x00\x00\x87\x05\x00\x00]\x05\x00\x00\x88\x05\x00\x00^\x05\x00\x00\x88\x05\x00\x00\x89\x05\x00\x00_\x05\x00\x00\x88\x05\x00\x00_\x05\x00\x00^\x05\x00\x00\xbb\x03\x00\x00\xbc\x03\x00\x00\x92\x03\x00\x00\xbb\x03\x00\x00\x92\x03\x00\x00\x91\x03\x00\x00\xbb\x03\x00\x00\xe5\x03\x00\x00\xe6\x03\x00\x00\xbc\x03\x00\x00\xbb\x03\x00\x00\xe6\x03\x00\x00\xbb\x03\x00\x00\x90\x03\x00\x00\xba\x03\x00\x00\x90\x03\x00\x00\xbb\x03\x00\x00\x91\x03\x00\x00\xbb\x03\x00\x00\xba\x03\x00\x00\xe4\x03\x00\x00\xe5\x03\x00\x00\xbb\x03\x00\x00\xe4\x03\x00\x00\xba\x04\x00\x00\x91\x04\x00\x00\x90\x04\x00\x00\x91\x04\x00\x00\xba\x04\x00\x00\xbb\x04\x00\x00\x8f\x04\x00\x00\xba\x04\x00\x00\x90\x04\x00\x00\xba\x04\x00\x00\x8f\x04\x00\x00\xb9\x04\x00\x00\x0e\x04\x00\x00\xe5\x03\x00\x00\xe4\x03\x00\x00\x0e\x04\x00\x00\x0f\x04\x00\x00\xe5\x03\x00\x00\x85\x04\x00\x00\xae\x04\x00\x00\xaf\x04\x00\x00\xae\x04\x00\x00\x85\x04\x00\x00\x84\x04\x00\x00\x0c\x05\x00\x007\x05\x00\x00\r\x05\x00\x007\x05\x00\x00\x0c\x05\x00\x006\x05\x00\x007\x05\x00\x00\x0e\x05\x00\x00\r\x05\x00\x00\x0e\x05\x00\x007\x05\x00\x008\x05\x00\x00\t\x05\x00\x00\x08\x05\x00\x002\x05\x00\x003\x05\x00\x00\t\x05\x00\x002\x05\x00\x00\x08\x05\x00\x00\xde\x04\x00\x00\x07\x05\x00\x00\x07\x05\x00\x00\xde\x04\x00\x00\xdd\x04\x00\x00\t\x05\x00\x00\xde\x04\x00\x00\x08\x05\x00\x00\xde\x04\x00\x00\t\x05\x00\x00\xdf\x04\x00\x00\x1c\x08\x00\x00\xf1\x07\x00\x00\x1b\x08\x00\x00\xf1\x07\x00\x00\x1c\x08\x00\x00\xf2\x07\x00\x00p\x06\x00\x00G\x06\x00\x00F\x06\x00\x00G\x06\x00\x00p\x06\x00\x00q\x06\x00\x00G\x06\x00\x00\x1d\x06\x00\x00\x1c\x06\x00\x00G\x06\x00\x00\x1c\x06\x00\x00F\x06\x00\x00r\x06\x00\x00G\x06\x00\x00q\x06\x00\x00H\x06\x00\x00G\x06\x00\x00r\x06\x00\x00s\x05\x00\x00H\x05\x00\x00r\x05\x00\x00H\x05\x00\x00s\x05\x00\x00I\x05\x00\x00J\x05\x00\x00s\x05\x00\x00t\x05\x00\x00s\x05\x00\x00J\x05\x00\x00I\x05\x00\x00\xf2\x05\x00\x00\xc7\x05\x00\x00\xf1\x05\x00\x00\xc7\x05\x00\x00\xf2\x05\x00\x00\xc8\x05\x00\x00\x1a\x06\x00\x00\x1b\x06\x00\x00\xf1\x05\x00\x00\xf0\x05\x00\x00\x1a\x06\x00\x00\xf1\x05\x00\x00\x1a\x06\x00\x00\xef\x05\x00\x00\x19\x06\x00\x00\xef\x05\x00\x00\x1a\x06\x00\x00\xf0\x05\x00\x00\x9b\x06\x00\x00r\x06\x00\x00q\x06\x00\x00\x9b\x06\x00\x00\x9c\x06\x00\x00r\x06\x00\x00\x9b\x06\x00\x00p\x06\x00\x00\x9a\x06\x00\x00p\x06\x00\x00\x9b\x06\x00\x00q\x06\x00\x00\x15\x06\x00\x00\xea\x05\x00\x00\x14\x06\x00\x00\xea\x05\x00\x00\x15\x06\x00\x00\xeb\x05\x00\x00\x13\x06\x00\x00\xe8\x05\x00\x00\x12\x06\x00\x00\xe8\x05\x00\x00\x13\x06\x00\x00\xe9\x05\x00\x00\xea\x05\x00\x00\x13\x06\x00\x00\x14\x06\x00\x00\x13\x06\x00\x00\xea\x05\x00\x00\xe9\x05\x00\x00g\x06\x00\x00f\x06\x00\x00\x90\x06\x00\x00g\x06\x00\x00\x90\x06\x00\x00\x91\x06\x00\x00\x94\x06\x00\x00i\x06\x00\x00\x93\x06\x00\x00i\x06\x00\x00\x94\x06\x00\x00j\x06\x00\x00\xe8\x05\x00\x00\xbf\x05\x00\x00\xbe\x05\x00\x00\xbf\x05\x00\x00\xe8\x05\x00\x00\xe9\x05\x00\x00\xbe\x05\x00\x00\xbf\x05\x00\x00\x94\x05\x00\x00\xbf\x05\x00\x00\x95\x05\x00\x00\x94\x05\x00\x00\xea\x05\x00\x00\xbf\x05\x00\x00\xe9\x05\x00\x00\xbf\x05\x00\x00\xea\x05\x00\x00\xc0\x05\x00\x00\xbf\x05\x00\x00\xc0\x05\x00\x00\x96\x05\x00\x00\x95\x05\x00\x00\xbf\x05\x00\x00\x96\x05\x00\x00\x97\x05\x00\x00l\x05\x00\x00\x96\x05\x00\x00l\x05\x00\x00\x97\x05\x00\x00m\x05\x00\x00B\x05\x00\x00l\x05\x00\x00C\x05\x00\x00C\x05\x00\x00l\x05\x00\x00m\x05\x00\x00\x95\x05\x00\x00l\x05\x00\x00k\x05\x00\x00l\x05\x00\x00\x95\x05\x00\x00\x96\x05\x00\x00l\x05\x00\x00A\x05\x00\x00k\x05\x00\x00l\x05\x00\x00B\x05\x00\x00A\x05\x00\x00\xc1\x05\x00\x00\xea\x05\x00\x00\xeb\x05\x00\x00\xea\x05\x00\x00\xc1\x05\x00\x00\xc0\x05\x00\x00\xc0\x05\x00\x00\xc1\x05\x00\x00\x96\x05\x00\x00\xc1\x05\x00\x00\x97\x05\x00\x00\x96\x05\x00\x00C\x05\x00\x00n\x05\x00\x00D\x05\x00\x00n\x05\x00\x00C\x05\x00\x00m\x05\x00\x00l\x06\x00\x00k\x06\x00\x00\x96\x06\x00\x00\x96\x06\x00\x00k\x06\x00\x00\x95\x06\x00\x00k\x06\x00\x00B\x06\x00\x00A\x06\x00\x00B\x06\x00\x00k\x06\x00\x00l\x06\x00\x00\x94\x06\x00\x00k\x06\x00\x00j\x06\x00\x00k\x06\x00\x00\x94\x06\x00\x00\x95\x06\x00\x00k\x06\x00\x00A\x06\x00\x00@\x06\x00\x00k\x06\x00\x00@\x06\x00\x00j\x06\x00\x00\x13\x00\x00\x00=\x00\x00\x00\x14\x00\x00\x00=\x00\x00\x00>\x00\x00\x00\x14\x00\x00\x00\x0f\x01\x00\x00\xe4\x00\x00\x00\x0e\x01\x00\x00\xe4\x00\x00\x00\x0f\x01\x00\x00\xe5\x00\x00\x00\r\x01\x00\x00\xe4\x00\x00\x00\xe3\x00\x00\x00\xe4\x00\x00\x00\r\x01\x00\x00\x0e\x01\x00\x00\x90\x00\x00\x00\x91\x00\x00\x00f\x00\x00\x00\x91\x00\x00\x00g\x00\x00\x00f\x00\x00\x00<\x00\x00\x00e\x00\x00\x00f\x00\x00\x00e\x00\x00\x00<\x00\x00\x00;\x00\x00\x00;\x00\x00\x00<\x00\x00\x00\x11\x00\x00\x00<\x00\x00\x00\x12\x00\x00\x00\x11\x00\x00\x00g\x00\x00\x00<\x00\x00\x00f\x00\x00\x00=\x00\x00\x00<\x00\x00\x00g\x00\x00\x00\x12\x00\x00\x00<\x00\x00\x00\x13\x00\x00\x00<\x00\x00\x00=\x00\x00\x00\x13\x00\x00\x00C\x00\x00\x00\x1a\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00C\x00\x00\x00D\x00\x00\x00\x18\x00\x00\x00C\x00\x00\x00\x19\x00\x00\x00C\x00\x00\x00\x18\x00\x00\x00B\x00\x00\x00e\x01\x00\x00\x8e\x01\x00\x00\x8f\x01\x00\x00\x8e\x01\x00\x00e\x01\x00\x00d\x01\x00\x00e\x01\x00\x00:\x01\x00\x00d\x01\x00\x00:\x01\x00\x00e\x01\x00\x00;\x01\x00\x00=\x00\x00\x00h\x00\x00\x00>\x00\x00\x00h\x00\x00\x00=\x00\x00\x00g\x00\x00\x00\x15\x00\x00\x00@\x00\x00\x00\x16\x00\x00\x00@\x00\x00\x00\x15\x00\x00\x00?\x00\x00\x00\xc1\x00\x00\x00\x96\x00\x00\x00\xc0\x00\x00\x00\x96\x00\x00\x00\xc1\x00\x00\x00\x97\x00\x00\x00\xb9\x01\x00\x00\xb8\x01\x00\x00\xe2\x01\x00\x00\xb9\x01\x00\x00\xe2\x01\x00\x00\xe3\x01\x00\x00\x8e\x01\x00\x00\xb9\x01\x00\x00\x8f\x01\x00\x00\xb8\x01\x00\x00\xb9\x01\x00\x00\x8e\x01\x00\x00\xe4\x01\x00\x00\xb9\x01\x00\x00\xe3\x01\x00\x00\xba\x01\x00\x00\xb9\x01\x00\x00\xe4\x01\x00\x00\x90\x01\x00\x00\xb9\x01\x00\x00\xba\x01\x00\x00\xb9\x01\x00\x00\x90\x01\x00\x00\x8f\x01\x00\x00\x1e\x00\x00\x00I\x00\x00\x00\x1f\x00\x00\x00I\x00\x00\x00\x1e\x00\x00\x00H\x00\x00\x00\x1e\x00\x00\x00\x1d\x00\x00\x00G\x00\x00\x00H\x00\x00\x00\x1e\x00\x00\x00G\x00\x00\x00r\x00\x00\x00\x9b\x00\x00\x00\x9c\x00\x00\x00\x9b\x00\x00\x00r\x00\x00\x00q\x00\x00\x00q\x00\x00\x00r\x00\x00\x00G\x00\x00\x00r\x00\x00\x00H\x00\x00\x00G\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00u\x00\x00\x00t\x00\x00\x00\x9e\x00\x00\x00u\x00\x00\x00\xec\x00\x00\x00\x15\x01\x00\x00\x16\x01\x00\x00\x15\x01\x00\x00\xec\x00\x00\x00\xeb\x00\x00\x00F\x00\x00\x00E\x00\x00\x00p\x00\x00\x00E\x00\x00\x00o\x00\x00\x00p\x00\x00\x00i\x02\x00\x00\x92\x02\x00\x00\x93\x02\x00\x00i\x02\x00\x00h\x02\x00\x00\x92\x02\x00\x00\x18\x02\x00\x00\xef\x01\x00\x00\xee\x01\x00\x00\xef\x01\x00\x00\x18\x02\x00\x00\x19\x02\x00\x00\x1b\x02\x00\x00\xf2\x01\x00\x00\xf1\x01\x00\x00\xf2\x01\x00\x00\x1b\x02\x00\x00\x1c\x02\x00\x00\xc7\x01\x00\x00\x9d\x01\x00\x00\x9c\x01\x00\x00\xc6\x01\x00\x00\xc7\x01\x00\x00\x9c\x01\x00\x00\xc7\x01\x00\x00\xf2\x01\x00\x00\xc8\x01\x00\x00\xf2\x01\x00\x00\xc7\x01\x00\x00\xf1\x01\x00\x00\x99\x01\x00\x00n\x01\x00\x00\x98\x01\x00\x00n\x01\x00\x00\x99\x01\x00\x00o\x01\x00\x00\x15\x01\x00\x00@\x01\x00\x00\x16\x01\x00\x00?\x01\x00\x00@\x01\x00\x00\x15\x01\x00\x00\xdb\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\xb2\x00\x00\x00\xdc\x00\x00\x00\xb2\x00\x00\x00\xdd\x00\x00\x00\xb3\x00\x00\x00\x06\x01\x00\x00\xdd\x00\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\x06\x01\x00\x00\x07\x01\x00\x00\xd8\x00\x00\x00\xd7\x00\x00\x00\x02\x01\x00\x00\x02\x01\x00\x00\xd7\x00\x00\x00\x01\x01\x00\x00\x83\x00\x00\x00\xae\x00\x00\x00\x84\x00\x00\x00\xae\x00\x00\x00\x83\x00\x00\x00\xad\x00\x00\x00\xae\x00\x00\x00\xd7\x00\x00\x00\xd8\x00\x00\x00\xd7\x00\x00\x00\xae\x00\x00\x00\xad\x00\x00\x00*\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00*\x00\x00\x00+\x00\x00\x00*\x00\x00\x00T\x00\x00\x00U\x00\x00\x00+\x00\x00\x00*\x00\x00\x00U\x00\x00\x00\x7f\x00\x00\x00V\x00\x00\x00U\x00\x00\x00V\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00V\x00\x00\x00,\x00\x00\x00+\x00\x00\x00V\x00\x00\x00+\x00\x00\x00U\x00\x00\x00{\x01\x00\x00R\x01\x00\x00Q\x01\x00\x00R\x01\x00\x00{\x01\x00\x00|\x01\x00\x00\xa4\x01\x00\x00{\x01\x00\x00z\x01\x00\x00{\x01\x00\x00\xa4\x01\x00\x00\xa5\x01\x00\x00{\x01\x00\x00P\x01\x00\x00z\x01\x00\x00P\x01\x00\x00{\x01\x00\x00Q\x01\x00\x00P\x01\x00\x00\'\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00P\x01\x00\x00Q\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00\xfc\x00\x00\x00\'\x01\x00\x00\xfd\x00\x00\x00\xfc\x00\x00\x00R\x01\x00\x00\'\x01\x00\x00Q\x01\x00\x00\'\x01\x00\x00R\x01\x00\x00(\x01\x00\x00\xfd\x00\x00\x00\'\x01\x00\x00\xfe\x00\x00\x00\'\x01\x00\x00(\x01\x00\x00\xfe\x00\x00\x00\xaa\x00\x00\x00\x7f\x00\x00\x00\xa9\x00\x00\x00\x7f\x00\x00\x00\xaa\x00\x00\x00\x80\x00\x00\x00\xd3\x00\x00\x00\xaa\x00\x00\x00\xa9\x00\x00\x00\xd4\x00\x00\x00\xaa\x00\x00\x00\xd3\x00\x00\x00\x81\x00\x00\x00\xaa\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00\xaa\x00\x00\x00\xd4\x00\x00\x00\xd5\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xd5\x00\x00\x00\\\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\x85\x00\x00\x00\\\x00\x00\x00[\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00Z\x00\x00\x00\x85\x00\x00\x00[\x00\x00\x00Z\x00\x00\x00\x06\x00\x00\x001\x00\x00\x00\x07\x00\x00\x001\x00\x00\x00\x06\x00\x00\x000\x00\x00\x001\x00\x00\x000\x00\x00\x00Z\x00\x00\x00[\x00\x00\x001\x00\x00\x00Z\x00\x00\x001\x00\x00\x00\x08\x00\x00\x00\x07\x00\x00\x001\x00\x00\x002\x00\x00\x00\x08\x00\x00\x00\\\x00\x00\x001\x00\x00\x00[\x00\x00\x001\x00\x00\x00\\\x00\x00\x002\x00\x00\x00\xd6\x00\x00\x00\xff\x00\x00\x00\x00\x01\x00\x00\xff\x00\x00\x00\xd6\x00\x00\x00\xd5\x00\x00\x00\xd6\x00\x00\x00\xac\x00\x00\x00\xab\x00\x00\x00\xd6\x00\x00\x00\xab\x00\x00\x00\xd5\x00\x00\x00\xd7\x00\x00\x00\xd6\x00\x00\x00\x01\x01\x00\x00\xd6\x00\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00\xac\x00\x00\x00\xd6\x00\x00\x00\xad\x00\x00\x00\xd6\x00\x00\x00\xd7\x00\x00\x00\xad\x00\x00\x00\x82\x02\x00\x00\xac\x02\x00\x00\xad\x02\x00\x00\x83\x02\x00\x00\x82\x02\x00\x00\xad\x02\x00\x00\xac\x01\x00\x00\x81\x01\x00\x00\xab\x01\x00\x00\x81\x01\x00\x00\xac\x01\x00\x00\x82\x01\x00\x00\xac\x01\x00\x00\x83\x01\x00\x00\x82\x01\x00\x00\xac\x01\x00\x00\xad\x01\x00\x00\x83\x01\x00\x00\x05\x01\x00\x00\x04\x01\x00\x00.\x01\x00\x00\x05\x01\x00\x00.\x01\x00\x00/\x01\x00\x00\x05\x01\x00\x00\xdb\x00\x00\x00\xda\x00\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00\xda\x00\x00\x00\xdb\x00\x00\x00\x05\x01\x00\x00\xdc\x00\x00\x00\x05\x01\x00\x00\x06\x01\x00\x00\xdc\x00\x00\x00X\x01\x00\x00Y\x01\x00\x00.\x01\x00\x00.\x01\x00\x00Y\x01\x00\x00/\x01\x00\x00\x83\x01\x00\x00Y\x01\x00\x00\x82\x01\x00\x00Y\x01\x00\x00X\x01\x00\x00\x82\x01\x00\x00X\x01\x00\x00W\x01\x00\x00\x82\x01\x00\x00W\x01\x00\x00\x81\x01\x00\x00\x82\x01\x00\x00\xb3\x01\x00\x00\xde\x01\x00\x00\xb4\x01\x00\x00\xdd\x01\x00\x00\xde\x01\x00\x00\xb3\x01\x00\x00\x08\x02\x00\x00\xde\x01\x00\x00\x07\x02\x00\x00\xde\x01\x00\x00\xdd\x01\x00\x00\x07\x02\x00\x00\t\x02\x00\x00\xe0\x01\x00\x00\xdf\x01\x00\x00\xe0\x01\x00\x00\t\x02\x00\x00\n\x02\x00\x00\t\x02\x00\x00\xde\x01\x00\x00\x08\x02\x00\x00\xde\x01\x00\x00\t\x02\x00\x00\xdf\x01\x00\x00:\x01\x00\x00c\x01\x00\x00d\x01\x00\x00c\x01\x00\x00:\x01\x00\x009\x01\x00\x00c\x01\x00\x009\x01\x00\x008\x01\x00\x00b\x01\x00\x00c\x01\x00\x008\x01\x00\x00\x0e\x01\x00\x007\x01\x00\x008\x01\x00\x00\r\x01\x00\x007\x01\x00\x00\x0e\x01\x00\x00\xb6\x01\x00\x00\xb5\x01\x00\x00\xe0\x01\x00\x00\xe0\x01\x00\x00\xb5\x01\x00\x00\xdf\x01\x00\x00\xde\x01\x00\x00\xb5\x01\x00\x00\xb4\x01\x00\x00\xb5\x01\x00\x00\xde\x01\x00\x00\xdf\x01\x00\x00\xb5\x01\x00\x00\x8a\x01\x00\x00\xb4\x01\x00\x00\x8a\x01\x00\x00\xb5\x01\x00\x00\x8b\x01\x00\x00\x8c\x01\x00\x00\xb5\x01\x00\x00\xb6\x01\x00\x00\xb5\x01\x00\x00\x8c\x01\x00\x00\x8b\x01\x00\x00:\x00\x00\x00c\x00\x00\x00d\x00\x00\x009\x00\x00\x00c\x00\x00\x00:\x00\x00\x00c\x00\x00\x008\x00\x00\x00b\x00\x00\x00c\x00\x00\x009\x00\x00\x008\x00\x00\x00e\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00e\x00\x00\x00d\x00\x00\x00c\x00\x00\x00\x8e\x00\x00\x00d\x00\x00\x00\x8e\x00\x00\x00c\x00\x00\x00\x8d\x00\x00\x00\x07\x02\x00\x00\xdc\x01\x00\x00\x06\x02\x00\x00\xdd\x01\x00\x00\xdc\x01\x00\x00\x07\x02\x00\x00\xdc\x01\x00\x00\xdd\x01\x00\x00\xb3\x01\x00\x00\xdc\x01\x00\x00\xb3\x01\x00\x00\xb2\x01\x00\x00\xdc\x01\x00\x00\xdb\x01\x00\x00\x05\x02\x00\x00\xdc\x01\x00\x00\x05\x02\x00\x00\x06\x02\x00\x00\x88\x01\x00\x00\x89\x01\x00\x00_\x01\x00\x00^\x01\x00\x00\x88\x01\x00\x00_\x01\x00\x00\x89\x01\x00\x00\x88\x01\x00\x00\xb3\x01\x00\x00\xb3\x01\x00\x00\x88\x01\x00\x00\xb2\x01\x00\x00]\x01\x00\x00\x88\x01\x00\x00^\x01\x00\x00\x88\x01\x00\x00]\x01\x00\x00\x87\x01\x00\x002\x01\x00\x00]\x01\x00\x003\x01\x00\x00]\x01\x00\x002\x01\x00\x00\\\x01\x00\x00\xdb\x01\x00\x00\xb1\x01\x00\x00\xda\x01\x00\x00\xb1\x01\x00\x00\xb0\x01\x00\x00\xda\x01\x00\x00\xb1\x01\x00\x00\xdc\x01\x00\x00\xb2\x01\x00\x00\xdc\x01\x00\x00\xb1\x01\x00\x00\xdb\x01\x00\x00\x88\x01\x00\x00\xb1\x01\x00\x00\xb2\x01\x00\x00\xb1\x01\x00\x00\x88\x01\x00\x00\x87\x01\x00\x00\x1f\x03\x00\x00\xf6\x02\x00\x00\xf5\x02\x00\x00\xf6\x02\x00\x00\x1f\x03\x00\x00 \x03\x00\x00\x1f\x03\x00\x00I\x03\x00\x00J\x03\x00\x00\x1f\x03\x00\x00J\x03\x00\x00 \x03\x00\x00\x1f\x03\x00\x00\xf4\x02\x00\x00\x1e\x03\x00\x00\xf4\x02\x00\x00\x1f\x03\x00\x00\xf5\x02\x00\x00H\x03\x00\x00\x1f\x03\x00\x00\x1e\x03\x00\x00I\x03\x00\x00\x1f\x03\x00\x00H\x03\x00\x00O\x03\x00\x00y\x03\x00\x00z\x03\x00\x00P\x03\x00\x00O\x03\x00\x00z\x03\x00\x00\xa5\x02\x00\x00z\x02\x00\x00\xa4\x02\x00\x00z\x02\x00\x00\xa5\x02\x00\x00{\x02\x00\x00\xa3\x03\x00\x00\xa4\x03\x00\x00z\x03\x00\x00y\x03\x00\x00\xa3\x03\x00\x00z\x03\x00\x00\xf9\x01\x00\x00\xce\x01\x00\x00\xf8\x01\x00\x00\xf9\x01\x00\x00\xcf\x01\x00\x00\xce\x01\x00\x00+\x01\x00\x00\x00\x01\x00\x00*\x01\x00\x00\x00\x01\x00\x00+\x01\x00\x00\x01\x01\x00\x00\xfc\x01\x00\x00\xd2\x01\x00\x00\xfb\x01\x00\x00\xd2\x01\x00\x00\xd1\x01\x00\x00\xfb\x01\x00\x00\xd3\x01\x00\x00\xd2\x01\x00\x00\xfd\x01\x00\x00\xd2\x01\x00\x00\xfc\x01\x00\x00\xfd\x01\x00\x00\xd2\x01\x00\x00\xa7\x01\x00\x00\xd1\x01\x00\x00\xa7\x01\x00\x00\xd2\x01\x00\x00\xa8\x01\x00\x00\xa9\x01\x00\x00~\x01\x00\x00\xa8\x01\x00\x00~\x01\x00\x00\xa9\x01\x00\x00\x7f\x01\x00\x00\xa9\x01\x00\x00\xd2\x01\x00\x00\xd3\x01\x00\x00\xd2\x01\x00\x00\xa9\x01\x00\x00\xa8\x01\x00\x00\x80\x01\x00\x00\xa9\x01\x00\x00\xaa\x01\x00\x00\x7f\x01\x00\x00\xa9\x01\x00\x00\x80\x01\x00\x00\xa9\x01\x00\x00\xd4\x01\x00\x00\xaa\x01\x00\x00\xa9\x01\x00\x00\xd3\x01\x00\x00\xd4\x01\x00\x00T\x01\x00\x00+\x01\x00\x00*\x01\x00\x00+\x01\x00\x00T\x01\x00\x00U\x01\x00\x00T\x01\x00\x00~\x01\x00\x00\x7f\x01\x00\x00U\x01\x00\x00T\x01\x00\x00\x7f\x01\x00\x00X\x04\x00\x00\x81\x04\x00\x00\x82\x04\x00\x00\x81\x04\x00\x00X\x04\x00\x00W\x04\x00\x00X\x04\x00\x00-\x04\x00\x00W\x04\x00\x00X\x04\x00\x00.\x04\x00\x00-\x04\x00\x00\xd4\x05\x00\x00\xd5\x05\x00\x00\xaa\x05\x00\x00\xd5\x05\x00\x00\xab\x05\x00\x00\xaa\x05\x00\x00\xab\x05\x00\x00\xd5\x05\x00\x00\xac\x05\x00\x00\xd5\x05\x00\x00\xd6\x05\x00\x00\xac\x05\x00\x00\xfe\x05\x00\x00\xd5\x05\x00\x00\xd4\x05\x00\x00\xd5\x05\x00\x00\xfe\x05\x00\x00\xff\x05\x00\x00\xfe\x05\x00\x00\xd4\x05\x00\x00\xd3\x05\x00\x00\xfe\x05\x00\x00\xd3\x05\x00\x00\xfd\x05\x00\x00\'\x06\x00\x00\xfe\x05\x00\x00\xfd\x05\x00\x00\xfe\x05\x00\x00\'\x06\x00\x00(\x06\x00\x00{\x06\x00\x00R\x06\x00\x00Q\x06\x00\x00R\x06\x00\x00{\x06\x00\x00|\x06\x00\x00R\x06\x00\x00\'\x06\x00\x00Q\x06\x00\x00\'\x06\x00\x00R\x06\x00\x00(\x06\x00\x00S\x06\x00\x00R\x06\x00\x00|\x06\x00\x00S\x06\x00\x00|\x06\x00\x00}\x06\x00\x00\xd5\x05\x00\x00\x00\x06\x00\x00\xd6\x05\x00\x00\x00\x06\x00\x00\xd5\x05\x00\x00\xff\x05\x00\x00\xa6\x05\x00\x00}\x05\x00\x00|\x05\x00\x00}\x05\x00\x00\xa6\x05\x00\x00\xa7\x05\x00\x00|\x05\x00\x00}\x05\x00\x00R\x05\x00\x00}\x05\x00\x00S\x05\x00\x00R\x05\x00\x00\xa8\x05\x00\x00}\x05\x00\x00\xa7\x05\x00\x00~\x05\x00\x00}\x05\x00\x00\xa8\x05\x00\x00S\x05\x00\x00}\x05\x00\x00T\x05\x00\x00}\x05\x00\x00~\x05\x00\x00T\x05\x00\x00,\x05\x00\x00\x01\x05\x00\x00+\x05\x00\x00\x01\x05\x00\x00,\x05\x00\x00\x02\x05\x00\x00\xd8\x04\x00\x00\x01\x05\x00\x00\x02\x05\x00\x00\xd7\x04\x00\x00\x01\x05\x00\x00\xd8\x04\x00\x00\xa9\x05\x00\x00\x7f\x05\x00\x00\xa8\x05\x00\x00\x7f\x05\x00\x00~\x05\x00\x00\xa8\x05\x00\x00\x7f\x05\x00\x00U\x05\x00\x00T\x05\x00\x00~\x05\x00\x00\x7f\x05\x00\x00T\x05\x00\x00\xd5\x04\x00\x00\x00\x05\x00\x00\xd6\x04\x00\x00\x00\x05\x00\x00\xd5\x04\x00\x00\xff\x04\x00\x00)\x05\x00\x00\x00\x05\x00\x00\xff\x04\x00\x00*\x05\x00\x00\x00\x05\x00\x00)\x05\x00\x00\x00\x05\x00\x00\xd7\x04\x00\x00\xd6\x04\x00\x00\x00\x05\x00\x00\x01\x05\x00\x00\xd7\x04\x00\x00\x00\x05\x00\x00*\x05\x00\x00+\x05\x00\x00\x01\x05\x00\x00\x00\x05\x00\x00+\x05\x00\x00f\x03\x00\x00;\x03\x00\x00e\x03\x00\x00;\x03\x00\x00f\x03\x00\x00<\x03\x00\x00\x8f\x03\x00\x00f\x03\x00\x00e\x03\x00\x00f\x03\x00\x00\x8f\x03\x00\x00\x90\x03\x00\x00=\x03\x00\x00f\x03\x00\x00g\x03\x00\x00f\x03\x00\x00=\x03\x00\x00<\x03\x00\x00f\x03\x00\x00\x90\x03\x00\x00\x91\x03\x00\x00g\x03\x00\x00f\x03\x00\x00\x91\x03\x00\x00z\x06\x00\x00O\x06\x00\x00y\x06\x00\x00O\x06\x00\x00z\x06\x00\x00P\x06\x00\x00&\x06\x00\x00O\x06\x00\x00P\x06\x00\x00%\x06\x00\x00O\x06\x00\x00&\x06\x00\x00$\x06\x00\x00O\x06\x00\x00%\x06\x00\x00O\x06\x00\x00$\x06\x00\x00N\x06\x00\x00$\x06\x00\x00%\x06\x00\x00\xfb\x05\x00\x00\xfa\x05\x00\x00$\x06\x00\x00\xfb\x05\x00\x00#\x06\x00\x00$\x06\x00\x00\xf9\x05\x00\x00$\x06\x00\x00\xfa\x05\x00\x00\xf9\x05\x00\x00\x15\x06\x00\x00\xec\x05\x00\x00\xeb\x05\x00\x00\xec\x05\x00\x00\x15\x06\x00\x00\x16\x06\x00\x00\xec\x05\x00\x00\x16\x06\x00\x00\x17\x06\x00\x00\xed\x05\x00\x00\xec\x05\x00\x00\x17\x06\x00\x00\xf5\x04\x00\x00 \x05\x00\x00\xf6\x04\x00\x00 \x05\x00\x00\xf5\x04\x00\x00\x1f\x05\x00\x00J\x05\x00\x00 \x05\x00\x00I\x05\x00\x00I\x05\x00\x00 \x05\x00\x00\x1f\x05\x00\x00\xf7\x04\x00\x00 \x05\x00\x00!\x05\x00\x00 \x05\x00\x00\xf7\x04\x00\x00\xf6\x04\x00\x00 \x05\x00\x00K\x05\x00\x00!\x05\x00\x00 \x05\x00\x00J\x05\x00\x00K\x05\x00\x00U\x03\x00\x00,\x03\x00\x00+\x03\x00\x00,\x03\x00\x00U\x03\x00\x00V\x03\x00\x00U\x03\x00\x00\x80\x03\x00\x00V\x03\x00\x00U\x03\x00\x00\x7f\x03\x00\x00\x80\x03\x00\x00U\x03\x00\x00*\x03\x00\x00T\x03\x00\x00*\x03\x00\x00U\x03\x00\x00+\x03\x00\x00~\x03\x00\x00U\x03\x00\x00T\x03\x00\x00U\x03\x00\x00~\x03\x00\x00\x7f\x03\x00\x00\xd7\x03\x00\x00\xac\x03\x00\x00\xd6\x03\x00\x00\xad\x03\x00\x00\xac\x03\x00\x00\xd7\x03\x00\x00\x81\x03\x00\x00\xac\x03\x00\x00\x82\x03\x00\x00\xab\x03\x00\x00\xac\x03\x00\x00\x81\x03\x00\x00\xff\x03\x00\x00\xfe\x03\x00\x00(\x04\x00\x00\xff\x03\x00\x00(\x04\x00\x00)\x04\x00\x00|\x03\x00\x00}\x03\x00\x00R\x03\x00\x00R\x03\x00\x00}\x03\x00\x00S\x03\x00\x00}\x03\x00\x00T\x03\x00\x00S\x03\x00\x00}\x03\x00\x00~\x03\x00\x00T\x03\x00\x00\xa6\x03\x00\x00}\x03\x00\x00|\x03\x00\x00}\x03\x00\x00\xa6\x03\x00\x00\xa7\x03\x00\x00\xa6\x03\x00\x00{\x03\x00\x00\xa5\x03\x00\x00\xa6\x03\x00\x00|\x03\x00\x00{\x03\x00\x00\xcf\x03\x00\x00\xa6\x03\x00\x00\xa5\x03\x00\x00\xa6\x03\x00\x00\xcf\x03\x00\x00\xd0\x03\x00\x00\xfa\x03\x00\x00#\x04\x00\x00$\x04\x00\x00#\x04\x00\x00\xfa\x03\x00\x00\xf9\x03\x00\x00\xfa\x03\x00\x00\xcf\x03\x00\x00\xf9\x03\x00\x00\xcf\x03\x00\x00\xfa\x03\x00\x00\xd0\x03\x00\x00\xfb\x03\x00\x00&\x04\x00\x00\xfc\x03\x00\x00&\x04\x00\x00\xfb\x03\x00\x00%\x04\x00\x00\xfb\x03\x00\x00\xfa\x03\x00\x00$\x04\x00\x00\xfb\x03\x00\x00$\x04\x00\x00%\x04\x00\x00O\x04\x00\x00P\x04\x00\x00&\x04\x00\x00O\x04\x00\x00&\x04\x00\x00%\x04\x00\x00O\x04\x00\x00y\x04\x00\x00z\x04\x00\x00P\x04\x00\x00O\x04\x00\x00z\x04\x00\x00O\x04\x00\x00$\x04\x00\x00N\x04\x00\x00$\x04\x00\x00O\x04\x00\x00%\x04\x00\x00O\x04\x00\x00x\x04\x00\x00y\x04\x00\x00x\x04\x00\x00O\x04\x00\x00N\x04\x00\x00O\x05\x00\x00&\x05\x00\x00%\x05\x00\x00&\x05\x00\x00O\x05\x00\x00P\x05\x00\x00O\x05\x00\x00z\x05\x00\x00P\x05\x00\x00O\x05\x00\x00y\x05\x00\x00z\x05\x00\x00L\x04\x00\x00w\x04\x00\x00M\x04\x00\x00w\x04\x00\x00L\x04\x00\x00v\x04\x00\x00M\x04\x00\x00w\x04\x00\x00N\x04\x00\x00w\x04\x00\x00x\x04\x00\x00N\x04\x00\x00\xf6\x04\x00\x00\xcd\x04\x00\x00\xcc\x04\x00\x00\xf7\x04\x00\x00\xcd\x04\x00\x00\xf6\x04\x00\x00\xcd\x04\x00\x00\xa3\x04\x00\x00\xa2\x04\x00\x00\xcd\x04\x00\x00\xa2\x04\x00\x00\xcc\x04\x00\x00\xcd\x04\x00\x00\xf8\x04\x00\x00\xce\x04\x00\x00\xcd\x04\x00\x00\xf7\x04\x00\x00\xf8\x04\x00\x00\xa3\x04\x00\x00\xcd\x04\x00\x00\xa4\x04\x00\x00\xa4\x04\x00\x00\xcd\x04\x00\x00\xce\x04\x00\x00G\x06\x00\x00\x1e\x06\x00\x00\x1d\x06\x00\x00\x1e\x06\x00\x00G\x06\x00\x00H\x06\x00\x00\x1d\x06\x00\x00\x1e\x06\x00\x00\xf3\x05\x00\x00\x1e\x06\x00\x00\xf4\x05\x00\x00\xf3\x05\x00\x00I\x06\x00\x00\x1e\x06\x00\x00H\x06\x00\x00\x1e\x06\x00\x00I\x06\x00\x00\x1f\x06\x00\x00I\x06\x00\x00J\x06\x00\x00 \x06\x00\x00\x1f\x06\x00\x00I\x06\x00\x00 \x06\x00\x00\x1e\x06\x00\x00\xf5\x05\x00\x00\xf4\x05\x00\x00\xf5\x05\x00\x00\x1e\x06\x00\x00\x1f\x06\x00\x00s\x06\x00\x00H\x06\x00\x00r\x06\x00\x00s\x06\x00\x00I\x06\x00\x00H\x06\x00\x00I\x06\x00\x00t\x06\x00\x00J\x06\x00\x00s\x06\x00\x00t\x06\x00\x00I\x06\x00\x00\xfa\x04\x00\x00\xd1\x04\x00\x00\xd0\x04\x00\x00\xfb\x04\x00\x00\xd1\x04\x00\x00\xfa\x04\x00\x00\xd1\x04\x00\x00\xa8\x04\x00\x00\xa7\x04\x00\x00\xa8\x04\x00\x00\xd1\x04\x00\x00\xd2\x04\x00\x00\xd1\x04\x00\x00\xfb\x04\x00\x00\xfc\x04\x00\x00\xd2\x04\x00\x00\xd1\x04\x00\x00\xfc\x04\x00\x00\xaa\x04\x00\x00\xd5\x04\x00\x00\xab\x04\x00\x00\xd5\x04\x00\x00\xaa\x04\x00\x00\xd4\x04\x00\x00\x01\x04\x00\x00*\x04\x00\x00+\x04\x00\x00*\x04\x00\x00\x01\x04\x00\x00\x00\x04\x00\x00*\x04\x00\x00U\x04\x00\x00+\x04\x00\x00*\x04\x00\x00T\x04\x00\x00U\x04\x00\x00*\x04\x00\x00\xff\x03\x00\x00)\x04\x00\x00\xff\x03\x00\x00*\x04\x00\x00\x00\x04\x00\x00*\x04\x00\x00S\x04\x00\x00T\x04\x00\x00S\x04\x00\x00*\x04\x00\x00)\x04\x00\x00T\x04\x00\x00S\x04\x00\x00~\x04\x00\x00S\x04\x00\x00}\x04\x00\x00~\x04\x00\x00S\x04\x00\x00(\x04\x00\x00R\x04\x00\x00(\x04\x00\x00S\x04\x00\x00)\x04\x00\x00|\x04\x00\x00S\x04\x00\x00R\x04\x00\x00S\x04\x00\x00|\x04\x00\x00}\x04\x00\x00Q\x05\x00\x00\'\x05\x00\x00P\x05\x00\x00\'\x05\x00\x00&\x05\x00\x00P\x05\x00\x00\xf2\x04\x00\x00\x1b\x05\x00\x00\x1c\x05\x00\x00\x1b\x05\x00\x00\xf2\x04\x00\x00\xf1\x04\x00\x00\x9e\x03\x00\x00u\x03\x00\x00t\x03\x00\x00\x9f\x03\x00\x00u\x03\x00\x00\x9e\x03\x00\x00u\x03\x00\x00J\x03\x00\x00t\x03\x00\x00u\x03\x00\x00K\x03\x00\x00J\x03\x00\x00!\x03\x00\x00\xf6\x02\x00\x00 \x03\x00\x00\xf6\x02\x00\x00!\x03\x00\x00\xf7\x02\x00\x00J\x03\x00\x00!\x03\x00\x00 \x03\x00\x00K\x03\x00\x00!\x03\x00\x00J\x03\x00\x00\xf8\x02\x00\x00!\x03\x00\x00"\x03\x00\x00!\x03\x00\x00\xf8\x02\x00\x00\xf7\x02\x00\x00\x9e\x04\x00\x00\x9f\x04\x00\x00t\x04\x00\x00\x9f\x04\x00\x00u\x04\x00\x00t\x04\x00\x00\xb0\x02\x00\x00\xd9\x02\x00\x00\xda\x02\x00\x00\xd9\x02\x00\x00\xb0\x02\x00\x00\xaf\x02\x00\x00\xb0\x02\x00\x00\x86\x02\x00\x00\x85\x02\x00\x00\xb0\x02\x00\x00\x85\x02\x00\x00\xaf\x02\x00\x00\xb0\x02\x00\x00\xda\x02\x00\x00\xdb\x02\x00\x00\xb1\x02\x00\x00\xb0\x02\x00\x00\xdb\x02\x00\x00\xac\x02\x00\x00\xab\x02\x00\x00\xd6\x02\x00\x00\xd6\x02\x00\x00\xab\x02\x00\x00\xd5\x02\x00\x00\x82\x02\x00\x00\xab\x02\x00\x00\xac\x02\x00\x00\xab\x02\x00\x00\x82\x02\x00\x00\x81\x02\x00\x00\xff\x02\x00\x00\xd4\x02\x00\x00\xfe\x02\x00\x00\xd4\x02\x00\x00\xff\x02\x00\x00\xd5\x02\x00\x00\xab\x02\x00\x00\xd4\x02\x00\x00\xd5\x02\x00\x00\xd4\x02\x00\x00\xab\x02\x00\x00\xaa\x02\x00\x00\xd1\x02\x00\x00\xd0\x02\x00\x00\xfa\x02\x00\x00\xd1\x02\x00\x00\xfa\x02\x00\x00\xfb\x02\x00\x00\'\x03\x00\x00\xfc\x02\x00\x00&\x03\x00\x00\xfc\x02\x00\x00\'\x03\x00\x00\xfd\x02\x00\x00\xfc\x02\x00\x00\xd1\x02\x00\x00\xfb\x02\x00\x00\xd1\x02\x00\x00\xfc\x02\x00\x00\xd2\x02\x00\x00\x00\x03\x00\x00\xd7\x02\x00\x00\xd6\x02\x00\x00\xd7\x02\x00\x00\x00\x03\x00\x00\x01\x03\x00\x00\x00\x03\x00\x00+\x03\x00\x00\x01\x03\x00\x00\x00\x03\x00\x00*\x03\x00\x00+\x03\x00\x00\x00\x03\x00\x00\xd6\x02\x00\x00\xd5\x02\x00\x00\xff\x02\x00\x00\x00\x03\x00\x00\xd5\x02\x00\x00\x00\x03\x00\x00)\x03\x00\x00*\x03\x00\x00)\x03\x00\x00\x00\x03\x00\x00\xff\x02\x00\x00{\x03\x00\x00Q\x03\x00\x00z\x03\x00\x00Q\x03\x00\x00P\x03\x00\x00z\x03\x00\x00Q\x03\x00\x00\'\x03\x00\x00&\x03\x00\x00Q\x03\x00\x00&\x03\x00\x00P\x03\x00\x00Q\x03\x00\x00|\x03\x00\x00R\x03\x00\x00|\x03\x00\x00Q\x03\x00\x00{\x03\x00\x00(\x03\x00\x00\xff\x02\x00\x00\xfe\x02\x00\x00(\x03\x00\x00)\x03\x00\x00\xff\x02\x00\x00)\x03\x00\x00(\x03\x00\x00S\x03\x00\x00(\x03\x00\x00R\x03\x00\x00S\x03\x00\x00\'\x03\x00\x00(\x03\x00\x00\xfd\x02\x00\x00(\x03\x00\x00\xfe\x02\x00\x00\xfd\x02\x00\x00Q\x03\x00\x00(\x03\x00\x00\'\x03\x00\x00(\x03\x00\x00Q\x03\x00\x00R\x03\x00\x00&\x02\x00\x00\'\x02\x00\x00\xfc\x01\x00\x00\xfc\x01\x00\x00\'\x02\x00\x00\xfd\x01\x00\x00\'\x02\x00\x00\xfe\x01\x00\x00\xfd\x01\x00\x00\'\x02\x00\x00(\x02\x00\x00\xfe\x01\x00\x00)\x02\x00\x00\xff\x01\x00\x00\xfe\x01\x00\x00(\x02\x00\x00)\x02\x00\x00\xfe\x01\x00\x00+\x02\x00\x00,\x02\x00\x00\x02\x02\x00\x00\x01\x02\x00\x00+\x02\x00\x00\x02\x02\x00\x00S\x02\x00\x00)\x02\x00\x00(\x02\x00\x00S\x02\x00\x00(\x02\x00\x00R\x02\x00\x00S\x02\x00\x00T\x02\x00\x00*\x02\x00\x00)\x02\x00\x00S\x02\x00\x00*\x02\x00\x00\xd7\x01\x00\x00\xd8\x01\x00\x00\xae\x01\x00\x00\xad\x01\x00\x00\xd7\x01\x00\x00\xae\x01\x00\x00\xd8\x01\x00\x00\xd7\x01\x00\x00\x02\x02\x00\x00\xd7\x01\x00\x00\x01\x02\x00\x00\x02\x02\x00\x00X\x03\x00\x00-\x03\x00\x00W\x03\x00\x00-\x03\x00\x00X\x03\x00\x00.\x03\x00\x00-\x03\x00\x00V\x03\x00\x00W\x03\x00\x00-\x03\x00\x00,\x03\x00\x00V\x03\x00\x00\xae\x02\x00\x00\xd8\x02\x00\x00\xaf\x02\x00\x00\xd8\x02\x00\x00\xd9\x02\x00\x00\xaf\x02\x00\x00\x02\x03\x00\x00\xd8\x02\x00\x00\x01\x03\x00\x00\xd8\x02\x00\x00\xd7\x02\x00\x00\x01\x03\x00\x00\xd7\x02\x00\x00\xd8\x02\x00\x00\xad\x02\x00\x00\xd8\x02\x00\x00\xae\x02\x00\x00\xad\x02\x00\x00H\x02\x00\x00\x1d\x02\x00\x00G\x02\x00\x00\x1d\x02\x00\x00H\x02\x00\x00\x1e\x02\x00\x00y\x01\x00\x00\xa2\x01\x00\x00\xa3\x01\x00\x00\xa2\x01\x00\x00y\x01\x00\x00x\x01\x00\x00\xa2\x01\x00\x00\xcd\x01\x00\x00\xa3\x01\x00\x00\xcd\x01\x00\x00\xa2\x01\x00\x00\xcc\x01\x00\x00w\x01\x00\x00\xa2\x01\x00\x00x\x01\x00\x00\xa2\x01\x00\x00w\x01\x00\x00\xa1\x01\x00\x00\xcb\x01\x00\x00\xa2\x01\x00\x00\xa1\x01\x00\x00\xa2\x01\x00\x00\xcb\x01\x00\x00\xcc\x01\x00\x00\xf6\x01\x00\x00\xcb\x01\x00\x00\xf5\x01\x00\x00\xcb\x01\x00\x00\xf6\x01\x00\x00\xcc\x01\x00\x00\xf7\x01\x00\x00\xf6\x01\x00\x00!\x02\x00\x00\xf6\x01\x00\x00 \x02\x00\x00!\x02\x00\x00\xcd\x01\x00\x00\xf6\x01\x00\x00\xf7\x01\x00\x00\xf6\x01\x00\x00\xcd\x01\x00\x00\xcc\x01\x00\x00\xf3\x01\x00\x00\xf2\x01\x00\x00\x1c\x02\x00\x00\x1d\x02\x00\x00\xf3\x01\x00\x00\x1c\x02\x00\x00\xf3\x01\x00\x00\x1d\x02\x00\x00\x1e\x02\x00\x00\xf4\x01\x00\x00\xf3\x01\x00\x00\x1e\x02\x00\x00o\x02\x00\x00\x99\x02\x00\x00p\x02\x00\x00p\x02\x00\x00\x99\x02\x00\x00\x9a\x02\x00\x00\x98\x02\x00\x00\x99\x02\x00\x00n\x02\x00\x00\x99\x02\x00\x00o\x02\x00\x00n\x02\x00\x00\xee\x02\x00\x00\xed\x02\x00\x00\x18\x03\x00\x00\xed\x02\x00\x00\x17\x03\x00\x00\x18\x03\x00\x00\xed\x02\x00\x00\xec\x02\x00\x00\x16\x03\x00\x00\x17\x03\x00\x00\xed\x02\x00\x00\x16\x03\x00\x00\xc0\x02\x00\x00\xe9\x02\x00\x00\xea\x02\x00\x00\xe9\x02\x00\x00\xc0\x02\x00\x00\xbf\x02\x00\x00\xc1\x02\x00\x00\xc0\x02\x00\x00\xeb\x02\x00\x00\xc0\x02\x00\x00\xea\x02\x00\x00\xeb\x02\x00\x00\x94\x02\x00\x00i\x02\x00\x00\x93\x02\x00\x00i\x02\x00\x00\x94\x02\x00\x00j\x02\x00\x00j\x02\x00\x00\x94\x02\x00\x00k\x02\x00\x00\x94\x02\x00\x00\x95\x02\x00\x00k\x02\x00\x00\xbc\x02\x00\x00\xe7\x02\x00\x00\xbd\x02\x00\x00\xe6\x02\x00\x00\xe7\x02\x00\x00\xbc\x02\x00\x00\x12\x03\x00\x00=\x03\x00\x00\x13\x03\x00\x00=\x03\x00\x00\x12\x03\x00\x00<\x03\x00\x00\xe9\x02\x00\x00\x12\x03\x00\x00\x13\x03\x00\x00\x12\x03\x00\x00\xe9\x02\x00\x00\xe8\x02\x00\x00\x12\x03\x00\x00;\x03\x00\x00<\x03\x00\x00;\x03\x00\x00\x12\x03\x00\x00\x11\x03\x00\x00\x12\x03\x00\x00\xe7\x02\x00\x00\x11\x03\x00\x00\xe7\x02\x00\x00\x12\x03\x00\x00\xe8\x02\x00\x00\xef\x02\x00\x00\xc6\x02\x00\x00\xc5\x02\x00\x00\xc6\x02\x00\x00\xef\x02\x00\x00\xf0\x02\x00\x00\xc6\x02\x00\x00\xc7\x02\x00\x00\x9d\x02\x00\x00\x9c\x02\x00\x00\xc6\x02\x00\x00\x9d\x02\x00\x00\xc4\x02\x00\x00\xef\x02\x00\x00\xc5\x02\x00\x00\xef\x02\x00\x00\xc4\x02\x00\x00\xee\x02\x00\x00\x9b\x02\x00\x00p\x02\x00\x00\x9a\x02\x00\x00\x9b\x02\x00\x00q\x02\x00\x00p\x02\x00\x00\x9b\x02\x00\x00\xc4\x02\x00\x00\xc5\x02\x00\x00\xc4\x02\x00\x00\x9b\x02\x00\x00\x9a\x02\x00\x00\xc6\x02\x00\x00\x9b\x02\x00\x00\xc5\x02\x00\x00\x9b\x02\x00\x00\xc6\x02\x00\x00\x9c\x02\x00\x00\xc1\x03\x00\x00\x96\x03\x00\x00\xc0\x03\x00\x00\x96\x03\x00\x00\xc1\x03\x00\x00\x97\x03\x00\x00\x17\x03\x00\x00B\x03\x00\x00\x18\x03\x00\x00A\x03\x00\x00B\x03\x00\x00\x17\x03\x00\x00l\x03\x00\x00B\x03\x00\x00k\x03\x00\x00B\x03\x00\x00A\x03\x00\x00k\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\x97\x03\x00\x00\xc2\x03\x00\x00\x98\x03\x00\x00\x97\x03\x00\x00n\x03\x00\x00\x99\x03\x00\x00o\x03\x00\x00\x98\x03\x00\x00\x99\x03\x00\x00n\x03\x00\x00\xc2\x03\x00\x00\x99\x03\x00\x00\x98\x03\x00\x00\x99\x03\x00\x00\xc2\x03\x00\x00\xc3\x03\x00\x00\xf6\x00\x00\x00\xcc\x00\x00\x00\xf5\x00\x00\x00\xcc\x00\x00\x00\xcb\x00\x00\x00\xf5\x00\x00\x00\xcc\x00\x00\x00\xcd\x00\x00\x00\xa3\x00\x00\x00\xcc\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xf7\x00\x00\x00\xcc\x00\x00\x00\xf6\x00\x00\x00\xf7\x00\x00\x00$\x01\x00\x00\xf9\x00\x00\x00#\x01\x00\x00\xf9\x00\x00\x00$\x01\x00\x00\xfa\x00\x00\x00\xf9\x00\x00\x00"\x01\x00\x00#\x01\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00"\x01\x00\x00\x1f\x01\x00\x00J\x01\x00\x00 \x01\x00\x00I\x01\x00\x00J\x01\x00\x00\x1f\x01\x00\x00#\x08\x00\x00\xf8\x07\x00\x00"\x08\x00\x00\xf8\x07\x00\x00#\x08\x00\x00\xf9\x07\x00\x00\xce\x07\x00\x00\xf8\x07\x00\x00\xcf\x07\x00\x00\xf8\x07\x00\x00\xf9\x07\x00\x00\xcf\x07\x00\x00"\x08\x00\x00\xf8\x07\x00\x00!\x08\x00\x00\xf8\x07\x00\x00\xf7\x07\x00\x00!\x08\x00\x00\xf7\x07\x00\x00\xf8\x07\x00\x00\xcd\x07\x00\x00\xf8\x07\x00\x00\xce\x07\x00\x00\xcd\x07\x00\x00*\x07\x00\x00\xff\x06\x00\x00)\x07\x00\x00\xff\x06\x00\x00*\x07\x00\x00\x00\x07\x00\x00T\x07\x00\x00*\x07\x00\x00S\x07\x00\x00*\x07\x00\x00)\x07\x00\x00S\x07\x00\x00\xfd\x06\x00\x00\xd2\x06\x00\x00\xfc\x06\x00\x00\xd2\x06\x00\x00\xfd\x06\x00\x00\xd3\x06\x00\x00\xfd\x06\x00\x00\xd4\x06\x00\x00\xd3\x06\x00\x00\xd4\x06\x00\x00\xfd\x06\x00\x00\xfe\x06\x00\x00\'\x08\x00\x00\xfc\x07\x00\x00&\x08\x00\x00\xfc\x07\x00\x00\'\x08\x00\x00\xfd\x07\x00\x00\xd3\x07\x00\x00\xfc\x07\x00\x00\xfd\x07\x00\x00\xfc\x07\x00\x00\xd3\x07\x00\x00\xd2\x07\x00\x00\xfc\x07\x00\x00%\x08\x00\x00&\x08\x00\x00%\x08\x00\x00\xfc\x07\x00\x00\xfb\x07\x00\x00\xfc\x07\x00\x00\xd2\x07\x00\x00\xd1\x07\x00\x00\xfb\x07\x00\x00\xfc\x07\x00\x00\xd1\x07\x00\x00\xd0\x07\x00\x00\xa5\x07\x00\x00\xcf\x07\x00\x00\xa5\x07\x00\x00\xd0\x07\x00\x00\xa6\x07\x00\x00\xfa\x07\x00\x00\xd0\x07\x00\x00\xf9\x07\x00\x00\xf9\x07\x00\x00\xd0\x07\x00\x00\xcf\x07\x00\x00\xd0\x07\x00\x00\xfa\x07\x00\x00\xfb\x07\x00\x00\xd0\x07\x00\x00\xfb\x07\x00\x00\xd1\x07\x00\x00\xdc\x02\x00\x00\xdb\x02\x00\x00\x05\x03\x00\x00\x06\x03\x00\x00\xdc\x02\x00\x00\x05\x03\x00\x00[\x03\x00\x00\x85\x03\x00\x00\x86\x03\x00\x00[\x03\x00\x00\x86\x03\x00\x00\\\x03\x00\x00Z\x03\x00\x00[\x03\x00\x000\x03\x00\x000\x03\x00\x00[\x03\x00\x001\x03\x00\x00\x87\x02\x00\x00\x88\x02\x00\x00^\x02\x00\x00]\x02\x00\x00\x87\x02\x00\x00^\x02\x00\x00\xb0\x02\x00\x00\x87\x02\x00\x00\x86\x02\x00\x00\x87\x02\x00\x00\xb0\x02\x00\x00\xb1\x02\x00\x00\\\x02\x00\x00\x87\x02\x00\x00]\x02\x00\x00\x87\x02\x00\x00\\\x02\x00\x00\x86\x02\x00\x00\x88\x02\x00\x00\x89\x02\x00\x00^\x02\x00\x00\x89\x02\x00\x00_\x02\x00\x00^\x02\x00\x00\x88\x03\x00\x00\xb1\x03\x00\x00\xb2\x03\x00\x00\x88\x03\x00\x00\x87\x03\x00\x00\xb1\x03\x00\x00\xb3\x03\x00\x00\x88\x03\x00\x00\xb2\x03\x00\x00\x89\x03\x00\x00\x88\x03\x00\x00\xb3\x03\x00\x00C\x02\x00\x00\x18\x02\x00\x00B\x02\x00\x00\x18\x02\x00\x00C\x02\x00\x00\x19\x02\x00\x00l\x02\x00\x00C\x02\x00\x00B\x02\x00\x00m\x02\x00\x00C\x02\x00\x00l\x02\x00\x00;\x03\x00\x00\x10\x03\x00\x00:\x03\x00\x00\x10\x03\x00\x00;\x03\x00\x00\x11\x03\x00\x00\x10\x03\x00\x00\xe7\x02\x00\x00\xe6\x02\x00\x00\xe7\x02\x00\x00\x10\x03\x00\x00\x11\x03\x00\x00\xe5\x02\x00\x00\xe6\x02\x00\x00\xbc\x02\x00\x00\xbb\x02\x00\x00\xe5\x02\x00\x00\xbc\x02\x00\x00\x0b\x02\x00\x00\xe1\x01\x00\x00\xe0\x01\x00\x00\x0b\x02\x00\x00\xe0\x01\x00\x00\n\x02\x00\x00\xe1\x01\x00\x00\x0b\x02\x00\x00\xe2\x01\x00\x00\x0b\x02\x00\x00\x0c\x02\x00\x00\xe2\x01\x00\x00\xbc\x01\x00\x00\x92\x01\x00\x00\x91\x01\x00\x00\xbb\x01\x00\x00\xbc\x01\x00\x00\x91\x01\x00\x00\xbc\x01\x00\x00\x93\x01\x00\x00\x92\x01\x00\x00\xbc\x01\x00\x00\xbd\x01\x00\x00\x93\x01\x00\x00e\x02\x00\x00;\x02\x00\x00:\x02\x00\x00e\x02\x00\x00:\x02\x00\x00d\x02\x00\x00\x90\x02\x00\x00e\x02\x00\x00\x8f\x02\x00\x00e\x02\x00\x00\x90\x02\x00\x00f\x02\x00\x00<\x02\x00\x00e\x02\x00\x00f\x02\x00\x00;\x02\x00\x00e\x02\x00\x00<\x02\x00\x00\x0c\x02\x00\x007\x02\x00\x00\r\x02\x00\x007\x02\x00\x00\x0c\x02\x00\x006\x02\x00\x00\r\x02\x00\x007\x02\x00\x00\x0e\x02\x00\x007\x02\x00\x008\x02\x00\x00\x0e\x02\x00\x00?\x05\x00\x00\x15\x05\x00\x00\x14\x05\x00\x00>\x05\x00\x00?\x05\x00\x00\x14\x05\x00\x00i\x05\x00\x00?\x05\x00\x00h\x05\x00\x00?\x05\x00\x00>\x05\x00\x00h\x05\x00\x00i\x05\x00\x00\x92\x05\x00\x00\x93\x05\x00\x00\x92\x05\x00\x00i\x05\x00\x00h\x05\x00\x00\x92\x05\x00\x00\xbd\x05\x00\x00\x93\x05\x00\x00\xbd\x05\x00\x00\x92\x05\x00\x00\xbc\x05\x00\x00g\x05\x00\x00>\x05\x00\x00=\x05\x00\x00>\x05\x00\x00g\x05\x00\x00h\x05\x00\x00g\x05\x00\x00\x92\x05\x00\x00h\x05\x00\x00\x92\x05\x00\x00g\x05\x00\x00\x91\x05\x00\x00\x8f\x05\x00\x00\xba\x05\x00\x00\x90\x05\x00\x00\xba\x05\x00\x00\x8f\x05\x00\x00\xb9\x05\x00\x00\xe3\x05\x00\x00\xba\x05\x00\x00\xb9\x05\x00\x00\xe4\x05\x00\x00\xba\x05\x00\x00\xe3\x05\x00\x00\x8e\x05\x00\x00\xb8\x05\x00\x00\xb9\x05\x00\x00\x8f\x05\x00\x00\x8e\x05\x00\x00\xb9\x05\x00\x00e\x05\x00\x00\x8e\x05\x00\x00\x8f\x05\x00\x00\x8e\x05\x00\x00e\x05\x00\x00d\x05\x00\x00\xc2\x03\x00\x00\xed\x03\x00\x00\xc3\x03\x00\x00\xed\x03\x00\x00\xc2\x03\x00\x00\xec\x03\x00\x00\xc4\x03\x00\x00\xed\x03\x00\x00\xee\x03\x00\x00\xed\x03\x00\x00\xc4\x03\x00\x00\xc3\x03\x00\x00\xed\x03\x00\x00\x18\x04\x00\x00\xee\x03\x00\x00\xed\x03\x00\x00\x17\x04\x00\x00\x18\x04\x00\x00\x16\x04\x00\x00\xed\x03\x00\x00\xec\x03\x00\x00\xed\x03\x00\x00\x16\x04\x00\x00\x17\x04\x00\x00\x95\x04\x00\x00l\x04\x00\x00k\x04\x00\x00l\x04\x00\x00\x95\x04\x00\x00\x96\x04\x00\x00l\x04\x00\x00B\x04\x00\x00A\x04\x00\x00k\x04\x00\x00l\x04\x00\x00A\x04\x00\x00m\x04\x00\x00l\x04\x00\x00\x97\x04\x00\x00\x97\x04\x00\x00l\x04\x00\x00\x96\x04\x00\x00l\x04\x00\x00m\x04\x00\x00C\x04\x00\x00B\x04\x00\x00l\x04\x00\x00C\x04\x00\x00\x95\x04\x00\x00\xbf\x04\x00\x00\x96\x04\x00\x00\xbf\x04\x00\x00\xc0\x04\x00\x00\x96\x04\x00\x00\x9a\x03\x00\x00\xc4\x03\x00\x00\xc5\x03\x00\x00\x9b\x03\x00\x00\x9a\x03\x00\x00\xc5\x03\x00\x00p\x03\x00\x00\x9a\x03\x00\x00q\x03\x00\x00\x9a\x03\x00\x00\x9b\x03\x00\x00q\x03\x00\x00\x9a\x03\x00\x00\x99\x03\x00\x00\xc3\x03\x00\x00\xc4\x03\x00\x00\x9a\x03\x00\x00\xc3\x03\x00\x00\x9a\x03\x00\x00p\x03\x00\x00o\x03\x00\x00\x99\x03\x00\x00\x9a\x03\x00\x00o\x03\x00\x00\x1b\x03\x00\x00D\x03\x00\x00E\x03\x00\x00D\x03\x00\x00\x1b\x03\x00\x00\x1a\x03\x00\x00\x1b\x03\x00\x00E\x03\x00\x00F\x03\x00\x00\x1c\x03\x00\x00\x1b\x03\x00\x00F\x03\x00\x00\xc1\x04\x00\x00\x97\x04\x00\x00\x96\x04\x00\x00\xc0\x04\x00\x00\xc1\x04\x00\x00\x96\x04\x00\x00\xeb\x04\x00\x00\xc1\x04\x00\x00\xea\x04\x00\x00\xc1\x04\x00\x00\xc0\x04\x00\x00\xea\x04\x00\x00\xbd\x04\x00\x00\xbe\x04\x00\x00\x93\x04\x00\x00\xbe\x04\x00\x00\x94\x04\x00\x00\x93\x04\x00\x00\xbe\x04\x00\x00\xbd\x04\x00\x00\xe7\x04\x00\x00\xe8\x04\x00\x00\xbe\x04\x00\x00\xe7\x04\x00\x00\xbe\x04\x00\x00\xbf\x04\x00\x00\x95\x04\x00\x00\xbe\x04\x00\x00\x95\x04\x00\x00\x94\x04\x00\x00\x92\x04\x00\x00\x91\x04\x00\x00\xbb\x04\x00\x00\xbc\x04\x00\x00\x92\x04\x00\x00\xbb\x04\x00\x00\xbd\x04\x00\x00\x92\x04\x00\x00\xbc\x04\x00\x00\x92\x04\x00\x00\xbd\x04\x00\x00\x93\x04\x00\x00i\x04\x00\x00\x92\x04\x00\x00\x93\x04\x00\x00\x92\x04\x00\x00i\x04\x00\x00h\x04\x00\x00\x92\x04\x00\x00g\x04\x00\x00\x91\x04\x00\x00g\x04\x00\x00\x92\x04\x00\x00h\x04\x00\x00\xfe\x07\x00\x00\xd4\x07\x00\x00\xfd\x07\x00\x00\xd4\x07\x00\x00\xd3\x07\x00\x00\xfd\x07\x00\x00\xd3\x07\x00\x00\xd4\x07\x00\x00\xa9\x07\x00\x00\xd4\x07\x00\x00\xaa\x07\x00\x00\xa9\x07\x00\x00\x88\x07\x00\x00_\x07\x00\x00^\x07\x00\x00_\x07\x00\x00\x88\x07\x00\x00\x89\x07\x00\x00\xde\x06\x00\x00\xb5\x06\x00\x00\xb4\x06\x00\x00\xb5\x06\x00\x00\xde\x06\x00\x00\xdf\x06\x00\x00\xde\x06\x00\x00\x08\x07\x00\x00\t\x07\x00\x00\xde\x06\x00\x00\t\x07\x00\x00\xdf\x06\x00\x00\xe6\x05\x00\x00\xe7\x05\x00\x00\xbd\x05\x00\x00\xe6\x05\x00\x00\xbd\x05\x00\x00\xbc\x05\x00\x00\x0e\x06\x00\x00\xe3\x05\x00\x00\r\x06\x00\x00\x0e\x06\x00\x00\xe4\x05\x00\x00\xe3\x05\x00\x00\xe4\x05\x00\x00\x0e\x06\x00\x00\xe5\x05\x00\x00\x0e\x06\x00\x00\x0f\x06\x00\x00\xe5\x05\x00\x00\xd8\x07\x00\x00\xd9\x07\x00\x00\xae\x07\x00\x00\xd9\x07\x00\x00\xaf\x07\x00\x00\xae\x07\x00\x00\x11\x05\x00\x00\xe8\x04\x00\x00\xe7\x04\x00\x00\xe8\x04\x00\x00\x11\x05\x00\x00\x12\x05\x00\x00\xe6\x04\x00\x00\x11\x05\x00\x00\xe7\x04\x00\x00\x10\x05\x00\x00\x11\x05\x00\x00\xe6\x04\x00\x00\x82\x05\x00\x00\x83\x05\x00\x00X\x05\x00\x00\x83\x05\x00\x00Y\x05\x00\x00X\x05\x00\x00\x07\x07\x00\x000\x07\x00\x001\x07\x00\x000\x07\x00\x00\x07\x07\x00\x00\x06\x07\x00\x00\xde\x06\x00\x00\x07\x07\x00\x00\x08\x07\x00\x00\x07\x07\x00\x00\xde\x06\x00\x00\xdd\x06\x00\x00\x08\x07\x00\x00\x07\x07\x00\x002\x07\x00\x00\x07\x07\x00\x001\x07\x00\x002\x07\x00\x00\x07\x07\x00\x00\xdc\x06\x00\x00\x06\x07\x00\x00\xdc\x06\x00\x00\x07\x07\x00\x00\xdd\x06\x00\x00\x05\x07\x00\x000\x07\x00\x00\x06\x07\x00\x000\x07\x00\x00\x05\x07\x00\x00/\x07\x00\x00\xb0\x06\x00\x00\x85\x06\x00\x00\xaf\x06\x00\x00\x85\x06\x00\x00\xb0\x06\x00\x00\x86\x06\x00\x00\xb0\x06\x00\x00\x87\x06\x00\x00\x86\x06\x00\x00\xb0\x06\x00\x00\xb1\x06\x00\x00\x87\x06\x00\x00X\x07\x00\x00W\x07\x00\x00\x82\x07\x00\x00\x82\x07\x00\x00W\x07\x00\x00\x81\x07\x00\x00\xd8\x06\x00\x00\xad\x06\x00\x00\xd7\x06\x00\x00\xad\x06\x00\x00\xd8\x06\x00\x00\xae\x06\x00\x00\xdf\x05\x00\x00\n\x06\x00\x00\xe0\x05\x00\x00\n\x06\x00\x00\xdf\x05\x00\x00\t\x06\x00\x00\n\x06\x00\x00\x0b\x06\x00\x00\xe1\x05\x00\x00\xe0\x05\x00\x00\n\x06\x00\x00\xe1\x05\x00\x00\xb6\x05\x00\x00\xdf\x05\x00\x00\xe0\x05\x00\x00\xdf\x05\x00\x00\xb6\x05\x00\x00\xb5\x05\x00\x00\xb7\x05\x00\x00\xb6\x05\x00\x00\xe1\x05\x00\x00\xb6\x05\x00\x00\xe0\x05\x00\x00\xe1\x05\x00\x003\x06\x00\x00\n\x06\x00\x00\t\x06\x00\x00\n\x06\x00\x003\x06\x00\x004\x06\x00\x00\x85\x06\x00\x00\\\x06\x00\x00[\x06\x00\x00\\\x06\x00\x00\x85\x06\x00\x00\x86\x06\x00\x00]\x06\x00\x00\\\x06\x00\x00\x87\x06\x00\x00\x87\x06\x00\x00\\\x06\x00\x00\x86\x06\x00\x00\xb1\x06\x00\x00\x88\x06\x00\x00\x87\x06\x00\x00\xb2\x06\x00\x00\x88\x06\x00\x00\xb1\x06\x00\x00\x0b\x06\x00\x005\x06\x00\x00\x0c\x06\x00\x00\x0c\x06\x00\x005\x06\x00\x006\x06\x00\x00\n\x06\x00\x005\x06\x00\x00\x0b\x06\x00\x005\x06\x00\x00\n\x06\x00\x004\x06\x00\x00\xf0\x04\x00\x00\xc5\x04\x00\x00\xef\x04\x00\x00\xc5\x04\x00\x00\xf0\x04\x00\x00\xc6\x04\x00\x00\x19\x05\x00\x00\xf0\x04\x00\x00\xef\x04\x00\x00\x1a\x05\x00\x00\xf0\x04\x00\x00\x19\x05\x00\x00\xc6\x04\x00\x00\xf0\x04\x00\x00\xc7\x04\x00\x00\xc7\x04\x00\x00\xf0\x04\x00\x00\xf1\x04\x00\x00\xf0\x04\x00\x00\x1a\x05\x00\x00\x1b\x05\x00\x00\xf0\x04\x00\x00\x1b\x05\x00\x00\xf1\x04\x00\x00v\x07\x00\x00u\x07\x00\x00\x9f\x07\x00\x00v\x07\x00\x00\x9f\x07\x00\x00\xa0\x07\x00\x00M\x07\x00\x00v\x07\x00\x00w\x07\x00\x00v\x07\x00\x00M\x07\x00\x00L\x07\x00\x00\xa1\x07\x00\x00v\x07\x00\x00\xa0\x07\x00\x00w\x07\x00\x00v\x07\x00\x00\xa1\x07\x00\x00\x9f\x07\x00\x00\xca\x07\x00\x00\xa0\x07\x00\x00\xc9\x07\x00\x00\xca\x07\x00\x00\x9f\x07\x00\x00\xf4\x07\x00\x00\xca\x07\x00\x00\xf3\x07\x00\x00\xca\x07\x00\x00\xc9\x07\x00\x00\xf3\x07\x00\x00\xca\x07\x00\x00\xa1\x07\x00\x00\xa0\x07\x00\x00\xca\x07\x00\x00\xcb\x07\x00\x00\xa1\x07\x00\x00\xca\x07\x00\x00\xf4\x07\x00\x00\xf5\x07\x00\x00\xcb\x07\x00\x00\xca\x07\x00\x00\xf5\x07\x00\x00%\x07\x00\x00&\x07\x00\x00\xfb\x06\x00\x00\xfb\x06\x00\x00&\x07\x00\x00\xfc\x06\x00\x00&\x07\x00\x00\xfd\x06\x00\x00\xfc\x06\x00\x00\xfd\x06\x00\x00&\x07\x00\x00\'\x07\x00\x00O\x07\x00\x00&\x07\x00\x00%\x07\x00\x00&\x07\x00\x00O\x07\x00\x00P\x07\x00\x00\xa3\x07\x00\x00\xce\x07\x00\x00\xa4\x07\x00\x00\xce\x07\x00\x00\xa3\x07\x00\x00\xcd\x07\x00\x00#\x07\x00\x00\xf9\x06\x00\x00\xf8\x06\x00\x00"\x07\x00\x00#\x07\x00\x00\xf8\x06\x00\x00M\x07\x00\x00#\x07\x00\x00L\x07\x00\x00#\x07\x00\x00"\x07\x00\x00L\x07\x00\x00O\x06\x00\x00x\x06\x00\x00y\x06\x00\x00x\x06\x00\x00O\x06\x00\x00N\x06\x00\x00y\x06\x00\x00x\x06\x00\x00\xa3\x06\x00\x00x\x06\x00\x00\xa2\x06\x00\x00\xa3\x06\x00\x00\xa2\x06\x00\x00\xa1\x06\x00\x00\xcc\x06\x00\x00\xcc\x06\x00\x00\xa1\x06\x00\x00\xcb\x06\x00\x00J\x06\x00\x00K\x06\x00\x00 \x06\x00\x00K\x06\x00\x00!\x06\x00\x00 \x06\x00\x00!\x06\x00\x00K\x06\x00\x00"\x06\x00\x00K\x06\x00\x00L\x06\x00\x00"\x06\x00\x00\x97\x07\x00\x00m\x07\x00\x00l\x07\x00\x00\x97\x07\x00\x00l\x07\x00\x00\x96\x07\x00\x00\xc1\x07\x00\x00\x97\x07\x00\x00\xc0\x07\x00\x00\xc0\x07\x00\x00\x97\x07\x00\x00\x96\x07\x00\x00\x19\x08\x00\x00\xee\x07\x00\x00\x18\x08\x00\x00\xee\x07\x00\x00\x19\x08\x00\x00\xef\x07\x00\x00\xee\x07\x00\x00\xef\x07\x00\x00\xc5\x07\x00\x00\xc4\x07\x00\x00\xee\x07\x00\x00\xc5\x07\x00\x00\xbd\x06\x00\x00\x94\x06\x00\x00\x93\x06\x00\x00\xbd\x06\x00\x00\xbe\x06\x00\x00\x94\x06\x00\x00\x92\x06\x00\x00g\x06\x00\x00\x91\x06\x00\x00g\x06\x00\x00\x92\x06\x00\x00h\x06\x00\x00\xbb\x06\x00\x00\x92\x06\x00\x00\x91\x06\x00\x00\xbc\x06\x00\x00\x92\x06\x00\x00\xbb\x06\x00\x00i\x06\x00\x00\x92\x06\x00\x00\x93\x06\x00\x00\x92\x06\x00\x00i\x06\x00\x00h\x06\x00\x00\x92\x06\x00\x00\xbd\x06\x00\x00\x93\x06\x00\x00\xbd\x06\x00\x00\x92\x06\x00\x00\xbc\x06\x00\x00\x0f\x07\x00\x00\xe6\x06\x00\x00\xe5\x06\x00\x00\xe6\x06\x00\x00\x0f\x07\x00\x00\x10\x07\x00\x00\xe6\x06\x00\x00\xbb\x06\x00\x00\xe5\x06\x00\x00\xe6\x06\x00\x00\xbc\x06\x00\x00\xbb\x06\x00\x00\xe6\x06\x00\x00\xbd\x06\x00\x00\xbc\x06\x00\x00\xbd\x06\x00\x00\xe6\x06\x00\x00\xe7\x06\x00\x00?\x07\x00\x00\x15\x07\x00\x00>\x07\x00\x00\x15\x07\x00\x00\x14\x07\x00\x00>\x07\x00\x00\x15\x07\x00\x00?\x07\x00\x00@\x07\x00\x00\x16\x07\x00\x00\x15\x07\x00\x00@\x07\x00\x00\xec\x06\x00\x00\x16\x07\x00\x00\x17\x07\x00\x00\xed\x06\x00\x00\xec\x06\x00\x00\x17\x07\x00\x00\xc1\x06\x00\x00\xec\x06\x00\x00\xc2\x06\x00\x00\xec\x06\x00\x00\xc1\x06\x00\x00\xeb\x06\x00\x00\xec\x06\x00\x00\x15\x07\x00\x00\x16\x07\x00\x00\x15\x07\x00\x00\xec\x06\x00\x00\xeb\x06\x00\x00\x98\x06\x00\x00\xc3\x06\x00\x00\x99\x06\x00\x00\xc3\x06\x00\x00\x98\x06\x00\x00\xc2\x06\x00\x00\xc3\x06\x00\x00\xec\x06\x00\x00\xed\x06\x00\x00\xec\x06\x00\x00\xc3\x06\x00\x00\xc2\x06\x00\x00\xc3\x06\x00\x00\x9a\x06\x00\x00\x99\x06\x00\x00\x9a\x06\x00\x00\xc3\x06\x00\x00\xc4\x06\x00\x00\xc3\x06\x00\x00\xed\x06\x00\x00\xee\x06\x00\x00\xc3\x06\x00\x00\xee\x06\x00\x00\xc4\x06\x00\x00;\x07\x00\x00f\x07\x00\x00<\x07\x00\x00f\x07\x00\x00;\x07\x00\x00e\x07\x00\x00;\x07\x00\x00:\x07\x00\x00d\x07\x00\x00;\x07\x00\x00d\x07\x00\x00e\x07\x00\x00\xba\x07\x00\x00\xe4\x07\x00\x00\xe5\x07\x00\x00\xbb\x07\x00\x00\xba\x07\x00\x00\xe5\x07\x00\x00\x91\x07\x00\x00\xba\x07\x00\x00\xbb\x07\x00\x00\x90\x07\x00\x00\xba\x07\x00\x00\x91\x07\x00\x00\xba\x07\x00\x00\xe3\x07\x00\x00\xe4\x07\x00\x00\xba\x07\x00\x00\xb9\x07\x00\x00\xe3\x07\x00\x00\xba\x07\x00\x00\x8f\x07\x00\x00\xb9\x07\x00\x00\x8f\x07\x00\x00\xba\x07\x00\x00\x90\x07\x00\x00\xd4\x06\x00\x00\xa9\x06\x00\x00\xd3\x06\x00\x00\xa9\x06\x00\x00\xd4\x06\x00\x00\xaa\x06\x00\x00\xa9\x06\x00\x00\x80\x06\x00\x00\x7f\x06\x00\x00\x80\x06\x00\x00\xa9\x06\x00\x00\xaa\x06\x00\x00\xa9\x06\x00\x00\xd2\x06\x00\x00\xd3\x06\x00\x00\xd2\x06\x00\x00\xa9\x06\x00\x00\xa8\x06\x00\x00\xa8\x06\x00\x00\xa9\x06\x00\x00~\x06\x00\x00\xa9\x06\x00\x00\x7f\x06\x00\x00~\x06\x00\x00\xa6\x06\x00\x00{\x06\x00\x00\xa5\x06\x00\x00{\x06\x00\x00\xa6\x06\x00\x00|\x06\x00\x00\xcf\x06\x00\x00\xa6\x06\x00\x00\xa5\x06\x00\x00\xd0\x06\x00\x00\xa6\x06\x00\x00\xcf\x06\x00\x00\xa6\x06\x00\x00\xa7\x06\x00\x00}\x06\x00\x00|\x06\x00\x00\xa6\x06\x00\x00}\x06\x00\x00\xd1\x06\x00\x00\xa8\x06\x00\x00\xa7\x06\x00\x00\xd1\x06\x00\x00\xd2\x06\x00\x00\xa8\x06\x00\x00\xd2\x06\x00\x00\xd1\x06\x00\x00\xfc\x06\x00\x00\xd1\x06\x00\x00\xfb\x06\x00\x00\xfc\x06\x00\x00\xd1\x06\x00\x00\xa6\x06\x00\x00\xd0\x06\x00\x00\xa6\x06\x00\x00\xd1\x06\x00\x00\xa7\x06\x00\x00\xd1\x06\x00\x00\xd0\x06\x00\x00\xfa\x06\x00\x00\xfb\x06\x00\x00\xd1\x06\x00\x00\xfa\x06\x00\x00\x89\x05\x00\x00\xb2\x05\x00\x00\xb3\x05\x00\x00\x88\x05\x00\x00\xb2\x05\x00\x00\x89\x05\x00\x00\xb2\x05\x00\x00\x88\x05\x00\x00\x87\x05\x00\x00\xb1\x05\x00\x00\xb2\x05\x00\x00\x87\x05\x00\x00\xe9\x02\x00\x00\x14\x03\x00\x00\xea\x02\x00\x00\x14\x03\x00\x00\xe9\x02\x00\x00\x13\x03\x00\x00\x14\x03\x00\x00\x15\x03\x00\x00\xeb\x02\x00\x00\xea\x02\x00\x00\x14\x03\x00\x00\xeb\x02\x00\x00\x92\x03\x00\x00h\x03\x00\x00\x91\x03\x00\x00h\x03\x00\x00g\x03\x00\x00\x91\x03\x00\x00h\x03\x00\x00\x92\x03\x00\x00\x93\x03\x00\x00i\x03\x00\x00h\x03\x00\x00\x93\x03\x00\x00\xb6\x04\x00\x00\x8b\x04\x00\x00\xb5\x04\x00\x00\x8b\x04\x00\x00\xb6\x04\x00\x00\x8c\x04\x00\x00\xb6\x04\x00\x00\xb7\x04\x00\x00\x8d\x04\x00\x00\xb6\x04\x00\x00\x8d\x04\x00\x00\x8c\x04\x00\x00\x08\x05\x00\x001\x05\x00\x002\x05\x00\x001\x05\x00\x00\x08\x05\x00\x00\x07\x05\x00\x00Y\x05\x00\x00Z\x05\x00\x00/\x05\x00\x00Z\x05\x00\x000\x05\x00\x00/\x05\x00\x001\x05\x00\x00Z\x05\x00\x00[\x05\x00\x00Z\x05\x00\x001\x05\x00\x000\x05\x00\x00\x06\x05\x00\x001\x05\x00\x00\x07\x05\x00\x001\x05\x00\x00\x06\x05\x00\x000\x05\x00\x00\x06\x05\x00\x00\x07\x05\x00\x00\xdd\x04\x00\x00\xdc\x04\x00\x00\x06\x05\x00\x00\xdd\x04\x00\x00/\x05\x00\x00\x06\x05\x00\x00\x05\x05\x00\x000\x05\x00\x00\x06\x05\x00\x00/\x05\x00\x00\xdb\x04\x00\x00\x06\x05\x00\x00\xdc\x04\x00\x00\x06\x05\x00\x00\xdb\x04\x00\x00\x05\x05\x00\x00\x89\x04\x00\x00\xb2\x04\x00\x00\xb3\x04\x00\x00\xb2\x04\x00\x00\x89\x04\x00\x00\x88\x04\x00\x00\xb2\x04\x00\x00\xdc\x04\x00\x00\xdd\x04\x00\x00\xb3\x04\x00\x00\xb2\x04\x00\x00\xdd\x04\x00\x00\xb8\x03\x00\x00\x8f\x03\x00\x00\x8e\x03\x00\x00\x8f\x03\x00\x00\xb8\x03\x00\x00\xb9\x03\x00\x002\x04\x00\x00[\x04\x00\x00\\\x04\x00\x00[\x04\x00\x002\x04\x00\x001\x04\x00\x00/\x04\x00\x00\x05\x04\x00\x00\x04\x04\x00\x00.\x04\x00\x00/\x04\x00\x00\x04\x04\x00\x00\x07\x04\x00\x00\xde\x03\x00\x00\xdd\x03\x00\x00\xde\x03\x00\x00\x07\x04\x00\x00\x08\x04\x00\x002\x04\x00\x00\x07\x04\x00\x001\x04\x00\x00\x07\x04\x00\x002\x04\x00\x00\x08\x04\x00\x00\xe5\x04\x00\x00\xe6\x04\x00\x00\xbc\x04\x00\x00\xe5\x04\x00\x00\xbc\x04\x00\x00\xbb\x04\x00\x00\xe5\x04\x00\x00\x10\x05\x00\x00\xe6\x04\x00\x00\x10\x05\x00\x00\xe5\x04\x00\x00\x0f\x05\x00\x00\xe3\x04\x00\x00\x0c\x05\x00\x00\r\x05\x00\x00\x0c\x05\x00\x00\xe3\x04\x00\x00\xe2\x04\x00\x00\xe3\x04\x00\x00\xb8\x04\x00\x00\xe2\x04\x00\x00\xb8\x04\x00\x00\xe3\x04\x00\x00\xb9\x04\x00\x009\x05\x00\x00\x10\x05\x00\x00\x0f\x05\x00\x00\x10\x05\x00\x009\x05\x00\x00:\x05\x00\x00:\x05\x00\x009\x05\x00\x00d\x05\x00\x009\x05\x00\x00c\x05\x00\x00d\x05\x00\x009\x05\x00\x00\x0e\x05\x00\x008\x05\x00\x00\x0e\x05\x00\x009\x05\x00\x00\x0f\x05\x00\x00c\x05\x00\x009\x05\x00\x00b\x05\x00\x009\x05\x00\x008\x05\x00\x00b\x05\x00\x007\x05\x00\x00a\x05\x00\x008\x05\x00\x008\x05\x00\x00a\x05\x00\x00b\x05\x00\x00a\x05\x00\x00`\x05\x00\x00\x8a\x05\x00\x00\x8b\x05\x00\x00a\x05\x00\x00\x8a\x05\x00\x00a\x05\x00\x007\x05\x00\x006\x05\x00\x00`\x05\x00\x00a\x05\x00\x006\x05\x00\x00\x8b\x04\x00\x00\xb4\x04\x00\x00\xb5\x04\x00\x00\xb4\x04\x00\x00\x8b\x04\x00\x00\x8a\x04\x00\x00\xb4\x04\x00\x00\xde\x04\x00\x00\xdf\x04\x00\x00\xb5\x04\x00\x00\xb4\x04\x00\x00\xdf\x04\x00\x00\xb4\x04\x00\x00\x89\x04\x00\x00\xb3\x04\x00\x00\x89\x04\x00\x00\xb4\x04\x00\x00\x8a\x04\x00\x00\xde\x04\x00\x00\xb4\x04\x00\x00\xdd\x04\x00\x00\xb4\x04\x00\x00\xb3\x04\x00\x00\xdd\x04\x00\x00\x1b\x08\x00\x00\xf0\x07\x00\x00\x1a\x08\x00\x00\xf1\x07\x00\x00\xf0\x07\x00\x00\x1b\x08\x00\x00\xf0\x07\x00\x00\x19\x08\x00\x00\x1a\x08\x00\x00\x19\x08\x00\x00\xf0\x07\x00\x00\xef\x07\x00\x00\xef\x07\x00\x00\xf0\x07\x00\x00\xc5\x07\x00\x00\xf0\x07\x00\x00\xc6\x07\x00\x00\xc5\x07\x00\x00\xef\x05\x00\x00\xc6\x05\x00\x00\xc5\x05\x00\x00\xc6\x05\x00\x00\xef\x05\x00\x00\xf0\x05\x00\x00\xc7\x05\x00\x00\xc6\x05\x00\x00\xf1\x05\x00\x00\xc6\x05\x00\x00\xf0\x05\x00\x00\xf1\x05\x00\x00A\x06\x00\x00\x18\x06\x00\x00\x17\x06\x00\x00B\x06\x00\x00\x18\x06\x00\x00A\x06\x00\x00C\x06\x00\x00l\x06\x00\x00m\x06\x00\x00C\x06\x00\x00B\x06\x00\x00l\x06\x00\x00C\x06\x00\x00\x18\x06\x00\x00B\x06\x00\x00\x18\x06\x00\x00C\x06\x00\x00\x19\x06\x00\x00\x9a\x05\x00\x00\xc4\x05\x00\x00\x9b\x05\x00\x00\x9b\x05\x00\x00\xc4\x05\x00\x00\xc5\x05\x00\x00\xc5\x06\x00\x00\xee\x06\x00\x00\xef\x06\x00\x00\xee\x06\x00\x00\xc5\x06\x00\x00\xc4\x06\x00\x00\xc5\x06\x00\x00\x9b\x06\x00\x00\x9a\x06\x00\x00\xc5\x06\x00\x00\x9a\x06\x00\x00\xc4\x06\x00\x00\xf0\x06\x00\x00\xc5\x06\x00\x00\xef\x06\x00\x00\xc6\x06\x00\x00\xc5\x06\x00\x00\xf0\x06\x00\x00\x9b\x06\x00\x00\xc5\x06\x00\x00\x9c\x06\x00\x00\xc5\x06\x00\x00\xc6\x06\x00\x00\x9c\x06\x00\x00<\x06\x00\x00=\x06\x00\x00\x12\x06\x00\x00=\x06\x00\x00\x13\x06\x00\x00\x12\x06\x00\x00f\x06\x00\x00=\x06\x00\x00<\x06\x00\x00g\x06\x00\x00=\x06\x00\x00f\x06\x00\x00\x13\x06\x00\x00=\x06\x00\x00\x14\x06\x00\x00\x14\x06\x00\x00=\x06\x00\x00>\x06\x00\x00=\x06\x00\x00g\x06\x00\x00h\x06\x00\x00=\x06\x00\x00h\x06\x00\x00>\x06\x00\x00?\x06\x00\x00\x15\x06\x00\x00\x14\x06\x00\x00?\x06\x00\x00\x14\x06\x00\x00>\x06\x00\x00i\x06\x00\x00?\x06\x00\x00h\x06\x00\x00h\x06\x00\x00?\x06\x00\x00>\x06\x00\x00\x16\x06\x00\x00?\x06\x00\x00@\x06\x00\x00\x15\x06\x00\x00?\x06\x00\x00\x16\x06\x00\x00?\x06\x00\x00i\x06\x00\x00j\x06\x00\x00@\x06\x00\x00?\x06\x00\x00j\x06\x00\x00\x97\x05\x00\x00\x98\x05\x00\x00m\x05\x00\x00\x98\x05\x00\x00n\x05\x00\x00m\x05\x00\x00g\x01\x00\x00f\x01\x00\x00\x91\x01\x00\x00f\x01\x00\x00\x90\x01\x00\x00\x91\x01\x00\x00f\x01\x00\x00e\x01\x00\x00\x8f\x01\x00\x00\x90\x01\x00\x00f\x01\x00\x00\x8f\x01\x00\x00\x0f\x01\x00\x00\x10\x01\x00\x00\xe5\x00\x00\x00\x10\x01\x00\x00\xe6\x00\x00\x00\xe5\x00\x00\x00\x10\x01\x00\x00\x0f\x01\x00\x009\x01\x00\x00:\x01\x00\x00\x10\x01\x00\x009\x01\x00\x00\x10\x01\x00\x00:\x01\x00\x00;\x01\x00\x00\x10\x01\x00\x00;\x01\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\xe7\x00\x00\x00\xe6\x00\x00\x00\xe7\x00\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00\x12\x01\x00\x00\xe7\x00\x00\x00\x11\x01\x00\x00\xe8\x00\x00\x00\xe7\x00\x00\x00\x12\x01\x00\x00\x96\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\x96\x00\x00\x00\x95\x00\x00\x00\x91\x00\x00\x00\x92\x00\x00\x00g\x00\x00\x00\x92\x00\x00\x00h\x00\x00\x00g\x00\x00\x00A\x00\x00\x00@\x00\x00\x00j\x00\x00\x00A\x00\x00\x00j\x00\x00\x00k\x00\x00\x00A\x00\x00\x00\x17\x00\x00\x00\x16\x00\x00\x00@\x00\x00\x00A\x00\x00\x00\x16\x00\x00\x00A\x00\x00\x00\x18\x00\x00\x00\x17\x00\x00\x00\x18\x00\x00\x00A\x00\x00\x00B\x00\x00\x00l\x00\x00\x00C\x00\x00\x00B\x00\x00\x00C\x00\x00\x00l\x00\x00\x00m\x00\x00\x00l\x00\x00\x00\x96\x00\x00\x00\x97\x00\x00\x00m\x00\x00\x00l\x00\x00\x00\x97\x00\x00\x00l\x00\x00\x00A\x00\x00\x00k\x00\x00\x00A\x00\x00\x00l\x00\x00\x00B\x00\x00\x00\x96\x00\x00\x00l\x00\x00\x00\x95\x00\x00\x00\x95\x00\x00\x00l\x00\x00\x00k\x00\x00\x00\x9a\x00\x00\x00q\x00\x00\x00p\x00\x00\x00\x9a\x00\x00\x00\x9b\x00\x00\x00q\x00\x00\x00E\x01\x00\x00\x1c\x01\x00\x00\x1b\x01\x00\x00\x1c\x01\x00\x00E\x01\x00\x00F\x01\x00\x00E\x01\x00\x00n\x01\x00\x00o\x01\x00\x00n\x01\x00\x00E\x01\x00\x00D\x01\x00\x00\xc8\x00\x00\x00\xf3\x00\x00\x00\xc9\x00\x00\x00\xf3\x00\x00\x00\xc8\x00\x00\x00\xf2\x00\x00\x00\x9e\x00\x00\x00\xc8\x00\x00\x00\x9f\x00\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\x9f\x00\x00\x00\x9d\x00\x00\x00\xc8\x00\x00\x00\x9e\x00\x00\x00\xc8\x00\x00\x00\x9d\x00\x00\x00\xc7\x00\x00\x00\x1b\x00\x00\x00F\x00\x00\x00\x1c\x00\x00\x00\x1b\x00\x00\x00E\x00\x00\x00F\x00\x00\x00\x1b\x00\x00\x00\x1a\x00\x00\x00D\x00\x00\x00E\x00\x00\x00\x1b\x00\x00\x00D\x00\x00\x00;\x02\x00\x00\x12\x02\x00\x00\x11\x02\x00\x00\x12\x02\x00\x00;\x02\x00\x00<\x02\x00\x00\x12\x02\x00\x00<\x02\x00\x00=\x02\x00\x00\x13\x02\x00\x00\x12\x02\x00\x00=\x02\x00\x00>\x02\x00\x00\x14\x02\x00\x00=\x02\x00\x00\x14\x02\x00\x00\x13\x02\x00\x00=\x02\x00\x00\x13\x02\x00\x00\x14\x02\x00\x00\xe9\x01\x00\x00\x14\x02\x00\x00\xea\x01\x00\x00\xe9\x01\x00\x00\xea\x01\x00\x00\xc0\x01\x00\x00\xe9\x01\x00\x00\xc0\x01\x00\x00\xbf\x01\x00\x00\xe9\x01\x00\x00\xf0\x01\x00\x00\xef\x01\x00\x00\x19\x02\x00\x00\x1a\x02\x00\x00\xf0\x01\x00\x00\x19\x02\x00\x00\xf0\x01\x00\x00\xc7\x01\x00\x00\xc6\x01\x00\x00\xc7\x01\x00\x00\xf0\x01\x00\x00\xf1\x01\x00\x00\xf0\x01\x00\x00\x1b\x02\x00\x00\xf1\x01\x00\x00\x1b\x02\x00\x00\xf0\x01\x00\x00\x1a\x02\x00\x00q\x01\x00\x00r\x01\x00\x00H\x01\x00\x00G\x01\x00\x00q\x01\x00\x00H\x01\x00\x00r\x01\x00\x00q\x01\x00\x00\x9c\x01\x00\x00q\x01\x00\x00\x9b\x01\x00\x00\x9c\x01\x00\x00\xf0\x01\x00\x00\xc5\x01\x00\x00\xef\x01\x00\x00\xc5\x01\x00\x00\xf0\x01\x00\x00\xc6\x01\x00\x00\xc5\x01\x00\x00\xc6\x01\x00\x00\x9c\x01\x00\x00\x9b\x01\x00\x00\xc5\x01\x00\x00\x9c\x01\x00\x00\xc7\x01\x00\x00\x9e\x01\x00\x00\x9d\x01\x00\x00\x9e\x01\x00\x00\xc7\x01\x00\x00\xc8\x01\x00\x00\xcb\x01\x00\x00\xa0\x01\x00\x00\xca\x01\x00\x00\xa0\x01\x00\x00\xcb\x01\x00\x00\xa1\x01\x00\x00y\x00\x00\x00x\x00\x00\x00\xa3\x00\x00\x00\xa3\x00\x00\x00x\x00\x00\x00\xa2\x00\x00\x00N\x00\x00\x00x\x00\x00\x00O\x00\x00\x00x\x00\x00\x00y\x00\x00\x00O\x00\x00\x00z\x00\x00\x00{\x00\x00\x00Q\x00\x00\x00P\x00\x00\x00z\x00\x00\x00Q\x00\x00\x00z\x00\x00\x00P\x00\x00\x00O\x00\x00\x00y\x00\x00\x00z\x00\x00\x00O\x00\x00\x00\xcc\x00\x00\x00\xa1\x00\x00\x00\xcb\x00\x00\x00\xa1\x00\x00\x00\xcc\x00\x00\x00\xa2\x00\x00\x00m\x01\x00\x00B\x01\x00\x00l\x01\x00\x00B\x01\x00\x00m\x01\x00\x00C\x01\x00\x00m\x01\x00\x00n\x01\x00\x00D\x01\x00\x00C\x01\x00\x00m\x01\x00\x00D\x01\x00\x00\x93\x01\x00\x00j\x01\x00\x00i\x01\x00\x00\x94\x01\x00\x00j\x01\x00\x00\x93\x01\x00\x00j\x01\x00\x00?\x01\x00\x00i\x01\x00\x00j\x01\x00\x00@\x01\x00\x00?\x01\x00\x002\x00\x00\x00]\x00\x00\x003\x00\x00\x00\\\x00\x00\x00]\x00\x00\x002\x00\x00\x006\x00\x00\x00_\x00\x00\x00`\x00\x00\x00_\x00\x00\x006\x00\x00\x005\x00\x00\x00Y\x01\x00\x000\x01\x00\x00/\x01\x00\x000\x01\x00\x00Y\x01\x00\x00Z\x01\x00\x000\x01\x00\x00\x05\x01\x00\x00/\x01\x00\x00\x05\x01\x00\x000\x01\x00\x00\x06\x01\x00\x00\x08\x01\x00\x002\x01\x00\x003\x01\x00\x00\t\x01\x00\x00\x08\x01\x00\x003\x01\x00\x00W\x00\x00\x00V\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00W\x00\x00\x00\x80\x00\x00\x00V\x00\x00\x00W\x00\x00\x00,\x00\x00\x00W\x00\x00\x00-\x00\x00\x00,\x00\x00\x00\xaf\x00\x00\x00\xd8\x00\x00\x00\xd9\x00\x00\x00\xaf\x00\x00\x00\xae\x00\x00\x00\xd8\x00\x00\x00\xae\x00\x00\x00\xaf\x00\x00\x00\x84\x00\x00\x00\xaf\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\xb0\x00\x00\x00\xaf\x00\x00\x00\xda\x00\x00\x00\xda\x00\x00\x00\xaf\x00\x00\x00\xd9\x00\x00\x00\x85\x00\x00\x00\xaf\x00\x00\x00\x86\x00\x00\x00\xaf\x00\x00\x00\xb0\x00\x00\x00\x86\x00\x00\x00/\x02\x00\x00X\x02\x00\x00Y\x02\x00\x00X\x02\x00\x00/\x02\x00\x00.\x02\x00\x00Y\x02\x00\x00X\x02\x00\x00\x83\x02\x00\x00X\x02\x00\x00\x82\x02\x00\x00\x83\x02\x00\x00-\x02\x00\x00X\x02\x00\x00.\x02\x00\x00W\x02\x00\x00X\x02\x00\x00-\x02\x00\x00\x82\x02\x00\x00X\x02\x00\x00\x81\x02\x00\x00X\x02\x00\x00W\x02\x00\x00\x81\x02\x00\x00-\x01\x00\x00\x04\x01\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00-\x01\x00\x00.\x01\x00\x00-\x01\x00\x00X\x01\x00\x00.\x01\x00\x00-\x01\x00\x00W\x01\x00\x00X\x01\x00\x00V\x01\x00\x00\x7f\x01\x00\x00\x80\x01\x00\x00V\x01\x00\x00U\x01\x00\x00\x7f\x01\x00\x00\x81\x01\x00\x00V\x01\x00\x00\x80\x01\x00\x00W\x01\x00\x00V\x01\x00\x00\x81\x01\x00\x003\x02\x00\x00]\x02\x00\x00^\x02\x00\x004\x02\x00\x003\x02\x00\x00^\x02\x00\x00\t\x02\x00\x003\x02\x00\x00\n\x02\x00\x003\x02\x00\x004\x02\x00\x00\n\x02\x00\x003\x02\x00\x00\\\x02\x00\x00]\x02\x00\x00\\\x02\x00\x003\x02\x00\x002\x02\x00\x003\x02\x00\x00\x08\x02\x00\x002\x02\x00\x003\x02\x00\x00\t\x02\x00\x00\x08\x02\x00\x00\x8a\x01\x00\x00a\x01\x00\x00`\x01\x00\x00a\x01\x00\x00\x8a\x01\x00\x00\x8b\x01\x00\x00\x8c\x01\x00\x00a\x01\x00\x00\x8b\x01\x00\x00a\x01\x00\x00\x8c\x01\x00\x00b\x01\x00\x00a\x01\x00\x00b\x01\x00\x008\x01\x00\x007\x01\x00\x00a\x01\x00\x008\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\x0c\x01\x00\x00\xe3\x00\x00\x00\x8d\x01\x00\x00\xb6\x01\x00\x00\xb7\x01\x00\x00\x8d\x01\x00\x00\x8c\x01\x00\x00\xb6\x01\x00\x00\x8d\x01\x00\x00c\x01\x00\x00b\x01\x00\x00\x8c\x01\x00\x00\x8d\x01\x00\x00b\x01\x00\x00\xb8\x01\x00\x00\x8d\x01\x00\x00\xb7\x01\x00\x00\x8d\x01\x00\x00\xb8\x01\x00\x00\x8e\x01\x00\x00\x8d\x01\x00\x00\x8e\x01\x00\x00d\x01\x00\x00c\x01\x00\x00\x8d\x01\x00\x00d\x01\x00\x00\xb8\x00\x00\x00\x8e\x00\x00\x00\x8d\x00\x00\x00\xb8\x00\x00\x00\x8d\x00\x00\x00\xb7\x00\x00\x00\x86\x01\x00\x00\xaf\x01\x00\x00\xb0\x01\x00\x00\x86\x01\x00\x00\x85\x01\x00\x00\xaf\x01\x00\x00]\x01\x00\x00\x86\x01\x00\x00\x87\x01\x00\x00\x86\x01\x00\x00]\x01\x00\x00\\\x01\x00\x00\xb1\x01\x00\x00\x86\x01\x00\x00\xb0\x01\x00\x00\x86\x01\x00\x00\xb1\x01\x00\x00\x87\x01\x00\x00\x86\x01\x00\x00[\x01\x00\x00\x85\x01\x00\x00[\x01\x00\x00\x86\x01\x00\x00\\\x01\x00\x00\xaf\x01\x00\x00\x84\x01\x00\x00\xae\x01\x00\x00\x85\x01\x00\x00\x84\x01\x00\x00\xaf\x01\x00\x00[\x01\x00\x00\x84\x01\x00\x00\x85\x01\x00\x00\x84\x01\x00\x00[\x01\x00\x00Z\x01\x00\x00\xad\x01\x00\x00\x84\x01\x00\x00\x83\x01\x00\x00\x84\x01\x00\x00\xad\x01\x00\x00\xae\x01\x00\x00\x84\x01\x00\x00Y\x01\x00\x00\x83\x01\x00\x00Y\x01\x00\x00\x84\x01\x00\x00Z\x01\x00\x00\x8c\x00\x00\x00c\x00\x00\x00b\x00\x00\x00c\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\xb7\x00\x00\x00\x8c\x00\x00\x00\xb6\x00\x00\x00\xb7\x00\x00\x004\x01\x00\x00]\x01\x00\x00^\x01\x00\x00]\x01\x00\x004\x01\x00\x003\x01\x00\x004\x01\x00\x00\t\x01\x00\x003\x01\x00\x004\x01\x00\x00\n\x01\x00\x00\t\x01\x00\x00\n\x01\x00\x00\xe0\x00\x00\x00\t\x01\x00\x00\t\x01\x00\x00\xe0\x00\x00\x00\xdf\x00\x00\x00\xcb\x02\x00\x00\xf4\x02\x00\x00\xf5\x02\x00\x00\xcb\x02\x00\x00\xca\x02\x00\x00\xf4\x02\x00\x00\xf6\x02\x00\x00\xcb\x02\x00\x00\xf5\x02\x00\x00\xcc\x02\x00\x00\xcb\x02\x00\x00\xf6\x02\x00\x00y\x02\x00\x00P\x02\x00\x00O\x02\x00\x00y\x02\x00\x00z\x02\x00\x00P\x02\x00\x00%\x03\x00\x00\xfa\x02\x00\x00$\x03\x00\x00\xfa\x02\x00\x00%\x03\x00\x00\xfb\x02\x00\x00\xfc\x02\x00\x00%\x03\x00\x00&\x03\x00\x00%\x03\x00\x00\xfc\x02\x00\x00\xfb\x02\x00\x00%\x03\x00\x00O\x03\x00\x00P\x03\x00\x00&\x03\x00\x00%\x03\x00\x00P\x03\x00\x00N\x03\x00\x00%\x03\x00\x00$\x03\x00\x00%\x03\x00\x00N\x03\x00\x00O\x03\x00\x00\xce\x02\x00\x00\xa5\x02\x00\x00\xa4\x02\x00\x00\xa5\x02\x00\x00\xce\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xf9\x02\x00\x00\xfa\x02\x00\x00\xf9\x02\x00\x00\xd0\x02\x00\x00\xcf\x02\x00\x00\xce\x02\x00\x00\xf9\x02\x00\x00\xcf\x02\x00\x00\xf9\x02\x00\x00\xce\x02\x00\x00\xf8\x02\x00\x00\xd1\x02\x00\x00\xa6\x02\x00\x00\xd0\x02\x00\x00\xa6\x02\x00\x00\xd1\x02\x00\x00\xa7\x02\x00\x00\xa5\x02\x00\x00\xa6\x02\x00\x00{\x02\x00\x00\xa6\x02\x00\x00|\x02\x00\x00{\x02\x00\x00\xa6\x02\x00\x00\xa5\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xa6\x02\x00\x00\xcf\x02\x00\x00\xf6\x03\x00\x00\xcb\x03\x00\x00\xf5\x03\x00\x00\xcc\x03\x00\x00\xcb\x03\x00\x00\xf6\x03\x00\x00\xa2\x03\x00\x00\xcb\x03\x00\x00\xcc\x03\x00\x00\xcb\x03\x00\x00\xa2\x03\x00\x00\xa1\x03\x00\x00\xcd\x03\x00\x00\xa2\x03\x00\x00\xcc\x03\x00\x00\xa2\x03\x00\x00\xcd\x03\x00\x00\xa3\x03\x00\x00#\x02\x00\x00"\x02\x00\x00L\x02\x00\x00#\x02\x00\x00L\x02\x00\x00M\x02\x00\x00"\x02\x00\x00#\x02\x00\x00\xf8\x01\x00\x00#\x02\x00\x00\xf9\x01\x00\x00\xf8\x01\x00\x00\xd1\x01\x00\x00\xfa\x01\x00\x00\xfb\x01\x00\x00\xfa\x01\x00\x00\xd1\x01\x00\x00\xd0\x01\x00\x00\xf9\x01\x00\x00\xfa\x01\x00\x00\xcf\x01\x00\x00\xcf\x01\x00\x00\xfa\x01\x00\x00\xd0\x01\x00\x00\xa7\x01\x00\x00\xa6\x01\x00\x00\xd1\x01\x00\x00\xd1\x01\x00\x00\xa6\x01\x00\x00\xd0\x01\x00\x00{\x01\x00\x00\xa6\x01\x00\x00|\x01\x00\x00\xa6\x01\x00\x00{\x01\x00\x00\xa5\x01\x00\x00\xcf\x01\x00\x00\xa6\x01\x00\x00\xa5\x01\x00\x00\xa6\x01\x00\x00\xcf\x01\x00\x00\xd0\x01\x00\x00}\x01\x00\x00\xa6\x01\x00\x00\xa7\x01\x00\x00\xa6\x01\x00\x00}\x01\x00\x00|\x01\x00\x00}\x01\x00\x00\xa7\x01\x00\x00\xa8\x01\x00\x00~\x01\x00\x00}\x01\x00\x00\xa8\x01\x00\x00~\x06\x00\x00T\x06\x00\x00}\x06\x00\x00T\x06\x00\x00S\x06\x00\x00}\x06\x00\x00T\x06\x00\x00\x7f\x06\x00\x00U\x06\x00\x00\x7f\x06\x00\x00T\x06\x00\x00~\x06\x00\x00\xfe\x05\x00\x00)\x06\x00\x00\xff\x05\x00\x00)\x06\x00\x00\xfe\x05\x00\x00(\x06\x00\x00R\x06\x00\x00)\x06\x00\x00(\x06\x00\x00S\x06\x00\x00)\x06\x00\x00R\x06\x00\x00)\x06\x00\x00\x00\x06\x00\x00\xff\x05\x00\x00\x00\x06\x00\x00)\x06\x00\x00*\x06\x00\x00T\x06\x00\x00)\x06\x00\x00S\x06\x00\x00)\x06\x00\x00T\x06\x00\x00*\x06\x00\x00\xd8\x05\x00\x00\x01\x06\x00\x00\x02\x06\x00\x00\x01\x06\x00\x00\xd8\x05\x00\x00\xd7\x05\x00\x00\x00\x06\x00\x00\x01\x06\x00\x00\xd6\x05\x00\x00\xd6\x05\x00\x00\x01\x06\x00\x00\xd7\x05\x00\x00\x80\x05\x00\x00\xa9\x05\x00\x00\xaa\x05\x00\x00\x80\x05\x00\x00\x7f\x05\x00\x00\xa9\x05\x00\x00U\x05\x00\x00\x80\x05\x00\x00V\x05\x00\x00\x7f\x05\x00\x00\x80\x05\x00\x00U\x05\x00\x00\x80\x05\x00\x00\xab\x05\x00\x00\x81\x05\x00\x00\xab\x05\x00\x00\x80\x05\x00\x00\xaa\x05\x00\x00W\x05\x00\x00\x80\x05\x00\x00\x81\x05\x00\x00V\x05\x00\x00\x80\x05\x00\x00W\x05\x00\x00\xaa\x03\x00\x00\x81\x03\x00\x00\x80\x03\x00\x00\xaa\x03\x00\x00\xab\x03\x00\x00\x81\x03\x00\x00\x7f\x03\x00\x00\xaa\x03\x00\x00\x80\x03\x00\x00\xaa\x03\x00\x00\x7f\x03\x00\x00\xa9\x03\x00\x00\xaa\x03\x00\x00\xd3\x03\x00\x00\xd4\x03\x00\x00\xd3\x03\x00\x00\xaa\x03\x00\x00\xa9\x03\x00\x00\xa8\x03\x00\x00\xd2\x03\x00\x00\xd3\x03\x00\x00\xa8\x03\x00\x00\xd3\x03\x00\x00\xa9\x03\x00\x00~\x03\x00\x00\xa8\x03\x00\x00\x7f\x03\x00\x00\x7f\x03\x00\x00\xa8\x03\x00\x00\xa9\x03\x00\x00}\x03\x00\x00\xa8\x03\x00\x00~\x03\x00\x00\xa8\x03\x00\x00}\x03\x00\x00\xa7\x03\x00\x00\xaf\x03\x00\x00\x84\x03\x00\x00\xae\x03\x00\x00\x85\x03\x00\x00\x84\x03\x00\x00\xaf\x03\x00\x00[\x03\x00\x00\x84\x03\x00\x00\x85\x03\x00\x00\x84\x03\x00\x00[\x03\x00\x00Z\x03\x00\x00\xaa\x03\x00\x00\xd5\x03\x00\x00\xab\x03\x00\x00\xd5\x03\x00\x00\xaa\x03\x00\x00\xd4\x03\x00\x00\xfe\x03\x00\x00\xd5\x03\x00\x00\xd4\x03\x00\x00\xff\x03\x00\x00\xd5\x03\x00\x00\xfe\x03\x00\x00\xac\x03\x00\x00\xd5\x03\x00\x00\xd6\x03\x00\x00\xd5\x03\x00\x00\xac\x03\x00\x00\xab\x03\x00\x00\xd6\x03\x00\x00\xd5\x03\x00\x00\x00\x04\x00\x00\xd5\x03\x00\x00\xff\x03\x00\x00\x00\x04\x00\x00\xa6\x03\x00\x00\xd1\x03\x00\x00\xa7\x03\x00\x00\xd1\x03\x00\x00\xa6\x03\x00\x00\xd0\x03\x00\x00\xfa\x03\x00\x00\xd1\x03\x00\x00\xd0\x03\x00\x00\xfb\x03\x00\x00\xd1\x03\x00\x00\xfa\x03\x00\x00\xa8\x03\x00\x00\xd1\x03\x00\x00\xd2\x03\x00\x00\xd1\x03\x00\x00\xa8\x03\x00\x00\xa7\x03\x00\x00\xd2\x03\x00\x00\xd1\x03\x00\x00\xfc\x03\x00\x00\xd1\x03\x00\x00\xfb\x03\x00\x00\xfc\x03\x00\x00y\x05\x00\x00\xa4\x05\x00\x00z\x05\x00\x00\xa3\x05\x00\x00\xa4\x05\x00\x00y\x05\x00\x00{\x05\x00\x00\xa4\x05\x00\x00\xa5\x05\x00\x00\xa4\x05\x00\x00{\x05\x00\x00z\x05\x00\x00\xa4\x05\x00\x00\xce\x05\x00\x00\xcf\x05\x00\x00\xa4\x05\x00\x00\xcf\x05\x00\x00\xa5\x05\x00\x00\xce\x05\x00\x00\xcd\x05\x00\x00\xf8\x05\x00\x00\xcd\x05\x00\x00\xf7\x05\x00\x00\xf8\x05\x00\x00\xcd\x05\x00\x00\xa4\x05\x00\x00\xa3\x05\x00\x00\xa4\x05\x00\x00\xcd\x05\x00\x00\xce\x05\x00\x00\xa1\x04\x00\x00\xcb\x04\x00\x00\xcc\x04\x00\x00\xa2\x04\x00\x00\xa1\x04\x00\x00\xcc\x04\x00\x00x\x04\x00\x00\xa1\x04\x00\x00\xa2\x04\x00\x00w\x04\x00\x00\xa1\x04\x00\x00x\x04\x00\x00\xf7\x05\x00\x00\xf6\x05\x00\x00!\x06\x00\x00!\x06\x00\x00\xf6\x05\x00\x00 \x06\x00\x00\xf6\x05\x00\x00\x1f\x06\x00\x00 \x06\x00\x00\xf6\x05\x00\x00\xf5\x05\x00\x00\x1f\x06\x00\x00"\x05\x00\x00\xf7\x04\x00\x00!\x05\x00\x00\xf7\x04\x00\x00"\x05\x00\x00\xf8\x04\x00\x00K\x05\x00\x00"\x05\x00\x00!\x05\x00\x00L\x05\x00\x00"\x05\x00\x00K\x05\x00\x00s\x05\x00\x00\x9e\x05\x00\x00t\x05\x00\x00\x9e\x05\x00\x00s\x05\x00\x00\x9d\x05\x00\x00\x9e\x05\x00\x00\xc7\x05\x00\x00\xc8\x05\x00\x00\xc7\x05\x00\x00\x9e\x05\x00\x00\x9d\x05\x00\x00\xc9\x05\x00\x00\xf2\x05\x00\x00\xf3\x05\x00\x00\xf2\x05\x00\x00\xc9\x05\x00\x00\xc8\x05\x00\x00\xc9\x05\x00\x00\x9e\x05\x00\x00\xc8\x05\x00\x00\x9e\x05\x00\x00\xc9\x05\x00\x00\x9f\x05\x00\x00\xc7\x06\x00\x00\xc6\x06\x00\x00\xf0\x06\x00\x00\xf1\x06\x00\x00\xc7\x06\x00\x00\xf0\x06\x00\x00Q\x04\x00\x00{\x04\x00\x00R\x04\x00\x00{\x04\x00\x00|\x04\x00\x00R\x04\x00\x00P\x04\x00\x00{\x04\x00\x00Q\x04\x00\x00{\x04\x00\x00P\x04\x00\x00z\x04\x00\x00\xa4\x04\x00\x00{\x04\x00\x00z\x04\x00\x00\xa5\x04\x00\x00{\x04\x00\x00\xa4\x04\x00\x00\xd1\x04\x00\x00\xa6\x04\x00\x00\xd0\x04\x00\x00\xa6\x04\x00\x00\xd1\x04\x00\x00\xa7\x04\x00\x00}\x04\x00\x00\xa6\x04\x00\x00\xa7\x04\x00\x00|\x04\x00\x00\xa6\x04\x00\x00}\x04\x00\x00\xa6\x04\x00\x00\xcf\x04\x00\x00\xd0\x04\x00\x00\xa6\x04\x00\x00\xa5\x04\x00\x00\xcf\x04\x00\x00{\x04\x00\x00\xa6\x04\x00\x00|\x04\x00\x00\xa6\x04\x00\x00{\x04\x00\x00\xa5\x04\x00\x00\xaa\x04\x00\x00\xa9\x04\x00\x00\xd4\x04\x00\x00\xa9\x04\x00\x00\xd3\x04\x00\x00\xd4\x04\x00\x00\xa9\x04\x00\x00\x7f\x04\x00\x00~\x04\x00\x00\xa8\x04\x00\x00\xa9\x04\x00\x00~\x04\x00\x00\xa9\x04\x00\x00\xa8\x04\x00\x00\xd2\x04\x00\x00\xd3\x04\x00\x00\xa9\x04\x00\x00\xd2\x04\x00\x00\x80\x04\x00\x00W\x04\x00\x00V\x04\x00\x00\x80\x04\x00\x00\x81\x04\x00\x00W\x04\x00\x00\x81\x04\x00\x00\x80\x04\x00\x00\xab\x04\x00\x00\x80\x04\x00\x00\xaa\x04\x00\x00\xab\x04\x00\x00U\x04\x00\x00\x80\x04\x00\x00V\x04\x00\x00\x7f\x04\x00\x00\x80\x04\x00\x00U\x04\x00\x00\x80\x04\x00\x00\xa9\x04\x00\x00\xaa\x04\x00\x00\xa9\x04\x00\x00\x80\x04\x00\x00\x7f\x04\x00\x00\xfd\x04\x00\x00\xd2\x04\x00\x00\xfc\x04\x00\x00\xfd\x04\x00\x00\xd3\x04\x00\x00\xd2\x04\x00\x00&\x05\x00\x00\xfd\x04\x00\x00\xfc\x04\x00\x00\'\x05\x00\x00\xfd\x04\x00\x00&\x05\x00\x00\xc8\x04\x00\x00\x9e\x04\x00\x00\x9d\x04\x00\x00\xc7\x04\x00\x00\xc8\x04\x00\x00\x9d\x04\x00\x00\xf2\x04\x00\x00\xc8\x04\x00\x00\xf1\x04\x00\x00\xc8\x04\x00\x00\xc7\x04\x00\x00\xf1\x04\x00\x00F\x05\x00\x00\x1d\x05\x00\x00\x1c\x05\x00\x00\x1d\x05\x00\x00F\x05\x00\x00G\x05\x00\x00L\x03\x00\x00!\x03\x00\x00K\x03\x00\x00!\x03\x00\x00L\x03\x00\x00"\x03\x00\x00\x86\x02\x00\x00[\x02\x00\x00\x85\x02\x00\x00\\\x02\x00\x00[\x02\x00\x00\x86\x02\x00\x001\x02\x00\x00[\x02\x00\x002\x02\x00\x00[\x02\x00\x00\\\x02\x00\x002\x02\x00\x00\x84\x02\x00\x00[\x02\x00\x00Z\x02\x00\x00[\x02\x00\x00\x84\x02\x00\x00\x85\x02\x00\x00[\x02\x00\x001\x02\x00\x000\x02\x00\x00[\x02\x00\x000\x02\x00\x00Z\x02\x00\x00\x80\x02\x00\x00\xab\x02\x00\x00\x81\x02\x00\x00\xab\x02\x00\x00\x80\x02\x00\x00\xaa\x02\x00\x00\xaa\x02\x00\x00\x80\x02\x00\x00\xa9\x02\x00\x00\x80\x02\x00\x00\x7f\x02\x00\x00\xa9\x02\x00\x00\xa8\x02\x00\x00\xd1\x02\x00\x00\xd2\x02\x00\x00\xd1\x02\x00\x00\xa8\x02\x00\x00\xa7\x02\x00\x00\xd4\x02\x00\x00\xd3\x02\x00\x00\xfe\x02\x00\x00\xfe\x02\x00\x00\xd3\x02\x00\x00\xfd\x02\x00\x00\xd3\x02\x00\x00\xd4\x02\x00\x00\xaa\x02\x00\x00\xd3\x02\x00\x00\xaa\x02\x00\x00\xa9\x02\x00\x00\xd3\x02\x00\x00\xfc\x02\x00\x00\xfd\x02\x00\x00\xfc\x02\x00\x00\xd3\x02\x00\x00\xd2\x02\x00\x00\xd3\x02\x00\x00\xa8\x02\x00\x00\xd2\x02\x00\x00\xa8\x02\x00\x00\xd3\x02\x00\x00\xa9\x02\x00\x00|\x02\x00\x00Q\x02\x00\x00{\x02\x00\x00Q\x02\x00\x00|\x02\x00\x00R\x02\x00\x00\'\x02\x00\x00Q\x02\x00\x00(\x02\x00\x00(\x02\x00\x00Q\x02\x00\x00R\x02\x00\x00Q\x02\x00\x00z\x02\x00\x00{\x02\x00\x00z\x02\x00\x00Q\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00&\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00\'\x02\x00\x00&\x02\x00\x00T\x02\x00\x00U\x02\x00\x00*\x02\x00\x00U\x02\x00\x00+\x02\x00\x00*\x02\x00\x00\xd5\x01\x00\x00\xd6\x01\x00\x00\xab\x01\x00\x00\xd6\x01\x00\x00\xac\x01\x00\x00\xab\x01\x00\x00\xac\x01\x00\x00\xd6\x01\x00\x00\xad\x01\x00\x00\xd6\x01\x00\x00\xd7\x01\x00\x00\xad\x01\x00\x00\xd8\x02\x00\x00\x03\x03\x00\x00\xd9\x02\x00\x00\x03\x03\x00\x00\xd8\x02\x00\x00\x02\x03\x00\x00,\x03\x00\x00\x03\x03\x00\x00\x02\x03\x00\x00-\x03\x00\x00\x03\x03\x00\x00,\x03\x00\x00\xda\x02\x00\x00\x03\x03\x00\x00\x04\x03\x00\x00\xd9\x02\x00\x00\x03\x03\x00\x00\xda\x02\x00\x00\x03\x03\x00\x00.\x03\x00\x00\x04\x03\x00\x00\x03\x03\x00\x00-\x03\x00\x00.\x03\x00\x00s\x02\x00\x00r\x02\x00\x00\x9d\x02\x00\x00r\x02\x00\x00\x9c\x02\x00\x00\x9d\x02\x00\x00I\x02\x00\x00r\x02\x00\x00s\x02\x00\x00r\x02\x00\x00I\x02\x00\x00H\x02\x00\x00\x9b\x02\x00\x00r\x02\x00\x00q\x02\x00\x00r\x02\x00\x00\x9b\x02\x00\x00\x9c\x02\x00\x00r\x02\x00\x00H\x02\x00\x00G\x02\x00\x00q\x02\x00\x00r\x02\x00\x00G\x02\x00\x00J\x02\x00\x00s\x02\x00\x00t\x02\x00\x00J\x02\x00\x00I\x02\x00\x00s\x02\x00\x00J\x02\x00\x00u\x02\x00\x00K\x02\x00\x00u\x02\x00\x00J\x02\x00\x00t\x02\x00\x00J\x02\x00\x00K\x02\x00\x00!\x02\x00\x00 \x02\x00\x00J\x02\x00\x00!\x02\x00\x00\xf4\x01\x00\x00\x1f\x02\x00\x00\xf5\x01\x00\x00\x1f\x02\x00\x00\xf4\x01\x00\x00\x1e\x02\x00\x00H\x02\x00\x00\x1f\x02\x00\x00\x1e\x02\x00\x00I\x02\x00\x00\x1f\x02\x00\x00H\x02\x00\x00\x1f\x02\x00\x00\xf6\x01\x00\x00\xf5\x01\x00\x00\xf6\x01\x00\x00\x1f\x02\x00\x00 \x02\x00\x00J\x02\x00\x00\x1f\x02\x00\x00I\x02\x00\x00\x1f\x02\x00\x00J\x02\x00\x00 \x02\x00\x00\xa0\x01\x00\x00\xc9\x01\x00\x00\xca\x01\x00\x00\xc9\x01\x00\x00\xa0\x01\x00\x00\x9f\x01\x00\x00\xc9\x01\x00\x00\xf4\x01\x00\x00\xca\x01\x00\x00\xc9\x01\x00\x00\xf3\x01\x00\x00\xf4\x01\x00\x00\xc9\x01\x00\x00\x9e\x01\x00\x00\xc8\x01\x00\x00\x9e\x01\x00\x00\xc9\x01\x00\x00\x9f\x01\x00\x00\xf2\x01\x00\x00\xc9\x01\x00\x00\xc8\x01\x00\x00\xf3\x01\x00\x00\xc9\x01\x00\x00\xf2\x01\x00\x00\x96\x02\x00\x00l\x02\x00\x00k\x02\x00\x00\x95\x02\x00\x00\x96\x02\x00\x00k\x02\x00\x00\xc0\x02\x00\x00\x96\x02\x00\x00\xbf\x02\x00\x00\x96\x02\x00\x00\x95\x02\x00\x00\xbf\x02\x00\x00m\x02\x00\x00\x96\x02\x00\x00\x97\x02\x00\x00\x96\x02\x00\x00m\x02\x00\x00l\x02\x00\x00\x96\x02\x00\x00\xc1\x02\x00\x00\x97\x02\x00\x00\x96\x02\x00\x00\xc0\x02\x00\x00\xc1\x02\x00\x00\xe7\x02\x00\x00\xbe\x02\x00\x00\xbd\x02\x00\x00\xbe\x02\x00\x00\xe7\x02\x00\x00\xe8\x02\x00\x00\xbd\x02\x00\x00\xbe\x02\x00\x00\x93\x02\x00\x00\xbe\x02\x00\x00\x94\x02\x00\x00\x93\x02\x00\x00\xbe\x02\x00\x00\xe9\x02\x00\x00\xbf\x02\x00\x00\xe9\x02\x00\x00\xbe\x02\x00\x00\xe8\x02\x00\x00\x94\x02\x00\x00\xbe\x02\x00\x00\x95\x02\x00\x00\x95\x02\x00\x00\xbe\x02\x00\x00\xbf\x02\x00\x00\x99\x02\x00\x00\xc3\x02\x00\x00\x9a\x02\x00\x00\xc3\x02\x00\x00\xc4\x02\x00\x00\x9a\x02\x00\x00\xc3\x02\x00\x00\xed\x02\x00\x00\xee\x02\x00\x00\xc4\x02\x00\x00\xc3\x02\x00\x00\xee\x02\x00\x00\xc3\x02\x00\x00\x98\x02\x00\x00\xc2\x02\x00\x00\xc3\x02\x00\x00\x99\x02\x00\x00\x98\x02\x00\x00\xec\x02\x00\x00\xc3\x02\x00\x00\xc2\x02\x00\x00\xed\x02\x00\x00\xc3\x02\x00\x00\xec\x02\x00\x00\x15\x03\x00\x00@\x03\x00\x00\x16\x03\x00\x00@\x03\x00\x00\x15\x03\x00\x00?\x03\x00\x00i\x03\x00\x00@\x03\x00\x00?\x03\x00\x00j\x03\x00\x00@\x03\x00\x00i\x03\x00\x00@\x03\x00\x00\x17\x03\x00\x00\x16\x03\x00\x00@\x03\x00\x00A\x03\x00\x00\x17\x03\x00\x00@\x03\x00\x00j\x03\x00\x00k\x03\x00\x00A\x03\x00\x00@\x03\x00\x00k\x03\x00\x00\x94\x03\x00\x00i\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00j\x03\x00\x00i\x03\x00\x00\xbc\x03\x00\x00\xbd\x03\x00\x00\x92\x03\x00\x00\x92\x03\x00\x00\xbd\x03\x00\x00\x93\x03\x00\x00\xbd\x03\x00\x00\x94\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00\xbd\x03\x00\x00\xbe\x03\x00\x00\x95\x03\x00\x00l\x03\x00\x00k\x03\x00\x00\x95\x03\x00\x00\x96\x03\x00\x00l\x03\x00\x00\x96\x03\x00\x00\x95\x03\x00\x00\xc0\x03\x00\x00\x95\x03\x00\x00\xbf\x03\x00\x00\xc0\x03\x00\x00j\x03\x00\x00\x95\x03\x00\x00k\x03\x00\x00\x94\x03\x00\x00\x95\x03\x00\x00j\x03\x00\x00\x95\x03\x00\x00\x94\x03\x00\x00\xbe\x03\x00\x00\xbf\x03\x00\x00\x95\x03\x00\x00\xbe\x03\x00\x00\x19\x03\x00\x00\xee\x02\x00\x00\x18\x03\x00\x00\x19\x03\x00\x00\xef\x02\x00\x00\xee\x02\x00\x00\xef\x02\x00\x00\x19\x03\x00\x00\xf0\x02\x00\x00\xf0\x02\x00\x00\x19\x03\x00\x00\x1a\x03\x00\x00\x98\x03\x00\x00m\x03\x00\x00\x97\x03\x00\x00m\x03\x00\x00\x98\x03\x00\x00n\x03\x00\x00m\x03\x00\x00\x96\x03\x00\x00\x97\x03\x00\x00\x96\x03\x00\x00m\x03\x00\x00l\x03\x00\x00\xeb\x03\x00\x00\xc1\x03\x00\x00\xc0\x03\x00\x00\xea\x03\x00\x00\xeb\x03\x00\x00\xc0\x03\x00\x00\x15\x04\x00\x00\xeb\x03\x00\x00\x14\x04\x00\x00\xeb\x03\x00\x00\xea\x03\x00\x00\x14\x04\x00\x00\xeb\x03\x00\x00\xc2\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\xeb\x03\x00\x00\xec\x03\x00\x00\xeb\x03\x00\x00\x16\x04\x00\x00\xec\x03\x00\x00\x16\x04\x00\x00\xeb\x03\x00\x00\x15\x04\x00\x00?\x04\x00\x00\x15\x04\x00\x00\x14\x04\x00\x00>\x04\x00\x00?\x04\x00\x00\x14\x04\x00\x00i\x04\x00\x00?\x04\x00\x00h\x04\x00\x00?\x04\x00\x00>\x04\x00\x00h\x04\x00\x00\xa6\x00\x00\x00\xcf\x00\x00\x00\xd0\x00\x00\x00\xcf\x00\x00\x00\xa6\x00\x00\x00\xa5\x00\x00\x00\xcf\x00\x00\x00\xfa\x00\x00\x00\xd0\x00\x00\x00\xcf\x00\x00\x00\xf9\x00\x00\x00\xfa\x00\x00\x00\xf8\x00\x00\x00\xcf\x00\x00\x00\xce\x00\x00\x00\xf9\x00\x00\x00\xcf\x00\x00\x00\xf8\x00\x00\x00K\x01\x00\x00!\x01\x00\x00 \x01\x00\x00J\x01\x00\x00K\x01\x00\x00 \x01\x00\x00"\x01\x00\x00K\x01\x00\x00L\x01\x00\x00!\x01\x00\x00K\x01\x00\x00"\x01\x00\x00\xd4\x06\x00\x00\xd5\x06\x00\x00\xaa\x06\x00\x00\xaa\x06\x00\x00\xd5\x06\x00\x00\xab\x06\x00\x00\xd5\x06\x00\x00\xd4\x06\x00\x00\xfe\x06\x00\x00\xff\x06\x00\x00\xd5\x06\x00\x00\xfe\x06\x00\x00\xff\x06\x00\x00(\x07\x00\x00)\x07\x00\x00(\x07\x00\x00\xff\x06\x00\x00\xfe\x06\x00\x00)\x07\x00\x00(\x07\x00\x00S\x07\x00\x00(\x07\x00\x00R\x07\x00\x00S\x07\x00\x00\xfd\x06\x00\x00(\x07\x00\x00\xfe\x06\x00\x00(\x07\x00\x00\xfd\x06\x00\x00\'\x07\x00\x00\xae\x06\x00\x00\xd9\x06\x00\x00\xaf\x06\x00\x00\xd8\x06\x00\x00\xd9\x06\x00\x00\xae\x06\x00\x00\xaa\x07\x00\x00\x80\x07\x00\x00\xa9\x07\x00\x00\x80\x07\x00\x00\x7f\x07\x00\x00\xa9\x07\x00\x00W\x07\x00\x00\x80\x07\x00\x00\x81\x07\x00\x00\x80\x07\x00\x00W\x07\x00\x00V\x07\x00\x00\xd0\x07\x00\x00\xa7\x07\x00\x00\xa6\x07\x00\x00\xa7\x07\x00\x00\xd0\x07\x00\x00\xd1\x07\x00\x00\xa7\x07\x00\x00|\x07\x00\x00\xa6\x07\x00\x00|\x07\x00\x00\xa7\x07\x00\x00}\x07\x00\x00R\x07\x00\x00|\x07\x00\x00S\x07\x00\x00|\x07\x00\x00}\x07\x00\x00S\x07\x00\x00|\x07\x00\x00\xa5\x07\x00\x00\xa6\x07\x00\x00|\x07\x00\x00{\x07\x00\x00\xa5\x07\x00\x00\xa5\x07\x00\x00z\x07\x00\x00\xa4\x07\x00\x00{\x07\x00\x00z\x07\x00\x00\xa5\x07\x00\x00O\x07\x00\x00z\x07\x00\x00P\x07\x00\x00z\x07\x00\x00O\x07\x00\x00y\x07\x00\x00z\x07\x00\x00\xa3\x07\x00\x00\xa4\x07\x00\x00\xa3\x07\x00\x00z\x07\x00\x00y\x07\x00\x00&\x07\x00\x00Q\x07\x00\x00\'\x07\x00\x00Q\x07\x00\x00&\x07\x00\x00P\x07\x00\x00Q\x07\x00\x00z\x07\x00\x00{\x07\x00\x00z\x07\x00\x00Q\x07\x00\x00P\x07\x00\x00(\x07\x00\x00Q\x07\x00\x00R\x07\x00\x00Q\x07\x00\x00(\x07\x00\x00\'\x07\x00\x00Q\x07\x00\x00|\x07\x00\x00R\x07\x00\x00|\x07\x00\x00Q\x07\x00\x00{\x07\x00\x00\x87\x02\x00\x00\xb2\x02\x00\x00\x88\x02\x00\x00\xb2\x02\x00\x00\x87\x02\x00\x00\xb1\x02\x00\x00\xb2\x02\x00\x00\xb1\x02\x00\x00\xdb\x02\x00\x00\xdc\x02\x00\x00\xb2\x02\x00\x00\xdb\x02\x00\x00\xb2\x02\x00\x00\x89\x02\x00\x00\x88\x02\x00\x00\x89\x02\x00\x00\xb2\x02\x00\x00\xb3\x02\x00\x00\xdd\x02\x00\x00\xb2\x02\x00\x00\xdc\x02\x00\x00\xb2\x02\x00\x00\xdd\x02\x00\x00\xb3\x02\x00\x00\xdd\x02\x00\x00\xb4\x02\x00\x00\xb3\x02\x00\x00\xb4\x02\x00\x00\xdd\x02\x00\x00\xde\x02\x00\x00]\x03\x00\x002\x03\x00\x00\\\x03\x00\x003\x03\x00\x002\x03\x00\x00]\x03\x00\x002\x03\x00\x00[\x03\x00\x00\\\x03\x00\x00[\x03\x00\x002\x03\x00\x001\x03\x00\x00?\x01\x00\x00\x14\x01\x00\x00>\x01\x00\x00\x14\x01\x00\x00?\x01\x00\x00\x15\x01\x00\x00\xea\x00\x00\x00\x14\x01\x00\x00\xeb\x00\x00\x00\x14\x01\x00\x00\x15\x01\x00\x00\xeb\x00\x00\x00h\x01\x00\x00=\x01\x00\x00g\x01\x00\x00=\x01\x00\x00h\x01\x00\x00>\x01\x00\x00\x14\x01\x00\x00=\x01\x00\x00>\x01\x00\x00=\x01\x00\x00\x14\x01\x00\x00\x13\x01\x00\x00D\x02\x00\x00m\x02\x00\x00n\x02\x00\x00D\x02\x00\x00C\x02\x00\x00m\x02\x00\x00C\x02\x00\x00D\x02\x00\x00\x19\x02\x00\x00D\x02\x00\x00\x1a\x02\x00\x00\x19\x02\x00\x00o\x02\x00\x00D\x02\x00\x00n\x02\x00\x00E\x02\x00\x00D\x02\x00\x00o\x02\x00\x00D\x02\x00\x00\x1b\x02\x00\x00\x1a\x02\x00\x00D\x02\x00\x00E\x02\x00\x00\x1b\x02\x00\x00\x91\x02\x00\x00g\x02\x00\x00f\x02\x00\x00\x90\x02\x00\x00\x91\x02\x00\x00f\x02\x00\x00\x91\x02\x00\x00h\x02\x00\x00g\x02\x00\x00h\x02\x00\x00\x91\x02\x00\x00\x92\x02\x00\x00\x91\x02\x00\x00\xbc\x02\x00\x00\x92\x02\x00\x00\x91\x02\x00\x00\xbb\x02\x00\x00\xbc\x02\x00\x00\x0f\x03\x00\x009\x03\x00\x00:\x03\x00\x00\x10\x03\x00\x00\x0f\x03\x00\x00:\x03\x00\x00\x0f\x03\x00\x00\x10\x03\x00\x00\xe6\x02\x00\x00\xe5\x02\x00\x00\x0f\x03\x00\x00\xe6\x02\x00\x00\x0b\x02\x00\x005\x02\x00\x00\x0c\x02\x00\x00\x0c\x02\x00\x005\x02\x00\x006\x02\x00\x00_\x02\x00\x005\x02\x00\x00^\x02\x00\x005\x02\x00\x004\x02\x00\x00^\x02\x00\x005\x02\x00\x00\x0b\x02\x00\x00\n\x02\x00\x004\x02\x00\x005\x02\x00\x00\n\x02\x00\x00\t\x03\x00\x002\x03\x00\x003\x03\x00\x002\x03\x00\x00\t\x03\x00\x00\x08\x03\x00\x00\t\x03\x00\x003\x03\x00\x004\x03\x00\x00\n\x03\x00\x00\t\x03\x00\x004\x03\x00\x00\xe6\x01\x00\x00\xe5\x01\x00\x00\x0f\x02\x00\x00\x10\x02\x00\x00\xe6\x01\x00\x00\x0f\x02\x00\x00\xe6\x01\x00\x00\xbb\x01\x00\x00\xe5\x01\x00\x00\xe6\x01\x00\x00\xbc\x01\x00\x00\xbb\x01\x00\x00\xe6\x01\x00\x00\x10\x02\x00\x00\x11\x02\x00\x00\xe7\x01\x00\x00\xe6\x01\x00\x00\x11\x02\x00\x00\xbc\x01\x00\x00\xe6\x01\x00\x00\xbd\x01\x00\x00\xbd\x01\x00\x00\xe6\x01\x00\x00\xe7\x01\x00\x00\xba\x02\x00\x00\x90\x02\x00\x00\x8f\x02\x00\x00\xb9\x02\x00\x00\xba\x02\x00\x00\x8f\x02\x00\x00\xba\x02\x00\x00\xe5\x02\x00\x00\xbb\x02\x00\x00\xe5\x02\x00\x00\xba\x02\x00\x00\xe4\x02\x00\x00\xba\x02\x00\x00\x91\x02\x00\x00\x90\x02\x00\x00\x91\x02\x00\x00\xba\x02\x00\x00\xbb\x02\x00\x00\x8e\x02\x00\x00e\x02\x00\x00d\x02\x00\x00e\x02\x00\x00\x8e\x02\x00\x00\x8f\x02\x00\x00\n\x03\x00\x00\x0b\x03\x00\x00\xe0\x02\x00\x00\xe0\x02\x00\x00\x0b\x03\x00\x00\xe1\x02\x00\x005\x03\x00\x00\x0b\x03\x00\x004\x03\x00\x00\x0b\x03\x00\x00\n\x03\x00\x004\x03\x00\x00^\x03\x00\x003\x03\x00\x00]\x03\x00\x003\x03\x00\x00^\x03\x00\x004\x03\x00\x00^\x03\x00\x00]\x03\x00\x00\x87\x03\x00\x00\x88\x03\x00\x00^\x03\x00\x00\x87\x03\x00\x00\xe3\x02\x00\x00\xba\x02\x00\x00\xb9\x02\x00\x00\xba\x02\x00\x00\xe3\x02\x00\x00\xe4\x02\x00\x00\xbb\x05\x00\x00\xba\x05\x00\x00\xe4\x05\x00\x00\xbb\x05\x00\x00\xe4\x05\x00\x00\xe5\x05\x00\x00\xba\x05\x00\x00\xbb\x05\x00\x00\x90\x05\x00\x00\xbb\x05\x00\x00\x91\x05\x00\x00\x90\x05\x00\x00\xbb\x05\x00\x00\xe6\x05\x00\x00\xbc\x05\x00\x00\xe6\x05\x00\x00\xbb\x05\x00\x00\xe5\x05\x00\x00\x92\x05\x00\x00\xbb\x05\x00\x00\xbc\x05\x00\x00\xbb\x05\x00\x00\x92\x05\x00\x00\x91\x05\x00\x00g\x05\x00\x00f\x05\x00\x00\x91\x05\x00\x00\x91\x05\x00\x00f\x05\x00\x00\x90\x05\x00\x00f\x05\x00\x00\x8f\x05\x00\x00\x90\x05\x00\x00f\x05\x00\x00e\x05\x00\x00\x8f\x05\x00\x00\xe9\x04\x00\x00\xe8\x04\x00\x00\x12\x05\x00\x00\x13\x05\x00\x00\xe9\x04\x00\x00\x12\x05\x00\x00\xe9\x04\x00\x00\xbe\x04\x00\x00\xe8\x04\x00\x00\xbe\x04\x00\x00\xe9\x04\x00\x00\xbf\x04\x00\x00\xea\x04\x00\x00\xe9\x04\x00\x00\x14\x05\x00\x00\xe9\x04\x00\x00\x13\x05\x00\x00\x14\x05\x00\x00\xbf\x04\x00\x00\xe9\x04\x00\x00\xc0\x04\x00\x00\xc0\x04\x00\x00\xe9\x04\x00\x00\xea\x04\x00\x00\xf1\x02\x00\x00\xc6\x02\x00\x00\xf0\x02\x00\x00\xc6\x02\x00\x00\xf1\x02\x00\x00\xc7\x02\x00\x00\x1b\x03\x00\x00\xf1\x02\x00\x00\x1a\x03\x00\x00\xf1\x02\x00\x00\xf0\x02\x00\x00\x1a\x03\x00\x00\xc7\x02\x00\x00\xf1\x02\x00\x00\xc8\x02\x00\x00\xf1\x02\x00\x00\xf2\x02\x00\x00\xc8\x02\x00\x00\xf1\x02\x00\x00\x1c\x03\x00\x00\xf2\x02\x00\x00\xf1\x02\x00\x00\x1b\x03\x00\x00\x1c\x03\x00\x00\x91\x04\x00\x00f\x04\x00\x00\x90\x04\x00\x00g\x04\x00\x00f\x04\x00\x00\x91\x04\x00\x00\x11\x04\x00\x00;\x04\x00\x00\x12\x04\x00\x00;\x04\x00\x00<\x04\x00\x00\x12\x04\x00\x00\xe5\x03\x00\x00\x10\x04\x00\x00\xe6\x03\x00\x00\x0f\x04\x00\x00\x10\x04\x00\x00\xe5\x03\x00\x00=\x04\x00\x00f\x04\x00\x00g\x04\x00\x00f\x04\x00\x00=\x04\x00\x00<\x04\x00\x00<\x04\x00\x00=\x04\x00\x00\x12\x04\x00\x00=\x04\x00\x00\x13\x04\x00\x00\x12\x04\x00\x00=\x04\x00\x00g\x04\x00\x00h\x04\x00\x00>\x04\x00\x00=\x04\x00\x00h\x04\x00\x00=\x04\x00\x00>\x04\x00\x00\x14\x04\x00\x00\x13\x04\x00\x00=\x04\x00\x00\x14\x04\x00\x00\xe9\x03\x00\x00\xbf\x03\x00\x00\xbe\x03\x00\x00\xe8\x03\x00\x00\xe9\x03\x00\x00\xbe\x03\x00\x00\x13\x04\x00\x00\xe9\x03\x00\x00\x12\x04\x00\x00\xe9\x03\x00\x00\xe8\x03\x00\x00\x12\x04\x00\x00\xbf\x03\x00\x00\xe9\x03\x00\x00\xc0\x03\x00\x00\xe9\x03\x00\x00\xea\x03\x00\x00\xc0\x03\x00\x00\xea\x03\x00\x00\xe9\x03\x00\x00\x14\x04\x00\x00\xe9\x03\x00\x00\x13\x04\x00\x00\x14\x04\x00\x00*\x08\x00\x00\xff\x07\x00\x00)\x08\x00\x00\xff\x07\x00\x00*\x08\x00\x00\x00\x08\x00\x00\xff\x07\x00\x00(\x08\x00\x00)\x08\x00\x00(\x08\x00\x00\xff\x07\x00\x00\xfe\x07\x00\x00]\x07\x00\x00\x88\x07\x00\x00^\x07\x00\x00\x88\x07\x00\x00]\x07\x00\x00\x87\x07\x00\x003\x07\x00\x00]\x07\x00\x004\x07\x00\x00]\x07\x00\x00^\x07\x00\x004\x07\x00\x00\x86\x07\x00\x00]\x07\x00\x00\\\x07\x00\x00]\x07\x00\x00\x86\x07\x00\x00\x87\x07\x00\x00]\x07\x00\x003\x07\x00\x002\x07\x00\x00\\\x07\x00\x00]\x07\x00\x002\x07\x00\x00`\x07\x00\x00\x89\x07\x00\x00\x8a\x07\x00\x00`\x07\x00\x00_\x07\x00\x00\x89\x07\x00\x00`\x07\x00\x00\x8b\x07\x00\x00a\x07\x00\x00\x8b\x07\x00\x00`\x07\x00\x00\x8a\x07\x00\x00`\x07\x00\x00a\x07\x00\x007\x07\x00\x006\x07\x00\x00`\x07\x00\x007\x07\x00\x00_\x07\x00\x005\x07\x00\x00^\x07\x00\x00^\x07\x00\x005\x07\x00\x004\x07\x00\x00`\x07\x00\x005\x07\x00\x00_\x07\x00\x005\x07\x00\x00`\x07\x00\x006\x07\x00\x00\r\x07\x00\x006\x07\x00\x007\x07\x00\x00\r\x07\x00\x00\x0c\x07\x00\x006\x07\x00\x00`\x06\x00\x00\x89\x06\x00\x00\x8a\x06\x00\x00\x89\x06\x00\x00`\x06\x00\x00_\x06\x00\x005\x06\x00\x00`\x06\x00\x006\x06\x00\x00`\x06\x00\x005\x06\x00\x00_\x06\x00\x00\xb5\x06\x00\x00\x8b\x06\x00\x00\xb4\x06\x00\x00\xb4\x06\x00\x00\x8b\x06\x00\x00\x8a\x06\x00\x00\x8b\x06\x00\x00`\x06\x00\x00\x8a\x06\x00\x00`\x06\x00\x00\x8b\x06\x00\x00a\x06\x00\x00\x0c\x06\x00\x007\x06\x00\x00\r\x06\x00\x007\x06\x00\x00\x0c\x06\x00\x006\x06\x00\x00`\x06\x00\x007\x06\x00\x006\x06\x00\x007\x06\x00\x00`\x06\x00\x00a\x06\x00\x00,\x08\x00\x00\x03\x08\x00\x00\x02\x08\x00\x00-\x08\x00\x00\x03\x08\x00\x00,\x08\x00\x00\x03\x08\x00\x00\xd8\x07\x00\x00\x02\x08\x00\x00\x03\x08\x00\x00\xd9\x07\x00\x00\xd8\x07\x00\x00\xda\x07\x00\x00\xb1\x07\x00\x00\xb0\x07\x00\x00\xda\x07\x00\x00\xdb\x07\x00\x00\xb1\x07\x00\x00\xaf\x07\x00\x00\xda\x07\x00\x00\xb0\x07\x00\x00\xd9\x07\x00\x00\xda\x07\x00\x00\xaf\x07\x00\x00\xb2\x07\x00\x00\x87\x07\x00\x00\xb1\x07\x00\x00\xb2\x07\x00\x00\x88\x07\x00\x00\x87\x07\x00\x00\xdb\x07\x00\x00\xb2\x07\x00\x00\xb1\x07\x00\x00\xdc\x07\x00\x00\xb2\x07\x00\x00\xdb\x07\x00\x00\x89\x07\x00\x00\xb2\x07\x00\x00\xb3\x07\x00\x00\x88\x07\x00\x00\xb2\x07\x00\x00\x89\x07\x00\x00\xb2\x07\x00\x00\xdd\x07\x00\x00\xb3\x07\x00\x00\xb2\x07\x00\x00\xdc\x07\x00\x00\xdd\x07\x00\x00e\x05\x00\x00;\x05\x00\x00d\x05\x00\x00;\x05\x00\x00:\x05\x00\x00d\x05\x00\x00;\x05\x00\x00\x11\x05\x00\x00\x10\x05\x00\x00;\x05\x00\x00\x10\x05\x00\x00:\x05\x00\x00\xd6\x05\x00\x00\xad\x05\x00\x00\xac\x05\x00\x00\xad\x05\x00\x00\xd6\x05\x00\x00\xd7\x05\x00\x00\xad\x05\x00\x00\x82\x05\x00\x00\xac\x05\x00\x00\xad\x05\x00\x00\x83\x05\x00\x00\x82\x05\x00\x00\xd8\x05\x00\x00\xad\x05\x00\x00\xd7\x05\x00\x00\xad\x05\x00\x00\xd8\x05\x00\x00\xae\x05\x00\x00\xb3\x06\x00\x00\xdc\x06\x00\x00\xdd\x06\x00\x00\xb3\x06\x00\x00\xb2\x06\x00\x00\xdc\x06\x00\x00\xb3\x06\x00\x00\x88\x06\x00\x00\xb2\x06\x00\x00\x88\x06\x00\x00\xb3\x06\x00\x00\x89\x06\x00\x00\xb3\x06\x00\x00\xde\x06\x00\x00\xb4\x06\x00\x00\xde\x06\x00\x00\xb3\x06\x00\x00\xdd\x06\x00\x00\x89\x06\x00\x00\xb3\x06\x00\x00\x8a\x06\x00\x00\xb3\x06\x00\x00\xb4\x06\x00\x00\x8a\x06\x00\x00\xdb\x06\x00\x00\xb2\x06\x00\x00\xb1\x06\x00\x00\xb2\x06\x00\x00\xdb\x06\x00\x00\xdc\x06\x00\x00\xdc\x06\x00\x00\xdb\x06\x00\x00\x06\x07\x00\x00\xdb\x06\x00\x00\x05\x07\x00\x00\x06\x07\x00\x00\x84\x07\x00\x00\xad\x07\x00\x00\xae\x07\x00\x00\x84\x07\x00\x00\x83\x07\x00\x00\xad\x07\x00\x00\x84\x07\x00\x00\xaf\x07\x00\x00\x85\x07\x00\x00\xaf\x07\x00\x00\x84\x07\x00\x00\xae\x07\x00\x00\x84\x07\x00\x00\x85\x07\x00\x00[\x07\x00\x00Z\x07\x00\x00\x84\x07\x00\x00[\x07\x00\x000\x07\x00\x00Y\x07\x00\x00Z\x07\x00\x00Y\x07\x00\x000\x07\x00\x00/\x07\x00\x00\x84\x07\x00\x00Y\x07\x00\x00\x83\x07\x00\x00Y\x07\x00\x00\x84\x07\x00\x00Z\x07\x00\x00Y\x07\x00\x00X\x07\x00\x00\x82\x07\x00\x00\x83\x07\x00\x00Y\x07\x00\x00\x82\x07\x00\x001\x06\x00\x00\x06\x06\x00\x000\x06\x00\x00\x06\x06\x00\x001\x06\x00\x00\x07\x06\x00\x00\x04\x06\x00\x00\xd9\x05\x00\x00\x03\x06\x00\x00\xda\x05\x00\x00\xd9\x05\x00\x00\x04\x06\x00\x00\xd9\x05\x00\x00\xd8\x05\x00\x00\x02\x06\x00\x00\xd9\x05\x00\x00\x02\x06\x00\x00\x03\x06\x00\x00/\x06\x00\x00Z\x06\x00\x000\x06\x00\x00/\x06\x00\x00Y\x06\x00\x00Z\x06\x00\x00Z\x06\x00\x00\x83\x06\x00\x00\x84\x06\x00\x00Y\x06\x00\x00\x83\x06\x00\x00Z\x06\x00\x00\x83\x06\x00\x00\xae\x06\x00\x00\x84\x06\x00\x00\x83\x06\x00\x00\xad\x06\x00\x00\xae\x06\x00\x00\x83\x06\x00\x00\xac\x06\x00\x00\xad\x06\x00\x00\xac\x06\x00\x00\x83\x06\x00\x00\x82\x06\x00\x00,\x06\x00\x00W\x06\x00\x00-\x06\x00\x00W\x06\x00\x00,\x06\x00\x00V\x06\x00\x00\x02\x06\x00\x00,\x06\x00\x00\x03\x06\x00\x00,\x06\x00\x00-\x06\x00\x00\x03\x06\x00\x00\xdf\x05\x00\x00\xde\x05\x00\x00\t\x06\x00\x00\xde\x05\x00\x00\x08\x06\x00\x00\t\x06\x00\x00\xb4\x05\x00\x00\xde\x05\x00\x00\xb5\x05\x00\x00\xde\x05\x00\x00\xdf\x05\x00\x00\xb5\x05\x00\x00\x07\x06\x00\x00\xde\x05\x00\x00\xdd\x05\x00\x00\x08\x06\x00\x00\xde\x05\x00\x00\x07\x06\x00\x00\xde\x05\x00\x00\xb4\x05\x00\x00\xb3\x05\x00\x00\xde\x05\x00\x00\xb3\x05\x00\x00\xdd\x05\x00\x00a\x05\x00\x00\x8c\x05\x00\x00b\x05\x00\x00\x8c\x05\x00\x00a\x05\x00\x00\x8b\x05\x00\x00\x8c\x05\x00\x00\x8b\x05\x00\x00\xb5\x05\x00\x00\xb6\x05\x00\x00\x8c\x05\x00\x00\xb5\x05\x00\x002\x06\x00\x003\x06\x00\x00\t\x06\x00\x00\x08\x06\x00\x002\x06\x00\x00\t\x06\x00\x002\x06\x00\x00\\\x06\x00\x00]\x06\x00\x003\x06\x00\x002\x06\x00\x00]\x06\x00\x001\x06\x00\x002\x06\x00\x00\x07\x06\x00\x002\x06\x00\x00\x08\x06\x00\x00\x07\x06\x00\x002\x06\x00\x001\x06\x00\x00[\x06\x00\x00\\\x06\x00\x002\x06\x00\x00[\x06\x00\x00^\x06\x00\x005\x06\x00\x004\x06\x00\x005\x06\x00\x00^\x06\x00\x00_\x06\x00\x00^\x06\x00\x00\x89\x06\x00\x00_\x06\x00\x00^\x06\x00\x00\x88\x06\x00\x00\x89\x06\x00\x003\x06\x00\x00^\x06\x00\x004\x06\x00\x00^\x06\x00\x003\x06\x00\x00]\x06\x00\x00^\x06\x00\x00]\x06\x00\x00\x87\x06\x00\x00\x88\x06\x00\x00^\x06\x00\x00\x87\x06\x00\x00\xf2\x06\x00\x00\x1d\x07\x00\x00\xf3\x06\x00\x00\x1d\x07\x00\x00\xf2\x06\x00\x00\x1c\x07\x00\x00\xa2\x07\x00\x00\xcb\x07\x00\x00\xcc\x07\x00\x00\xcb\x07\x00\x00\xa2\x07\x00\x00\xa1\x07\x00\x00\xa2\x07\x00\x00\xcc\x07\x00\x00\xcd\x07\x00\x00\xa3\x07\x00\x00\xa2\x07\x00\x00\xcd\x07\x00\x00\xce\x06\x00\x00\xf7\x06\x00\x00\xf8\x06\x00\x00\xcd\x06\x00\x00\xf7\x06\x00\x00\xce\x06\x00\x00v\x07\x00\x00K\x07\x00\x00u\x07\x00\x00K\x07\x00\x00v\x07\x00\x00L\x07\x00\x00$\x06\x00\x00M\x06\x00\x00N\x06\x00\x00M\x06\x00\x00$\x06\x00\x00#\x06\x00\x00M\x06\x00\x00#\x06\x00\x00"\x06\x00\x00L\x06\x00\x00M\x06\x00\x00"\x06\x00\x00K\x06\x00\x00u\x06\x00\x00L\x06\x00\x00L\x06\x00\x00u\x06\x00\x00v\x06\x00\x00t\x06\x00\x00u\x06\x00\x00J\x06\x00\x00u\x06\x00\x00K\x06\x00\x00J\x06\x00\x00\x9b\x07\x00\x00\xc4\x07\x00\x00\xc5\x07\x00\x00\xc4\x07\x00\x00\x9b\x07\x00\x00\x9a\x07\x00\x00\xea\x06\x00\x00\xc1\x06\x00\x00\xc0\x06\x00\x00\xc1\x06\x00\x00\xea\x06\x00\x00\xeb\x06\x00\x00\x15\x07\x00\x00\xea\x06\x00\x00\x14\x07\x00\x00\xea\x06\x00\x00\x15\x07\x00\x00\xeb\x06\x00\x00\x96\x06\x00\x00\xbf\x06\x00\x00\xc0\x06\x00\x00\xbf\x06\x00\x00\x96\x06\x00\x00\x95\x06\x00\x00\xbf\x06\x00\x00\xea\x06\x00\x00\xc0\x06\x00\x00\xea\x06\x00\x00\xbf\x06\x00\x00\xe9\x06\x00\x00\x94\x06\x00\x00\xbf\x06\x00\x00\x95\x06\x00\x00\xbe\x06\x00\x00\xbf\x06\x00\x00\x94\x06\x00\x00\x13\x07\x00\x00=\x07\x00\x00>\x07\x00\x00\x14\x07\x00\x00\x13\x07\x00\x00>\x07\x00\x00\xea\x06\x00\x00\x13\x07\x00\x00\x14\x07\x00\x00\x13\x07\x00\x00\xea\x06\x00\x00\xe9\x06\x00\x00\x11\x07\x00\x00\xe6\x06\x00\x00\x10\x07\x00\x00\xe6\x06\x00\x00\x11\x07\x00\x00\xe7\x06\x00\x00:\x07\x00\x00\x11\x07\x00\x00\x10\x07\x00\x00;\x07\x00\x00\x11\x07\x00\x00:\x07\x00\x00\x81\x06\x00\x00\xac\x06\x00\x00\x82\x06\x00\x00\xac\x06\x00\x00\x81\x06\x00\x00\xab\x06\x00\x00\x81\x06\x00\x00\x80\x06\x00\x00\xaa\x06\x00\x00\x81\x06\x00\x00\xaa\x06\x00\x00\xab\x06\x00\x00\x80\x06\x00\x00\x81\x06\x00\x00V\x06\x00\x00\x81\x06\x00\x00W\x06\x00\x00V\x06\x00\x00X\x06\x00\x00\x83\x06\x00\x00Y\x06\x00\x00\x83\x06\x00\x00X\x06\x00\x00\x82\x06\x00\x00X\x06\x00\x00\x81\x06\x00\x00\x82\x06\x00\x00\x81\x06\x00\x00X\x06\x00\x00W\x06\x00\x00\x14\x03\x00\x00>\x03\x00\x00\x15\x03\x00\x00\x15\x03\x00\x00>\x03\x00\x00?\x03\x00\x00>\x03\x00\x00h\x03\x00\x00i\x03\x00\x00>\x03\x00\x00i\x03\x00\x00?\x03\x00\x00=\x03\x00\x00>\x03\x00\x00\x13\x03\x00\x00>\x03\x00\x00\x14\x03\x00\x00\x13\x03\x00\x00>\x03\x00\x00=\x03\x00\x00g\x03\x00\x00h\x03\x00\x00>\x03\x00\x00g\x03\x00\x00c\x04\x00\x00\x8e\x04\x00\x00d\x04\x00\x00\x8e\x04\x00\x00c\x04\x00\x00\x8d\x04\x00\x00\xb7\x04\x00\x00\x8e\x04\x00\x00\x8d\x04\x00\x00\xb8\x04\x00\x00\x8e\x04\x00\x00\xb7\x04\x00\x00\x8f\x04\x00\x00\x8e\x04\x00\x00\xb9\x04\x00\x00\x8e\x04\x00\x00\xb8\x04\x00\x00\xb9\x04\x00\x00\x0e\x04\x00\x009\x04\x00\x00\x0f\x04\x00\x008\x04\x00\x009\x04\x00\x00\x0e\x04\x00\x00b\x04\x00\x00\x8b\x04\x00\x00\x8c\x04\x00\x00\x8b\x04\x00\x00b\x04\x00\x00a\x04\x00\x00b\x04\x00\x007\x04\x00\x00a\x04\x00\x007\x04\x00\x00b\x04\x00\x008\x04\x00\x00\x8d\x04\x00\x00b\x04\x00\x00\x8c\x04\x00\x00c\x04\x00\x00b\x04\x00\x00\x8d\x04\x00\x00b\x04\x00\x009\x04\x00\x008\x04\x00\x009\x04\x00\x00b\x04\x00\x00c\x04\x00\x00\\\x05\x00\x003\x05\x00\x002\x05\x00\x00\\\x05\x00\x00]\x05\x00\x003\x05\x00\x00]\x05\x00\x00\\\x05\x00\x00\x87\x05\x00\x00\\\x05\x00\x00\x86\x05\x00\x00\x87\x05\x00\x001\x05\x00\x00\\\x05\x00\x002\x05\x00\x00\\\x05\x00\x001\x05\x00\x00[\x05\x00\x00\x86\x05\x00\x00\\\x05\x00\x00\x85\x05\x00\x00\\\x05\x00\x00[\x05\x00\x00\x85\x05\x00\x00\xb0\x05\x00\x00\xda\x05\x00\x00\xdb\x05\x00\x00\xb0\x05\x00\x00\xdb\x05\x00\x00\xb1\x05\x00\x00\xb0\x05\x00\x00\xb1\x05\x00\x00\x87\x05\x00\x00\x86\x05\x00\x00\xb0\x05\x00\x00\x87\x05\x00\x00Z\x05\x00\x00\x84\x05\x00\x00[\x05\x00\x00[\x05\x00\x00\x84\x05\x00\x00\x85\x05\x00\x00\xad\x05\x00\x00\x84\x05\x00\x00\x83\x05\x00\x00\x84\x05\x00\x00\xad\x05\x00\x00\xae\x05\x00\x00\x83\x05\x00\x00\x84\x05\x00\x00Y\x05\x00\x00\x84\x05\x00\x00Z\x05\x00\x00Y\x05\x00\x00\xda\x04\x00\x00\xd9\x04\x00\x00\x03\x05\x00\x00\x04\x05\x00\x00\xda\x04\x00\x00\x03\x05\x00\x00\xda\x04\x00\x00\x04\x05\x00\x00\x05\x05\x00\x00\xdb\x04\x00\x00\xda\x04\x00\x00\x05\x05\x00\x00\x8b\x04\x00\x00`\x04\x00\x00\x8a\x04\x00\x00`\x04\x00\x00\x8b\x04\x00\x00a\x04\x00\x00\xb1\x04\x00\x00\xdb\x04\x00\x00\xdc\x04\x00\x00\xb2\x04\x00\x00\xb1\x04\x00\x00\xdc\x04\x00\x00c\x03\x00\x00\x8c\x03\x00\x00\x8d\x03\x00\x00\x8c\x03\x00\x00c\x03\x00\x00b\x03\x00\x00\x8c\x03\x00\x00a\x03\x00\x00\x8b\x03\x00\x00a\x03\x00\x00\x8c\x03\x00\x00b\x03\x00\x00\xe3\x03\x00\x00\r\x04\x00\x00\xe4\x03\x00\x00\r\x04\x00\x00\x0e\x04\x00\x00\xe4\x03\x00\x00\r\x04\x00\x008\x04\x00\x00\x0e\x04\x00\x00\r\x04\x00\x007\x04\x00\x008\x04\x00\x00\x85\x04\x00\x00Z\x04\x00\x00\x84\x04\x00\x00[\x04\x00\x00Z\x04\x00\x00\x85\x04\x00\x00Z\x04\x00\x00[\x04\x00\x001\x04\x00\x000\x04\x00\x00Z\x04\x00\x001\x04\x00\x00\x83\x04\x00\x00Y\x04\x00\x00\x82\x04\x00\x00Y\x04\x00\x00X\x04\x00\x00\x82\x04\x00\x00X\x04\x00\x00Y\x04\x00\x00.\x04\x00\x00Y\x04\x00\x00/\x04\x00\x00.\x04\x00\x00Y\x04\x00\x00\x83\x04\x00\x00\x84\x04\x00\x00Z\x04\x00\x00Y\x04\x00\x00\x84\x04\x00\x00Y\x04\x00\x00Z\x04\x00\x000\x04\x00\x00/\x04\x00\x00Y\x04\x00\x000\x04\x00\x00\xdc\x03\x00\x00\x06\x04\x00\x00\xdd\x03\x00\x00\x06\x04\x00\x00\x07\x04\x00\x00\xdd\x03\x00\x00\x07\x04\x00\x00\x06\x04\x00\x001\x04\x00\x00\x06\x04\x00\x000\x04\x00\x001\x04\x00\x00\xdb\x03\x00\x00\x06\x04\x00\x00\xdc\x03\x00\x00\x06\x04\x00\x00\xdb\x03\x00\x00\x05\x04\x00\x00/\x04\x00\x00\x06\x04\x00\x00\x05\x04\x00\x00\x06\x04\x00\x00/\x04\x00\x000\x04\x00\x00\xe4\x04\x00\x00\xba\x04\x00\x00\xb9\x04\x00\x00\xe3\x04\x00\x00\xe4\x04\x00\x00\xb9\x04\x00\x00\x0e\x05\x00\x00\xe4\x04\x00\x00\r\x05\x00\x00\xe4\x04\x00\x00\xe3\x04\x00\x00\r\x05\x00\x00\xba\x04\x00\x00\xe4\x04\x00\x00\xbb\x04\x00\x00\xe4\x04\x00\x00\xe5\x04\x00\x00\xbb\x04\x00\x00\xe5\x04\x00\x00\xe4\x04\x00\x00\x0f\x05\x00\x00\xe4\x04\x00\x00\x0e\x05\x00\x00\x0f\x05\x00\x00\xc8\x07\x00\x00\xf2\x07\x00\x00\xf3\x07\x00\x00\xc9\x07\x00\x00\xc8\x07\x00\x00\xf3\x07\x00\x00\xc8\x07\x00\x00\xc9\x07\x00\x00\x9f\x07\x00\x00\x9e\x07\x00\x00\xc8\x07\x00\x00\x9f\x07\x00\x00\xa1\x06\x00\x00\xa0\x06\x00\x00\xcb\x06\x00\x00\xa0\x06\x00\x00\xca\x06\x00\x00\xcb\x06\x00\x00\x9c\x05\x00\x00q\x05\x00\x00\x9b\x05\x00\x00q\x05\x00\x00\x9c\x05\x00\x00r\x05\x00\x00\xc6\x05\x00\x00\x9c\x05\x00\x00\xc5\x05\x00\x00\x9c\x05\x00\x00\x9b\x05\x00\x00\xc5\x05\x00\x00\x9c\x05\x00\x00s\x05\x00\x00r\x05\x00\x00s\x05\x00\x00\x9c\x05\x00\x00\x9d\x05\x00\x00\x9c\x05\x00\x00\xc6\x05\x00\x00\xc7\x05\x00\x00\x9c\x05\x00\x00\xc7\x05\x00\x00\x9d\x05\x00\x00n\x06\x00\x00D\x06\x00\x00m\x06\x00\x00D\x06\x00\x00C\x06\x00\x00m\x06\x00\x00D\x06\x00\x00\x1a\x06\x00\x00\x19\x06\x00\x00C\x06\x00\x00D\x06\x00\x00\x19\x06\x00\x00D\x06\x00\x00n\x06\x00\x00o\x06\x00\x00D\x06\x00\x00o\x06\x00\x00E\x06\x00\x00\x1b\x06\x00\x00D\x06\x00\x00E\x06\x00\x00\x1a\x06\x00\x00D\x06\x00\x00\x1b\x06\x00\x00\xef\x05\x00\x00\xee\x05\x00\x00\x19\x06\x00\x00\xee\x05\x00\x00\x18\x06\x00\x00\x19\x06\x00\x00\xee\x05\x00\x00\xef\x05\x00\x00\xc5\x05\x00\x00\xc4\x05\x00\x00\xee\x05\x00\x00\xc5\x05\x00\x00\xee\x05\x00\x00\xed\x05\x00\x00\x17\x06\x00\x00\x18\x06\x00\x00\xee\x05\x00\x00\x17\x06\x00\x00\xed\x05\x00\x00\xee\x05\x00\x00\xc3\x05\x00\x00\xee\x05\x00\x00\xc4\x05\x00\x00\xc3\x05\x00\x00\xc2\x05\x00\x00\xec\x05\x00\x00\xed\x05\x00\x00\xc2\x05\x00\x00\xed\x05\x00\x00\xc3\x05\x00\x00\xc2\x05\x00\x00\xc1\x05\x00\x00\xeb\x05\x00\x00\xec\x05\x00\x00\xc2\x05\x00\x00\xeb\x05\x00\x00\xc1\x05\x00\x00\xc2\x05\x00\x00\x97\x05\x00\x00\xc2\x05\x00\x00\x98\x05\x00\x00\x97\x05\x00\x00\x99\x05\x00\x00\xc4\x05\x00\x00\x9a\x05\x00\x00\xc4\x05\x00\x00\x99\x05\x00\x00\xc3\x05\x00\x00\x99\x05\x00\x00\xc2\x05\x00\x00\xc3\x05\x00\x00\xc2\x05\x00\x00\x99\x05\x00\x00\x98\x05\x00\x00\xe4\x00\x00\x00\xb9\x00\x00\x00\xe3\x00\x00\x00\xba\x00\x00\x00\xb9\x00\x00\x00\xe4\x00\x00\x00\xb9\x00\x00\x00\x90\x00\x00\x00\x8f\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\x90\x00\x00\x00\xb9\x00\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\xe2\x00\x00\x00\x8e\x00\x00\x00\xb9\x00\x00\x00\x8f\x00\x00\x00\xb8\x00\x00\x00\xb9\x00\x00\x00\x8e\x00\x00\x00\xbb\x00\x00\x00\xe4\x00\x00\x00\xe5\x00\x00\x00\xbb\x00\x00\x00\xba\x00\x00\x00\xe4\x00\x00\x00\xbb\x00\x00\x00\x91\x00\x00\x00\x90\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\x90\x00\x00\x00\xe6\x00\x00\x00\xbb\x00\x00\x00\xe5\x00\x00\x00\xbb\x00\x00\x00\xe6\x00\x00\x00\xbc\x00\x00\x00\xbb\x00\x00\x00\x92\x00\x00\x00\x91\x00\x00\x00\x92\x00\x00\x00\xbb\x00\x00\x00\xbc\x00\x00\x00;\x01\x00\x00<\x01\x00\x00\x11\x01\x00\x00<\x01\x00\x00\x12\x01\x00\x00\x11\x01\x00\x00e\x01\x00\x00<\x01\x00\x00;\x01\x00\x00f\x01\x00\x00<\x01\x00\x00e\x01\x00\x00<\x01\x00\x00=\x01\x00\x00\x13\x01\x00\x00<\x01\x00\x00\x13\x01\x00\x00\x12\x01\x00\x00<\x01\x00\x00f\x01\x00\x00g\x01\x00\x00=\x01\x00\x00<\x01\x00\x00g\x01\x00\x00\xbd\x00\x00\x00\xe7\x00\x00\x00\xe8\x00\x00\x00\xbd\x00\x00\x00\xe8\x00\x00\x00\xbe\x00\x00\x00\xe7\x00\x00\x00\xbd\x00\x00\x00\xe6\x00\x00\x00\xe6\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\x12\x01\x00\x00\x13\x01\x00\x00\xe9\x00\x00\x00\x12\x01\x00\x00\xe8\x00\x00\x00\xe9\x00\x00\x00\xbe\x00\x00\x00\xe9\x00\x00\x00\xbf\x00\x00\x00\xbe\x00\x00\x00\xe9\x00\x00\x00\x14\x01\x00\x00\xea\x00\x00\x00\x14\x01\x00\x00\xe9\x00\x00\x00\x13\x01\x00\x00\xe9\x00\x00\x00\xea\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xe9\x00\x00\x00\xc0\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\x93\x00\x00\x00\xbc\x00\x00\x00I\x00\x00\x00J\x00\x00\x00\x1f\x00\x00\x00J\x00\x00\x00 \x00\x00\x00\x1f\x00\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\xc9\x00\x00\x00\xc9\x00\x00\x00\xf4\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xf4\x00\x00\x00\x1f\x01\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\x1e\x01\x00\x00\x1f\x01\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00H\x01\x00\x00\x1d\x01\x00\x00G\x01\x00\x00H\x01\x00\x00\x1d\x01\x00\x00\xf4\x00\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\x1d\x01\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00\x1c\x01\x00\x00F\x01\x00\x00G\x01\x00\x00\x1d\x01\x00\x00F\x01\x00\x00\x1d\x01\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\x1c\x01\x00\x00\x1d\x01\x00\x00\xf2\x00\x00\x00s\x00\x00\x00J\x00\x00\x00I\x00\x00\x00J\x00\x00\x00s\x00\x00\x00t\x00\x00\x00s\x00\x00\x00\x9e\x00\x00\x00t\x00\x00\x00s\x00\x00\x00\x9d\x00\x00\x00\x9e\x00\x00\x00s\x00\x00\x00I\x00\x00\x00H\x00\x00\x00r\x00\x00\x00s\x00\x00\x00H\x00\x00\x00s\x00\x00\x00r\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00s\x00\x00\x00\x9c\x00\x00\x00\xc8\x00\x00\x00\xf1\x00\x00\x00\xf2\x00\x00\x00\xf1\x00\x00\x00\xc8\x00\x00\x00\xc7\x00\x00\x00\x1c\x01\x00\x00\xf1\x00\x00\x00\x1b\x01\x00\x00\xf1\x00\x00\x00\x1c\x01\x00\x00\xf2\x00\x00\x00\x9d\x00\x00\x00\xc6\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00\xc6\x00\x00\x00\xf1\x00\x00\x00\xc7\x00\x00\x00\xf1\x00\x00\x00\xc6\x00\x00\x00\xf0\x00\x00\x00\x1a\x01\x00\x00E\x01\x00\x00\x1b\x01\x00\x00E\x01\x00\x00\x1a\x01\x00\x00D\x01\x00\x00\xf1\x00\x00\x00\x1a\x01\x00\x00\x1b\x01\x00\x00\x1a\x01\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\xc0\x01\x00\x00\x95\x01\x00\x00\xbf\x01\x00\x00\x95\x01\x00\x00\xc0\x01\x00\x00\x96\x01\x00\x00l\x01\x00\x00\x95\x01\x00\x00\x96\x01\x00\x00k\x01\x00\x00\x95\x01\x00\x00l\x01\x00\x00\x95\x01\x00\x00\x94\x01\x00\x00\xbe\x01\x00\x00\xbf\x01\x00\x00\x95\x01\x00\x00\xbe\x01\x00\x00\x95\x01\x00\x00j\x01\x00\x00\x94\x01\x00\x00j\x01\x00\x00\x95\x01\x00\x00k\x01\x00\x00@\x01\x00\x00A\x01\x00\x00\x16\x01\x00\x00A\x01\x00\x00\x17\x01\x00\x00\x16\x01\x00\x00j\x01\x00\x00A\x01\x00\x00@\x01\x00\x00A\x01\x00\x00j\x01\x00\x00k\x01\x00\x00\x17\x01\x00\x00A\x01\x00\x00\x18\x01\x00\x00A\x01\x00\x00B\x01\x00\x00\x18\x01\x00\x00B\x01\x00\x00A\x01\x00\x00l\x01\x00\x00A\x01\x00\x00k\x01\x00\x00l\x01\x00\x00o\x00\x00\x00\x99\x00\x00\x00p\x00\x00\x00\x99\x00\x00\x00\x9a\x00\x00\x00p\x00\x00\x00\x9a\x00\x00\x00\x99\x00\x00\x00\xc4\x00\x00\x00\x99\x00\x00\x00\xc3\x00\x00\x00\xc4\x00\x00\x00\xee\x00\x00\x00\xed\x00\x00\x00\x18\x01\x00\x00\xed\x00\x00\x00\x17\x01\x00\x00\x18\x01\x00\x00\xed\x00\x00\x00\xee\x00\x00\x00\xc4\x00\x00\x00\xc3\x00\x00\x00\xed\x00\x00\x00\xc4\x00\x00\x00\xed\x00\x00\x00\xec\x00\x00\x00\x16\x01\x00\x00\x17\x01\x00\x00\xed\x00\x00\x00\x16\x01\x00\x00\xbd\x01\x00\x00\xe8\x01\x00\x00\xbe\x01\x00\x00\xe8\x01\x00\x00\xbd\x01\x00\x00\xe7\x01\x00\x00\x12\x02\x00\x00\xe8\x01\x00\x00\x11\x02\x00\x00\xe8\x01\x00\x00\xe7\x01\x00\x00\x11\x02\x00\x00\xbf\x01\x00\x00\xe8\x01\x00\x00\xe9\x01\x00\x00\xe8\x01\x00\x00\xbf\x01\x00\x00\xbe\x01\x00\x00\xe8\x01\x00\x00\x12\x02\x00\x00\x13\x02\x00\x00\xe8\x01\x00\x00\x13\x02\x00\x00\xe9\x01\x00\x00h\x02\x00\x00?\x02\x00\x00>\x02\x00\x00i\x02\x00\x00?\x02\x00\x00h\x02\x00\x00@\x02\x00\x00?\x02\x00\x00j\x02\x00\x00?\x02\x00\x00i\x02\x00\x00j\x02\x00\x00\x97\x01\x00\x00m\x01\x00\x00l\x01\x00\x00\x97\x01\x00\x00l\x01\x00\x00\x96\x01\x00\x00n\x01\x00\x00\x97\x01\x00\x00\x98\x01\x00\x00m\x01\x00\x00\x97\x01\x00\x00n\x01\x00\x00\x1b\x02\x00\x00F\x02\x00\x00\x1c\x02\x00\x00E\x02\x00\x00F\x02\x00\x00\x1b\x02\x00\x00F\x02\x00\x00o\x02\x00\x00p\x02\x00\x00F\x02\x00\x00E\x02\x00\x00o\x02\x00\x00\x1d\x02\x00\x00F\x02\x00\x00G\x02\x00\x00F\x02\x00\x00\x1d\x02\x00\x00\x1c\x02\x00\x00q\x02\x00\x00F\x02\x00\x00p\x02\x00\x00F\x02\x00\x00q\x02\x00\x00G\x02\x00\x00t\x01\x00\x00I\x01\x00\x00s\x01\x00\x00t\x01\x00\x00J\x01\x00\x00I\x01\x00\x00\x9d\x01\x00\x00t\x01\x00\x00s\x01\x00\x00\x9e\x01\x00\x00t\x01\x00\x00\x9d\x01\x00\x00t\x01\x00\x00K\x01\x00\x00J\x01\x00\x00K\x01\x00\x00t\x01\x00\x00u\x01\x00\x00t\x01\x00\x00\x9e\x01\x00\x00\x9f\x01\x00\x00t\x01\x00\x00\x9f\x01\x00\x00u\x01\x00\x00K\x01\x00\x00v\x01\x00\x00L\x01\x00\x00v\x01\x00\x00K\x01\x00\x00u\x01\x00\x00\xa0\x01\x00\x00v\x01\x00\x00\x9f\x01\x00\x00\x9f\x01\x00\x00v\x01\x00\x00u\x01\x00\x00v\x01\x00\x00M\x01\x00\x00L\x01\x00\x00v\x01\x00\x00w\x01\x00\x00M\x01\x00\x00w\x01\x00\x00v\x01\x00\x00\xa1\x01\x00\x00v\x01\x00\x00\xa0\x01\x00\x00\xa1\x01\x00\x00\xa4\x00\x00\x00\xcf\x00\x00\x00\xa5\x00\x00\x00\xcf\x00\x00\x00\xa4\x00\x00\x00\xce\x00\x00\x00{\x00\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00z\x00\x00\x00\xa4\x00\x00\x00{\x00\x00\x00\xa4\x00\x00\x00\xcd\x00\x00\x00\xce\x00\x00\x00\xcd\x00\x00\x00\xa4\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00y\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00z\x00\x00\x00y\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xcb\x00\x00\x00\xcb\x00\x00\x00\xa0\x00\x00\x00\xca\x00\x00\x00\xc9\x00\x00\x00\xa0\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00u\x00\x00\x00\xa0\x00\x00\x00v\x00\x00\x00u\x00\x00\x00L\x00\x00\x00w\x00\x00\x00M\x00\x00\x00v\x00\x00\x00w\x00\x00\x00L\x00\x00\x00w\x00\x00\x00\xa0\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00w\x00\x00\x00v\x00\x00\x00w\x00\x00\x00N\x00\x00\x00M\x00\x00\x00w\x00\x00\x00x\x00\x00\x00N\x00\x00\x00x\x00\x00\x00w\x00\x00\x00\xa2\x00\x00\x00w\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\x87\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\\\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00]\x00\x00\x00\\\x00\x00\x00\x8a\x00\x00\x00\x89\x00\x00\x00\xb4\x00\x00\x00\x89\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00_\x00\x00\x00\x89\x00\x00\x00`\x00\x00\x00\x89\x00\x00\x00\x8a\x00\x00\x00`\x00\x00\x00^\x00\x00\x004\x00\x00\x003\x00\x00\x00]\x00\x00\x00^\x00\x00\x003\x00\x00\x004\x00\x00\x00^\x00\x00\x005\x00\x00\x00^\x00\x00\x00_\x00\x00\x005\x00\x00\x00\xdd\x00\x00\x00\xde\x00\x00\x00\xb3\x00\x00\x00\xb3\x00\x00\x00\xde\x00\x00\x00\xb4\x00\x00\x00\xde\x00\x00\x00\xdd\x00\x00\x00\x07\x01\x00\x00\x08\x01\x00\x00\xde\x00\x00\x00\x07\x01\x00\x00\xde\x00\x00\x00\x08\x01\x00\x00\t\x01\x00\x00\xde\x00\x00\x00\t\x01\x00\x00\xdf\x00\x00\x00,\x00\x00\x00\x03\x00\x00\x00\x02\x00\x00\x00-\x00\x00\x00\x03\x00\x00\x00,\x00\x00\x00X\x00\x00\x00\x83\x00\x00\x00Y\x00\x00\x00\x83\x00\x00\x00X\x00\x00\x00\x82\x00\x00\x00X\x00\x00\x00\x81\x00\x00\x00\x82\x00\x00\x00X\x00\x00\x00W\x00\x00\x00\x81\x00\x00\x00,\x01\x00\x00\x02\x01\x00\x00\x01\x01\x00\x00+\x01\x00\x00,\x01\x00\x00\x01\x01\x00\x00,\x01\x00\x00+\x01\x00\x00U\x01\x00\x00V\x01\x00\x00,\x01\x00\x00U\x01\x00\x00\x02\x01\x00\x00,\x01\x00\x00\x03\x01\x00\x00,\x01\x00\x00-\x01\x00\x00\x03\x01\x00\x00-\x01\x00\x00,\x01\x00\x00W\x01\x00\x00,\x01\x00\x00V\x01\x00\x00W\x01\x00\x006\x01\x00\x00a\x01\x00\x007\x01\x00\x00a\x01\x00\x006\x01\x00\x00`\x01\x00\x006\x01\x00\x007\x01\x00\x00\r\x01\x00\x00\x0c\x01\x00\x006\x01\x00\x00\r\x01\x00\x00\x06\x01\x00\x001\x01\x00\x00\x07\x01\x00\x000\x01\x00\x001\x01\x00\x00\x06\x01\x00\x001\x01\x00\x000\x01\x00\x00Z\x01\x00\x00[\x01\x00\x001\x01\x00\x00Z\x01\x00\x00\x08\x01\x00\x001\x01\x00\x002\x01\x00\x001\x01\x00\x00\x08\x01\x00\x00\x07\x01\x00\x002\x01\x00\x001\x01\x00\x00\\\x01\x00\x001\x01\x00\x00[\x01\x00\x00\\\x01\x00\x00\xde\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xde\x00\x00\x00\xdf\x00\x00\x00\xe0\x00\x00\x00\xb5\x00\x00\x00\xdf\x00\x00\x00\xb5\x00\x00\x00\xe0\x00\x00\x00\xb6\x00\x00\x00\xe1\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xe1\x00\x00\x00\xe2\x00\x00\x00\xb6\x00\x00\x00\xe1\x00\x00\x00\xb7\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xb6\x00\x00\x00\xca\x02\x00\x00\xa1\x02\x00\x00\xa0\x02\x00\x00\xcb\x02\x00\x00\xa1\x02\x00\x00\xca\x02\x00\x00z\x02\x00\x00\xa3\x02\x00\x00\xa4\x02\x00\x00y\x02\x00\x00\xa3\x02\x00\x00z\x02\x00\x00#\x03\x00\x00N\x03\x00\x00$\x03\x00\x00N\x03\x00\x00#\x03\x00\x00M\x03\x00\x00\xfa\x02\x00\x00#\x03\x00\x00$\x03\x00\x00\xf9\x02\x00\x00#\x03\x00\x00\xfa\x02\x00\x00L\x03\x00\x00#\x03\x00\x00"\x03\x00\x00#\x03\x00\x00L\x03\x00\x00M\x03\x00\x00#\x03\x00\x00\xf8\x02\x00\x00"\x03\x00\x00#\x03\x00\x00\xf9\x02\x00\x00\xf8\x02\x00\x00O\x03\x00\x00x\x03\x00\x00y\x03\x00\x00N\x03\x00\x00x\x03\x00\x00O\x03\x00\x00x\x03\x00\x00\xa3\x03\x00\x00y\x03\x00\x00x\x03\x00\x00\xa2\x03\x00\x00\xa3\x03\x00\x00#\x04\x00\x00\xf8\x03\x00\x00"\x04\x00\x00\xf8\x03\x00\x00#\x04\x00\x00\xf9\x03\x00\x00$\x02\x00\x00#\x02\x00\x00M\x02\x00\x00N\x02\x00\x00$\x02\x00\x00M\x02\x00\x00#\x02\x00\x00$\x02\x00\x00\xf9\x01\x00\x00$\x02\x00\x00\xfa\x01\x00\x00\xf9\x01\x00\x00%\x02\x00\x00$\x02\x00\x00O\x02\x00\x00$\x02\x00\x00N\x02\x00\x00O\x02\x00\x00$\x02\x00\x00%\x02\x00\x00\xfb\x01\x00\x00\xfa\x01\x00\x00$\x02\x00\x00\xfb\x01\x00\x00S\x01\x00\x00)\x01\x00\x00(\x01\x00\x00R\x01\x00\x00S\x01\x00\x00(\x01\x00\x00S\x01\x00\x00R\x01\x00\x00|\x01\x00\x00}\x01\x00\x00S\x01\x00\x00|\x01\x00\x00)\x01\x00\x00S\x01\x00\x00*\x01\x00\x00S\x01\x00\x00T\x01\x00\x00*\x01\x00\x00T\x01\x00\x00S\x01\x00\x00~\x01\x00\x00S\x01\x00\x00}\x01\x00\x00~\x01\x00\x00+\x06\x00\x00T\x06\x00\x00U\x06\x00\x00T\x06\x00\x00+\x06\x00\x00*\x06\x00\x00+\x06\x00\x00\x00\x06\x00\x00*\x06\x00\x00+\x06\x00\x00\x01\x06\x00\x00\x00\x06\x00\x00V\x06\x00\x00+\x06\x00\x00U\x06\x00\x00,\x06\x00\x00+\x06\x00\x00V\x06\x00\x00\x01\x06\x00\x00+\x06\x00\x00\x02\x06\x00\x00+\x06\x00\x00,\x06\x00\x00\x02\x06\x00\x00.\x03\x00\x00Y\x03\x00\x00/\x03\x00\x00X\x03\x00\x00Y\x03\x00\x00.\x03\x00\x00Y\x03\x00\x000\x03\x00\x00/\x03\x00\x00Y\x03\x00\x00Z\x03\x00\x000\x03\x00\x00u\x04\x00\x00\xa0\x04\x00\x00v\x04\x00\x00\x9f\x04\x00\x00\xa0\x04\x00\x00u\x04\x00\x00\xa0\x04\x00\x00w\x04\x00\x00v\x04\x00\x00\xa0\x04\x00\x00\xa1\x04\x00\x00w\x04\x00\x00\xcc\x05\x00\x00\xcd\x05\x00\x00\xa3\x05\x00\x00\xcc\x05\x00\x00\xa3\x05\x00\x00\xa2\x05\x00\x00\xcd\x05\x00\x00\xcc\x05\x00\x00\xf7\x05\x00\x00\xcc\x05\x00\x00\xf6\x05\x00\x00\xf7\x05\x00\x00\xf4\x05\x00\x00\xca\x05\x00\x00\xf3\x05\x00\x00\xca\x05\x00\x00\xc9\x05\x00\x00\xf3\x05\x00\x00\xc9\x05\x00\x00\xca\x05\x00\x00\x9f\x05\x00\x00\x9f\x05\x00\x00\xca\x05\x00\x00\xa0\x05\x00\x00\xfb\x04\x00\x00$\x05\x00\x00%\x05\x00\x00$\x05\x00\x00\xfb\x04\x00\x00\xfa\x04\x00\x00$\x05\x00\x00O\x05\x00\x00%\x05\x00\x00$\x05\x00\x00N\x05\x00\x00O\x05\x00\x00x\x05\x00\x00\xa3\x05\x00\x00y\x05\x00\x00\xa3\x05\x00\x00x\x05\x00\x00\xa2\x05\x00\x00O\x05\x00\x00x\x05\x00\x00y\x05\x00\x00N\x05\x00\x00x\x05\x00\x00O\x05\x00\x00u\x05\x00\x00L\x05\x00\x00K\x05\x00\x00u\x05\x00\x00v\x05\x00\x00L\x05\x00\x00u\x05\x00\x00\x9f\x05\x00\x00\xa0\x05\x00\x00v\x05\x00\x00u\x05\x00\x00\xa0\x05\x00\x00u\x05\x00\x00J\x05\x00\x00t\x05\x00\x00J\x05\x00\x00u\x05\x00\x00K\x05\x00\x00\x9e\x05\x00\x00u\x05\x00\x00t\x05\x00\x00u\x05\x00\x00\x9e\x05\x00\x00\x9f\x05\x00\x00\x9c\x06\x00\x00\x9d\x06\x00\x00r\x06\x00\x00\x9d\x06\x00\x00s\x06\x00\x00r\x06\x00\x00\xc6\x06\x00\x00\x9d\x06\x00\x00\x9c\x06\x00\x00\xc7\x06\x00\x00\x9d\x06\x00\x00\xc6\x06\x00\x00\x9d\x06\x00\x00t\x06\x00\x00s\x06\x00\x00t\x06\x00\x00\x9d\x06\x00\x00\x9e\x06\x00\x00\xf2\x06\x00\x00\x1b\x07\x00\x00\x1c\x07\x00\x00\x1b\x07\x00\x00\xf2\x06\x00\x00\xf1\x06\x00\x00p\x07\x00\x00o\x07\x00\x00\x9a\x07\x00\x00o\x07\x00\x00\x99\x07\x00\x00\x9a\x07\x00\x00\xc8\x06\x00\x00\x9d\x06\x00\x00\xc7\x06\x00\x00\x9d\x06\x00\x00\xc8\x06\x00\x00\x9e\x06\x00\x00\xc8\x06\x00\x00\xc7\x06\x00\x00\xf1\x06\x00\x00\xf2\x06\x00\x00\xc8\x06\x00\x00\xf1\x06\x00\x00\xfe\x04\x00\x00\xd5\x04\x00\x00\xd4\x04\x00\x00\xd5\x04\x00\x00\xfe\x04\x00\x00\xff\x04\x00\x00\xd3\x04\x00\x00\xfe\x04\x00\x00\xd4\x04\x00\x00\xfd\x04\x00\x00\xfe\x04\x00\x00\xd3\x04\x00\x00\x1e\x05\x00\x00H\x05\x00\x00I\x05\x00\x00\x1e\x05\x00\x00I\x05\x00\x00\x1f\x05\x00\x00H\x05\x00\x00\x1e\x05\x00\x00G\x05\x00\x00\x1e\x05\x00\x00\x1d\x05\x00\x00G\x05\x00\x00\xc9\x04\x00\x00\x9f\x04\x00\x00\x9e\x04\x00\x00\xc8\x04\x00\x00\xc9\x04\x00\x00\x9e\x04\x00\x00u\x03\x00\x00v\x03\x00\x00K\x03\x00\x00v\x03\x00\x00L\x03\x00\x00K\x03\x00\x00v\x03\x00\x00u\x03\x00\x00\x9f\x03\x00\x00\xa0\x03\x00\x00v\x03\x00\x00\x9f\x03\x00\x00\xca\x03\x00\x00\xf4\x03\x00\x00\xf5\x03\x00\x00\xcb\x03\x00\x00\xca\x03\x00\x00\xf5\x03\x00\x00\xca\x03\x00\x00\xcb\x03\x00\x00\xa1\x03\x00\x00\xa0\x03\x00\x00\xca\x03\x00\x00\xa1\x03\x00\x00\xf4\x03\x00\x00\xca\x03\x00\x00\xf3\x03\x00\x00\xca\x03\x00\x00\xc9\x03\x00\x00\xf3\x03\x00\x00\xc9\x03\x00\x00\xca\x03\x00\x00\x9f\x03\x00\x00\xca\x03\x00\x00\xa0\x03\x00\x00\x9f\x03\x00\x00~\x02\x00\x00U\x02\x00\x00T\x02\x00\x00U\x02\x00\x00~\x02\x00\x00\x7f\x02\x00\x00\x7f\x02\x00\x00~\x02\x00\x00\xa9\x02\x00\x00~\x02\x00\x00\xa8\x02\x00\x00\xa9\x02\x00\x00+\x02\x00\x00V\x02\x00\x00,\x02\x00\x00U\x02\x00\x00V\x02\x00\x00+\x02\x00\x00\x80\x02\x00\x00V\x02\x00\x00\x7f\x02\x00\x00V\x02\x00\x00U\x02\x00\x00\x7f\x02\x00\x00V\x02\x00\x00-\x02\x00\x00,\x02\x00\x00V\x02\x00\x00W\x02\x00\x00-\x02\x00\x00W\x02\x00\x00V\x02\x00\x00\x81\x02\x00\x00V\x02\x00\x00\x80\x02\x00\x00\x81\x02\x00\x00)\x02\x00\x00\x00\x02\x00\x00\xff\x01\x00\x00\x00\x02\x00\x00)\x02\x00\x00*\x02\x00\x00\xff\x01\x00\x00\x00\x02\x00\x00\xd5\x01\x00\x00\x00\x02\x00\x00\xd6\x01\x00\x00\xd5\x01\x00\x00\x00\x02\x00\x00+\x02\x00\x00\x01\x02\x00\x00+\x02\x00\x00\x00\x02\x00\x00*\x02\x00\x00\xd7\x01\x00\x00\x00\x02\x00\x00\x01\x02\x00\x00\xd6\x01\x00\x00\x00\x02\x00\x00\xd7\x01\x00\x00\xe7\x03\x00\x00\x11\x04\x00\x00\x12\x04\x00\x00\xe8\x03\x00\x00\xe7\x03\x00\x00\x12\x04\x00\x00\xbd\x03\x00\x00\xe7\x03\x00\x00\xbe\x03\x00\x00\xe7\x03\x00\x00\xe8\x03\x00\x00\xbe\x03\x00\x00\x10\x04\x00\x00\xe7\x03\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\x10\x04\x00\x00\x11\x04\x00\x00\xe7\x03\x00\x00\xbc\x03\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\xbd\x03\x00\x00\xbc\x03\x00\x00C\x03\x00\x00D\x03\x00\x00\x1a\x03\x00\x00\x19\x03\x00\x00C\x03\x00\x00\x1a\x03\x00\x00D\x03\x00\x00C\x03\x00\x00n\x03\x00\x00C\x03\x00\x00m\x03\x00\x00n\x03\x00\x00B\x03\x00\x00C\x03\x00\x00\x18\x03\x00\x00C\x03\x00\x00\x19\x03\x00\x00\x18\x03\x00\x00C\x03\x00\x00B\x03\x00\x00l\x03\x00\x00m\x03\x00\x00C\x03\x00\x00l\x03\x00\x00\x17\x04\x00\x00@\x04\x00\x00A\x04\x00\x00\x16\x04\x00\x00@\x04\x00\x00\x17\x04\x00\x00@\x04\x00\x00\x16\x04\x00\x00\x15\x04\x00\x00?\x04\x00\x00@\x04\x00\x00\x15\x04\x00\x00\x80\x07\x00\x00U\x07\x00\x00\x7f\x07\x00\x00U\x07\x00\x00\x80\x07\x00\x00V\x07\x00\x00,\x07\x00\x00U\x07\x00\x00V\x07\x00\x00U\x07\x00\x00,\x07\x00\x00+\x07\x00\x00U\x07\x00\x00*\x07\x00\x00T\x07\x00\x00U\x07\x00\x00+\x07\x00\x00*\x07\x00\x00*\x07\x00\x00\x01\x07\x00\x00\x00\x07\x00\x00+\x07\x00\x00\x01\x07\x00\x00*\x07\x00\x00\x01\x07\x00\x00\xd8\x06\x00\x00\xd7\x06\x00\x00\xd8\x06\x00\x00\x01\x07\x00\x00\x02\x07\x00\x00,\x07\x00\x00\x01\x07\x00\x00+\x07\x00\x00\x01\x07\x00\x00,\x07\x00\x00\x02\x07\x00\x00\xd3\x07\x00\x00\xa8\x07\x00\x00\xd2\x07\x00\x00\xa8\x07\x00\x00\xd3\x07\x00\x00\xa9\x07\x00\x00\xd2\x07\x00\x00\xa8\x07\x00\x00\xd1\x07\x00\x00\xa8\x07\x00\x00\xa7\x07\x00\x00\xd1\x07\x00\x00\x8c\x02\x00\x00\x8b\x02\x00\x00\xb6\x02\x00\x00\xb6\x02\x00\x00\x8b\x02\x00\x00\xb5\x02\x00\x00\x07\x03\x00\x00\x06\x03\x00\x000\x03\x00\x00\x07\x03\x00\x000\x03\x00\x001\x03\x00\x00\x07\x03\x00\x00\xdc\x02\x00\x00\x06\x03\x00\x00\x07\x03\x00\x00\xdd\x02\x00\x00\xdc\x02\x00\x002\x03\x00\x00\x07\x03\x00\x001\x03\x00\x00\x07\x03\x00\x002\x03\x00\x00\x08\x03\x00\x00\xdd\x02\x00\x00\x07\x03\x00\x00\xde\x02\x00\x00\xde\x02\x00\x00\x07\x03\x00\x00\x08\x03\x00\x00\xdf\x02\x00\x00\xb6\x02\x00\x00\xb5\x02\x00\x00\xb6\x02\x00\x00\xdf\x02\x00\x00\xe0\x02\x00\x00\xdf\x02\x00\x00\t\x03\x00\x00\n\x03\x00\x00\xdf\x02\x00\x00\n\x03\x00\x00\xe0\x02\x00\x00\xdf\x02\x00\x00\xb4\x02\x00\x00\xde\x02\x00\x00\xb4\x02\x00\x00\xdf\x02\x00\x00\xb5\x02\x00\x00\t\x03\x00\x00\xdf\x02\x00\x00\x08\x03\x00\x00\xdf\x02\x00\x00\xde\x02\x00\x00\x08\x03\x00\x00\xb8\x02\x00\x00\xe3\x02\x00\x00\xb9\x02\x00\x00\xe3\x02\x00\x00\xb8\x02\x00\x00\xe2\x02\x00\x00\xb8\x02\x00\x00\xb9\x02\x00\x00\x8f\x02\x00\x00\x8e\x02\x00\x00\xb8\x02\x00\x00\x8f\x02\x00\x00_\x03\x00\x00\x88\x03\x00\x00\x89\x03\x00\x00_\x03\x00\x00^\x03\x00\x00\x88\x03\x00\x00_\x03\x00\x005\x03\x00\x004\x03\x00\x00^\x03\x00\x00_\x03\x00\x004\x03\x00\x00`\x03\x00\x00_\x03\x00\x00\x8a\x03\x00\x00_\x03\x00\x00\x89\x03\x00\x00\x8a\x03\x00\x009\x03\x00\x008\x03\x00\x00c\x03\x00\x00c\x03\x00\x008\x03\x00\x00b\x03\x00\x008\x03\x00\x00a\x03\x00\x00b\x03\x00\x008\x03\x00\x007\x03\x00\x00a\x03\x00\x00_\x03\x00\x006\x03\x00\x005\x03\x00\x006\x03\x00\x00_\x03\x00\x00`\x03\x00\x00a\x03\x00\x006\x03\x00\x00`\x03\x00\x007\x03\x00\x006\x03\x00\x00a\x03\x00\x009\x02\x00\x00b\x02\x00\x00c\x02\x00\x00b\x02\x00\x009\x02\x00\x008\x02\x00\x00\x8e\x04\x00\x00e\x04\x00\x00d\x04\x00\x00e\x04\x00\x00\x8e\x04\x00\x00\x8f\x04\x00\x00e\x04\x00\x00\x8f\x04\x00\x00\x90\x04\x00\x00f\x04\x00\x00e\x04\x00\x00\x90\x04\x00\x00;\x04\x00\x00e\x04\x00\x00<\x04\x00\x00e\x04\x00\x00f\x04\x00\x00<\x04\x00\x00e\x04\x00\x00:\x04\x00\x00d\x04\x00\x00:\x04\x00\x00e\x04\x00\x00;\x04\x00\x00:\x04\x00\x00;\x04\x00\x00\x11\x04\x00\x00\x10\x04\x00\x00:\x04\x00\x00\x11\x04\x00\x00:\x04\x00\x00c\x04\x00\x00d\x04\x00\x00:\x04\x00\x009\x04\x00\x00c\x04\x00\x00:\x04\x00\x00\x10\x04\x00\x00\x0f\x04\x00\x009\x04\x00\x00:\x04\x00\x00\x0f\x04\x00\x00\x01\x08\x00\x00\xd6\x07\x00\x00\x00\x08\x00\x00\xd6\x07\x00\x00\x01\x08\x00\x00\xd7\x07\x00\x00\xe7\x05\x00\x00\x10\x06\x00\x00\x11\x06\x00\x00\xe6\x05\x00\x00\x10\x06\x00\x00\xe7\x05\x00\x00\x0f\x06\x00\x00\x10\x06\x00\x00\xe5\x05\x00\x00\x10\x06\x00\x00\xe6\x05\x00\x00\xe5\x05\x00\x00\x10\x06\x00\x00;\x06\x00\x00\x11\x06\x00\x00;\x06\x00\x00\x10\x06\x00\x00:\x06\x00\x00e\x06\x00\x00;\x06\x00\x00d\x06\x00\x00;\x06\x00\x00:\x06\x00\x00d\x06\x00\x009\x06\x00\x00\x10\x06\x00\x00\x0f\x06\x00\x00\x10\x06\x00\x009\x06\x00\x00:\x06\x00\x00\x8c\x06\x00\x00\x8b\x06\x00\x00\xb5\x06\x00\x00\x8c\x06\x00\x00\xb5\x06\x00\x00\xb6\x06\x00\x00\x8b\x06\x00\x00\x8c\x06\x00\x00a\x06\x00\x00a\x06\x00\x00\x8c\x06\x00\x00b\x06\x00\x008\x06\x00\x007\x06\x00\x00a\x06\x00\x008\x06\x00\x00a\x06\x00\x00b\x06\x00\x008\x06\x00\x00\x0e\x06\x00\x00\r\x06\x00\x007\x06\x00\x008\x06\x00\x00\r\x06\x00\x00\x0e\x06\x00\x008\x06\x00\x00\x0f\x06\x00\x008\x06\x00\x009\x06\x00\x00\x0f\x06\x00\x00\x04\x08\x00\x00-\x08\x00\x00.\x08\x00\x00\x04\x08\x00\x00\x03\x08\x00\x00-\x08\x00\x00\x03\x08\x00\x00\x04\x08\x00\x00\xd9\x07\x00\x00\x04\x08\x00\x00\xda\x07\x00\x00\xd9\x07\x00\x00/\x08\x00\x00\x04\x08\x00\x00.\x08\x00\x00\x04\x08\x00\x00/\x08\x00\x00\x05\x08\x00\x00\xda\x07\x00\x00\x04\x08\x00\x00\xdb\x07\x00\x00\x04\x08\x00\x00\x05\x08\x00\x00\xdb\x07\x00\x00\xdd\x07\x00\x00\x06\x08\x00\x00\x07\x08\x00\x00\xdc\x07\x00\x00\x06\x08\x00\x00\xdd\x07\x00\x00\x07\x08\x00\x00\x06\x08\x00\x001\x08\x00\x00\x06\x08\x00\x000\x08\x00\x001\x08\x00\x00\x06\x08\x00\x00\xdc\x07\x00\x00\xdb\x07\x00\x00\x05\x08\x00\x00\x06\x08\x00\x00\xdb\x07\x00\x000\x08\x00\x00\x06\x08\x00\x00/\x08\x00\x00/\x08\x00\x00\x06\x08\x00\x00\x05\x08\x00\x00\x11\x05\x00\x00<\x05\x00\x00\x12\x05\x00\x00;\x05\x00\x00<\x05\x00\x00\x11\x05\x00\x00f\x05\x00\x00<\x05\x00\x00e\x05\x00\x00<\x05\x00\x00;\x05\x00\x00e\x05\x00\x00\x13\x05\x00\x00<\x05\x00\x00=\x05\x00\x00<\x05\x00\x00\x13\x05\x00\x00\x12\x05\x00\x00<\x05\x00\x00g\x05\x00\x00=\x05\x00\x00<\x05\x00\x00f\x05\x00\x00g\x05\x00\x00\xda\x06\x00\x00\xb0\x06\x00\x00\xaf\x06\x00\x00\xd9\x06\x00\x00\xda\x06\x00\x00\xaf\x06\x00\x00\xb0\x06\x00\x00\xda\x06\x00\x00\xb1\x06\x00\x00\xda\x06\x00\x00\xdb\x06\x00\x00\xb1\x06\x00\x00\xdb\x06\x00\x00\xda\x06\x00\x00\x05\x07\x00\x00\xda\x06\x00\x00\x04\x07\x00\x00\x05\x07\x00\x00W\x07\x00\x00-\x07\x00\x00V\x07\x00\x00-\x07\x00\x00,\x07\x00\x00V\x07\x00\x00\xb2\x05\x00\x00\xdc\x05\x00\x00\xb3\x05\x00\x00\xb3\x05\x00\x00\xdc\x05\x00\x00\xdd\x05\x00\x00\xdc\x05\x00\x00\x06\x06\x00\x00\x07\x06\x00\x00\xdc\x05\x00\x00\x07\x06\x00\x00\xdd\x05\x00\x00\xdc\x05\x00\x00\xb2\x05\x00\x00\xb1\x05\x00\x00\xdb\x05\x00\x00\xdc\x05\x00\x00\xb1\x05\x00\x00\x05\x06\x00\x00\xda\x05\x00\x00\x04\x06\x00\x00\xda\x05\x00\x00\x05\x06\x00\x00\xdb\x05\x00\x00\xdc\x05\x00\x00\x05\x06\x00\x00\x06\x06\x00\x00\x05\x06\x00\x00\xdc\x05\x00\x00\xdb\x05\x00\x00\x06\x06\x00\x00\x05\x06\x00\x000\x06\x00\x00\x05\x06\x00\x00/\x06\x00\x000\x06\x00\x00\x01\x07\x00\x00\xd6\x06\x00\x00\x00\x07\x00\x00\xd6\x06\x00\x00\x01\x07\x00\x00\xd7\x06\x00\x00\xad\x06\x00\x00\xd6\x06\x00\x00\xd7\x06\x00\x00\xac\x06\x00\x00\xd6\x06\x00\x00\xad\x06\x00\x00\xd6\x06\x00\x00\xff\x06\x00\x00\x00\x07\x00\x00\xd6\x06\x00\x00\xd5\x06\x00\x00\xff\x06\x00\x00\xd5\x06\x00\x00\xd6\x06\x00\x00\xab\x06\x00\x00\xd6\x06\x00\x00\xac\x06\x00\x00\xab\x06\x00\x00\x8d\x05\x00\x00\xb6\x05\x00\x00\xb7\x05\x00\x00\x8d\x05\x00\x00\x8c\x05\x00\x00\xb6\x05\x00\x00\x8d\x05\x00\x00c\x05\x00\x00b\x05\x00\x00\x8c\x05\x00\x00\x8d\x05\x00\x00b\x05\x00\x00\x8d\x05\x00\x00\xb7\x05\x00\x00\xb8\x05\x00\x00\x8e\x05\x00\x00\x8d\x05\x00\x00\xb8\x05\x00\x00\x8d\x05\x00\x00\x8e\x05\x00\x00d\x05\x00\x00c\x05\x00\x00\x8d\x05\x00\x00d\x05\x00\x00\xf9\x06\x00\x00$\x07\x00\x00\xfa\x06\x00\x00#\x07\x00\x00$\x07\x00\x00\xf9\x06\x00\x00$\x07\x00\x00#\x07\x00\x00M\x07\x00\x00N\x07\x00\x00$\x07\x00\x00M\x07\x00\x00$\x07\x00\x00%\x07\x00\x00\xfb\x06\x00\x00$\x07\x00\x00\xfb\x06\x00\x00\xfa\x06\x00\x00$\x07\x00\x00O\x07\x00\x00%\x07\x00\x00$\x07\x00\x00N\x07\x00\x00O\x07\x00\x00O\x07\x00\x00x\x07\x00\x00y\x07\x00\x00N\x07\x00\x00x\x07\x00\x00O\x07\x00\x00x\x07\x00\x00\xa3\x07\x00\x00y\x07\x00\x00x\x07\x00\x00\xa2\x07\x00\x00\xa3\x07\x00\x00x\x07\x00\x00M\x07\x00\x00w\x07\x00\x00x\x07\x00\x00N\x07\x00\x00M\x07\x00\x00x\x07\x00\x00w\x07\x00\x00\xa1\x07\x00\x00\xa2\x07\x00\x00x\x07\x00\x00\xa1\x07\x00\x00\xf6\x06\x00\x00\xcd\x06\x00\x00\xcc\x06\x00\x00\xf6\x06\x00\x00\xf7\x06\x00\x00\xcd\x06\x00\x00\xf6\x06\x00\x00\xcc\x06\x00\x00\xcb\x06\x00\x00\xf5\x06\x00\x00\xf6\x06\x00\x00\xcb\x06\x00\x00!\x07\x00\x00"\x07\x00\x00\xf8\x06\x00\x00\xf7\x06\x00\x00!\x07\x00\x00\xf8\x06\x00\x00"\x07\x00\x00!\x07\x00\x00L\x07\x00\x00!\x07\x00\x00K\x07\x00\x00L\x07\x00\x00\xf6\x06\x00\x00!\x07\x00\x00\xf7\x06\x00\x00!\x07\x00\x00\xf6\x06\x00\x00 \x07\x00\x00u\x07\x00\x00t\x07\x00\x00\x9f\x07\x00\x00t\x07\x00\x00\x9e\x07\x00\x00\x9f\x07\x00\x00\x1f\x07\x00\x00\xf6\x06\x00\x00\xf5\x06\x00\x00\xf6\x06\x00\x00\x1f\x07\x00\x00 \x07\x00\x00\xf4\x06\x00\x00\x1f\x07\x00\x00\xf5\x06\x00\x00\x1f\x07\x00\x00\xf4\x06\x00\x00\x1e\x07\x00\x00\xca\x06\x00\x00\xf4\x06\x00\x00\xcb\x06\x00\x00\xf4\x06\x00\x00\xf5\x06\x00\x00\xcb\x06\x00\x00\x1d\x07\x00\x00\xf4\x06\x00\x00\xf3\x06\x00\x00\xf4\x06\x00\x00\x1d\x07\x00\x00\x1e\x07\x00\x00x\x06\x00\x00w\x06\x00\x00\xa2\x06\x00\x00w\x06\x00\x00\xa1\x06\x00\x00\xa2\x06\x00\x00w\x06\x00\x00x\x06\x00\x00N\x06\x00\x00M\x06\x00\x00w\x06\x00\x00N\x06\x00\x00w\x06\x00\x00\xa0\x06\x00\x00\xa1\x06\x00\x00\xa0\x06\x00\x00w\x06\x00\x00v\x06\x00\x00w\x06\x00\x00M\x06\x00\x00L\x06\x00\x00w\x06\x00\x00L\x06\x00\x00v\x06\x00\x00\xee\x07\x00\x00\x17\x08\x00\x00\x18\x08\x00\x00\xed\x07\x00\x00\x17\x08\x00\x00\xee\x07\x00\x00\xc3\x07\x00\x00\xc4\x07\x00\x00\x9a\x07\x00\x00\x99\x07\x00\x00\xc3\x07\x00\x00\x9a\x07\x00\x00\xc3\x07\x00\x00\xee\x07\x00\x00\xc4\x07\x00\x00\xc3\x07\x00\x00\xed\x07\x00\x00\xee\x07\x00\x00=\x07\x00\x00\x12\x07\x00\x00<\x07\x00\x00\x13\x07\x00\x00\x12\x07\x00\x00=\x07\x00\x00\x12\x07\x00\x00;\x07\x00\x00<\x07\x00\x00\x12\x07\x00\x00\x11\x07\x00\x00;\x07\x00\x00.\x06\x00\x00\x05\x06\x00\x00\x04\x06\x00\x00\x05\x06\x00\x00.\x06\x00\x00/\x06\x00\x00/\x06\x00\x00.\x06\x00\x00Y\x06\x00\x00.\x06\x00\x00X\x06\x00\x00Y\x06\x00\x00.\x06\x00\x00\x04\x06\x00\x00\x03\x06\x00\x00-\x06\x00\x00.\x06\x00\x00\x03\x06\x00\x00W\x06\x00\x00.\x06\x00\x00-\x06\x00\x00X\x06\x00\x00.\x06\x00\x00W\x06\x00\x00\xb8\x04\x00\x00\xe1\x04\x00\x00\xe2\x04\x00\x00\xe1\x04\x00\x00\xb8\x04\x00\x00\xb7\x04\x00\x00\xe1\x04\x00\x00\x0c\x05\x00\x00\xe2\x04\x00\x00\xe1\x04\x00\x00\x0b\x05\x00\x00\x0c\x05\x00\x00`\x05\x00\x005\x05\x00\x00_\x05\x00\x005\x05\x00\x00`\x05\x00\x006\x05\x00\x00\x0c\x05\x00\x005\x05\x00\x006\x05\x00\x00\x0b\x05\x00\x005\x05\x00\x00\x0c\x05\x00\x00\xaf\x05\x00\x00\x86\x05\x00\x00\x85\x05\x00\x00\xaf\x05\x00\x00\xb0\x05\x00\x00\x86\x05\x00\x00\xaf\x05\x00\x00\xd9\x05\x00\x00\xda\x05\x00\x00\xb0\x05\x00\x00\xaf\x05\x00\x00\xda\x05\x00\x00\x84\x05\x00\x00\xaf\x05\x00\x00\x85\x05\x00\x00\xaf\x05\x00\x00\x84\x05\x00\x00\xae\x05\x00\x00\xd8\x05\x00\x00\xaf\x05\x00\x00\xae\x05\x00\x00\xd9\x05\x00\x00\xaf\x05\x00\x00\xd8\x05\x00\x00[\x04\x00\x00\x86\x04\x00\x00\\\x04\x00\x00\x86\x04\x00\x00[\x04\x00\x00\x85\x04\x00\x00\xb5\x03\x00\x00\x8b\x03\x00\x00\x8a\x03\x00\x00\xb5\x03\x00\x00\x8a\x03\x00\x00\xb4\x03\x00\x00\xde\x03\x00\x00\xb5\x03\x00\x00\xb4\x03\x00\x00\xdf\x03\x00\x00\xb5\x03\x00\x00\xde\x03\x00\x00\xb7\x03\x00\x00\x8e\x03\x00\x00\x8d\x03\x00\x00\xb7\x03\x00\x00\xb8\x03\x00\x00\x8e\x03\x00\x00_\x04\x00\x00\x89\x04\x00\x00\x8a\x04\x00\x00`\x04\x00\x00_\x04\x00\x00\x8a\x04\x00\x00\t\x04\x00\x00\xde\x03\x00\x00\x08\x04\x00\x00\t\x04\x00\x00\xdf\x03\x00\x00\xde\x03\x00\x00\xc7\x07\x00\x00\xf0\x07\x00\x00\xf1\x07\x00\x00\xf0\x07\x00\x00\xc7\x07\x00\x00\xc6\x07\x00\x00\xc7\x07\x00\x00\xf1\x07\x00\x00\xf2\x07\x00\x00\xc8\x07\x00\x00\xc7\x07\x00\x00\xf2\x07\x00\x00F\x05\x00\x00o\x05\x00\x00p\x05\x00\x00o\x05\x00\x00F\x05\x00\x00E\x05\x00\x00o\x05\x00\x00\x9a\x05\x00\x00p\x05\x00\x00o\x05\x00\x00\x99\x05\x00\x00\x9a\x05\x00\x00o\x05\x00\x00E\x05\x00\x00D\x05\x00\x00n\x05\x00\x00o\x05\x00\x00D\x05\x00\x00\x98\x05\x00\x00o\x05\x00\x00n\x05\x00\x00\x99\x05\x00\x00o\x05\x00\x00\x98\x05\x00\x00i\x00\x00\x00@\x00\x00\x00?\x00\x00\x00@\x00\x00\x00i\x00\x00\x00j\x00\x00\x00>\x00\x00\x00i\x00\x00\x00?\x00\x00\x00h\x00\x00\x00i\x00\x00\x00>\x00\x00\x00\x92\x00\x00\x00i\x00\x00\x00h\x00\x00\x00\x93\x00\x00\x00i\x00\x00\x00\x92\x00\x00\x00\x94\x00\x00\x00\xbd\x00\x00\x00\xbe\x00\x00\x00\x94\x00\x00\x00\x93\x00\x00\x00\xbd\x00\x00\x00i\x00\x00\x00\x94\x00\x00\x00j\x00\x00\x00\x94\x00\x00\x00i\x00\x00\x00\x93\x00\x00\x00\x94\x00\x00\x00\xbf\x00\x00\x00\x95\x00\x00\x00\xbf\x00\x00\x00\x94\x00\x00\x00\xbe\x00\x00\x00j\x00\x00\x00\x94\x00\x00\x00k\x00\x00\x00\x94\x00\x00\x00\x95\x00\x00\x00k\x00\x00\x00K\x00\x00\x00t\x00\x00\x00u\x00\x00\x00K\x00\x00\x00J\x00\x00\x00t\x00\x00\x00 \x00\x00\x00K\x00\x00\x00!\x00\x00\x00J\x00\x00\x00K\x00\x00\x00 \x00\x00\x00v\x00\x00\x00K\x00\x00\x00u\x00\x00\x00K\x00\x00\x00v\x00\x00\x00L\x00\x00\x00!\x00\x00\x00K\x00\x00\x00"\x00\x00\x00K\x00\x00\x00L\x00\x00\x00"\x00\x00\x00\x9a\x00\x00\x00\xc5\x00\x00\x00\x9b\x00\x00\x00\xc5\x00\x00\x00\x9a\x00\x00\x00\xc4\x00\x00\x00\x9b\x00\x00\x00\xc5\x00\x00\x00\x9c\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\x9c\x00\x00\x00\x19\x01\x00\x00B\x01\x00\x00C\x01\x00\x00B\x01\x00\x00\x19\x01\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00C\x01\x00\x00D\x01\x00\x00\x1a\x01\x00\x00\x19\x01\x00\x00D\x01\x00\x00C\x00\x00\x00n\x00\x00\x00D\x00\x00\x00n\x00\x00\x00C\x00\x00\x00m\x00\x00\x00E\x00\x00\x00n\x00\x00\x00o\x00\x00\x00n\x00\x00\x00E\x00\x00\x00D\x00\x00\x00\xc2\x00\x00\x00\xc1\x00\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00\xc2\x00\x00\x00\xeb\x00\x00\x00\xc2\x00\x00\x00\xed\x00\x00\x00\xc3\x00\x00\x00\xed\x00\x00\x00\xc2\x00\x00\x00\xec\x00\x00\x00\x15\x02\x00\x00\x14\x02\x00\x00>\x02\x00\x00?\x02\x00\x00\x15\x02\x00\x00>\x02\x00\x00\x14\x02\x00\x00\x15\x02\x00\x00\xea\x01\x00\x00\x15\x02\x00\x00\xeb\x01\x00\x00\xea\x01\x00\x00\xc1\x01\x00\x00\xc0\x01\x00\x00\xea\x01\x00\x00\xeb\x01\x00\x00\xc1\x01\x00\x00\xea\x01\x00\x00\xc0\x01\x00\x00\xc1\x01\x00\x00\x96\x01\x00\x00\xc1\x01\x00\x00\x97\x01\x00\x00\x96\x01\x00\x00E\x01\x00\x00p\x01\x00\x00F\x01\x00\x00p\x01\x00\x00E\x01\x00\x00o\x01\x00\x00\x99\x01\x00\x00p\x01\x00\x00o\x01\x00\x00\x9a\x01\x00\x00p\x01\x00\x00\x99\x01\x00\x00p\x01\x00\x00q\x01\x00\x00G\x01\x00\x00p\x01\x00\x00G\x01\x00\x00F\x01\x00\x00q\x01\x00\x00p\x01\x00\x00\x9b\x01\x00\x00p\x01\x00\x00\x9a\x01\x00\x00\x9b\x01\x00\x00\xee\x01\x00\x00\xc4\x01\x00\x00\xed\x01\x00\x00\xed\x01\x00\x00\xc4\x01\x00\x00\xc3\x01\x00\x00\xc4\x01\x00\x00\x9a\x01\x00\x00\x99\x01\x00\x00\xc4\x01\x00\x00\x99\x01\x00\x00\xc3\x01\x00\x00\xef\x01\x00\x00\xc4\x01\x00\x00\xee\x01\x00\x00\xc5\x01\x00\x00\xc4\x01\x00\x00\xef\x01\x00\x00\xc4\x01\x00\x00\xc5\x01\x00\x00\x9b\x01\x00\x00\x9a\x01\x00\x00\xc4\x01\x00\x00\x9b\x01\x00\x00\x88\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\x89\x00\x00\x00\x88\x00\x00\x00\xb3\x00\x00\x00\x88\x00\x00\x00\x89\x00\x00\x00_\x00\x00\x00^\x00\x00\x00\x88\x00\x00\x00_\x00\x00\x00\xb2\x00\x00\x00\x88\x00\x00\x00\xb1\x00\x00\x00\x88\x00\x00\x00\x87\x00\x00\x00\xb1\x00\x00\x00\x87\x00\x00\x00\x88\x00\x00\x00]\x00\x00\x00\x88\x00\x00\x00^\x00\x00\x00]\x00\x00\x00.\x00\x00\x00/\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00.\x00\x00\x00\x05\x00\x00\x00/\x00\x00\x00.\x00\x00\x00Y\x00\x00\x00.\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00\x03\x00\x00\x00.\x00\x00\x00\x04\x00\x00\x00.\x00\x00\x00\x03\x00\x00\x00-\x00\x00\x00W\x00\x00\x00.\x00\x00\x00-\x00\x00\x00X\x00\x00\x00.\x00\x00\x00W\x00\x00\x005\x01\x00\x00^\x01\x00\x00_\x01\x00\x005\x01\x00\x004\x01\x00\x00^\x01\x00\x00`\x01\x00\x005\x01\x00\x00_\x01\x00\x006\x01\x00\x005\x01\x00\x00`\x01\x00\x00\x8b\x00\x00\x00a\x00\x00\x00`\x00\x00\x00\x8a\x00\x00\x00\x8b\x00\x00\x00`\x00\x00\x00\x8b\x00\x00\x00\x8a\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\x8b\x00\x00\x00\xb4\x00\x00\x00a\x00\x00\x00\x8b\x00\x00\x00b\x00\x00\x00\x8b\x00\x00\x00\x8c\x00\x00\x00b\x00\x00\x00\x8c\x00\x00\x00\x8b\x00\x00\x00\xb6\x00\x00\x00\x8b\x00\x00\x00\xb5\x00\x00\x00\xb6\x00\x00\x00v\x02\x00\x00w\x02\x00\x00L\x02\x00\x00L\x02\x00\x00w\x02\x00\x00M\x02\x00\x00w\x02\x00\x00v\x02\x00\x00\xa0\x02\x00\x00\xa1\x02\x00\x00w\x02\x00\x00\xa0\x02\x00\x00\xcd\x02\x00\x00\xf6\x02\x00\x00\xf7\x02\x00\x00\xcd\x02\x00\x00\xcc\x02\x00\x00\xf6\x02\x00\x00\xf8\x02\x00\x00\xcd\x02\x00\x00\xf7\x02\x00\x00\xce\x02\x00\x00\xcd\x02\x00\x00\xf8\x02\x00\x00\xcd\x02\x00\x00\xce\x02\x00\x00\xa4\x02\x00\x00\xa3\x02\x00\x00\xcd\x02\x00\x00\xa4\x02\x00\x00\xf7\x03\x00\x00!\x04\x00\x00"\x04\x00\x00\xf8\x03\x00\x00\xf7\x03\x00\x00"\x04\x00\x00 \x04\x00\x00\xf7\x03\x00\x00\xf6\x03\x00\x00\xf7\x03\x00\x00 \x04\x00\x00!\x04\x00\x00\xf7\x03\x00\x00\xcc\x03\x00\x00\xf6\x03\x00\x00\xf7\x03\x00\x00\xcd\x03\x00\x00\xcc\x03\x00\x00\xa4\x03\x00\x00\xce\x03\x00\x00\xa5\x03\x00\x00\xce\x03\x00\x00\xcf\x03\x00\x00\xa5\x03\x00\x00\xcf\x03\x00\x00\xce\x03\x00\x00\xf9\x03\x00\x00\xce\x03\x00\x00\xf8\x03\x00\x00\xf9\x03\x00\x00\xa3\x03\x00\x00\xce\x03\x00\x00\xa4\x03\x00\x00\xcd\x03\x00\x00\xce\x03\x00\x00\xa3\x03\x00\x00\xce\x03\x00\x00\xf7\x03\x00\x00\xf8\x03\x00\x00\xf7\x03\x00\x00\xce\x03\x00\x00\xcd\x03\x00\x00\xac\x03\x00\x00\x83\x03\x00\x00\x82\x03\x00\x00\x83\x03\x00\x00\xac\x03\x00\x00\xad\x03\x00\x00\x83\x03\x00\x00X\x03\x00\x00\x82\x03\x00\x00\x83\x03\x00\x00Y\x03\x00\x00X\x03\x00\x00\x83\x03\x00\x00\xad\x03\x00\x00\xae\x03\x00\x00\x84\x03\x00\x00\x83\x03\x00\x00\xae\x03\x00\x00\x83\x03\x00\x00\x84\x03\x00\x00Z\x03\x00\x00Y\x03\x00\x00\x83\x03\x00\x00Z\x03\x00\x00\xf6\x05\x00\x00\xcb\x05\x00\x00\xf5\x05\x00\x00\xcc\x05\x00\x00\xcb\x05\x00\x00\xf6\x05\x00\x00\xcb\x05\x00\x00\xcc\x05\x00\x00\xa2\x05\x00\x00\xa1\x05\x00\x00\xcb\x05\x00\x00\xa2\x05\x00\x00\xf5\x05\x00\x00\xcb\x05\x00\x00\xf4\x05\x00\x00\xcb\x05\x00\x00\xca\x05\x00\x00\xf4\x05\x00\x00\xca\x05\x00\x00\xcb\x05\x00\x00\xa0\x05\x00\x00\xcb\x05\x00\x00\xa1\x05\x00\x00\xa0\x05\x00\x00\xf8\x04\x00\x00#\x05\x00\x00\xf9\x04\x00\x00"\x05\x00\x00#\x05\x00\x00\xf8\x04\x00\x00#\x05\x00\x00\xfa\x04\x00\x00\xf9\x04\x00\x00#\x05\x00\x00$\x05\x00\x00\xfa\x04\x00\x00w\x05\x00\x00v\x05\x00\x00\xa0\x05\x00\x00\xa1\x05\x00\x00w\x05\x00\x00\xa0\x05\x00\x00x\x05\x00\x00w\x05\x00\x00\xa2\x05\x00\x00w\x05\x00\x00\xa1\x05\x00\x00\xa2\x05\x00\x00\x1a\x07\x00\x00\xef\x06\x00\x00\x19\x07\x00\x00\x1a\x07\x00\x00\xf0\x06\x00\x00\xef\x06\x00\x00\x1a\x07\x00\x00\xf1\x06\x00\x00\xf0\x06\x00\x00\x1a\x07\x00\x00\x1b\x07\x00\x00\xf1\x06\x00\x00\x97\x07\x00\x00n\x07\x00\x00m\x07\x00\x00n\x07\x00\x00\x97\x07\x00\x00\x98\x07\x00\x00o\x07\x00\x00n\x07\x00\x00\x99\x07\x00\x00\x99\x07\x00\x00n\x07\x00\x00\x98\x07\x00\x00\xc9\x06\x00\x00\xf4\x06\x00\x00\xca\x06\x00\x00\xf4\x06\x00\x00\xc9\x06\x00\x00\xf3\x06\x00\x00\xc9\x06\x00\x00\xf2\x06\x00\x00\xf3\x06\x00\x00\xc9\x06\x00\x00\xc8\x06\x00\x00\xf2\x06\x00\x00S\x05\x00\x00(\x05\x00\x00R\x05\x00\x00(\x05\x00\x00S\x05\x00\x00)\x05\x00\x00(\x05\x00\x00)\x05\x00\x00\xff\x04\x00\x00\xfe\x04\x00\x00(\x05\x00\x00\xff\x04\x00\x00(\x05\x00\x00Q\x05\x00\x00R\x05\x00\x00(\x05\x00\x00\'\x05\x00\x00Q\x05\x00\x00(\x05\x00\x00\xfd\x04\x00\x00\'\x05\x00\x00(\x05\x00\x00\xfe\x04\x00\x00\xfd\x04\x00\x00\xf3\x04\x00\x00\xf2\x04\x00\x00\x1c\x05\x00\x00\x1d\x05\x00\x00\xf3\x04\x00\x00\x1c\x05\x00\x00\xf3\x04\x00\x00\xc8\x04\x00\x00\xf2\x04\x00\x00\xf3\x04\x00\x00\xc9\x04\x00\x00\xc8\x04\x00\x00L\x03\x00\x00w\x03\x00\x00M\x03\x00\x00v\x03\x00\x00w\x03\x00\x00L\x03\x00\x00w\x03\x00\x00v\x03\x00\x00\xa0\x03\x00\x00w\x03\x00\x00\xa0\x03\x00\x00\xa1\x03\x00\x00w\x03\x00\x00N\x03\x00\x00M\x03\x00\x00w\x03\x00\x00x\x03\x00\x00N\x03\x00\x00\xa2\x03\x00\x00w\x03\x00\x00\xa1\x03\x00\x00x\x03\x00\x00w\x03\x00\x00\xa2\x03\x00\x00\xa8\x02\x00\x00}\x02\x00\x00\xa7\x02\x00\x00~\x02\x00\x00}\x02\x00\x00\xa8\x02\x00\x00S\x02\x00\x00}\x02\x00\x00T\x02\x00\x00}\x02\x00\x00~\x02\x00\x00T\x02\x00\x00}\x02\x00\x00\xa6\x02\x00\x00\xa7\x02\x00\x00\xa6\x02\x00\x00}\x02\x00\x00|\x02\x00\x00}\x02\x00\x00S\x02\x00\x00R\x02\x00\x00|\x02\x00\x00}\x02\x00\x00R\x02\x00\x00j\x04\x00\x00\x95\x04\x00\x00k\x04\x00\x00\x95\x04\x00\x00j\x04\x00\x00\x94\x04\x00\x00j\x04\x00\x00k\x04\x00\x00A\x04\x00\x00@\x04\x00\x00j\x04\x00\x00A\x04\x00\x00\x94\x04\x00\x00j\x04\x00\x00\x93\x04\x00\x00j\x04\x00\x00i\x04\x00\x00\x93\x04\x00\x00j\x04\x00\x00?\x04\x00\x00i\x04\x00\x00j\x04\x00\x00@\x04\x00\x00?\x04\x00\x00U\x07\x00\x00~\x07\x00\x00\x7f\x07\x00\x00~\x07\x00\x00U\x07\x00\x00T\x07\x00\x00\x7f\x07\x00\x00~\x07\x00\x00\xa9\x07\x00\x00~\x07\x00\x00\xa8\x07\x00\x00\xa9\x07\x00\x00~\x07\x00\x00T\x07\x00\x00S\x07\x00\x00}\x07\x00\x00~\x07\x00\x00S\x07\x00\x00\xa7\x07\x00\x00~\x07\x00\x00}\x07\x00\x00\xa8\x07\x00\x00~\x07\x00\x00\xa7\x07\x00\x00\x8a\x02\x00\x00\x89\x02\x00\x00\xb3\x02\x00\x00\xb4\x02\x00\x00\x8a\x02\x00\x00\xb3\x02\x00\x00\x8b\x02\x00\x00\x8a\x02\x00\x00\xb5\x02\x00\x00\x8a\x02\x00\x00\xb4\x02\x00\x00\xb5\x02\x00\x00\xb7\x02\x00\x00\xe0\x02\x00\x00\xe1\x02\x00\x00\xb7\x02\x00\x00\xb6\x02\x00\x00\xe0\x02\x00\x00\xb8\x02\x00\x00\xb7\x02\x00\x00\xe2\x02\x00\x00\xe2\x02\x00\x00\xb7\x02\x00\x00\xe1\x02\x00\x00\xe3\x02\x00\x00\x0e\x03\x00\x00\xe4\x02\x00\x00\x0e\x03\x00\x00\xe3\x02\x00\x00\r\x03\x00\x008\x03\x00\x00\x0e\x03\x00\x007\x03\x00\x007\x03\x00\x00\x0e\x03\x00\x00\r\x03\x00\x00\x0e\x03\x00\x00\x0f\x03\x00\x00\xe5\x02\x00\x00\x0e\x03\x00\x00\xe5\x02\x00\x00\xe4\x02\x00\x00\x0f\x03\x00\x00\x0e\x03\x00\x009\x03\x00\x00\x0e\x03\x00\x008\x03\x00\x009\x03\x00\x00\x0c\x03\x00\x00\xe3\x02\x00\x00\xe2\x02\x00\x00\xe3\x02\x00\x00\x0c\x03\x00\x00\r\x03\x00\x00\x0c\x03\x00\x006\x03\x00\x007\x03\x00\x00\x0c\x03\x00\x007\x03\x00\x00\r\x03\x00\x00\x0b\x03\x00\x00\x0c\x03\x00\x00\xe1\x02\x00\x00\x0c\x03\x00\x00\xe2\x02\x00\x00\xe1\x02\x00\x00\x0c\x03\x00\x00\x0b\x03\x00\x005\x03\x00\x006\x03\x00\x00\x0c\x03\x00\x005\x03\x00\x007\x02\x00\x00a\x02\x00\x008\x02\x00\x00a\x02\x00\x00b\x02\x00\x008\x02\x00\x00a\x02\x00\x00\x8b\x02\x00\x00\x8c\x02\x00\x00b\x02\x00\x00a\x02\x00\x00\x8c\x02\x00\x00\xac\x07\x00\x00\x83\x07\x00\x00\x82\x07\x00\x00\x83\x07\x00\x00\xac\x07\x00\x00\xad\x07\x00\x00\xad\x07\x00\x00\xac\x07\x00\x00\xd7\x07\x00\x00\xac\x07\x00\x00\xd6\x07\x00\x00\xd7\x07\x00\x00\xd5\x07\x00\x00\xd4\x07\x00\x00\xfe\x07\x00\x00\xff\x07\x00\x00\xd5\x07\x00\x00\xfe\x07\x00\x00\xd5\x07\x00\x00\xff\x07\x00\x00\x00\x08\x00\x00\xd6\x07\x00\x00\xd5\x07\x00\x00\x00\x08\x00\x00:\x06\x00\x00c\x06\x00\x00d\x06\x00\x009\x06\x00\x00c\x06\x00\x00:\x06\x00\x00c\x06\x00\x00\x8e\x06\x00\x00d\x06\x00\x00\x8e\x06\x00\x00c\x06\x00\x00\x8d\x06\x00\x00c\x06\x00\x008\x06\x00\x00b\x06\x00\x008\x06\x00\x00c\x06\x00\x009\x06\x00\x00\x8c\x06\x00\x00c\x06\x00\x00b\x06\x00\x00c\x06\x00\x00\x8c\x06\x00\x00\x8d\x06\x00\x00\x8f\x06\x00\x00\xb8\x06\x00\x00\xb9\x06\x00\x00\x8f\x06\x00\x00\x8e\x06\x00\x00\xb8\x06\x00\x00\x8f\x06\x00\x00e\x06\x00\x00d\x06\x00\x00\x8e\x06\x00\x00\x8f\x06\x00\x00d\x06\x00\x00\xe0\x06\x00\x00\xb5\x06\x00\x00\xdf\x06\x00\x00\xb5\x06\x00\x00\xe0\x06\x00\x00\xb6\x06\x00\x00\n\x07\x00\x00\xe0\x06\x00\x00\t\x07\x00\x00\t\x07\x00\x00\xe0\x06\x00\x00\xdf\x06\x00\x00\xb7\x06\x00\x00\x8c\x06\x00\x00\xb6\x06\x00\x00\x8c\x06\x00\x00\xb7\x06\x00\x00\x8d\x06\x00\x00\xe0\x06\x00\x00\xb7\x06\x00\x00\xb6\x06\x00\x00\xb7\x06\x00\x00\xe0\x06\x00\x00\xe1\x06\x00\x00\xb7\x06\x00\x00\x8e\x06\x00\x00\x8d\x06\x00\x00\x8e\x06\x00\x00\xb7\x06\x00\x00\xb8\x06\x00\x00\x0b\x07\x00\x00\n\x07\x00\x004\x07\x00\x005\x07\x00\x00\x0b\x07\x00\x004\x07\x00\x00\x0b\x07\x00\x00\xe0\x06\x00\x00\n\x07\x00\x00\xe0\x06\x00\x00\x0b\x07\x00\x00\xe1\x06\x00\x00\x0b\x07\x00\x005\x07\x00\x006\x07\x00\x00\x0c\x07\x00\x00\x0b\x07\x00\x006\x07\x00\x00\r\x07\x00\x00\xe2\x06\x00\x00\x0c\x07\x00\x00\xe3\x06\x00\x00\xe2\x06\x00\x00\r\x07\x00\x00\xe2\x06\x00\x00\xe3\x06\x00\x00\xb9\x06\x00\x00\xb8\x06\x00\x00\xe2\x06\x00\x00\xb9\x06\x00\x00\x0b\x07\x00\x00\xe2\x06\x00\x00\xe1\x06\x00\x00\xe2\x06\x00\x00\x0b\x07\x00\x00\x0c\x07\x00\x00\xe2\x06\x00\x00\xb7\x06\x00\x00\xe1\x06\x00\x00\xb7\x06\x00\x00\xe2\x06\x00\x00\xb8\x06\x00\x00\x03\x07\x00\x00\xd9\x06\x00\x00\xd8\x06\x00\x00\x03\x07\x00\x00\xd8\x06\x00\x00\x02\x07\x00\x00,\x07\x00\x00\x03\x07\x00\x00\x02\x07\x00\x00-\x07\x00\x00\x03\x07\x00\x00,\x07\x00\x00\x03\x07\x00\x00\xda\x06\x00\x00\xd9\x06\x00\x00\xda\x06\x00\x00\x03\x07\x00\x00\x04\x07\x00\x00.\x07\x00\x00W\x07\x00\x00X\x07\x00\x00.\x07\x00\x00-\x07\x00\x00W\x07\x00\x00.\x07\x00\x00\x03\x07\x00\x00-\x07\x00\x00\x03\x07\x00\x00.\x07\x00\x00\x04\x07\x00\x00.\x07\x00\x00Y\x07\x00\x00/\x07\x00\x00Y\x07\x00\x00.\x07\x00\x00X\x07\x00\x00\x05\x07\x00\x00.\x07\x00\x00/\x07\x00\x00\x04\x07\x00\x00.\x07\x00\x00\x05\x07\x00\x00F\x07\x00\x00\x1d\x07\x00\x00\x1c\x07\x00\x00F\x07\x00\x00G\x07\x00\x00\x1d\x07\x00\x00\x1b\x07\x00\x00F\x07\x00\x00\x1c\x07\x00\x00F\x07\x00\x00\x1b\x07\x00\x00E\x07\x00\x00F\x07\x00\x00o\x07\x00\x00p\x07\x00\x00o\x07\x00\x00F\x07\x00\x00E\x07\x00\x00\x9b\x07\x00\x00q\x07\x00\x00\x9a\x07\x00\x00q\x07\x00\x00p\x07\x00\x00\x9a\x07\x00\x00F\x07\x00\x00q\x07\x00\x00G\x07\x00\x00q\x07\x00\x00F\x07\x00\x00p\x07\x00\x00J\x07\x00\x00!\x07\x00\x00 \x07\x00\x00!\x07\x00\x00J\x07\x00\x00K\x07\x00\x00K\x07\x00\x00J\x07\x00\x00u\x07\x00\x00J\x07\x00\x00t\x07\x00\x00u\x07\x00\x00\xc2\x07\x00\x00\x97\x07\x00\x00\xc1\x07\x00\x00\x97\x07\x00\x00\xc2\x07\x00\x00\x98\x07\x00\x00\xc2\x07\x00\x00\xc3\x07\x00\x00\x99\x07\x00\x00\xc2\x07\x00\x00\x99\x07\x00\x00\x98\x07\x00\x00\xbd\x06\x00\x00\xe8\x06\x00\x00\xbe\x06\x00\x00\xe8\x06\x00\x00\xbd\x06\x00\x00\xe7\x06\x00\x00\x11\x07\x00\x00\xe8\x06\x00\x00\xe7\x06\x00\x00\x12\x07\x00\x00\xe8\x06\x00\x00\x11\x07\x00\x00\xbf\x06\x00\x00\xe8\x06\x00\x00\xe9\x06\x00\x00\xe8\x06\x00\x00\xbf\x06\x00\x00\xbe\x06\x00\x00\xe8\x06\x00\x00\x13\x07\x00\x00\xe9\x06\x00\x00\xe8\x06\x00\x00\x12\x07\x00\x00\x13\x07\x00\x00\xe0\x04\x00\x00\xb6\x04\x00\x00\xb5\x04\x00\x00\xe0\x04\x00\x00\xb5\x04\x00\x00\xdf\x04\x00\x00\xb6\x04\x00\x00\xe0\x04\x00\x00\xb7\x04\x00\x00\xe0\x04\x00\x00\xe1\x04\x00\x00\xb7\x04\x00\x004\x05\x00\x00]\x05\x00\x00^\x05\x00\x00]\x05\x00\x004\x05\x00\x003\x05\x00\x00_\x05\x00\x004\x05\x00\x00^\x05\x00\x005\x05\x00\x004\x05\x00\x00_\x05\x00\x00\xd9\x04\x00\x00\xb0\x04\x00\x00\xaf\x04\x00\x00\xda\x04\x00\x00\xb0\x04\x00\x00\xd9\x04\x00\x00\xb0\x04\x00\x00\x85\x04\x00\x00\xaf\x04\x00\x00\xb0\x04\x00\x00\x86\x04\x00\x00\x85\x04\x00\x00\xb0\x04\x00\x00\xda\x04\x00\x00\xdb\x04\x00\x00\xb1\x04\x00\x00\xb0\x04\x00\x00\xdb\x04\x00\x00\xb0\x04\x00\x00\x87\x04\x00\x00\x86\x04\x00\x00\x87\x04\x00\x00\xb0\x04\x00\x00\xb1\x04\x00\x00\x86\x04\x00\x00\x87\x04\x00\x00\\\x04\x00\x00\x87\x04\x00\x00]\x04\x00\x00\\\x04\x00\x00\x87\x04\x00\x00\xb2\x04\x00\x00\x88\x04\x00\x00\x87\x04\x00\x00\xb1\x04\x00\x00\xb2\x04\x00\x00\xb6\x03\x00\x00\xb5\x03\x00\x00\xdf\x03\x00\x00\xb6\x03\x00\x00\xdf\x03\x00\x00\xe0\x03\x00\x00\xb6\x03\x00\x00\x8c\x03\x00\x00\x8b\x03\x00\x00\xb5\x03\x00\x00\xb6\x03\x00\x00\x8b\x03\x00\x00\xe1\x03\x00\x00\xb6\x03\x00\x00\xe0\x03\x00\x00\xb7\x03\x00\x00\xb6\x03\x00\x00\xe1\x03\x00\x00\x8c\x03\x00\x00\xb6\x03\x00\x00\x8d\x03\x00\x00\xb6\x03\x00\x00\xb7\x03\x00\x00\x8d\x03\x00\x00\xe2\x03\x00\x00\xe3\x03\x00\x00\xb9\x03\x00\x00\xb8\x03\x00\x00\xe2\x03\x00\x00\xb9\x03\x00\x00\xe2\x03\x00\x00\r\x04\x00\x00\xe3\x03\x00\x00\xe2\x03\x00\x00\x0c\x04\x00\x00\r\x04\x00\x00\xb7\x03\x00\x00\xe2\x03\x00\x00\xb8\x03\x00\x00\xe2\x03\x00\x00\xb7\x03\x00\x00\xe1\x03\x00\x00\xe2\x03\x00\x00\xe1\x03\x00\x00\x0b\x04\x00\x00\x0c\x04\x00\x00\xe2\x03\x00\x00\x0b\x04\x00\x006\x04\x00\x00_\x04\x00\x00`\x04\x00\x00_\x04\x00\x006\x04\x00\x005\x04\x00\x006\x04\x00\x00\x0c\x04\x00\x00\x0b\x04\x00\x005\x04\x00\x006\x04\x00\x00\x0b\x04\x00\x007\x04\x00\x006\x04\x00\x00a\x04\x00\x006\x04\x00\x00`\x04\x00\x00a\x04\x00\x00\r\x04\x00\x006\x04\x00\x007\x04\x00\x00\x0c\x04\x00\x006\x04\x00\x00\r\x04\x00\x00\x87\x04\x00\x00^\x04\x00\x00]\x04\x00\x00^\x04\x00\x00\x87\x04\x00\x00\x88\x04\x00\x00\x89\x04\x00\x00^\x04\x00\x00\x88\x04\x00\x00_\x04\x00\x00^\x04\x00\x00\x89\x04\x00\x00\n\x04\x00\x00\xe1\x03\x00\x00\xe0\x03\x00\x00\xe1\x03\x00\x00\n\x04\x00\x00\x0b\x04\x00\x00\t\x04\x00\x00\n\x04\x00\x00\xdf\x03\x00\x00\xdf\x03\x00\x00\n\x04\x00\x00\xe0\x03\x00\x00\x9d\x07\x00\x00\xc8\x07\x00\x00\x9e\x07\x00\x00\x9d\x07\x00\x00\xc7\x07\x00\x00\xc8\x07\x00\x00\xc6\x00\x00\x00\xef\x00\x00\x00\xf0\x00\x00\x00\xc5\x00\x00\x00\xef\x00\x00\x00\xc6\x00\x00\x00\xef\x00\x00\x00\x1a\x01\x00\x00\xf0\x00\x00\x00\xef\x00\x00\x00\x19\x01\x00\x00\x1a\x01\x00\x00\xee\x00\x00\x00\xef\x00\x00\x00\xc4\x00\x00\x00\xef\x00\x00\x00\xc5\x00\x00\x00\xc4\x00\x00\x00\xef\x00\x00\x00\xee\x00\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00\xef\x00\x00\x00\x18\x01\x00\x00\x98\x00\x00\x00m\x00\x00\x00\x97\x00\x00\x00\x98\x00\x00\x00n\x00\x00\x00m\x00\x00\x00\xc1\x00\x00\x00\x98\x00\x00\x00\x97\x00\x00\x00\xc2\x00\x00\x00\x98\x00\x00\x00\xc1\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00o\x00\x00\x00n\x00\x00\x00\x98\x00\x00\x00o\x00\x00\x00\x99\x00\x00\x00\x98\x00\x00\x00\xc3\x00\x00\x00\x98\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\x15\x02\x00\x00\x16\x02\x00\x00\xeb\x01\x00\x00\xeb\x01\x00\x00\x16\x02\x00\x00\xec\x01\x00\x00\x16\x02\x00\x00?\x02\x00\x00@\x02\x00\x00\x16\x02\x00\x00\x15\x02\x00\x00?\x02\x00\x00\xed\x01\x00\x00\x16\x02\x00\x00\x17\x02\x00\x00\xec\x01\x00\x00\x16\x02\x00\x00\xed\x01\x00\x00\x16\x02\x00\x00A\x02\x00\x00\x17\x02\x00\x00\x16\x02\x00\x00@\x02\x00\x00A\x02\x00\x00\xc2\x01\x00\x00\xc1\x01\x00\x00\xeb\x01\x00\x00\xc2\x01\x00\x00\xeb\x01\x00\x00\xec\x01\x00\x00\x97\x01\x00\x00\xc2\x01\x00\x00\x98\x01\x00\x00\xc1\x01\x00\x00\xc2\x01\x00\x00\x97\x01\x00\x00\xc2\x01\x00\x00\xed\x01\x00\x00\xc3\x01\x00\x00\xc2\x01\x00\x00\xec\x01\x00\x00\xed\x01\x00\x00\xc2\x01\x00\x00\x99\x01\x00\x00\x98\x01\x00\x00\x99\x01\x00\x00\xc2\x01\x00\x00\xc3\x01\x00\x00\x0b\x01\x00\x00\xe0\x00\x00\x00\n\x01\x00\x00\x0b\x01\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x004\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x005\x01\x00\x00\x0b\x01\x00\x004\x01\x00\x00\x0b\x01\x00\x00\x0c\x01\x00\x00\xe2\x00\x00\x00\xe1\x00\x00\x00\x0b\x01\x00\x00\xe2\x00\x00\x00\x0b\x01\x00\x006\x01\x00\x00\x0c\x01\x00\x00\x0b\x01\x00\x005\x01\x00\x006\x01\x00\x00x\x02\x00\x00y\x02\x00\x00O\x02\x00\x00N\x02\x00\x00x\x02\x00\x00O\x02\x00\x00x\x02\x00\x00N\x02\x00\x00M\x02\x00\x00w\x02\x00\x00x\x02\x00\x00M\x02\x00\x00M\x05\x00\x00"\x05\x00\x00L\x05\x00\x00M\x05\x00\x00#\x05\x00\x00"\x05\x00\x00v\x05\x00\x00M\x05\x00\x00L\x05\x00\x00w\x05\x00\x00M\x05\x00\x00v\x05\x00\x00$\x05\x00\x00M\x05\x00\x00N\x05\x00\x00#\x05\x00\x00M\x05\x00\x00$\x05\x00\x00M\x05\x00\x00x\x05\x00\x00N\x05\x00\x00M\x05\x00\x00w\x05\x00\x00x\x05\x00\x00\x1a\x07\x00\x00D\x07\x00\x00\x1b\x07\x00\x00\x1b\x07\x00\x00D\x07\x00\x00E\x07\x00\x00D\x07\x00\x00n\x07\x00\x00o\x07\x00\x00D\x07\x00\x00o\x07\x00\x00E\x07\x00\x00C\x07\x00\x00D\x07\x00\x00\x19\x07\x00\x00D\x07\x00\x00\x1a\x07\x00\x00\x19\x07\x00\x00D\x07\x00\x00C\x07\x00\x00m\x07\x00\x00n\x07\x00\x00D\x07\x00\x00m\x07\x00\x00\x9f\x06\x00\x00u\x06\x00\x00t\x06\x00\x00\x9f\x06\x00\x00t\x06\x00\x00\x9e\x06\x00\x00\xc8\x06\x00\x00\x9f\x06\x00\x00\x9e\x06\x00\x00\xc9\x06\x00\x00\x9f\x06\x00\x00\xc8\x06\x00\x00u\x06\x00\x00\x9f\x06\x00\x00v\x06\x00\x00\x9f\x06\x00\x00\xa0\x06\x00\x00v\x06\x00\x00\xa0\x06\x00\x00\x9f\x06\x00\x00\xca\x06\x00\x00\x9f\x06\x00\x00\xc9\x06\x00\x00\xca\x06\x00\x00\xf5\x04\x00\x00\xf4\x04\x00\x00\x1f\x05\x00\x00\xf4\x04\x00\x00\x1e\x05\x00\x00\x1f\x05\x00\x00\x1e\x05\x00\x00\xf4\x04\x00\x00\x1d\x05\x00\x00\xf4\x04\x00\x00\xf3\x04\x00\x00\x1d\x05\x00\x00c\x02\x00\x00\x8d\x02\x00\x00d\x02\x00\x00\x8d\x02\x00\x00\x8e\x02\x00\x00d\x02\x00\x00\x8d\x02\x00\x00\xb8\x02\x00\x00\x8e\x02\x00\x00\x8d\x02\x00\x00\xb7\x02\x00\x00\xb8\x02\x00\x00b\x02\x00\x00\x8d\x02\x00\x00c\x02\x00\x00\x8d\x02\x00\x00b\x02\x00\x00\x8c\x02\x00\x00\x8d\x02\x00\x00\x8c\x02\x00\x00\xb6\x02\x00\x00\xb7\x02\x00\x00\x8d\x02\x00\x00\xb6\x02\x00\x00`\x02\x00\x007\x02\x00\x006\x02\x00\x00`\x02\x00\x00a\x02\x00\x007\x02\x00\x00`\x02\x00\x00\x8a\x02\x00\x00\x8b\x02\x00\x00a\x02\x00\x00`\x02\x00\x00\x8b\x02\x00\x00`\x02\x00\x005\x02\x00\x00_\x02\x00\x005\x02\x00\x00`\x02\x00\x006\x02\x00\x00\x89\x02\x00\x00`\x02\x00\x00_\x02\x00\x00\x8a\x02\x00\x00`\x02\x00\x00\x89\x02\x00\x00\xab\x07\x00\x00\x80\x07\x00\x00\xaa\x07\x00\x00\x80\x07\x00\x00\xab\x07\x00\x00\x81\x07\x00\x00\xd4\x07\x00\x00\xab\x07\x00\x00\xaa\x07\x00\x00\xd5\x07\x00\x00\xab\x07\x00\x00\xd4\x07\x00\x00\xab\x07\x00\x00\x82\x07\x00\x00\x81\x07\x00\x00\xab\x07\x00\x00\xac\x07\x00\x00\x82\x07\x00\x00\xac\x07\x00\x00\xab\x07\x00\x00\xd6\x07\x00\x00\xab\x07\x00\x00\xd5\x07\x00\x00\xd6\x07\x00\x00\xec\x07\x00\x00\xeb\x07\x00\x00\x15\x08\x00\x00\x16\x08\x00\x00\xec\x07\x00\x00\x15\x08\x00\x00\xec\x07\x00\x00\xc1\x07\x00\x00\xeb\x07\x00\x00\xec\x07\x00\x00\xc2\x07\x00\x00\xc1\x07\x00\x00\x17\x08\x00\x00\xec\x07\x00\x00\x16\x08\x00\x00\xec\x07\x00\x00\x17\x08\x00\x00\xed\x07\x00\x00\xc3\x07\x00\x00\xec\x07\x00\x00\xed\x07\x00\x00\xc2\x07\x00\x00\xec\x07\x00\x00\xc3\x07\x00\x00\xe1\x04\x00\x00\n\x05\x00\x00\x0b\x05\x00\x00\xe0\x04\x00\x00\n\x05\x00\x00\xe1\x04\x00\x00\n\x05\x00\x005\x05\x00\x00\x0b\x05\x00\x00\n\x05\x00\x004\x05\x00\x005\x05\x00\x00\t\x05\x00\x00\n\x05\x00\x00\xdf\x04\x00\x00\n\x05\x00\x00\xe0\x04\x00\x00\xdf\x04\x00\x00\n\x05\x00\x00\t\x05\x00\x003\x05\x00\x004\x05\x00\x00\n\x05\x00\x003\x05\x00\x004\x04\x00\x00_\x04\x00\x005\x04\x00\x004\x04\x00\x00^\x04\x00\x00_\x04\x00\x004\x04\x00\x005\x04\x00\x00\x0b\x04\x00\x00\n\x04\x00\x004\x04\x00\x00\x0b\x04\x00\x00\xa2\x02\x00\x00\xcb\x02\x00\x00\xcc\x02\x00\x00\xa2\x02\x00\x00\xa1\x02\x00\x00\xcb\x02\x00\x00\xa2\x02\x00\x00w\x02\x00\x00\xa1\x02\x00\x00\xa2\x02\x00\x00x\x02\x00\x00w\x02\x00\x00\xcd\x02\x00\x00\xa2\x02\x00\x00\xcc\x02\x00\x00\xa2\x02\x00\x00\xcd\x02\x00\x00\xa3\x02\x00\x00\xa2\x02\x00\x00\xa3\x02\x00\x00y\x02\x00\x00x\x02\x00\x00\xa2\x02\x00\x00y\x02\x00\x00\xa1\x04\x00\x00\xca\x04\x00\x00\xcb\x04\x00\x00\xa0\x04\x00\x00\xca\x04\x00\x00\xa1\x04\x00\x00\xcb\x04\x00\x00\xca\x04\x00\x00\xf5\x04\x00\x00\xca\x04\x00\x00\xf4\x04\x00\x00\xf5\x04\x00\x00\xca\x04\x00\x00\xa0\x04\x00\x00\x9f\x04\x00\x00\xc9\x04\x00\x00\xca\x04\x00\x00\x9f\x04\x00\x00\xf3\x04\x00\x00\xca\x04\x00\x00\xc9\x04\x00\x00\xf4\x04\x00\x00\xca\x04\x00\x00\xf3\x04\x00\x00^\x04\x00\x003\x04\x00\x00]\x04\x00\x004\x04\x00\x003\x04\x00\x00^\x04\x00\x003\x04\x00\x00\n\x04\x00\x00\t\x04\x00\x003\x04\x00\x004\x04\x00\x00\n\x04\x00\x003\x04\x00\x002\x04\x00\x00\\\x04\x00\x00]\x04\x00\x003\x04\x00\x00\\\x04\x00\x002\x04\x00\x003\x04\x00\x00\x08\x04\x00\x003\x04\x00\x00\t\x04\x00\x00\x08\x04\x00\x00\x1d\x07\x00\x00H\x07\x00\x00\x1e\x07\x00\x00G\x07\x00\x00H\x07\x00\x00\x1d\x07\x00\x00q\x07\x00\x00H\x07\x00\x00G\x07\x00\x00r\x07\x00\x00H\x07\x00\x00q\x07\x00\x00\x1f\x07\x00\x00I\x07\x00\x00 \x07\x00\x00I\x07\x00\x00J\x07\x00\x00 \x07\x00\x00I\x07\x00\x00\x1f\x07\x00\x00\x1e\x07\x00\x00H\x07\x00\x00I\x07\x00\x00\x1e\x07\x00\x00\xc6\x07\x00\x00\x9c\x07\x00\x00\xc5\x07\x00\x00\x9c\x07\x00\x00\x9b\x07\x00\x00\xc5\x07\x00\x00\x9c\x07\x00\x00q\x07\x00\x00\x9b\x07\x00\x00\x9c\x07\x00\x00r\x07\x00\x00q\x07\x00\x00\xc7\x07\x00\x00\x9c\x07\x00\x00\xc6\x07\x00\x00\x9d\x07\x00\x00\x9c\x07\x00\x00\xc7\x07\x00\x00t\x07\x00\x00s\x07\x00\x00\x9e\x07\x00\x00s\x07\x00\x00\x9d\x07\x00\x00\x9e\x07\x00\x00J\x07\x00\x00s\x07\x00\x00t\x07\x00\x00I\x07\x00\x00s\x07\x00\x00J\x07\x00\x00\x9c\x07\x00\x00s\x07\x00\x00r\x07\x00\x00s\x07\x00\x00\x9c\x07\x00\x00\x9d\x07\x00\x00s\x07\x00\x00H\x07\x00\x00r\x07\x00\x00s\x07\x00\x00I\x07\x00\x00H\x07\x00\x00\x03\x00\x01\x00\xb8\x81\x01\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x004\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x004\x08\x00\x00\xb2\x0f\x00\x00\x80\x00\x00\x00\xf0b\x00\x00\xf0b\x00\x00\xf0b\x00\x00`\xc5\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\n\x00Topography \x00\x00\x00\x00\xd9\xd8\x07D\x00\x00\x00\x00\x00\x00\x00\x00\x92\xb4\x04D8\x1f\xc3A\x00\x00\x00\x00\xff>\x03D8\x1fCB\x00\x00\x00\x00s\xb6\x0cDjW\x92B\x00\x00\x00\x00\xab\x03\x15D8\x1f\xc3B\x00\x00\x00\x00\xca\xf6\x17D\x06\xe7\xf3B\x00\x00\x00\x00^9\x19DjW\x12C\x00\x00\x00\x00ej\x1fDQ\xbb*C\x00\x00\x00\x00a\xdc&D8\x1fCC\x00\x00\x00\x00\xe27.D\x1f\x83[C\x00\x00\x00\x00\xa2\xdf8D\x06\xe7sC\x00\x00\x00\x00\xf8\x1eDDw%\x86C\x00\x00\x00\x00-\x0bNDjW\x92C\x00\x00\x00\x00\x96\x14WD^\x89\x9eC\x00\x00\x00\x00\xdblaDQ\xbb\xaaC\x00\x00\x00\x00\xc7\xddcDE\xed\xb6C\x00\x00\x00\x00q\xb0_D8\x1f\xc3C\x00\x00\x00\x00\x04\\XD,Q\xcfC\x00\x00\x00\x003\xb1JD\x1f\x83\xdbC\x00\x00\x00\x00\x01m>D\x13\xb5\xe7C\x00\x00\x00\x00\xa9&3D\x06\xe7\xf3C\x00\x00\x00\x00\x96/,D}\x0c\x00D\x00\x00\x00\x00\xb4\xa6&Dw%\x06D\x00\x00\x00\x00z\x14 Dp>\x0cD\x00\x00\x00\x00p\xfd\x16DjW\x12D\x00\x00\x00\x00-Q\x0eDdp\x18D\x00\x00\x00\x00\xb7\x14\x05D^\x89\x1eD\x00\x00\x00\x00\x1a\xf4\xfeCW\xa2$D\x00\x00\x00\x00\x16\xa8\xf7CQ\xbb*D\x00\x00\x00\x00\x92V\xebCK\xd40D\x00\x00\x00\x00\x05\xff\xf0CE\xed6D\x00\x00\x00\x00\x9d\xeb\xf8C>\x06=D\x00\x00\x00\x00\xdf$\xf6C8\x1fCD\x00\x00\x00\x00\xd6\x10\xf4C28ID\x00\x00\x00\x00\x04\xe1\xf0C,QOD\x00\x00\x00\x00\xce\x8d\xe6C%jUD\x00\x00\x00\x00o\xdd\xe3C\x1f\x83[D\x00\x00\x00\x00\xdcW\xe9C\x19\x9caD\x00\x00\x00\x00*\xcc\xefC\x13\xb5gD\x00\x00\x00\x00\x0c3\xf5C\x0c\xcemD\x00\x00\x00\x00o\xf1\xf7C\x06\xe7sD\x00\x00\x00\x00\xe4\x96\xeeC\x00\x00zD\xebC\xa3A\x85\r\tD\x00\x00\x00\x00\xebC\xa3A\xe2\xc0\x06D8\x1f\xc3A\xebC\xa3A\xe0\xd6\x08D8\x1fCB\xebC\xa3A\x95\x15\x0cDjW\x92B\xebC\xa3A-2\x12D8\x1f\xc3B\xebC\xa3A"\xb3\x16D\x06\xe7\xf3B\xebC\xa3A\xf0\x83\x1cDjW\x12C\xebC\xa3A\xb3\xfc$DQ\xbb*C\xebC\xa3A\xc4M+D8\x1fCC\xebC\xa3AF\x134D\x1f\x83[C\xebC\xa3A\x10\x999D\x06\xe7sC\xebC\xa3A@y@Dw%\x86C\xebC\xa3A\x14\xd5LDjW\x92C\xebC\xa3A\xf1\xffXD^\x89\x9eC\xebC\xa3Ak\xf1aDQ\xbb\xaaC\xebC\xa3A\x00\x00fDE\xed\xb6C\xebC\xa3A9\xf2^D8\x1f\xc3C\xebC\xa3A\x9cxTD,Q\xcfC\xebC\xa3A\xf1tHD\x1f\x83\xdbC\xebC\xa3A\x07dAD\x13\xb5\xe7C\xebC\xa3A)y8D\x06\xe7\xf3C\xebC\xa3A\x8432D}\x0c\x00D\xebC\xa3A\x1d\x9f,Dw%\x06D\xebC\xa3AM\xc7&Dp>\x0cD\xebC\xa3AL\x80\x1bDjW\x12D\xebC\xa3A\xd8\x0c\x12Ddp\x18D\xebC\xa3A\x82\xd7\x08D^\x89\x1eD\xebC\xa3A\x800\x01DW\xa2$D\xebC\xa3A\x0f\t\xf8CQ\xbb*D\xebC\xa3A\xd9\xea\xeeCK\xd40D\xebC\xa3A\xcan\xfaCE\xed6D\xebC\xa3A ,\xfdC>\x06=D\xebC\xa3A\xa6\xca\xf5C8\x1fCD\xebC\xa3A\xbf\x81\xefC28ID\xebC\xa3At\xb7\xe7C,QOD\xebC\xa3A\x0f:\xe6C%jUD\xebC\xa3A\xb8\xf3\xe4C\x1f\x83[D\xebC\xa3A\xa3\x15\xe0C\x19\x9caD\xebC\xa3A[-\xe6C\x13\xb5gD\xebC\xa3AM\x9d\xefC\x0c\xcemD\xebC\xa3A>\x18\xecC\x06\xe7sD\xebC\xa3AB\xbc\xe8C\x00\x00zD\xebC#Bw\xfe\tD\x00\x00\x00\x00\xebC#B\x83\x89\tD8\x1f\xc3A\xebC#B\xa1?\x0bD8\x1fCB\xebC#B\xfd\x8e\x0cDjW\x92B\xebC#B\xc6\xb7\rD8\x1f\xc3B\xebC#B4<\x14D\x06\xe7\xf3B\xebC#B\x03<\x1dDjW\x12C\xebC#B}$(DQ\xbb*C\xebC#B\xac\x8b1D8\x1fCC\xebC#BT\x1b7D\x1f\x83[C\xebC#B\xf5\\8D\x06\xe7sC\xebC#BIp@Dw%\x86C\xebC#B\x12\x89KDjW\x92C\xebC#B\xcc\xe3WD^\x89\x9eC\xebC#B\xfcw^DQ\xbb\xaaC\xebC#B\x0bqaDE\xed\xb6C\xebC#B\xd0\x19[D8\x1f\xc3C\xebC#BeYQD,Q\xcfC\xebC#B\xc0\xcfHD\x1f\x83\xdbC\xebC#BxtAD\x13\xb5\xe7C\xebC#BU`;D\x06\xe7\xf3C\xebC#B\xcfW4D}\x0c\x00D\xebC#B\x08\xa00Dw%\x06D\xebC#B\xce\x88)Dp>\x0cD\xebC#B*\xc1\x1fDjW\x12D\xebC#BA\xc1\x17Ddp\x18D\xebC#B\x05\xca\x10D^\x89\x1eD\xebC#B\xfeK\x06DW\xa2$D\xebC#BD$\xfbCQ\xbb*D\xebC#B\x1cc\xf3CK\xd40D\xebC#B\x15\xbc\xf8CE\xed6D\xebC#B\xb8\x03\xf8C>\x06=D\xebC#B->\xedC8\x1fCD\xebC#B\x96\xfe\xe1C28ID\xebC#B\x8e\x8b\xdfC,QOD\xebC#Bx\x96\xd5C%jUD\xebC#B\x87d\xd4C\x1f\x83[D\xebC#B\xc3\x08\xd4C\x19\x9caD\xebC#B\xf5\x08\xd7C\x13\xb5gD\xebC#B~\x00\xdcC\x0c\xcemD\xebC#B\xb09\xe1C\x06\xe7sD\xebC#B\xdfU\xe1C\x00\x00zD\xe1\xe5tB\xc0V\x07D\x00\x00\x00\x00\xe1\xe5tBst\x06D8\x1f\xc3A\xe1\xe5tB\x9aG\x07D8\x1fCB\xe1\xe5tB\xa9F\x07DjW\x92B\xe1\xe5tB~G\x08D8\x1f\xc3B\xe1\xe5tB\xc0\x8a\x10D\x06\xe7\xf3B\xe1\xe5tB~\x92\x18DjW\x12C\xe1\xe5tB\xa5\xab#DQ\xbb*C\xe1\xe5tB\xeb92D8\x1fCC\xe1\xe5tB\xad\xe58D\x1f\x83[C\xe1\xe5tBOb;D\x06\xe7sC\xe1\xe5tB\xdc)BDw%\x86C\xe1\xe5tB\x03\rLDjW\x92C\xe1\xe5tB\x13\xf8QD^\x89\x9eC\xe1\xe5tBOuRDQ\xbb\xaaC\xe1\xe5tB\x10\xecSDE\xed\xb6C\xe1\xe5tBwtRD8\x1f\xc3C\xe1\xe5tB&\xe9ND,Q\xcfC\xe1\xe5tB\xa1aGD\x1f\x83\xdbC\xe1\xe5tB\xe5\x1e?D\x13\xb5\xe7C\xe1\xe5tB\xc2\x928D\x06\xe7\xf3C\xe1\xe5tB(\x992D}\x0c\x00D\xe1\xe5tB\xda\xd1.Dw%\x06D\xe1\xe5tB\xca\x12*Dp>\x0cD\xe1\xe5tB\x8a2"DjW\x12D\xe1\xe5tB\x9f\x91\x19Ddp\x18D\xe1\xe5tB\xe1\xa6\x12D^\x89\x1eD\xe1\xe5tB\xd5\xfb\x08DW\xa2$D\xe1\xe5tBG\xa9\xf6CQ\xbb*D\xe1\xe5tB^H\xebCK\xd40D\xe1\xe5tBu\xfc\xe7CE\xed6D\xe1\xe5tB$\x86\xe7C>\x06=D\xe1\xe5tB\xf01\xe7C8\x1fCD\xe1\xe5tB\xd6\xe4\xddC28ID\xe1\xe5tBK\xec\xd3C,QOD\xe1\xe5tB\xed\xb1\xcaC%jUD\xe1\xe5tB\x17\x9a\xc6C\x1f\x83[D\xe1\xe5tB\x1a\x05\xc8C\x19\x9caD\xe1\xe5tB(C\xc7C\x13\xb5gD\xe1\xe5tB\x90B\xc9C\x0c\xcemD\xe1\xe5tB\x07\xfe\xd2C\x06\xe7sD\xe1\xe5tB\xda-\xd4C\x00\x00zD\xebC\xa3Bm<\x04D\x00\x00\x00\x00\xebC\xa3B\x1c\x99\x05D8\x1f\xc3A\xebC\xa3B\x1c\xbb\x05D8\x1fCB\xebC\xa3B\x02\xb0\x02DjW\x92B\xebC\xa3B\x93\x8b\x03D8\x1f\xc3B\xebC\xa3B\x11r\rD\x06\xe7\xf3B\xebC\xa3B\xb0\xa3\x15DjW\x12C\xebC\xa3B\xd2Y\x1dDQ\xbb*C\xebC\xa3B=[+D8\x1fCC\xebC\xa3B\x08h6D\x1f\x83[C\xebC\xa3B\x96\xec;D\x06\xe7sC\xebC\xa3B\xaf`@Dw%\x86C\xebC\xa3B\xb1\xc3EDjW\x92C\xebC\xa3B\x1e\xbaID^\x89\x9eC\xebC\xa3B\xf2\xcbKDQ\xbb\xaaC\xebC\xa3B\x12\x9cMDE\xed\xb6C\xebC\xa3B\xbd(ID8\x1f\xc3C\xebC\xa3BP{HD,Q\xcfC\xebC\xa3Bp\xf9FD\x1f\x83\xdbC\xebC\xa3BE\xc6@D\x13\xb5\xe7C\xebC\xa3Bd47D\x06\xe7\xf3C\xebC\xa3B\xdf\x1f4D}\x0c\x00D\xebC\xa3B\xa4\x9c3Dw%\x06D\xebC\xa3B\x80\xa8-Dp>\x0cD\xebC\xa3B\x80w%DjW\x12D\xebC\xa3B\xc5\x0c\x1dDdp\x18D\xebC\xa3B\xa6\xbb\x13D^\x89\x1eD\xebC\xa3B\xd6\xc1\nDW\xa2$D\xebC\xa3B-a\xf8CQ\xbb*D\xebC\xa3B\xf3D\xe5CK\xd40D\xebC\xa3BT\x0c\xdeCE\xed6D\xebC\xa3Bm]\xdfC>\x06=D\xebC\xa3B\xe1\xa0\xe3C8\x1fCD\xebC\xa3Bj^\xdbC28ID\xebC\xa3B\xb8\x95\xcbC,QOD\xebC\xa3B\x0b\x85\xc1C%jUD\xebC\xa3B2\xc7\xbfC\x1f\x83[D\xebC\xa3B\xe2\x9c\xc4C\x19\x9caD\xebC\xa3B\xd1\xf2\xbbC\x13\xb5gD\xebC\xa3B\xc4\x92\xbbC\x0c\xcemD\xebC\xa3B\x8a\x02\xbfC\x06\xe7sD\xebC\xa3B\xf0\x1f\xc0C\x00\x00zD\xe6\x14\xccB\xd3\xcd\xf9C\x00\x00\x00\x00\xe6\x14\xccB\x07?\x03D8\x1f\xc3A\xe6\x14\xccB\xf1\xfa\x04D8\x1fCB\xe6\x14\xccB\xf23\xfeCjW\x92B\xe6\x14\xccB\x96\xcf\xf7C8\x1f\xc3B\xe6\x14\xccB#\x9a\x06D\x06\xe7\xf3B\xe6\x14\xccB \xba\x11DjW\x12C\xe6\x14\xccB\xf6\x1b\x17DQ\xbb*C\xe6\x14\xccBpj\x1fD8\x1fCC\xe6\x14\xccB\x8a8,D\x1f\x83[C\xe6\x14\xccB\x18\xbf1D\x06\xe7sC\xe6\x14\xccB\xe6L5Dw%\x86C\xe6\x14\xccB\xb749DjW\x92C\xe6\x14\xccB\xe0\x9c=D^\x89\x9eC\xe6\x14\xccB\xfa\xa5@DQ\xbb\xaaC\xe6\x14\xccB\xaa\x19DDE\xed\xb6C\xe6\x14\xccB\xd5\xbcDD8\x1f\xc3C\xe6\x14\xccB\x1f\x14GD,Q\xcfC\xe6\x14\xccB\x97]GD\x1f\x83\xdbC\xe6\x14\xccB\xd0\xdeCD\x13\xb5\xe7C\xe6\x14\xccBl\xd7<D\x06\xe7\xf3C\xe6\x14\xccB\x80\x1e9D}\x0c\x00D\xe6\x14\xccB\x1cq5Dw%\x06D\xe6\x14\xccB\x9b\xec-Dp>\x0cD\xe6\x14\xccB^\xa3#DjW\x12D\xe6\x14\xccB\x17D\x1cDdp\x18D\xe6\x14\xccB@\x0e\x14D^\x89\x1eD\xe6\x14\xccB{\xc6\x0cDW\xa2$D\xe6\x14\xccB1\x11\x03DQ\xbb*D\xe6\x14\xccB\'\x0f\xedCK\xd40D\xe6\x14\xccB\x9c\xa4\xd8CE\xed6D\xe6\x14\xccB\xb6?\xdaC>\x06=D\xe6\x14\xccBc\xde\xdfC8\x1fCD\xe6\x14\xccB\xdf\x05\xd7C28ID\xe6\x14\xccB\x9f\xca\xc8C,QOD\xe6\x14\xccB\x88~\xbaC%jUD\xe6\x14\xccB\x9a,\xb3C\x1f\x83[D\xe6\x14\xccB\x1f\x08\xb9C\x19\x9caD\xe6\x14\xccBl<\xb7C\x13\xb5gD\xe6\x14\xccB\xe7\xf1\xb2C\x0c\xcemD\xe6\x14\xccB\x13L\xb1C\x06\xe7sD\xe6\x14\xccB\xc2\x92\xafC\x00\x00zD\xe1\xe5\xf4BD\xc3\xdaC\x00\x00\x00\x00\xe1\xe5\xf4Biq\xe8C8\x1f\xc3A\xe1\xe5\xf4B\x15\x18\xefC8\x1fCB\xe1\xe5\xf4B\x1b\xe1\xeaCjW\x92B\xe1\xe5\xf4B\xb5\xe0\xecC8\x1f\xc3B\xe1\xe5\xf4B\xc5\x15\xfeC\x06\xe7\xf3B\xe1\xe5\xf4B\x85\xe0\x08DjW\x12C\xe1\xe5\xf4BU\n\x0fDQ\xbb*C\xe1\xe5\xf4B\x10{\x17D8\x1fCC\xe1\xe5\xf4B\x86\xcb!D\x1f\x83[C\xe1\xe5\xf4B\x16\x9c%D\x06\xe7sC\xe1\xe5\xf4B\x02\x8a(Dw%\x86C\xe1\xe5\xf4Bl\x8b*DjW\x92C\xe1\xe5\xf4BJ\x911D^\x89\x9eC\xe1\xe5\xf4B7*9DQ\xbb\xaaC\xe1\xe5\xf4Bh\x98;DE\xed\xb6C\xe1\xe5\xf4B\xbe\x00>D8\x1f\xc3C\xe1\xe5\xf4B\x9e;AD,Q\xcfC\xe1\xe5\xf4B\xa7\xbcBD\x1f\x83\xdbC\xe1\xe5\xf4B\xdd\x8bAD\x13\xb5\xe7C\xe1\xe5\xf4B\xa4\xfa<D\x06\xe7\xf3C\xe1\xe5\xf4BBg5D}\x0c\x00D\xe1\xe5\xf4B\xb7\x9a.Dw%\x06D\xe1\xe5\xf4B\xaa\x8e)Dp>\x0cD\xe1\xe5\xf4B\x86\xcd!DjW\x12D\xe1\xe5\xf4B\xd4\x0b\x1bDdp\x18D\xe1\xe5\xf4B\x93Y\x15D^\x89\x1eD\xe1\xe5\xf4BnE\x0bDW\xa2$D\xe1\xe5\xf4B\xe8\x0f\x02DQ\xbb*D\xe1\xe5\xf4B\xbf\xda\xeaCK\xd40D\xe1\xe5\xf4B[\xa4\xd7CE\xed6D\xe1\xe5\xf4B\x92_\xdbC>\x06=D\xe1\xe5\xf4B\xdfq\xd9C8\x1fCD\xe1\xe5\xf4B\xc9\xdf\xcdC28ID\xe1\xe5\xf4B7\xa0\xbcC,QOD\xe1\xe5\xf4B\xf0*\xafC%jUD\xe1\xe5\xf4B\xcd\x0b\xacC\x1f\x83[D\xe1\xe5\xf4BB;\xb1C\x19\x9caD\xe1\xe5\xf4BE\\\xa9C\x13\xb5gD\xe1\xe5\xf4B{\xd2\xaaC\x0c\xcemD\xe1\xe5\xf4B\x03\x1a\xaaC\x06\xe7sD\xe1\xe5\xf4B\x8c9\xabC\x00\x00zDn\xdb\x0eCZ\x83\xc0C\x00\x00\x00\x00n\xdb\x0eC\x9c\xaf\xccC8\x1f\xc3An\xdb\x0eC\xbf \xcaC8\x1fCBn\xdb\x0eC\xdb\xea\xceCjW\x92Bn\xdb\x0eC\xb4]\xd5C8\x1f\xc3Bn\xdb\x0eCm)\xeaC\x06\xe7\xf3Bn\xdb\x0eC\x1dK\xfaCjW\x12Cn\xdb\x0eC\xe6\x13\x03DQ\xbb*Cn\xdb\x0eCy\x96\x0cD8\x1fCCn\xdb\x0eC\x96"\x17D\x1f\x83[Cn\xdb\x0eC>)\x1bD\x06\xe7sCn\xdb\x0eC>\xb9\x1fDw%\x86Cn\xdb\x0eC\xf2S"DjW\x92Cn\xdb\x0eC\x065*D^\x89\x9eCn\xdb\x0eCUS3DQ\xbb\xaaCn\xdb\x0eC\xb7\'5DE\xed\xb6Cn\xdb\x0eC\x8b\xde6D8\x1f\xc3Cn\xdb\x0eC8\x01:D,Q\xcfCn\xdb\x0eCW\xdf;D\x1f\x83\xdbCn\xdb\x0eC\xc9\xe0<D\x13\xb5\xe7Cn\xdb\x0eC\\\xf68D\x06\xe7\xf3Cn\xdb\x0eC\x81s3D}\x0c\x00Dn\xdb\x0eC\x93\xbb,Dw%\x06Dn\xdb\x0eC\xa6\xcd$Dp>\x0cDn\xdb\x0eC\x93\x01#DjW\x12Dn\xdb\x0eC\xd6\xb5\x1dDdp\x18Dn\xdb\x0eC\x03\xbf\x14D^\x89\x1eDn\xdb\x0eC\xaa\x16\x0cDW\xa2$Dn\xdb\x0eC\xf5\xbb\x01DQ\xbb*Dn\xdb\x0eC\xc0\x87\xf2CK\xd40Dn\xdb\x0eC\x8f\\\xe6CE\xed6Dn\xdb\x0eCgQ\xe2C>\x06=Dn\xdb\x0eC\xc3\x0e\xdbC8\x1fCDn\xdb\x0eC\xa27\xcbC28IDn\xdb\x0eC\xa6\xfe\xbdC,QODn\xdb\x0eC\x8a^\xb0C%jUDn\xdb\x0eC#6\xaeC\x1f\x83[Dn\xdb\x0eC\xd9\xdc\xa6C\x19\x9caDn\xdb\x0eCD\x03\x9eC\x13\xb5gDn\xdb\x0eC\xd5\xf0\x9dC\x0c\xcemDn\xdb\x0eC\xf8\x1f\xa1C\x06\xe7sDn\xdb\x0eCa\xbe\xa3C\x00\x00zD\xebC#C)E\xa8C\x00\x00\x00\x00\xebC#C\xe9G\xb2C8\x1f\xc3A\xebC#C\xc1\x1d\xb1C8\x1fCB\xebC#C\x8f\x95\xbdCjW\x92B\xebC#C\x1e3\xc2C8\x1f\xc3B\xebC#C\xaf\x17\xd6C\x06\xe7\xf3B\xebC#C*\xf5\xe6CjW\x12C\xebC#C\x91\xa8\xf0CQ\xbb*C\xebC#C\xb8\x8a\x00D8\x1fCC\xebC#C-\xf6\x0cD\x1f\x83[C\xebC#C\xad\xba\x11D\x06\xe7sC\xebC#CL\x92\x18Dw%\x86C\xebC#C\xe6\xa8\x1cDjW\x92C\xebC#C\x16\xc0\x1fD^\x89\x9eC\xebC#Cc\x01+DQ\xbb\xaaC\xebC#C\xfci/DE\xed\xb6C\xebC#CI"0D8\x1f\xc3C\xebC#Cw\x0e3D,Q\xcfC\xebC#C[\xed3D\x1f\x83\xdbC\xebC#C\xa5*4D\x13\xb5\xe7C\xebC#COs1D\x06\xe7\xf3C\xebC#C]\xa9.D}\x0c\x00D\xebC#C\xa6\x0c*Dw%\x06D\xebC#Cw\xd7&Dp>\x0cD\xebC#C"\xa5#DjW\x12D\xebC#C%z\x1dDdp\x18D\xebC#C\x8fz\x13D^\x89\x1eD\xebC#C=\xcd\tDW\xa2$D\xebC#C\x94\x9b\x01DQ\xbb*D\xebC#C\x18\x93\xfbCK\xd40D\xebC#C\xbd}\xedCE\xed6D\xebC#Cy\x91\xe3C>\x06=D\xebC#C\x8a\x15\xd7C8\x1fCD\xebC#C\xcd\xeb\xcaC28ID\xebC#Ce=\xbeC,QOD\xebC#C\x05S\xb2C%jUD\xebC#C\xfex\xa7C\x1f\x83[D\xebC#C\xf5\xc6\x9cC\x19\x9caD\xebC#C\xe8\xc4\x9cC\x13\xb5gD\xebC#C\xbe\xb3\x96C\x0c\xcemD\xebC#C\x00U\x98C\x06\xe7sD\xebC#C\xf6w\x9dC\x00\x00zDh\xac7Cx\xf4\x93C\x00\x00\x00\x00h\xac7C\x83}\xa1C8\x1f\xc3Ah\xac7C\xff\x13\xafC8\x1fCBh\xac7C\xbe\xf7\xb3CjW\x92Bh\xac7C\xf4\x99\xb4C8\x1f\xc3Bh\xac7C ]\xbfC\x06\xe7\xf3Bh\xac7C\xea\x19\xd1CjW\x12Ch\xac7C\xe0\xd2\xe0CQ\xbb*Ch\xac7C\xb5\xb3\xf0C8\x1fCCh\xac7C\xb9\xd9\x01D\x1f\x83[Ch\xac7Cl\x90\tD\x06\xe7sCh\xac7C\x10\x7f\x10Dw%\x86Ch\xac7C8p\x11DjW\x92Ch\xac7C\xc2=\x17D^\x89\x9eCh\xac7C\x91\xad\x1fDQ\xbb\xaaCh\xac7C\xb9\x81&DE\xed\xb6Ch\xac7C\xb2\xe9$D8\x1f\xc3Ch\xac7C6\xac\'D,Q\xcfCh\xac7C\x03#+D\x1f\x83\xdbCh\xac7C\xc5X-D\x13\xb5\xe7Ch\xac7C5\xe9)D\x06\xe7\xf3Ch\xac7C,m&D}\x0c\x00Dh\xac7C\xf3\xb1$Dw%\x06Dh\xac7C\xc8j$Dp>\x0cDh\xac7C\xee\xfb"DjW\x12Dh\xac7C\x8b|\x1eDdp\x18Dh\xac7Cey\x18D^\x89\x1eDh\xac7C\xb1\x86\x0cDW\xa2$Dh\xac7C8A\x02DQ\xbb*Dh\xac7C\xe4]\xf6CK\xd40Dh\xac7C\xb8^\xe7CE\xed6Dh\xac7C\xb2M\xd8C>\x06=Dh\xac7C\xf3\xda\xd4C8\x1fCDh\xac7C{\xef\xc4C28IDh\xac7C\x9b\xaf\xb5C,QODh\xac7C\xf9\xd1\xacC%jUDh\xac7C\xf2\xa7\xa0C\x1f\x83[Dh\xac7C\xf6z\x9fC\x19\x9caDh\xac7C\x16\\\x98C\x13\xb5gDh\xac7C\xc0V\x94C\x0c\xcemDh\xac7C\x9e\x95\x92C\x06\xe7sDh\xac7C\x15^\x96C\x00\x00zD\xe6\x14LC\xa5m\x8aC\x00\x00\x00\x00\xe6\x14LC\x19\xa7\x94C8\x1f\xc3A\xe6\x14LC\x07`\xa7C8\x1fCB\xe6\x14LC\xae\xd8\xacCjW\x92B\xe6\x14LC\x0f\x90\xaeC8\x1f\xc3B\xe6\x14LCw\xf9\xb4C\x06\xe7\xf3B\xe6\x14LC\xfa\xef\xc0CjW\x12C\xe6\x14LC\xf0S\xd3CQ\xbb*C\xe6\x14LC\xe4\xc5\xe6C8\x1fCC\xe6\x14LCrm\xf8C\x1f\x83[C\xe6\x14LC3#\x03D\x06\xe7sC\xe6\x14LC]\xce\x05Dw%\x86C\xe6\x14LC,\xd5\x08DjW\x92C\xe6\x14LC \x0c\x11D^\x89\x9eC\xe6\x14LC\xdb\x82\x17DQ\xbb\xaaC\xe6\x14LCG\xad\x1bDE\xed\xb6C\xe6\x14LC\xddH\x1dD8\x1f\xc3C\xe6\x14LCN\xbb"D,Q\xcfC\xe6\x14LC\xdf\xf6)D\x1f\x83\xdbC\xe6\x14LC|\xb5+D\x13\xb5\xe7C\xe6\x14LC\xe9\xde\'D\x06\xe7\xf3C\xe6\x14LC\xfc($D}\x0c\x00D\xe6\x14LC\x01&"Dw%\x06D\xe6\x14LC?\x8f!Dp>\x0cD\xe6\x14LCP\xa3$DjW\x12D\xe6\x14LC^\xc2\x1fDdp\x18D\xe6\x14LC\x7f\xde\x16D^\x89\x1eD\xe6\x14LCl\xd7\rDW\xa2$D\xe6\x14LC\xf9I\x05DQ\xbb*D\xe6\x14LC\xc3\xf0\xf7CK\xd40D\xe6\x14LCiS\xe6CE\xed6D\xe6\x14LCm\xf2\xd9C>\x06=D\xe6\x14LC\x92@\xd0C8\x1fCD\xe6\x14LC\x8a\x00\xc4C28ID\xe6\x14LC\x8a\x8a\xb2C,QOD\xe6\x14LC\x01V\xacC%jUD\xe6\x14LC\x8b\xff\xaaC\x1f\x83[D\xe6\x14LCHY\xa4C\x19\x9caD\xe6\x14LC\xae\xa9\x9aC\x13\xb5gD\xe6\x14LC\xd0A\x90C\x0c\xcemD\xe6\x14LC\xfa\xb7\x8cC\x06\xe7sD\xe6\x14LC\xf8t\x8fC\x00\x00zDc}`CK?\x85C\x00\x00\x00\x00c}`CQc\x8aC8\x1f\xc3Ac}`C\x1eS\x95C8\x1fCBc}`C\x7f\xf6\x9bCjW\x92Bc}`CE\xb9\xa3C8\x1f\xc3Bc}`C\x04\x96\xadC\x06\xe7\xf3Bc}`C\x03G\xb4CjW\x12Cc}`C\xd9\xc6\xc6CQ\xbb*Cc}`C?y\xdbC8\x1fCCc}`C&\xf4\xe7C\x1f\x83[Cc}`C\xf0=\xf6C\x06\xe7sCc}`C\xf6\xe8\xffCw%\x86Cc}`CT\x83\x03DjW\x92Cc}`C\xa1\xb2\tD^\x89\x9eCc}`C\x130\x10DQ\xbb\xaaCc}`C:P\x15DE\xed\xb6Cc}`C\xa2i\x18D8\x1f\xc3Cc}`C\xdbz\x1fD,Q\xcfCc}`C\x13w\'D\x1f\x83\xdbCc}`C\x9c\xfd(D\x13\xb5\xe7Cc}`CL\')D\x06\xe7\xf3Cc}`C\x00\xd9&D}\x0c\x00Dc}`C\x00\xe3 Dw%\x06Dc}`C\xa78"Dp>\x0cDc}`C\xc7y"DjW\x12Dc}`C\x8e\xb5\x1eDdp\x18Dc}`C\x0b\x01\x16D^\x89\x1eDc}`C\xa5@\x0fDW\xa2$Dc}`C\x9a\xc3\x08DQ\xbb*Dc}`C\xba\x02\xffCK\xd40Dc}`C\xacJ\xedCE\xed6Dc}`C\xb0\r\xe2C>\x06=Dc}`C\x8b\xf2\xd0C8\x1fCDc}`C\xa8\xc8\xc5C28IDc}`C\xf1l\xb6C,QODc}`C\x90]\xadC%jUDc}`C\xb9\x02\xafC\x1f\x83[Dc}`C\xf6\xa6\xa1C\x19\x9caDc}`C\x81#\x99C\x13\xb5gDc}`C|!\x92C\x0c\xcemDc}`CET\x89C\x06\xe7sDc}`C\x98L\x87C\x00\x00zD\xe1\xe5tC\xf8\x9a\x88C\x00\x00\x00\x00\xe1\xe5tCG\xda\x8cC8\x1f\xc3A\xe1\xe5tC\x89\x1b\x89C8\x1fCB\xe1\xe5tC\x16\xd8\x8bCjW\x92B\xe1\xe5tC3M\x9bC8\x1f\xc3B\xe1\xe5tC^a\xa5C\x06\xe7\xf3B\xe1\xe5tC\xbct\xacCjW\x12C\xe1\xe5tCy\x06\xbcCQ\xbb*C\xe1\xe5tC\x8aX\xcaC8\x1fCC\xe1\xe5tCE\xf7\xd8C\x1f\x83[C\xe1\xe5tC9\xac\xe8C\x06\xe7sC\xe1\xe5tC\x93\xb7\xfbCw%\x86C\xe1\xe5tC\xe1\xed\xfcCjW\x92C\xe1\xe5tC\xf9b\x02D^\x89\x9eC\xe1\xe5tCn\xf6\nDQ\xbb\xaaC\xe1\xe5tC\xd9y\x12DE\xed\xb6C\xe1\xe5tC>\x12\x19D8\x1f\xc3C\xe1\xe5tC\x9f \x1fD,Q\xcfC\xe1\xe5tCLC\'D\x1f\x83\xdbC\xe1\xe5tC\xd4\xa9)D\x13\xb5\xe7C\xe1\xe5tC\x88\x1a+D\x06\xe7\xf3C\xe1\xe5tC:\x0b(D}\x0c\x00D\xe1\xe5tC\xf7\xb8$Dw%\x06D\xe1\xe5tCH #Dp>\x0cD\xe1\xe5tC\xcd\x8e!DjW\x12D\xe1\xe5tC\x01\x99\x1cDdp\x18D\xe1\xe5tC\xe6G\x17D^\x89\x1eD\xe1\xe5tC\xc4?\x13DW\xa2$D\xe1\xe5tC\xa2\xe0\x07DQ\xbb*D\xe1\xe5tCv\xa2\x00DK\xd40D\xe1\xe5tC\xe9\xb6\xf7CE\xed6D\xe1\xe5tC\xfc\xec\xe8C>\x06=D\xe1\xe5tC\xf7\xc9\xdcC8\x1fCD\xe1\xe5tC(U\xcbC28ID\xe1\xe5tC\xff\xbf\xbaC,QOD\xe1\xe5tC\xc4\xb7\xb1C%jUD\xe1\xe5tC\xd5\xdd\xabC\x1f\x83[D\xe1\xe5tC\xfc\x08\xa5C\x19\x9caD\xe1\xe5tCr@\x99C\x13\xb5gD\xe1\xe5tC+M\x92C\x0c\xcemD\xe1\xe5tC\xb4\xc4\x8bC\x06\xe7sD\xe1\xe5tC\xe8\xd9\x8dC\x00\x00zD/\xa7\x84C@\xff\x84C\x00\x00\x00\x00/\xa7\x84CX\xa3\x86C8\x1f\xc3A/\xa7\x84C=\xa0yC8\x1fCB/\xa7\x84C\x94\t{CjW\x92B/\xa7\x84C\x85\xb1\x8fC8\x1f\xc3B/\xa7\x84CA=\x9aC\x06\xe7\xf3B/\xa7\x84C13\xa2CjW\x12C/\xa7\x84C\x90/\xb2CQ\xbb*C/\xa7\x84Ch\x11\xbeC8\x1fCC/\xa7\x84C\x9a\xb7\xc7C\x1f\x83[C/\xa7\x84C\xa1V\xdcC\x06\xe7sC/\xa7\x84C\xb9\x85\xf0Cw%\x86C/\xa7\x84C\xac\x87\xf5CjW\x92C/\xa7\x84C\xab\x0f\xfcC^\x89\x9eC/\xa7\x84C\x16W\x06DQ\xbb\xaaC/\xa7\x84C09\x11DE\xed\xb6C/\xa7\x84Csa\x18D8\x1f\xc3C/\xa7\x84Cl\xfd\x1eD,Q\xcfC/\xa7\x84C\xb5\xb9$D\x1f\x83\xdbC/\xa7\x84C\x95\x1e(D\x13\xb5\xe7C/\xa7\x84CXf,D\x06\xe7\xf3C/\xa7\x84C$\x87+D}\x0c\x00D/\xa7\x84C~h)Dw%\x06D/\xa7\x84C\x8b,(Dp>\x0cD/\xa7\x84C\xfa\xee%DjW\x12D/\xa7\x84C\xaa\'!Ddp\x18D/\xa7\x84C?\x91\x19D^\x89\x1eD/\xa7\x84C\xfa\xd1\x15DW\xa2$D/\xa7\x84Ci\xfc\x0cDQ\xbb*D/\xa7\x84C\xb6\xb9\x06DK\xd40D/\xa7\x84CHr\x01DE\xed6D/\xa7\x84C<?\xf2C>\x06=D/\xa7\x84C\x0eN\xe8C8\x1fCD/\xa7\x84C\xeb\x13\xd4C28ID/\xa7\x84C.(\xc0C,QOD/\xa7\x84C\x96\x8c\xb0C%jUD/\xa7\x84C$\xeb\xadC\x1f\x83[D/\xa7\x84C\xc5q\xadC\x19\x9caD/\xa7\x84CG\x96\xa1C\x13\xb5gD/\xa7\x84C\xab)\x90C\x0c\xcemD/\xa7\x84C\x19\xbe\x8cC\x06\xe7sD/\xa7\x84Cn*\x94C\x00\x00zDn\xdb\x8eC\xcb\x82\x81C\x00\x00\x00\x00n\xdb\x8eC\t\xdcvC8\x1f\xc3An\xdb\x8eC\xf3$mC8\x1fCBn\xdb\x8eC\xd6\xc5gCjW\x92Bn\xdb\x8eC\x06`yC8\x1f\xc3Bn\xdb\x8eC\xcbh\x8cC\x06\xe7\xf3Bn\xdb\x8eC|\x89\x99CjW\x12Cn\xdb\x8eC\n\x02\xa7CQ\xbb*Cn\xdb\x8eC\x1c1\xa7C8\x1fCCn\xdb\x8eCT\xa8\xb2C\x1f\x83[Cn\xdb\x8eCH&\xd1C\x06\xe7sCn\xdb\x8eCj\x08\xe6Cw%\x86Cn\xdb\x8eC\xdb~\xeeCjW\x92Cn\xdb\x8eC\xf1,\xf5C^\x89\x9eCn\xdb\x8eC\xe3\xe4\x02DQ\xbb\xaaCn\xdb\x8eC\xa0g\rDE\xed\xb6Cn\xdb\x8eC\x1c\x11\x17D8\x1f\xc3Cn\xdb\x8eCFl\x1dD,Q\xcfCn\xdb\x8eCn\x90$D\x1f\x83\xdbCn\xdb\x8eC\xcc;)D\x13\xb5\xe7Cn\xdb\x8eC\xcd\x1a,D\x06\xe7\xf3Cn\xdb\x8eC-u.D}\x0c\x00Dn\xdb\x8eC#\x900Dw%\x06Dn\xdb\x8eC\xd3\xa4/Dp>\x0cDn\xdb\x8eC\xb2X-DjW\x12Dn\xdb\x8eC\xa8\x8d*Ddp\x18Dn\xdb\x8eCvE#D^\x89\x1eDn\xdb\x8eC8\xc5\x1cDW\xa2$Dn\xdb\x8eC\xf9\x8a\x13DQ\xbb*Dn\xdb\x8eC\xdd\xc3\rDK\xd40Dn\xdb\x8eCn\x04\x06DE\xed6Dn\xdb\x8eC\\Y\xfdC>\x06=Dn\xdb\x8eC\xbdm\xf3C8\x1fCDn\xdb\x8eC\xcb\x88\xdeC28IDn\xdb\x8eC}6\xc2C,QODn\xdb\x8eC*N\xaaC%jUDn\xdb\x8eC\xadi\xacC\x1f\x83[Dn\xdb\x8eC\xd6\xee\xa8C\x19\x9caDn\xdb\x8eC\x18\xfd\xa1C\x13\xb5gDn\xdb\x8eC\xe8V\x98C\x0c\xcemDn\xdb\x8eC\x8c\xe0\x92C\x06\xe7sDn\xdb\x8eC\x05\xf3\x90C\x00\x00zD\xac\x0f\x99Cf\xcb}C\x00\x00\x00\x00\xac\x0f\x99C_\xfffC8\x1f\xc3A\xac\x0f\x99C\xbd\xd3^C8\x1fCB\xac\x0f\x99C\x02\x8bSCjW\x92B\xac\x0f\x99C|\xadVC8\x1f\xc3B\xac\x0f\x99C\x9c\xe2uC\x06\xe7\xf3B\xac\x0f\x99C\x19a\x93CjW\x12C\xac\x0f\x99C\x1f\xff\x9aCQ\xbb*C\xac\x0f\x99C\x1b\x16\x9eC8\x1fCC\xac\x0f\x99C\x9b?\xa9C\x1f\x83[C\xac\x0f\x99Cea\xc3C\x06\xe7sC\xac\x0f\x99C\xdc\x88\xd9Cw%\x86C\xac\x0f\x99C\xa8\x0e\xe4CjW\x92C\xac\x0f\x99C\x04\xf6\xf1C^\x89\x9eC\xac\x0f\x99C\xfbu\x02DQ\xbb\xaaC\xac\x0f\x99Ch\n\x0cDE\xed\xb6C\xac\x0f\x99C>\t\x16D8\x1f\xc3C\xac\x0f\x99Cq5\x1dD,Q\xcfC\xac\x0f\x99C\xfe\xce#D\x1f\x83\xdbC\xac\x0f\x99C\xa2\xab)D\x13\xb5\xe7C\xac\x0f\x99C\x8c\xfb1D\x06\xe7\xf3C\xac\x0f\x99C\xa5\x1f3D}\x0c\x00D\xac\x0f\x99C\xab\x115Dw%\x06D\xac\x0f\x99C\xa7\xb33Dp>\x0cD\xac\x0f\x99C\xe6T5DjW\x12D\xac\x0f\x99CV>4Ddp\x18D\xac\x0f\x99CJ=-D^\x89\x1eD\xac\x0f\x99C\xa2H#DW\xa2$D\xac\x0f\x99C\xc1\x91\x1cDQ\xbb*D\xac\x0f\x99C`\x10\x15DK\xd40D\xac\x0f\x99C\xa7j\nDE\xed6D\xac\x0f\x99C\'%\x05D>\x06=D\xac\x0f\x99C3H\xfeC8\x1fCD\xac\x0f\x99C\xa4\x9b\xeaC28ID\xac\x0f\x99C@\xb9\xd0C,QOD\xac\x0f\x99C\xc4\xb8\xb6C%jUD\xac\x0f\x99C\x0e\xdd\xa8C\x1f\x83[D\xac\x0f\x99C#\x05\xa4C\x19\x9caD\xac\x0f\x99C\x9e\xd7\xa3C\x13\xb5gD\xac\x0f\x99C\xef$\x9eC\x0c\xcemD\xac\x0f\x99C\x87y\x98C\x06\xe7sD\xac\x0f\x99C%\x8c\x99C\x00\x00zD\xebC\xa3C\xd8\\yC\x00\x00\x00\x00\xebC\xa3C\xcdg`C8\x1f\xc3A\xebC\xa3Cf\'[C8\x1fCB\xebC\xa3C8#NCjW\x92B\xebC\xa3C\xae\xc5WC8\x1f\xc3B\xebC\xa3C>\xeakC\x06\xe7\xf3B\xebC\xa3C\xc1\x01\x84CjW\x12C\xebC\xa3C\x1d\xb2\x8dCQ\xbb*C\xebC\xa3C\xe4\x1a\x9cC8\x1fCC\xebC\xa3C\x9f/\xaaC\x1f\x83[C\xebC\xa3C:l\xb9C\x06\xe7sC\xebC\xa3C\x01~\xcbCw%\x86C\xebC\xa3C\x06\x96\xd8CjW\x92C\xebC\xa3C~\xef\xe8C^\x89\x9eC\xebC\xa3CE\xf0\xfdCQ\xbb\xaaC\xebC\xa3C\xbd\x7f\x06DE\xed\xb6C\xebC\xa3C"F\x0eD8\x1f\xc3C\xebC\xa3C\x1a\x92\x16D,Q\xcfC\xebC\xa3C\xd5\xcd\x1dD\x1f\x83\xdbC\xebC\xa3C\xca\xd8)D\x13\xb5\xe7C\xebC\xa3C\x81\x883D\x06\xe7\xf3C\xebC\xa3Cf(6D}\x0c\x00D\xebC\xa3C\xee\xba5Dw%\x06D\xebC\xa3C4\x9d8Dp>\x0cD\xebC\xa3Ca\x04:DjW\x12D\xebC\xa3C>z6Ddp\x18D\xebC\xa3C\x0f\xec/D^\x89\x1eD\xebC\xa3C\xaa\x03&DW\xa2$D\xebC\xa3CKf#DQ\xbb*D\xebC\xa3Cz\xd2\x1dDK\xd40D\xebC\xa3CG\xe8\x14DE\xed6D\xebC\xa3Cd\xd2\rD>\x06=D\xebC\xa3C1)\x04D8\x1fCD\xebC\xa3C\x0cD\xf1C28ID\xebC\xa3C=\xe6\xddC,QOD\xebC\xa3C\x06\x00\xc6C%jUD\xebC\xa3C\xc8\x08\xafC\x1f\x83[D\xebC\xa3C\x95\xfc\xa8C\x19\x9caD\xebC\xa3C\xa2\xd2\xa5C\x13\xb5gD\xebC\xa3C=3\x98C\x0c\xcemD\xebC\xa3CB\x9c\x95C\x06\xe7sD\xebC\xa3C\xb2H\x96C\x00\x00zD*x\xadC\x05\xce|C\x00\x00\x00\x00*x\xadC#\x1f[C8\x1f\xc3A*x\xadC\xe5\xffVC8\x1fCB*x\xadCX\xfcQCjW\x92B*x\xadC\xa7\xeaeC8\x1f\xc3B*x\xadC\x08\x0cxC\x06\xe7\xf3B*x\xadC\xaa\xd9\x81CjW\x12C*x\xadCq~\x84CQ\xbb*C*x\xadCj\x81\x93C8\x1fCC*x\xadC\x84c\xa5C\x1f\x83[C*x\xadC\xc6\xc6\xb3C\x06\xe7sC*x\xadC=g\xbfCw%\x86C*x\xadC\xe7\x01\xcbCjW\x92C*x\xadC\xd9J\xd9C^\x89\x9eC*x\xadC5\r\xebCQ\xbb\xaaC*x\xadCT`\xfaCE\xed\xb6C*x\xadC\x1aO\x04D8\x1f\xc3C*x\xadC\x0e{\x0fD,Q\xcfC*x\xadC\xf3c\x1cD\x1f\x83\xdbC*x\xadC\xfe\xe1\'D\x13\xb5\xe7C*x\xadC\x97\xf4/D\x06\xe7\xf3C*x\xadC\x9f\xd53D}\x0c\x00D*x\xadCQ\xa77Dw%\x06D*x\xadC\xa7\x1a<Dp>\x0cD*x\xadC\xe5\xd9;DjW\x12D*x\xadC*\x103Ddp\x18D*x\xadC\xb1\x9f+D^\x89\x1eD*x\xadCL\x01&DW\xa2$D*x\xadCB\xbd"DQ\xbb*D*x\xadCH\xcb\x1cDK\xd40D*x\xadC\x86#\x16DE\xed6D*x\xadC\x94\x82\rD>\x06=D*x\xadC\x04\xb2\x06D8\x1fCD*x\xadC\n\x15\xf4C28ID*x\xadCF\xe6\xddC,QOD*x\xadC\x1bJ\xcaC%jUD*x\xadC\xe0\xcc\xb3C\x1f\x83[D*x\xadC\x80\xdc\xa3C\x19\x9caD*x\xadC;\xba\xa1C\x13\xb5gD*x\xadCL\xf3\x99C\x0c\xcemD*x\xadC\xd74\x94C\x06\xe7sD*x\xadC\xb6 \x90C\x00\x00zDh\xac\xb7C\xfd\xa6xC\x00\x00\x00\x00h\xac\xb7CZI\\C8\x1f\xc3Ah\xac\xb7C\x00\x00HC8\x1fCBh\xac\xb7C\xcc\xd8KCjW\x92Bh\xac\xb7Ca\xb9`C8\x1f\xc3Bh\xac\xb7C\x7f\xa3tC\x06\xe7\xf3Bh\xac\xb7C\xd9\xdcxCjW\x12Ch\xac\xb7CY\x0b\x82CQ\xbb*Ch\xac\xb7C\xa6\xcc\x8fC8\x1fCCh\xac\xb7C\xac\x0c\x9eC\x1f\x83[Ch\xac\xb7C\xb2\x0c\xacC\x06\xe7sCh\xac\xb7C\xfa\xfa\xb1Cw%\x86Ch\xac\xb7C\xa8\xf8\xc4CjW\x92Ch\xac\xb7C\xbc\x1a\xceC^\x89\x9eCh\xac\xb7C\x98\x9b\xdaCQ\xbb\xaaCh\xac\xb7C\xda\xa7\xecCE\xed\xb6Ch\xac\xb7C\xe7\x11\x01D8\x1f\xc3Ch\xac\xb7C\x9d\xb2\rD,Q\xcfCh\xac\xb7C\x9c\xbe\x1aD\x1f\x83\xdbCh\xac\xb7C\x88i%D\x13\xb5\xe7Ch\xac\xb7C\xbd\x9e+D\x06\xe7\xf3Ch\xac\xb7C\x01j2D}\x0c\x00Dh\xac\xb7C\xd6\xa34Dw%\x06Dh\xac\xb7C\xaeo7Dp>\x0cDh\xac\xb7Cr\xc25DjW\x12Dh\xac\xb7C{22Ddp\x18Dh\xac\xb7C4\x97*D^\x89\x1eDh\xac\xb7C\xadk$DW\xa2$Dh\xac\xb7Cj\x1b\x1fDQ\xbb*Dh\xac\xb7C\x92\x0f\x1aDK\xd40Dh\xac\xb7C\xef\xa3\x14DE\xed6Dh\xac\xb7Cmu\x0eD>\x06=Dh\xac\xb7C\xe2\x10\x05D8\x1fCDh\xac\xb7C\xbb\xdd\xeeC28IDh\xac\xb7C\xfe\x1a\xe0C,QODh\xac\xb7C\xf4\x88\xd0C%jUDh\xac\xb7C/\x14\xb7C\x1f\x83[Dh\xac\xb7C\xd9\xda\xa8C\x19\x9caDh\xac\xb7C\xcb\xf6\xa7C\x13\xb5gDh\xac\xb7C\xff\xcc\xa0C\x0c\xcemDh\xac\xb7CP\xb6\x97C\x06\xe7sDh\xac\xb7C\x85|\x8bC\x00\x00zD\xa7\xe0\xc1C\x1f\xa9\x80C\x00\x00\x00\x00\xa7\xe0\xc1Cp\xb9iC8\x1f\xc3A\xa7\xe0\xc1Cy6QC8\x1fCB\xa7\xe0\xc1C\xd4\xb2MCjW\x92B\xa7\xe0\xc1CK7ZC8\x1f\xc3B\xa7\xe0\xc1CW\xaf_C\x06\xe7\xf3B\xa7\xe0\xc1C\x14\xf0pCjW\x12C\xa7\xe0\xc1C\x0f\xc7\x7fCQ\xbb*C\xa7\xe0\xc1C\x06\x01\x8eC8\x1fCC\xa7\xe0\xc1C\x91|\x9aC\x1f\x83[C\xa7\xe0\xc1C&\xbd\xa3C\x06\xe7sC\xa7\xe0\xc1C"l\xb0Cw%\x86C\xa7\xe0\xc1C\xc5\xff\xbcCjW\x92C\xa7\xe0\xc1C}}\xcbC^\x89\x9eC\xa7\xe0\xc1C\x90[\xddCQ\xbb\xaaC\xa7\xe0\xc1C\x97\xe2\xe5CE\xed\xb6C\xa7\xe0\xc1C\x9d\xef\xfcC8\x1f\xc3C\xa7\xe0\xc1Ch\x95\x0cD,Q\xcfC\xa7\xe0\xc1C6\xcb\x15D\x1f\x83\xdbC\xa7\xe0\xc1C\x83\x0b\x1eD\x13\xb5\xe7C\xa7\xe0\xc1Cmc&D\x06\xe7\xf3C\xa7\xe0\xc1C\x15_-D}\x0c\x00D\xa7\xe0\xc1C\x11q/Dw%\x06D\xa7\xe0\xc1C%H2Dp>\x0cD\xa7\xe0\xc1Cf\x9a4DjW\x12D\xa7\xe0\xc1C\x9c\xa4.Ddp\x18D\xa7\xe0\xc1C\x1c\xc6(D^\x89\x1eD\xa7\xe0\xc1C\xfb\xcb DW\xa2$D\xa7\xe0\xc1C+\x04\x1fDQ\xbb*D\xa7\xe0\xc1C\x84\xa6\x1bDK\xd40D\xa7\xe0\xc1C\xd7\x9a\x15DE\xed6D\xa7\xe0\xc1Cv6\x10D>\x06=D\xa7\xe0\xc1C\x10\x99\x03D8\x1fCD\xa7\xe0\xc1C\x7f9\xeeC28ID\xa7\xe0\xc1C8%\xe3C,QOD\xa7\xe0\xc1Ch\x91\xceC%jUD\xa7\xe0\xc1C\x8c|\xbbC\x1f\x83[D\xa7\xe0\xc1C\x07\xb5\xb1C\x19\x9caD\xa7\xe0\xc1C\x83\x8d\xadC\x13\xb5gD\xa7\xe0\xc1Cg<\xa8C\x0c\xcemD\xa7\xe0\xc1C\xae>\xa0C\x06\xe7sD\xa7\xe0\xc1C\x12\x81\x8bC\x00\x00zD\xe6\x14\xccC\xe5\r\x82C\x00\x00\x00\x00\xe6\x14\xccC\x13\xa3wC8\x1f\xc3A\xe6\x14\xccC WlC8\x1fCB\xe6\x14\xccC\r\xc5jCjW\x92B\xe6\x14\xccC\x0b\x9dkC8\x1f\xc3B\xe6\x14\xccC\x00;\x82C\x06\xe7\xf3B\xe6\x14\xccC\xe9\xb1\x87CjW\x12C\xe6\x14\xccC{\x03\x84CQ\xbb*C\xe6\x14\xccC\xe8^\x90C8\x1fCC\xe6\x14\xccCa\xe9\x9bC\x1f\x83[C\xe6\x14\xccC\xbd\xa7\xa4C\x06\xe7sC\xe6\x14\xccC\xeb\xe3\xabCw%\x86C\xe6\x14\xccC\xb4\x98\xbbCjW\x92C\xe6\x14\xccC&a\xceC^\x89\x9eC\xe6\x14\xccC\x97;\xdbCQ\xbb\xaaC\xe6\x14\xccCF&\xe2CE\xed\xb6C\xe6\x14\xccC\xbaU\xfdC8\x1f\xc3C\xe6\x14\xccC\xeb\x86\x08D,Q\xcfC\xe6\x14\xccC\x0eV\x11D\x1f\x83\xdbC\xe6\x14\xccC\x1b\xa4\x17D\x13\xb5\xe7C\xe6\x14\xccCu\xf3 D\x06\xe7\xf3C\xe6\x14\xccC\x99\xd3)D}\x0c\x00D\xe6\x14\xccCb\xb7+Dw%\x06D\xe6\x14\xccC]k-Dp>\x0cD\xe6\x14\xccCN\x8a-DjW\x12D\xe6\x14\xccC\x15\xd6)Ddp\x18D\xe6\x14\xccCi\xe9"D^\x89\x1eD\xe6\x14\xccCV\xd2\x1fDW\xa2$D\xe6\x14\xccCRD DQ\xbb*D\xe6\x14\xccCm\xe5\x19DK\xd40D\xe6\x14\xccC\xd3\xe8\x15DE\xed6D\xe6\x14\xccC\x17\xaf\x0eD>\x06=D\xe6\x14\xccC\xe3\xf3\x05D8\x1fCD\xe6\x14\xccC\x17\xd5\xf4C28ID\xe6\x14\xccC\x0bX\xdfC,QOD\xe6\x14\xccC\x9c\x10\xcaC%jUD\xe6\x14\xccC{\x8f\xb6C\x1f\x83[D\xe6\x14\xccC\xf1\xa6\xaeC\x19\x9caD\xe6\x14\xccC\xc6M\xb1C\x13\xb5gD\xe6\x14\xccC-\x84\xadC\x0c\xcemD\xe6\x14\xccC\xc0\x1b\xa1C\x06\xe7sD\xe6\x14\xccC\x8b\xd1\x94C\x00\x00zD%I\xd6C1\x8c\x88C\x00\x00\x00\x00%I\xd6Cz\x0c\x81C8\x1f\xc3A%I\xd6C\x1b\xbdtC8\x1fCB%I\xd6CV\xdarCjW\x92B%I\xd6CI\xf3\x85C8\x1f\xc3B%I\xd6C<(\x9bC\x06\xe7\xf3B%I\xd6C\x08\x0b\x9cCjW\x12C%I\xd6Ce\xe1\x90CQ\xbb*C%I\xd6C}\x83\x9bC8\x1fCC%I\xd6Ckt\xa9C\x1f\x83[C%I\xd6C\x1ck\xa8C\x06\xe7sC%I\xd6C\xfeC\xa9Cw%\x86C%I\xd6C&;\xb4CjW\x92C%I\xd6CPZ\xc9C^\x89\x9eC%I\xd6C?\x93\xd4CQ\xbb\xaaC%I\xd6C\xbd\x87\xe4CE\xed\xb6C%I\xd6CR\xfa\xf3C8\x1f\xc3C%I\xd6CZ$\x04D,Q\xcfC%I\xd6C\x1f4\x0cD\x1f\x83\xdbC%I\xd6C]\x8c\x12D\x13\xb5\xe7C%I\xd6C\xbf\xf1\x1aD\x06\xe7\xf3C%I\xd6C\x158"D}\x0c\x00D%I\xd6C\xbe\xd7#Dw%\x06D%I\xd6C:\x7f$Dp>\x0cD%I\xd6C\x1e\xef%DjW\x12D%I\xd6C5\x0b$Ddp\x18D%I\xd6C\xa7\x12\x1fD^\x89\x1eD%I\xd6C\xc7^\x1fDW\xa2$D%I\xd6C\x83\xe2\x1bDQ\xbb*D%I\xd6CJ\xb7\x1cDK\xd40D%I\xd6C5\x00\x18DE\xed6D%I\xd6C\xfb^\x0eD>\x06=D%I\xd6C4\xb4\x08D8\x1fCD%I\xd6C\nJ\xfaC28ID%I\xd6C\xd50\xdaC,QOD%I\xd6CP\x97\xc5C%jUD%I\xd6C\x03\xc1\xb2C\x1f\x83[D%I\xd6C\xf9k\xadC\x19\x9caD%I\xd6C\xe4M\xacC\x13\xb5gD%I\xd6C\xe3\xd7\xa7C\x0c\xcemD%I\xd6C\xf6\xaa\x9bC\x06\xe7sD%I\xd6CE\xfd\x95C\x00\x00zDc}\xe0C\x82\xa9\x84C\x00\x00\x00\x00c}\xe0Ca6\x7fC8\x1f\xc3Ac}\xe0C\xe6\x04}C8\x1fCBc}\xe0C\xf5\xa9}CjW\x92Bc}\xe0C\xa4\xa5\x8bC8\x1f\xc3Bc}\xe0C\xffI\xa0C\x06\xe7\xf3Bc}\xe0C\xed\xbd\xa9CjW\x12Cc}\xe0C\xf2M\xa8CQ\xbb*Cc}\xe0C\xbab\xafC8\x1fCCc}\xe0Cz\xc2\xb3C\x1f\x83[Cc}\xe0Cv:\xadC\x06\xe7sCc}\xe0C\x1c\x02\xb0Cw%\x86Cc}\xe0C\x97L\xb9CjW\x92Cc}\xe0Cg7\xc6C^\x89\x9eCc}\xe0Cb\x8c\xd4CQ\xbb\xaaCc}\xe0C\x17\xd7\xe1CE\xed\xb6Cc}\xe0C&\x94\xf5C8\x1f\xc3Cc}\xe0CYj\x01D,Q\xcfCc}\xe0C\r\x88\x05D\x1f\x83\xdbCc}\xe0C=\x95\x0cD\x13\xb5\xe7Cc}\xe0C.\xac\x12D\x06\xe7\xf3Cc}\xe0C\xba\x8e\x18D}\x0c\x00Dc}\xe0C\'\xe7\x1cDw%\x06Dc}\xe0C\xb1\xad\x1dDp>\x0cDc}\xe0C\xd9t\x1fDjW\x12Dc}\xe0C)\xef\x1eDdp\x18Dc}\xe0CV\xf1\x1cD^\x89\x1eDc}\xe0C5\xfe\x1bDW\xa2$Dc}\xe0C\xadf\x17DQ\xbb*Dc}\xe0CB\xf1\x14DK\xd40Dc}\xe0C\xbe\xab\x12DE\xed6Dc}\xe0C$s\rD>\x06=Dc}\xe0CM\xb0\tD8\x1fCDc}\xe0C\xd9X\x00D28IDc}\xe0C\xd6\xf7\xe2C,QODc}\xe0C\x99\xc5\xcdC%jUDc}\xe0Cx\xeb\xb9C\x1f\x83[Dc}\xe0C\x80\xea\xacC\x19\x9caDc}\xe0C\xa7\x80\xa6C\x13\xb5gDc}\xe0C\to\xa4C\x0c\xcemDc}\xe0C\xdaS\x9fC\x06\xe7sDc}\xe0Cp\xb3\x9aC\x00\x00zD\xa2\xb1\xeaC\xe4\xfa|C\x00\x00\x00\x00\xa2\xb1\xeaCF\x9a\x7fC8\x1f\xc3A\xa2\xb1\xeaC_\xb6|C8\x1fCB\xa2\xb1\xeaCj\x8f\x81CjW\x92B\xa2\xb1\xeaC9\x07\x8cC8\x1f\xc3B\xa2\xb1\xeaC\x02b\x9dC\x06\xe7\xf3B\xa2\xb1\xeaC\x109\xabCjW\x12C\xa2\xb1\xeaC\xb9x\xb7CQ\xbb*C\xa2\xb1\xeaC\xd4\xdb\xbcC8\x1fCC\xa2\xb1\xeaC\t\xd0\xb8C\x1f\x83[C\xa2\xb1\xeaC\x18\x05\xb7C\x06\xe7sC\xa2\xb1\xeaC\xc0\x82\xbbCw%\x86C\xa2\xb1\xeaCt\xb5\xc3CjW\x92C\xa2\xb1\xeaCi\x00\xceC^\x89\x9eC\xa2\xb1\xeaC\xca\xed\xd6CQ\xbb\xaaC\xa2\xb1\xeaCGf\xe2CE\xed\xb6C\xa2\xb1\xeaC\xd9\x05\xf1C8\x1f\xc3C\xa2\xb1\xeaCp\xfa\xf8C,Q\xcfC\xa2\xb1\xeaC\x93\x1c\xffC\x1f\x83\xdbC\xa2\xb1\xeaC\x16U\x04D\x13\xb5\xe7C\xa2\xb1\xeaCf+\x0cD\x06\xe7\xf3C\xa2\xb1\xeaC\xbbq\x10D}\x0c\x00D\xa2\xb1\xeaC\x95\xce\x15Dw%\x06D\xa2\xb1\xeaCR\xaf\x19Dp>\x0cD\xa2\xb1\xeaC\x1b\xd7\x1cDjW\x12D\xa2\xb1\xeaC]\xc2\x1aDdp\x18D\xa2\xb1\xeaC\xfe5\x1bD^\x89\x1eD\xa2\xb1\xeaC\xa2\x93\x19DW\xa2$D\xa2\xb1\xeaC\xed5\x15DQ\xbb*D\xa2\xb1\xeaC\x92\xc4\x10DK\xd40D\xa2\xb1\xeaCh\xab\x0fDE\xed6D\xa2\xb1\xeaC\xe4\xbb\x0eD>\x06=D\xa2\xb1\xeaC\xad\x85\nD8\x1fCD\xa2\xb1\xeaC\xc8\x9d\xffC28ID\xa2\xb1\xeaC\x0f\xf7\xe3C,QOD\xa2\xb1\xeaCe\x99\xd0C%jUD\xa2\xb1\xeaC\xc2\xcd\xbfC\x1f\x83[D\xa2\xb1\xeaC\xeb\xcd\xb3C\x19\x9caD\xa2\xb1\xeaC\x01\xe3\xa3C\x13\xb5gD\xa2\xb1\xeaC\xaa\x8e\xa2C\x0c\xcemD\xa2\xb1\xeaCBb\xa1C\x06\xe7sD\xa2\xb1\xeaCB\xdc\x9dC\x00\x00zD\xe1\xe5\xf4C\xc3\xe6\x7fC\x00\x00\x00\x00\xe1\xe5\xf4C\x84\x83\x81C8\x1f\xc3A\xe1\xe5\xf4C\xba\x19{C8\x1fCB\xe1\xe5\xf4C\x12\'\x84CjW\x92B\xe1\xe5\xf4C\xed\xe7\x8cC8\x1f\xc3B\xe1\xe5\xf4C9q\x97C\x06\xe7\xf3B\xe1\xe5\xf4Cm\x16\xa9CjW\x12C\xe1\xe5\xf4C]\xae\xb8CQ\xbb*C\xe1\xe5\xf4C\xcb&\xc1C8\x1fCC\xe1\xe5\xf4C\xa5\x13\xbeC\x1f\x83[C\xe1\xe5\xf4C\xe7K\xb9C\x06\xe7sC\xe1\xe5\xf4C\xf3\xce\xb8Cw%\x86C\xe1\xe5\xf4C\xeda\xc2CjW\x92C\xe1\xe5\xf4C\xb6\x8e\xcfC^\x89\x9eC\xe1\xe5\xf4C\x00\'\xd7CQ\xbb\xaaC\xe1\xe5\xf4C\xa7\x97\xe1CE\xed\xb6C\xe1\xe5\xf4C\xa9\x14\xe7C8\x1f\xc3C\xe1\xe5\xf4C\xcf\xb9\xefC,Q\xcfC\xe1\xe5\xf4C\x11\x8a\xfeC\x1f\x83\xdbC\xe1\xe5\xf4C!f\xfeC\x13\xb5\xe7C\xe1\xe5\xf4C\x88\x19\x05D\x06\xe7\xf3C\xe1\xe5\xf4C\x99l\nD}\x0c\x00D\xe1\xe5\xf4C\x85|\x0eDw%\x06D\xe1\xe5\xf4C\x8b\xdc\x14Dp>\x0cD\xe1\xe5\xf4C\x815\x1aDjW\x12D\xe1\xe5\xf4C\x9a\x16\x1aDdp\x18D\xe1\xe5\xf4C\xd2\x18\x19D^\x89\x1eD\xe1\xe5\xf4C\x92\xef\x17DW\xa2$D\xe1\xe5\xf4C&e\x16DQ\xbb*D\xe1\xe5\xf4C\x8f\x18\x13DK\xd40D\xe1\xe5\xf4ChR\x10DE\xed6D\xe1\xe5\xf4Cu\x86\x12D>\x06=D\xe1\xe5\xf4C^\xba\x0cD8\x1fCD\xe1\xe5\xf4CY\xbb\x01D28ID\xe1\xe5\xf4C\xe9\xdf\xe5C,QOD\xe1\xe5\xf4C\xdc\xb9\xd3C%jUD\xe1\xe5\xf4C\xe2\xa6\xc1C\x1f\x83[D\xe1\xe5\xf4C\xa0\x13\xbaC\x19\x9caD\xe1\xe5\xf4C\x98\xb9\xb1C\x13\xb5gD\xe1\xe5\xf4C\xe0\xa1\xa9C\x0c\xcemD\xe1\xe5\xf4Ce\x10\xa3C\x06\xe7sD\xe1\xe5\xf4C\x1d\x8c\xa0C\x00\x00zD\x1f\x1a\xffC\xadi\x87C\x00\x00\x00\x00\x1f\x1a\xffC5\x0e\x83C8\x1f\xc3A\x1f\x1a\xffCf\x88\x81C8\x1fCB\x1f\x1a\xffC+\xf9\x87CjW\x92B\x1f\x1a\xffCg\xe1\x8cC8\x1f\xc3B\x1f\x1a\xffC\xca\xbf\x99C\x06\xe7\xf3B\x1f\x1a\xffC\xec \xadCjW\x12C\x1f\x1a\xffCl\x9b\xc0CQ\xbb*C\x1f\x1a\xffCCO\xc6C8\x1fCC\x1f\x1a\xffC\x1b\xe8\xc3C\x1f\x83[C\x1f\x1a\xffC5\xfc\xc0C\x06\xe7sC\x1f\x1a\xffC\xc6\xdb\xbfCw%\x86C\x1f\x1a\xffC\x1b-\xc6CjW\x92C\x1f\x1a\xffC\xca\xba\xd3C^\x89\x9eC\x1f\x1a\xffC~]\xd7CQ\xbb\xaaC\x1f\x1a\xffC\xbf=\xd4CE\xed\xb6C\x1f\x1a\xffC\r(\xd9C8\x1f\xc3C\x1f\x1a\xffC\x19B\xe8C,Q\xcfC\x1f\x1a\xffC \xf8\xfdC\x1f\x83\xdbC\x1f\x1a\xffC"\xd7\x00D\x13\xb5\xe7C\x1f\x1a\xffC\xc6\xbd\x00D\x06\xe7\xf3C\x1f\x1a\xffC\xa1\xa4\x06D}\x0c\x00D\x1f\x1a\xffCI\x90\rDw%\x06D\x1f\x1a\xffC-N\x14Dp>\x0cD\x1f\x1a\xffC\xac\xbc\x16DjW\x12D\x1f\x1a\xffC\x97p\x19Ddp\x18D\x1f\x1a\xffC\xcer\x19D^\x89\x1eD\x1f\x1a\xffC?\x8b\x18DW\xa2$D\x1f\x1a\xffCL0\x19DQ\xbb*D\x1f\x1a\xffC;\x03\x17DK\xd40D\x1f\x1a\xffCB`\x15DE\xed6D\x1f\x1a\xffC< \x16D>\x06=D\x1f\x1a\xffC<\xf5\x0fD8\x1fCD\x1f\x1a\xffC\xc57\x01D28ID\x1f\x1a\xffC\t\xa7\xe8C,QOD\x1f\x1a\xffC[i\xdaC%jUD\x1f\x1a\xffC\xd90\xccC\x1f\x83[D\x1f\x1a\xffC\xb5\x13\xc1C\x19\x9caD\x1f\x1a\xffCw\x0b\xbdC\x13\xb5gD\x1f\x1a\xffC\xe3\xa3\xb4C\x0c\xcemD\x1f\x1a\xffC|k\xabC\x06\xe7sD\x1f\x1a\xffCp,\xaaC\x00\x00zD/\xa7\x04Dsc\x88C\x00\x00\x00\x00/\xa7\x04D\xe0\xc3}C8\x1f\xc3A/\xa7\x04DM\\}C8\x1fCB/\xa7\x04D\x01\x8f\x83CjW\x92B/\xa7\x04D\xb0G\x8fC8\x1f\xc3B/\xa7\x04D\xc8\xa8\xa1C\x06\xe7\xf3B/\xa7\x04D\x85M\xb4CjW\x12C/\xa7\x04D\xdd\x93\xbfCQ\xbb*C/\xa7\x04D\xcc\x84\xbfC8\x1fCC/\xa7\x04D\xe53\xc9C\x1f\x83[C/\xa7\x04D\xa0\x1d\xccC\x06\xe7sC/\xa7\x04Dhv\xceCw%\x86C/\xa7\x04Dz\x8c\xd0CjW\x92C/\xa7\x04D\xeb(\xd7C^\x89\x9eC/\xa7\x04DL\xc1\xd9CQ\xbb\xaaC/\xa7\x04D%\x9b\xd0CE\xed\xb6C/\xa7\x04D\xb7\xee\xd3C8\x1f\xc3C/\xa7\x04D\xcc\xc0\xe1C,Q\xcfC/\xa7\x04D\xb5M\xf2C\x1f\x83\xdbC/\xa7\x04D1#\xfaC\x13\xb5\xe7C/\xa7\x04D\xf18\xfbC\x06\xe7\xf3C/\xa7\x04D\xf5\xe3\x05D}\x0c\x00D/\xa7\x04D\x90 \rDw%\x06D/\xa7\x04D\xdbn\x14Dp>\x0cD/\xa7\x04DJ\xd0\x16DjW\x12D/\xa7\x04DZY\x18Ddp\x18D/\xa7\x04D7\x10\x1dD^\x89\x1eD/\xa7\x04D\x98\x96\x18DW\xa2$D/\xa7\x04D\xae\xe1\x17DQ\xbb*D/\xa7\x04D\x93[\x1bDK\xd40D/\xa7\x04D\xfe-\x19DE\xed6D/\xa7\x04D\xc2\xe0\x15D>\x06=D/\xa7\x04DRK\x10D8\x1fCD/\xa7\x04Dp}\x05D28ID/\xa7\x04DFu\xf5C,QOD/\xa7\x04Dq\x03\xdfC%jUD/\xa7\x04D\x87V\xcdC\x1f\x83[D/\xa7\x04D\x83\x8f\xc2C\x19\x9caD/\xa7\x04D\xfb\xbd\xc3C\x13\xb5gD/\xa7\x04Df\x9b\xb9C\x0c\xcemD/\xa7\x04D\x9d\xee\xb4C\x06\xe7sD/\xa7\x04D\xb2\xd9\xb3C\x00\x00zDN\xc1\tDHi\x8aC\x00\x00\x00\x00N\xc1\tD\xc3\x9a\x83C8\x1f\xc3AN\xc1\tD4\xd6{C8\x1fCBN\xc1\tD\xcbx\x84CjW\x92BN\xc1\tDG\x83\x92C8\x1f\xc3BN\xc1\tDp\x16\xa6C\x06\xe7\xf3BN\xc1\tD\xe5\x17\xbcCjW\x12CN\xc1\tDi{\xc3CQ\xbb*CN\xc1\tD\xbe\x94\xbbC8\x1fCCN\xc1\tD@\x06\xc2C\x1f\x83[CN\xc1\tDr\xc4\xccC\x06\xe7sCN\xc1\tD\x83\xa6\xd3Cw%\x86CN\xc1\tD\xa2\xda\xd8CjW\x92CN\xc1\tD\xe97\xddC^\x89\x9eCN\xc1\tDjw\xd8CQ\xbb\xaaCN\xc1\tD\x06/\xd7CE\xed\xb6CN\xc1\tD6T\xd7C8\x1f\xc3CN\xc1\tD3j\xdaC,Q\xcfCN\xc1\tD\xc2"\xe4C\x1f\x83\xdbCN\xc1\tD\xfcj\xf1C\x13\xb5\xe7CN\xc1\tDoL\xfcC\x06\xe7\xf3CN\xc1\tD\xae\x1e\x04D}\x0c\x00DN\xc1\tD\x8dD\nDw%\x06DN\xc1\tD\x82\xec\x13Dp>\x0cDN\xc1\tDwh\x17DjW\x12DN\xc1\tD\x1c\xde\x1aDdp\x18DN\xc1\tD\n\x13\x1cD^\x89\x1eDN\xc1\tDq,\x1bDW\xa2$DN\xc1\tDx\xc0\x1aDQ\xbb*DN\xc1\tD\xa6k\x1bDK\xd40DN\xc1\tD0\t\x17DE\xed6DN\xc1\tD\xebW\x13D>\x06=DN\xc1\tDD\t\rD8\x1fCDN\xc1\tD\r\t\x08D28IDN\xc1\tD\x01\x11\xfcC,QODN\xc1\tDE\xe1\xdeC%jUDN\xc1\tD\xc6\xe6\xc6C\x1f\x83[DN\xc1\tD\x12\xee\xc3C\x19\x9caDN\xc1\tD\xbe\xdc\xc9C\x13\xb5gDN\xc1\tDQ\x10\xc8C\x0c\xcemDN\xc1\tD\xdb\xea\xc1C\x06\xe7sDN\xc1\tD\x91\xb2\xbfC\x00\x00zDn\xdb\x0eD\xd5\xdc\x8fC\x00\x00\x00\x00n\xdb\x0eDn\x93\x8eC8\x1f\xc3An\xdb\x0eD\x1b<\x8dC8\x1fCBn\xdb\x0eDX\x9c\x90CjW\x92Bn\xdb\x0eDn\xd4\x9dC8\x1f\xc3Bn\xdb\x0eD\xd5#\xb2C\x06\xe7\xf3Bn\xdb\x0eDd\xb2\xc5CjW\x12Cn\xdb\x0eD\xec^\xccCQ\xbb*Cn\xdb\x0eD\xf9\xfd\xc3C8\x1fCCn\xdb\x0eD\xe0\x89\xbfC\x1f\x83[Cn\xdb\x0eD\xdbs\xc4C\x06\xe7sCn\xdb\x0eD\xfa0\xc9Cw%\x86Cn\xdb\x0eD\xab\x7f\xd9CjW\x92Cn\xdb\x0eD\x7f\x91\xe5C^\x89\x9eCn\xdb\x0eD\x16E\xdcCQ\xbb\xaaCn\xdb\x0eD\x06\xb7\xdcCE\xed\xb6Cn\xdb\x0eD\xf6\xce\xd9C8\x1f\xc3Cn\xdb\x0eD\x16\x8d\xdaC,Q\xcfCn\xdb\x0eD\x9e\xa0\xe0C\x1f\x83\xdbCn\xdb\x0eD/&\xf0C\x13\xb5\xe7Cn\xdb\x0eD\x8d\xd5\xf8C\x06\xe7\xf3Cn\xdb\x0eD\x1a\x97\x03D}\x0c\x00Dn\xdb\x0eDm\xf1\x08Dw%\x06Dn\xdb\x0eD\x89\xe2\x0fDp>\x0cDn\xdb\x0eD\xc7\xc5\x15DjW\x12Dn\xdb\x0eD\x8c\xeb\x19Ddp\x18Dn\xdb\x0eD[\xcc\x1cD^\x89\x1eDn\xdb\x0eDf\xb4\x1dDW\xa2$Dn\xdb\x0eD7(\x1bDQ\xbb*Dn\xdb\x0eDG\xf9\x19DK\xd40Dn\xdb\x0eD\xf1\x1d\x14DE\xed6Dn\xdb\x0eDiE\x10D>\x06=Dn\xdb\x0eD\xc2B\x0cD8\x1fCDn\xdb\x0eD\x14\x7f\x04D28IDn\xdb\x0eD\x90\xe1\xf6C,QODn\xdb\x0eD\xea\xf7\xdfC%jUDn\xdb\x0eDVi\xcaC\x1f\x83[Dn\xdb\x0eD\xdft\xc4C\x19\x9caDn\xdb\x0eD:?\xcdC\x13\xb5gDn\xdb\x0eD\x04\xc1\xceC\x0c\xcemDn\xdb\x0eD!y\xccC\x06\xe7sDn\xdb\x0eD\x9dv\xc0C\x00\x00zD\x8d\xf5\x13D\xe1\x93\x9bC\x00\x00\x00\x00\x8d\xf5\x13D\x06\xdf\x97C8\x1f\xc3A\x8d\xf5\x13D\xd8\xca\x96C8\x1fCB\x8d\xf5\x13D\xa3\x11\x9fCjW\x92B\x8d\xf5\x13D\nv\xb0C8\x1f\xc3B\x8d\xf5\x13D\x8aW\xbdC\x06\xe7\xf3B\x8d\xf5\x13D \xb6\xc5CjW\x12C\x8d\xf5\x13D\xbb~\xc9CQ\xbb*C\x8d\xf5\x13D_G\xc4C8\x1fCC\x8d\xf5\x13D\xa9g\xbbC\x1f\x83[C\x8d\xf5\x13D\xecd\xbcC\x06\xe7sC\x8d\xf5\x13D.H\xccCw%\x86C\x8d\xf5\x13D4\x86\xdbCjW\x92C\x8d\xf5\x13DR\xe4\xe0C^\x89\x9eC\x8d\xf5\x13D\xec+\xddCQ\xbb\xaaC\x8d\xf5\x13D\r\x81\xd9CE\xed\xb6C\x8d\xf5\x13D\x1a>\xe0C8\x1f\xc3C\x8d\xf5\x13D1z\xe3C,Q\xcfC\x8d\xf5\x13D\x0c=\xe7C\x1f\x83\xdbC\x8d\xf5\x13D\xd1\xbd\xecC\x13\xb5\xe7C\x8d\xf5\x13D\x1c\xde\xf0C\x06\xe7\xf3C\x8d\xf5\x13D\x0e\xea\xf8C}\x0c\x00D\x8d\xf5\x13D\xe0\x16\x06Dw%\x06D\x8d\xf5\x13D\xf9\xa1\x0bDp>\x0cD\x8d\xf5\x13D\xd9\x19\x11DjW\x12D\x8d\xf5\x13D\xca9\x17Ddp\x18D\x8d\xf5\x13D\xa6\xee\x1aD^\x89\x1eD\x8d\xf5\x13D\xd1\xa4\x1cDW\xa2$D\x8d\xf5\x13D\x997\x18DQ\xbb*D\x8d\xf5\x13D@\xe2\x13DK\xd40D\x8d\xf5\x13D^\xba\x0eDE\xed6D\x8d\xf5\x13DC"\nD>\x06=D\x8d\xf5\x13D\x0fi\tD8\x1fCD\x8d\xf5\x13Dl\x88\x01D28ID\x8d\xf5\x13D\xbf\xf1\xf2C,QOD\x8d\xf5\x13D\xb9;\xe3C%jUD\x8d\xf5\x13D\x07\x1f\xd2C\x1f\x83[D\x8d\xf5\x13D\xc5\x04\xd1C\x19\x9caD\x8d\xf5\x13D\xef\xa3\xd7C\x13\xb5gD\x8d\xf5\x13DXn\xd3C\x0c\xcemD\x8d\xf5\x13D\x1a\xa1\xd0C\x06\xe7sD\x8d\xf5\x13D4f\xc7C\x00\x00zD\xac\x0f\x19Dj\x93\xa5C\x00\x00\x00\x00\xac\x0f\x19DN\xfe\x9dC8\x1f\xc3A\xac\x0f\x19D\x0e\xa3\xa1C8\x1fCB\xac\x0f\x19D|\xc5\xb2CjW\x92B\xac\x0f\x19D\x08\xb2\xbeC8\x1f\xc3B\xac\x0f\x19D\x18\xe8\xc5C\x06\xe7\xf3B\xac\x0f\x19D<X\xcbCjW\x12C\xac\x0f\x19D\xdfu\xcdCQ\xbb*C\xac\x0f\x19D\x80\xdc\xc6C8\x1fCC\xac\x0f\x19D\xe2\x18\xc1C\x1f\x83[C\xac\x0f\x19D\xbd\xa8\xc5C\x06\xe7sC\xac\x0f\x19D\xc9\xf2\xcdCw%\x86C\xac\x0f\x19DO\xf7\xd6CjW\x92C\xac\x0f\x19D\x0f\x05\xdcC^\x89\x9eC\xac\x0f\x19Dc,\xdbCQ\xbb\xaaC\xac\x0f\x19D\x10\xf4\xdcCE\xed\xb6C\xac\x0f\x19D\x80\xfe\xe2C8\x1f\xc3C\xac\x0f\x19D!8\xe6C,Q\xcfC\xac\x0f\x19D4<\xedC\x1f\x83\xdbC\xac\x0f\x19Dlb\xf5C\x13\xb5\xe7C\xac\x0f\x19D\xc0\xaa\xfaC\x06\xe7\xf3C\xac\x0f\x19DH\xad\x00D}\x0c\x00D\xac\x0f\x19D{\xef\x04Dw%\x06D\xac\x0f\x19D\xb5w\x07Dp>\x0cD\xac\x0f\x19D\x13\x17\x0cDjW\x12D\xac\x0f\x19D\xe3\xe9\x13Ddp\x18D\xac\x0f\x19Da\x95\x17D^\x89\x1eD\xac\x0f\x19D@\xb5\x19DW\xa2$D\xac\x0f\x19DC\x19\x17DQ\xbb*D\xac\x0f\x19D78\x15DK\xd40D\xac\x0f\x19D\xbc\xb6\rDE\xed6D\xac\x0f\x19D+\x9c\x08D>\x06=D\xac\x0f\x19D,\x08\x04D8\x1fCD\xac\x0f\x19DV\x15\xfaC28ID\xac\x0f\x19D\xf0\xd2\xe9C,QOD\xac\x0f\x19DTy\xddC%jUD\xac\x0f\x19DB\x1f\xdcC\x1f\x83[D\xac\x0f\x19D\t\xfc\xdbC\x19\x9caD\xac\x0f\x19D\xf08\xd9C\x13\xb5gD\xac\x0f\x19D\xc7\xe7\xd2C\x0c\xcemD\xac\x0f\x19D`\xb7\xd3C\x06\xe7sD\xac\x0f\x19D\xd9\xdf\xd0C\x00\x00zD\xcc)\x1eDxM\xacC\x00\x00\x00\x00\xcc)\x1eD\xf3\xc1\xa7C8\x1f\xc3A\xcc)\x1eDxr\xacC8\x1fCB\xcc)\x1eD\x00\x1d\xbbCjW\x92B\xcc)\x1eDB.\xc4C8\x1f\xc3B\xcc)\x1eD\xd2p\xcfC\x06\xe7\xf3B\xcc)\x1eD>\x94\xd3CjW\x12C\xcc)\x1eD\xf7\x84\xcfCQ\xbb*C\xcc)\x1eD\x8ek\xccC8\x1fCC\xcc)\x1eD\x1d\x86\xcbC\x1f\x83[C\xcc)\x1eDhW\xcdC\x06\xe7sC\xcc)\x1eD\x1d;\xd0Cw%\x86C\xcc)\x1eD\x88\xa3\xdaCjW\x92C\xcc)\x1eDj\xa7\xe3C^\x89\x9eC\xcc)\x1eDh\xa0\xe2CQ\xbb\xaaC\xcc)\x1eDW\xf0\xe8CE\xed\xb6C\xcc)\x1eD\xa6\x7f\xf6C8\x1f\xc3C\xcc)\x1eD8\x1b\xf8C,Q\xcfC\xcc)\x1eD\xe4\x8e\xf6C\x1f\x83\xdbC\xcc)\x1eD\x97-\xfcC\x13\xb5\xe7C\xcc)\x1eD\xb9\xb2\x02D\x06\xe7\xf3C\xcc)\x1eDr\xd9\x05D}\x0c\x00D\xcc)\x1eD\xf7\x8f\x06Dw%\x06D\xcc)\x1eD\xbc\xde\x07Dp>\x0cD\xcc)\x1eD\t\x05\rDjW\x12D\xcc)\x1eD\xc0\xa7\x0eDdp\x18D\xcc)\x1eD\x87\xf3\x15D^\x89\x1eD\xcc)\x1eD\xc6\x0b\x14DW\xa2$D\xcc)\x1eD\x14M\x11DQ\xbb*D\xcc)\x1eD%=\x12DK\xd40D\xcc)\x1eD\x8e\xcb\x0cDE\xed6D\xcc)\x1eD\xd4\xc9\nD>\x06=D\xcc)\x1eD\x19\x8b\x05D8\x1fCD\xcc)\x1eD>6\xf8C28ID\xcc)\x1eD\xc9Q\xeaC,QOD\xcc)\x1eDW\xb3\xe5C%jUD\xcc)\x1eD\xc1\xa3\xeaC\x1f\x83[D\xcc)\x1eD\xb1\xc1\xe5C\x19\x9caD\xcc)\x1eDj\xf7\xdbC\x13\xb5gD\xcc)\x1eD\x84\xd8\xdaC\x0c\xcemD\xcc)\x1eD\xf3\xce\xd9C\x06\xe7sD\xcc)\x1eDq@\xd7C\x00\x00zD\xebC#D\xe0\xfb\xc1C\x00\x00\x00\x00\xebC#D\x01m\xc2C8\x1f\xc3A\xebC#D\x8b\x98\xc0C8\x1fCB\xebC#D\xfc\xcd\xc4CjW\x92B\xebC#DyM\xd3C8\x1f\xc3B\xebC#D\xfd^\xd9C\x06\xe7\xf3B\xebC#D\xd1\x91\xddCjW\x12C\xebC#D\x94\x13\xdcCQ\xbb*C\xebC#D\xde\x1d\xddC8\x1fCC\xebC#D\xc7M\xd8C\x1f\x83[C\xebC#D\x81\xe6\xd6C\x06\xe7sC\xebC#D\x15\xc2\xe2Cw%\x86C\xebC#D-r\xedCjW\x92C\xebC#D\x88\x10\xf3C^\x89\x9eC\xebC#D\xa9\x93\xf4CQ\xbb\xaaC\xebC#Dt6\xf7CE\xed\xb6C\xebC#DZL\x00D8\x1f\xc3C\xebC#DW\xfc\x02D,Q\xcfC\xebC#D\xb66\x00D\x1f\x83\xdbC\xebC#D\xb1\xc4\xfbC\x13\xb5\xe7C\xebC#D\xf5b\x00D\x06\xe7\xf3C\xebC#Dw\xf4\x02D}\x0c\x00D\xebC#D\xda\x8f\x05Dw%\x06D\xebC#DrY\x05Dp>\x0cD\xebC#D\xbd\xfd\x06DjW\x12D\xebC#D<\x9c\x0cDdp\x18D\xebC#D\xa0t\x0fD^\x89\x1eD\xebC#D\xf8\x9a\x0bDW\xa2$D\xebC#D0@\rDQ\xbb*D\xebC#Dn^\x0fDK\xd40D\xebC#D;\x95\rDE\xed6D\xebC#D\x8b)\x0cD>\x06=D\xebC#D\xda\x9d\x08D8\x1fCD\xebC#D\x89k\xfdC28ID\xebC#D\xa8d\xeeC,QOD\xebC#D\xb1\xe3\xeeC%jUD\xebC#D\x1d\x88\xf6C\x1f\x83[D\xebC#D\xc3R\xeaC\x19\x9caD\xebC#D\xaa\x9a\xdbC\x13\xb5gD\xebC#D\x12z\xdeC\x0c\xcemD\xebC#D\xe8\x17\xdfC\x06\xe7sD\xebC#D|\xfe\xd8C\x00\x00zD\n^(D\x12\xf5\xdaC\x00\x00\x00\x00\n^(D\xa2q\xdcC8\x1f\xc3A\n^(D\xf4\x0f\xd9C8\x1fCB\n^(D\xe6\xfd\xddCjW\x92B\n^(D\xcc[\xe4C8\x1f\xc3B\n^(D\x88F\xe6C\x06\xe7\xf3B\n^(Dm\xa3\xeaCjW\x12C\n^(D\xa6`\xf2CQ\xbb*C\n^(D+6\xefC8\x1fCC\n^(DU\x1c\xedC\x1f\x83[C\n^(D\xa1\xd9\xf0C\x06\xe7sC\n^(DuQ\xf9Cw%\x86C\n^(D\xa4\\\x02DjW\x92C\n^(D\xdc0\x02D^\x89\x9eC\n^(D\x12e\xffCQ\xbb\xaaC\n^(D\x97\x1d\xfcCE\xed\xb6C\n^(DD\x9e\x03D8\x1f\xc3C\n^(D\xc8\xa1\x08D,Q\xcfC\n^(D4l\x05D\x1f\x83\xdbC\n^(D\x9a\x07\x02D\x13\xb5\xe7C\n^(D.\xcc\x00D\x06\xe7\xf3C\n^(D\xe3*\x01D}\x0c\x00D\n^(D{y\x00Dw%\x06D\n^(D\xd6)\xffCp>\x0cD\n^(D\nd\x01DjW\x12D\n^(D\xdbd\x06Ddp\x18D\n^(D\xac\xfa\x07D^\x89\x1eD\n^(D%\x00\x05DW\xa2$D\n^(D\x9dQ\x07DQ\xbb*D\n^(Dpc\x0bDK\xd40D\n^(D\xef\xaf\x0cDE\xed6D\n^(D\x83\xca\x0bD>\x06=D\n^(D\xaff\x06D8\x1fCD\n^(D\x05\xfa\xf6C28ID\n^(D\xf2@\xe9C,QOD\n^(D9\x9e\xefC%jUD\n^(Dw\xde\xf6C\x1f\x83[D\n^(Dz\xc4\xeeC\x19\x9caD\n^(D\r\xde\xe1C\x13\xb5gD\n^(D\xe4\x87\xdeC\x0c\xcemD\n^(D\xea\xe0\xdeC\x06\xe7sD\n^(D\x8dg\xd9C\x00\x00zD*x-D\x02y\xebC\x00\x00\x00\x00*x-D\x11?\xf3C8\x1f\xc3A*x-DP\xe9\xf6C8\x1fCB*x-De=\xf5CjW\x92B*x-D\xfaL\xf6C8\x1f\xc3B*x-D<n\xfaC\x06\xe7\xf3B*x-D\xa9D\x01DjW\x12C*x-D)\xde\x01DQ\xbb*C*x-D\xc8\xb9\x02D8\x1fCC*x-D\xfa}\x01D\x1f\x83[C*x-D\x81\xeb\x02D\x06\xe7sC*x-D\x1b\xa6\x06Dw%\x86C*x-D\x9d\x98\tDjW\x92C*x-DD\xf3\nD^\x89\x9eC*x-D\xe3\x93\x07DQ\xbb\xaaC*x-D\xd5^\x07DE\xed\xb6C*x-D\x03\xe2\tD8\x1f\xc3C*x-D\x89\x10\x0cD,Q\xcfC*x-DUA\x0bD\x1f\x83\xdbC*x-D\n\x1e\x08D\x13\xb5\xe7C*x-D\xbb\x9c\x01D\x06\xe7\xf3C*x-D\xf0\x13\x00D}\x0c\x00D*x-D"\xdf\xffCw%\x06D*x-D\xca\xe7\xfeCp>\x0cD*x-D\x1d\x15\xfeCjW\x12D*x-D\xaad\x02Ddp\x18D*x-D\x10?\x05D^\x89\x1eD*x-D\xb1o\x03DW\xa2$D*x-D\x0e~\x06DQ\xbb*D*x-D\x00\x86\nDK\xd40D*x-D\x00$\x0bDE\xed6D*x-D~\xbc\x07D>\x06=D*x-D<\xbf\x04D8\x1fCD*x-D\xc8\x82\xfeC28ID*x-DY\x9c\xf4C,QOD*x-D\xd3Q\xf4C%jUD*x-D\xc5\xa3\xf5C\x1f\x83[D*x-D\xfbj\xf1C\x19\x9caD*x-D\x97\xae\xeeC\x13\xb5gD*x-D\x0e\'\xe2C\x0c\xcemD*x-D$\x06\xddC\x06\xe7sD*x-D|\x84\xd7C\x00\x00zDI\x922D\x9d*\xf3C\x00\x00\x00\x00I\x922D\xb3\x9e\x00D8\x1f\xc3AI\x922D\x96\x90\x06D8\x1fCBI\x922D\xb9\xd8\x07DjW\x92BI\x922Dy\x7f\x07D8\x1f\xc3BI\x922D\xdb\xe1\x08D\x06\xe7\xf3BI\x922D\xfe\xec\x0bDjW\x12CI\x922D\x96\xe0\x0cDQ\xbb*CI\x922Dw{\rD8\x1fCCI\x922D\x9cN\x0cD\x1f\x83[CI\x922D\xad\x85\x0fD\x06\xe7sCI\x922D\x13\x8f\x0fDw%\x86CI\x922Dk\x8e\x10DjW\x92CI\x922D\xfb\x91\x10D^\x89\x9eCI\x922Dn&\x0fDQ\xbb\xaaCI\x922D\x94\xfa\rDE\xed\xb6CI\x922D\xbc\x15\x0fD8\x1f\xc3CI\x922D\x8a\xc4\x0cD,Q\xcfCI\x922D+~\rD\x1f\x83\xdbCI\x922D\xfa\x9f\tD\x13\xb5\xe7CI\x922D\xe6*\x02D\x06\xe7\xf3CI\x922D\x92\x1b\xf8C}\x0c\x00DI\x922Dm\xef\xfaCw%\x06DI\x922Dv\xc4\xffCp>\x0cDI\x922Dv\x03\x00DjW\x12DI\x922D%g\xffCdp\x18DI\x922D\x82\r\x04D^\x89\x1eDI\x922DM\xa6\x03DW\xa2$DI\x922D9M\nDQ\xbb*DI\x922D\xd7\xfd\nDK\xd40DI\x922DN\x9e\x05DE\xed6DI\x922D7\xcc\x00D>\x06=DI\x922D\x8b\x17\x02D8\x1fCDI\x922Dh4\x01D28IDI\x922DO\xef\xf9C,QODI\x922D\x0eS\xf6C%jUDI\x922D\x08\xdf\xeeC\x1f\x83[DI\x922D\x8b:\xe9C\x19\x9caDI\x922D\n\xc2\xe4C\x13\xb5gDI\x922D\xbc\xfa\xdfC\x0c\xcemDI\x922D:\x18\xddC\x06\xe7sDI\x922DB\x1f\xd6C\x00\x00zDh\xac7D\x8f\xbd\xfcC\x00\x00\x00\x00h\xac7D\x99\xad\x04D8\x1f\xc3Ah\xac7D\x16\xcc\nD8\x1fCBh\xac7DRD\rDjW\x92Bh\xac7D\xbb\xff\x11D8\x1f\xc3Bh\xac7D\r\xbf\x13D\x06\xe7\xf3Bh\xac7DH\x94\x15DjW\x12Ch\xac7DYW\x1aDQ\xbb*Ch\xac7DU\xe6\x17D8\x1fCCh\xac7D\xc3r\x15D\x1f\x83[Ch\xac7D\xcc\x90\x16D\x06\xe7sCh\xac7D\xf7\xd9\x14Dw%\x86Ch\xac7D\xde\x93\x12DjW\x92Ch\xac7D>7\x16D^\x89\x9eCh\xac7D\xa0\xf8\x16DQ\xbb\xaaCh\xac7D\x18;\x16DE\xed\xb6Ch\xac7D\x7f\x9d\x16D8\x1f\xc3Ch\xac7Da\x1f\x14D,Q\xcfCh\xac7D\xc9\x0b\x0fD\x1f\x83\xdbCh\xac7D\r\xea\x07D\x13\xb5\xe7Ch\xac7D5\xcd\x00D\x06\xe7\xf3Ch\xac7D\xfe\xb4\xfcC}\x0c\x00Dh\xac7D\x81\xbf\xf7Cw%\x06Dh\xac7DY\x92\xf9Cp>\x0cDh\xac7D\x88_\xf8CjW\x12Dh\xac7D\x92N\xf9Cdp\x18Dh\xac7D\xc9\n\xfcC^\x89\x1eDh\xac7Dv]\x01DW\xa2$Dh\xac7Dg\xb3\x04DQ\xbb*Dh\xac7D7\x98\x06DK\xd40Dh\xac7D\xa2e\x03DE\xed6Dh\xac7D\x8ar\xffC>\x06=Dh\xac7D\x7f\x7f\xfbC8\x1fCDh\xac7D\xd5\xf7\xfcC28IDh\xac7D\xe7Z\xfdC,QODh\xac7D\x01B\xfbC%jUDh\xac7D5\xd7\xedC\x1f\x83[Dh\xac7D\xf2\xc5\xe8C\x19\x9caDh\xac7DEu\xe0C\x13\xb5gDh\xac7D\xbe+\xdaC\x0c\xcemDh\xac7D\xf6r\xd2C\x06\xe7sDh\xac7D\xce\xe4\xcdC\x00\x00zD\x88\xc6<D\xe8\x91\x02D\x00\x00\x00\x00\x88\xc6<D\x12(\x08D8\x1f\xc3A\x88\xc6<D5\xaa\rD8\x1fCB\x88\xc6<D\xdfQ\x11DjW\x92B\x88\xc6<D^\x02\x18D8\x1f\xc3B\x88\xc6<Dx\x9f\x1cD\x06\xe7\xf3B\x88\xc6<Dzb!DjW\x12C\x88\xc6<D\xf5\xd9%DQ\xbb*C\x88\xc6<D&V#D8\x1fCC\x88\xc6<D\xdf?\x1fD\x1f\x83[C\x88\xc6<D3} D\x06\xe7sC\x88\xc6<D\xf2J\x1cDw%\x86C\x88\xc6<D\xfb"\x19DjW\x92C\x88\xc6<Dqq\x1bD^\x89\x9eC\x88\xc6<D\n\xd6\x1bDQ\xbb\xaaC\x88\xc6<D\xb3N\x1aDE\xed\xb6C\x88\xc6<D\xdb\xa3\x1aD8\x1f\xc3C\x88\xc6<DLK\x1aD,Q\xcfC\x88\xc6<D\xd4\xfc\x10D\x1f\x83\xdbC\x88\xc6<DI\xe7\x08D\x13\xb5\xe7C\x88\xc6<D\xd4\x0c\xfdC\x06\xe7\xf3C\x88\xc6<Dz\xce\xf2C}\x0c\x00D\x88\xc6<D\xfc\x99\xf1Cw%\x06D\x88\xc6<D\x04\xd0\xecCp>\x0cD\x88\xc6<D\xa4\xe3\xe9CjW\x12D\x88\xc6<D;w\xebCdp\x18D\x88\xc6<D&V\xf2C^\x89\x1eD\x88\xc6<D0\x0f\xf2CW\xa2$D\x88\xc6<DS\xfd\xf9CQ\xbb*D\x88\xc6<DA\xc2\x01DK\xd40D\x88\xc6<D~\xda\x03DE\xed6D\x88\xc6<D!\xc1\x03D>\x06=D\x88\xc6<D\xf3\xc2\xfdC8\x1fCD\x88\xc6<D\xfd\xf4\xf6C28ID\x88\xc6<DT\xb6\xf6C,QOD\x88\xc6<D\x87\xc8\xf9C%jUD\x88\xc6<D\x84\x05\xedC\x1f\x83[D\x88\xc6<D\x8cm\xe7C\x19\x9caD\x88\xc6<D\rB\xe9C\x13\xb5gD\x88\xc6<DR_\xdcC\x0c\xcemD\x88\xc6<D\xdc\x91\xcfC\x06\xe7sD\x88\xc6<D\xf0~\xcdC\x00\x00zD\xa7\xe0AD\x9c\xf2\x03D\x00\x00\x00\x00\xa7\xe0ADS\xe9\tD8\x1f\xc3A\xa7\xe0AD\xca\xf7\x0eD8\x1fCB\xa7\xe0AD\x9e \x16DjW\x92B\xa7\xe0AD\xd4\xe5\x1cD8\x1f\xc3B\xa7\xe0ADk\xe3 D\x06\xe7\xf3B\xa7\xe0ADB\xe6)DjW\x12C\xa7\xe0ADNp.DQ\xbb*C\xa7\xe0AD\x9c\xdf1D8\x1fCC\xa7\xe0AD<\x0f-D\x1f\x83[C\xa7\xe0AD\x8d\xc2)D\x06\xe7sC\xa7\xe0AD=\xda%Dw%\x86C\xa7\xe0AD%V!DjW\x92C\xa7\xe0AD\x1d\xce D^\x89\x9eC\xa7\xe0AD*\xca\x1eDQ\xbb\xaaC\xa7\xe0AD\xefF\x1eDE\xed\xb6C\xa7\xe0AD\xfe\xbc\x1eD8\x1f\xc3C\xa7\xe0AD. \x1cD,Q\xcfC\xa7\xe0AD\xa5\xbf\x13D\x1f\x83\xdbC\xa7\xe0AD\xa7\xf7\x08D\x13\xb5\xe7C\xa7\xe0AD\xde4\x01D\x06\xe7\xf3C\xa7\xe0AD\xcb\xd9\xf0C}\x0c\x00D\xa7\xe0AD\xc8=\xe7Cw%\x06D\xa7\xe0AD\x8c\\\xe6Cp>\x0cD\xa7\xe0AD6y\xdfCjW\x12D\xa7\xe0AD\xba{\xe3Cdp\x18D\xa7\xe0AD\xa9;\xe4C^\x89\x1eD\xa7\xe0AD/\xca\xe5CW\xa2$D\xa7\xe0ADan\xecCQ\xbb*D\xa7\xe0AD \xf0\xf4CK\xd40D\xa7\xe0AD<\x8e\x04DE\xed6D\xa7\xe0AD\xc4f\x05D>\x06=D\xa7\xe0ADP#\x02D8\x1fCD\xa7\xe0ADa\xa8\xf6C28ID\xa7\xe0AD\xc4\xed\xeeC,QOD\xa7\xe0AD\xdf\xd4\xf2C%jUD\xa7\xe0AD\\\x83\xe8C\x1f\x83[D\xa7\xe0AD\x1a7\xe0C\x19\x9caD\xa7\xe0AD\xb7\x8e\xdeC\x13\xb5gD\xa7\xe0ADT\xc1\xd6C\x0c\xcemD\xa7\xe0AD\xdb\xad\xd0C\x06\xe7sD\xa7\xe0ADZ\xe1\xd2C\x00\x00zD\xc7\xfaFD;\xe3\x03D\x00\x00\x00\x00\xc7\xfaFD\xd3\xe6\x07D8\x1f\xc3A\xc7\xfaFDWt\x0eD8\x1fCB\xc7\xfaFD\xe9\xa0\x17DjW\x92B\xc7\xfaFD\xbf9!D8\x1f\xc3B\xc7\xfaFD\x8b\x1c#D\x06\xe7\xf3B\xc7\xfaFD\xa7w*DjW\x12C\xc7\xfaFD"g2DQ\xbb*C\xc7\xfaFDX\x8f;D8\x1fCC\xc7\xfaFD%d7D\x1f\x83[C\xc7\xfaFD\x1c\xba4D\x06\xe7sC\xc7\xfaFD\x10\xf2-Dw%\x86C\xc7\xfaFD\xbc\x02&DjW\x92C\xc7\xfaFDh\xab#D^\x89\x9eC\xc7\xfaFD\xd6\'!DQ\xbb\xaaC\xc7\xfaFD5\xcf DE\xed\xb6C\xc7\xfaFD\xef0\x1dD8\x1f\xc3C\xc7\xfaFD\xf3\x0e\x15D,Q\xcfC\xc7\xfaFD\xe3\xc0\rD\x1f\x83\xdbC\xc7\xfaFD`\x89\x07D\x13\xb5\xe7C\xc7\xfaFD\xac\x98\x01D\x06\xe7\xf3C\xc7\xfaFD\xe4\xeb\xf2C}\x0c\x00D\xc7\xfaFD\xea\xee\xeaCw%\x06D\xc7\xfaFD\x0b"\xeaCp>\x0cD\xc7\xfaFD\xfb\xbe\xe4CjW\x12D\xc7\xfaFD\xfav\xe4Cdp\x18D\xc7\xfaFD\xd8\x91\xe4C^\x89\x1eD\xc7\xfaFD;\xb4\xe3CW\xa2$D\xc7\xfaFD\xbf\xe5\xe3CQ\xbb*D\xc7\xfaFDL\x1b\xf0CK\xd40D\xc7\xfaFD\x90\xca\x00DE\xed6D\xc7\xfaFD1>\xffC>\x06=D\xc7\xfaFD\x919\xfaC8\x1fCD\xc7\xfaFD\x82\x14\xefC28ID\xc7\xfaFD\x12\x88\xe3C,QOD\xc7\xfaFDf3\xe2C%jUD\xc7\xfaFD!\xfa\xdfC\x1f\x83[D\xc7\xfaFD\x94y\xdcC\x19\x9caD\xc7\xfaFD\xae\x7f\xd6C\x13\xb5gD\xc7\xfaFD\xd1Y\xd6C\x0c\xcemD\xc7\xfaFD.,\xd0C\x06\xe7sD\xc7\xfaFDc\xf3\xd6C\x00\x00zD\xe6\x14LD\xdf\xa8\x05D\x00\x00\x00\x00\xe6\x14LD\x81\xce\x04D8\x1f\xc3A\xe6\x14LD\x9c\xe1\rD8\x1fCB\xe6\x14LD:\'\x1aDjW\x92B\xe6\x14LD\xa7\xab"D8\x1f\xc3B\xe6\x14LD\xdb\xb4%D\x06\xe7\xf3B\xe6\x14LD|\x0e-DjW\x12C\xe6\x14LD\x03\t8DQ\xbb*C\xe6\x14LD|\x84=D8\x1fCC\xe6\x14LDL\x99=D\x1f\x83[C\xe6\x14LD\xda\xc29D\x06\xe7sC\xe6\x14LD\x02b3Dw%\x86C\xe6\x14LD\xa9\xbf,DjW\x92C\xe6\x14LD0\xf0\'D^\x89\x9eC\xe6\x14LD7H DQ\xbb\xaaC\xe6\x14LD\xd8r\x1eDE\xed\xb6C\xe6\x14LD\x02\x1e\x1bD8\x1f\xc3C\xe6\x14LD\xf3@\x12D,Q\xcfC\xe6\x14LD\xe8\x94\x08D\x1f\x83\xdbC\xe6\x14LDq6\x03D\x13\xb5\xe7C\xe6\x14LD\x9a\xc3\x00D\x06\xe7\xf3C\xe6\x14LD|6\xf5C}\x0c\x00D\xe6\x14LD\xb6\n\xedCw%\x06D\xe6\x14LD\x8aE\xecCp>\x0cD\xe6\x14LD\x15\xb6\xe5CjW\x12D\xe6\x14LDZ\x86\xe3Cdp\x18D\xe6\x14LDA\xbe\xe1C^\x89\x1eD\xe6\x14LDX\x91\xd8CW\xa2$D\xe6\x14LD\x01\x9d\xd9CQ\xbb*D\xe6\x14LD\x93r\xe4CK\xd40D\xe6\x14LD\x03\x83\xf1CE\xed6D\xe6\x14LD\xba\x9b\xf6C>\x06=D\xe6\x14LD\xf5\x7f\xeaC8\x1fCD\xe6\x14LD\x15\xb9\xd7C28ID\xe6\x14LD\x83\xda\xd3C,QOD\xe6\x14LD.\xd8\xd7C%jUD\xe6\x14LD\x9ep\xddC\x1f\x83[D\xe6\x14LDqC\xd9C\x19\x9caD\xe6\x14LD\xaf%\xd0C\x13\xb5gD\xe6\x14LDn\xb6\xcdC\x0c\xcemD\xe6\x14LDAz\xccC\x06\xe7sD\xe6\x14LD\x8c\x0e\xd4C\x00\x00zD\x05/QDzu\nD\x00\x00\x00\x00\x05/QD\x01}\x0cD8\x1f\xc3A\x05/QD\x882\x10D8\x1fCB\x05/QDK\xf7\x18DjW\x92B\x05/QD\xd8\x17#D8\x1f\xc3B\x05/QD~\x96-D\x06\xe7\xf3B\x05/QDZ\x993DjW\x12C\x05/QD\x00\x9a;DQ\xbb*C\x05/QDJG<D8\x1fCC\x05/QD\x06a;D\x1f\x83[C\x05/QD\xb9\x18:D\x06\xe7sC\x05/QDW&8Dw%\x86C\x05/QD\xcd\x103DjW\x92C\x05/QD\xe7I-D^\x89\x9eC\x05/QD0\xe2"DQ\xbb\xaaC\x05/QD\x11\xd2\x1bDE\xed\xb6C\x05/QD\xed\xfa\x17D8\x1f\xc3C\x05/QD\xfdh\rD,Q\xcfC\x05/QDTG\x07D\x1f\x83\xdbC\x05/QD\xd6Q\x03D\x13\xb5\xe7C\x05/QD.J\x00D\x06\xe7\xf3C\x05/QD\t\xdc\xf5C}\x0c\x00D\x05/QD\x87\x1b\xf5Cw%\x06D\x05/QD\x96:\xf3Cp>\x0cD\x05/QD\xf6\xeb\xecCjW\x12D\x05/QD\xdc\x98\xe5Cdp\x18D\x05/QD%]\xdbC^\x89\x1eD\x05/QD\x126\xd3CW\xa2$D\x05/QD\xa0\x0e\xd0CQ\xbb*D\x05/QD\xe9n\xd4CK\xd40D\x05/QD\x1e:\xddCE\xed6D\x05/QD\xd9\xbe\xddC>\x06=D\x05/QD\xca\xa2\xdaC8\x1fCD\x05/QDl^\xceC28ID\x05/QDU\xec\xccC,QOD\x05/QD4\x95\xdaC%jUD\x05/QD\x90Y\xd9C\x1f\x83[D\x05/QD\xab\x18\xd2C\x19\x9caD\x05/QD\xa7d\xd2C\x13\xb5gD\x05/QD\xdc\xf7\xceC\x0c\xcemD\x05/QD!2\xcaC\x06\xe7sD\x05/QD\xc7\xbe\xc9C\x00\x00zD%IVDud\x0eD\x00\x00\x00\x00%IVDON\x11D8\x1f\xc3A%IVDx\x89\x14D8\x1fCB%IVD\xd7\x15\x19DjW\x92B%IVD\xf0\xdf"D8\x1f\xc3B%IVDM\x9a-D\x06\xe7\xf3B%IVDN^3DjW\x12C%IVD\xba\x1a:DQ\xbb*C%IVD3\x10:D8\x1fCC%IVD\x80\xa09D\x1f\x83[C%IVD\x98M7D\x06\xe7sC%IVD\xac~8Dw%\x86C%IVD\xc4r8DjW\x92C%IVD\xd2\xaf4D^\x89\x9eC%IVDR )DQ\xbb\xaaC%IVD\x8c\xfb"DE\xed\xb6C%IVD\x13K\x1cD8\x1f\xc3C%IVD\\\x15\x10D,Q\xcfC%IVD\xaf\xa1\nD\x1f\x83\xdbC%IVD+1\tD\x13\xb5\xe7C%IVDa;\x02D\x06\xe7\xf3C%IVD\xed\xff\xfeC}\x0c\x00D%IVD\xf8t\xfdCw%\x06D%IVD\xb7\x12\x00Dp>\x0cD%IVD\xca\xf4\xf6CjW\x12D%IVDC\xd4\xe7Cdp\x18D%IVDsG\xd9C^\x89\x1eD%IVD\xcb\xd7\xd6CW\xa2$D%IVD\n\x9b\xcfCQ\xbb*D%IVD\x08\x84\xd0CK\xd40D%IVD\xb1K\xd3CE\xed6D%IVD\x86\xe3\xdaC>\x06=D%IVD.\x80\xd5C8\x1fCD%IVD\rk\xcfC28ID%IVD\x80\xb1\xcfC,QOD%IVD_5\xdaC%jUD%IVD\x85\xca\xe0C\x1f\x83[D%IVD\xfc\xa6\xd3C\x19\x9caD%IVD\xff\xfc\xd1C\x13\xb5gD%IVDl\x89\xd5C\x0c\xcemD%IVDV!\xd3C\x06\xe7sD%IVDy\x9f\xcdC\x00\x00zDDc[Dw\xdb\x0eD\x00\x00\x00\x00Dc[DRG\x12D8\x1f\xc3ADc[Dv\x95\x15D8\x1fCBDc[D\xa0\\\x18DjW\x92BDc[D!\xd4\x1eD8\x1f\xc3BDc[D\xa1\x01%D\x06\xe7\xf3BDc[D\xa0\x03.DjW\x12CDc[D\xdc\xc56DQ\xbb*CDc[Dh\x089D8\x1fCCDc[D3\xf17D\x1f\x83[CDc[D\xda\x116D\x06\xe7sCDc[D\x0b\x997Dw%\x86CDc[D\xcc<8DjW\x92CDc[D\x9e\xc25D^\x89\x9eCDc[D\xdb\xed0DQ\xbb\xaaCDc[D\x89"+DE\xed\xb6CDc[D\x03\x89%D8\x1f\xc3CDc[DV\x8f\x1bD,Q\xcfCDc[Dj\xc0\x13D\x1f\x83\xdbCDc[D\xcc\xe9\rD\x13\xb5\xe7CDc[D\xcd\xbc\x07D\x06\xe7\xf3CDc[D+\xd3\x03D}\x0c\x00DDc[D\xfd\x17\x03Dw%\x06DDc[D\x84\xba\x00Dp>\x0cDDc[D\x99e\xf8CjW\x12DDc[D\xed\x91\xe6Cdp\x18DDc[D\x13\xcc\xd9C^\x89\x1eDDc[D\xdf0\xd3CW\xa2$DDc[D\x8c\xce\xcdCQ\xbb*DDc[D\x9e\xab\xcfCK\xd40DDc[D\xef\xad\xd2CE\xed6DDc[D\x83\xdc\xdaC>\x06=DDc[D\xa7\xb5\xdaC8\x1fCDDc[Dt\xa0\xd2C28IDDc[D#\xf9\xd2C,QODDc[D?\xf8\xdeC%jUDDc[DY\xd1\xe6C\x1f\x83[DDc[D\x13U\xe1C\x19\x9caDDc[D\x15\x92\xdeC\x13\xb5gDDc[D\x1a\xc0\xdfC\x0c\xcemDDc[D\x97\xb9\xe4C\x06\xe7sDDc[Drx\xd6C\x00\x00zDc}`D\xe7x\tD\x00\x00\x00\x00c}`D\xd4\x88\x0eD8\x1f\xc3Ac}`D\x00\t\x16D8\x1fCBc}`D\xca\x95\x16DjW\x92Bc}`Dh\xe7\x19D8\x1f\xc3Bc}`D\xe8\xac D\x06\xe7\xf3Bc}`D\xa2\xf2)DjW\x12Cc}`DV\xbf1DQ\xbb*Cc}`D\x13T2D8\x1fCCc}`D\x89\xc91D\x1f\x83[Cc}`DH\x96/D\x06\xe7sCc}`D\x05[3Dw%\x86Cc}`D\xbco5DjW\x92Cc}`D\xbb\x975D^\x89\x9eCc}`Dj\x833DQ\xbb\xaaCc}`D\xb3\x18/DE\xed\xb6Cc}`D\x8c\xaf0D8\x1f\xc3Cc}`D\xc3\xdf(D,Q\xcfCc}`D\xa5\xe8\x1aD\x1f\x83\xdbCc}`D,\x97\x0fD\x13\xb5\xe7Cc}`D\x9d\xe1\x08D\x06\xe7\xf3Cc}`D\xe5\x08\x07D}\x0c\x00Dc}`D\'\x97\x07Dw%\x06Dc}`D7\xf4\x03Dp>\x0cDc}`DkQ\x00DjW\x12Dc}`D\xf0j\xe7Cdp\x18Dc}`D{,\xd2C^\x89\x1eDc}`D\x04]\xc9CW\xa2$Dc}`Ds\xb5\xc7CQ\xbb*Dc}`DP4\xd1CK\xd40Dc}`Da[\xdaCE\xed6Dc}`D\x8d\x93\xe1C>\x06=Dc}`D\xed\xe3\xdcC8\x1fCDc}`DH\xbc\xd5C28IDc}`D\xe3M\xd4C,QODc}`D\xa92\xdcC%jUDc}`D\x84\x8f\xe2C\x1f\x83[Dc}`D\x9fD\xdeC\x19\x9caDc}`DA\x1f\xe1C\x13\xb5gDc}`DG\x8e\xe4C\x0c\xcemDc}`D\x81\x00\xeaC\x06\xe7sDc}`D8\xb5\xe1C\x00\x00zD\x83\x97eD\x19\xec\x06D\x00\x00\x00\x00\x83\x97eDA\x89\x0bD8\x1f\xc3A\x83\x97eDB"\x11D8\x1fCB\x83\x97eD\xb1\xb9\x12DjW\x92B\x83\x97eD\x0f[\x14D8\x1f\xc3B\x83\x97eD\x81\xbd\x1cD\x06\xe7\xf3B\x83\x97eD\xb4\xc3#DjW\x12C\x83\x97eD\xa9u\'DQ\xbb*C\x83\x97eDJ\x1a*D8\x1fCC\x83\x97eD\xe3\xd5(D\x1f\x83[C\x83\x97eD\xa4\xf3\'D\x06\xe7sC\x83\x97eD\x9e(/Dw%\x86C\x83\x97eD_\x115DjW\x92C\x83\x97eD\xee[7D^\x89\x9eC\x83\x97eD\x90\xfa6DQ\xbb\xaaC\x83\x97eD\'"8DE\xed\xb6C\x83\x97eD<&7D8\x1f\xc3C\x83\x97eD\xe9v/D,Q\xcfC\x83\x97eD\xe6\xe5$D\x1f\x83\xdbC\x83\x97eDGb\x19D\x13\xb5\xe7C\x83\x97eD\xd9\x8e\x10D\x06\xe7\xf3C\x83\x97eD\xbfO\x0eD}\x0c\x00D\x83\x97eD3A\rDw%\x06D\x83\x97eD\xd3\x1f\x07Dp>\x0cD\x83\x97eDb\x11\x01DjW\x12D\x83\x97eD\x9c\xe5\xe9Cdp\x18D\x83\x97eDh\x9e\xcdC^\x89\x1eD\x83\x97eD\xd7\xb5\xc4CW\xa2$D\x83\x97eD\xa5\xa1\xcdCQ\xbb*D\x83\x97eD\xe7\x0e\xdcCK\xd40D\x83\x97eD\xdft\xe3CE\xed6D\x83\x97eD\x9b\x99\xe0C>\x06=D\x83\x97eD\xcbF\xd9C8\x1fCD\x83\x97eD\n\xa3\xd8C28ID\x83\x97eD\x8a\x95\xd3C,QOD\x83\x97eD\xe2\xb0\xd9C%jUD\x83\x97eD"b\xdcC\x1f\x83[D\x83\x97eD&\x81\xd9C\x19\x9caD\x83\x97eD\xf6\xe9\xd9C\x13\xb5gD\x83\x97eDA\x9e\xe4C\x0c\xcemD\x83\x97eD&\xd6\xe9C\x06\xe7sD\x83\x97eD=G\xecC\x00\x00zD\xa2\xb1jDN\xbb\x04D\x00\x00\x00\x00\xa2\xb1jD\xc34\x0bD8\x1f\xc3A\xa2\xb1jD\xe6y\x0eD8\x1fCB\xa2\xb1jD\xfd,\x0fDjW\x92B\xa2\xb1jDA\x0c\x11D8\x1f\xc3B\xa2\xb1jD\xf5\xdd\x17D\x06\xe7\xf3B\xa2\xb1jD\xec\xc3\x1dDjW\x12C\xa2\xb1jD\xd9#\x1fDQ\xbb*C\xa2\xb1jD\xae #D8\x1fCC\xa2\xb1jD\x8f\x16%D\x1f\x83[C\xa2\xb1jD!\x8c\'D\x06\xe7sC\xa2\xb1jD\xd0\x91/Dw%\x86C\xa2\xb1jD\xedI9DjW\x92C\xa2\xb1jD\x14O<D^\x89\x9eC\xa2\xb1jD\xca\xe6?DQ\xbb\xaaC\xa2\xb1jD\x99\x1f@DE\xed\xb6C\xa2\xb1jD%\xfc<D8\x1f\xc3C\xa2\xb1jD_^5D,Q\xcfC\xa2\xb1jD\xf1\xbc\'D\x1f\x83\xdbC\xa2\xb1jDq\x81!D\x13\xb5\xe7C\xa2\xb1jD\x834\x1bD\x06\xe7\xf3C\xa2\xb1jD!\xa5\x15D}\x0c\x00D\xa2\xb1jD\x82p\x11Dw%\x06D\xa2\xb1jD\xd8\xb3\x0cDp>\x0cD\xa2\xb1jD1g\x06DjW\x12D\xa2\xb1jD@\xa8\xf2Cdp\x18D\xa2\xb1jD#\xc3\xd8C^\x89\x1eD\xa2\xb1jDh\xd8\xcfCW\xa2$D\xa2\xb1jD@\x9e\xd9CQ\xbb*D\xa2\xb1jD\x9c\x87\xe8CK\xd40D\xa2\xb1jDU_\xeaCE\xed6D\xa2\xb1jD-\xf7\xdcC>\x06=D\xa2\xb1jD_s\xd5C8\x1fCD\xa2\xb1jD8w\xd5C28ID\xa2\xb1jDJ\x8c\xd3C,QOD\xa2\xb1jD\xcc\x94\xd0C%jUD\xa2\xb1jD\xe5\xb8\xd3C\x1f\x83[D\xa2\xb1jD\xba\xd2\xd4C\x19\x9caD\xa2\xb1jD\xba\xdd\xdaC\x13\xb5gD\xa2\xb1jD\xb9D\xe6C\x0c\xcemD\xa2\xb1jD\xfc,\xecC\x06\xe7sD\xa2\xb1jD #\xeeC\x00\x00zD\xc1\xcboDi\xbc\x06D\x00\x00\x00\x00\xc1\xcboD\xe6\xd8\nD8\x1f\xc3A\xc1\xcboD\x8c\x87\x0cD8\x1fCB\xc1\xcboD\x01\\\x10DjW\x92B\xc1\xcboDN0\x10D8\x1f\xc3B\xc1\xcboD\xde\x8c\x14D\x06\xe7\xf3B\xc1\xcboD\x19\xcf\x17DjW\x12C\xc1\xcboDg\xaa\x1cDQ\xbb*C\xc1\xcboD\x9f\x1d D8\x1fCC\xc1\xcboD\x1a:$D\x1f\x83[C\xc1\xcboD\x9f\'0D\x06\xe7sC\xc1\xcboD\x87|4Dw%\x86C\xc1\xcboD)\xf9:DjW\x92C\xc1\xcboD\xac\x14CD^\x89\x9eC\xc1\xcboD\xd8\x90GDQ\xbb\xaaC\xc1\xcboD\x14\xaaFDE\xed\xb6C\xc1\xcboD\xbe5ED8\x1f\xc3C\xc1\xcboD@m<D,Q\xcfC\xc1\xcboDL\x870D\x1f\x83\xdbC\xc1\xcboDEx)D\x13\xb5\xe7C\xc1\xcboD2\xc5"D\x06\xe7\xf3C\xc1\xcboD\x88\xad\x1cD}\x0c\x00D\xc1\xcboD\x96|\x18Dw%\x06D\xc1\xcboD\xa6\xb8\x13Dp>\x0cD\xc1\xcboD\xc8_\x0bDjW\x12D\xc1\xcboD\x91\t\x00Ddp\x18D\xc1\xcboD\xc3\x99\xeaC^\x89\x1eD\xc1\xcboD(@\xe6CW\xa2$D\xc1\xcboD\xedP\xe5CQ\xbb*D\xc1\xcboD\x8bK\xe9CK\xd40D\xc1\xcboD$\xa1\xe5CE\xed6D\xc1\xcboD\x90k\xdfC>\x06=D\xc1\xcboD\xab2\xdbC8\x1fCD\xc1\xcboD\xb9\xe5\xdaC28ID\xc1\xcboD\x19\xb0\xd5C,QOD\xc1\xcboD\xcb\xae\xcaC%jUD\xc1\xcboD\xf7\xaa\xd4C\x1f\x83[D\xc1\xcboD\xa4\xfe\xd7C\x19\x9caD\xc1\xcboDrK\xe0C\x13\xb5gD\xc1\xcboD\x87\xbe\xebC\x0c\xcemD\xc1\xcboD\x1b\xaa\xeeC\x06\xe7sD\xc1\xcboDZ\x18\xf0C\x00\x00zD\xe1\xe5tD0H\x08D\x00\x00\x00\x00\xe1\xe5tD%q\tD8\x1f\xc3A\xe1\xe5tD\x15\xe5\x0cD8\x1fCB\xe1\xe5tD\x1c\x83\x11DjW\x92B\xe1\xe5tDiH\x14D8\x1f\xc3B\xe1\xe5tD\x0b\n\x18D\x06\xe7\xf3B\xe1\xe5tDj\x0e\x19DjW\x12C\xe1\xe5tDc\xb3\x1dDQ\xbb*C\xe1\xe5tD\xaf!"D8\x1fCC\xe1\xe5tD\xde])D\x1f\x83[C\xe1\xe5tD\x0e\x894D\x06\xe7sC\xe1\xe5tD\x9bI;Dw%\x86C\xe1\xe5tD\xb2\x8dCDjW\x92C\xe1\xe5tDY\xaaHD^\x89\x9eC\xe1\xe5tD\'\xfbMDQ\xbb\xaaC\xe1\xe5tD\xc7\x8dNDE\xed\xb6C\xe1\xe5tD\xe2\x85ND8\x1f\xc3C\xe1\xe5tD\x9d\xd9ED,Q\xcfC\xe1\xe5tD\x86\xdc9D\x1f\x83\xdbC\xe1\xe5tDF\x8a1D\x13\xb5\xe7C\xe1\xe5tD\xb4\xb6*D\x06\xe7\xf3C\xe1\xe5tD*\x08$D}\x0c\x00D\xe1\xe5tDLo\x1dDw%\x06D\xe1\xe5tDh\x13\x18Dp>\x0cD\xe1\xe5tD]4\x11DjW\x12D\xe1\xe5tD\xa0\xd7\x07Ddp\x18D\xe1\xe5tD\xae\xb9\xfdC^\x89\x1eD\xe1\xe5tD\x18o\xf8CW\xa2$D\xe1\xe5tDT\x1a\xf6CQ\xbb*D\xe1\xe5tD\xd8y\xf0CK\xd40D\xe1\xe5tD\xc5\xf3\xeaCE\xed6D\xe1\xe5tD\x7f\xb3\xe2C>\x06=D\xe1\xe5tD\x86\xde\xe2C8\x1fCD\xe1\xe5tD\xe3\xe9\xe6C28ID\xe1\xe5tD\x8eI\xdfC,QOD\xe1\xe5tDUT\xd3C%jUD\xe1\xe5tD7q\xd5C\x1f\x83[D\xe1\xe5tDrp\xdfC\x19\x9caD\xe1\xe5tD\x8c\xb4\xe7C\x13\xb5gD\xe1\xe5tD\xe5\xc8\xefC\x0c\xcemD\xe1\xe5tD\\\xa8\xf4C\x06\xe7sD\xe1\xe5tDr\x8e\xfaC\x00\x00zD\x00\x00zDN\xfc\x07D\x00\x00\x00\x00\x00\x00zD\xe3!\x06D8\x1f\xc3A\x00\x00zDo\xed\x06D8\x1fCB\x00\x00zD._\x0fDjW\x92B\x00\x00zD\x16t\x17D8\x1f\xc3B\x00\x00zD\x8c\x04\x1bD\x06\xe7\xf3B\x00\x00zD\xd1\xa7\x19DjW\x12C\x00\x00zD0\x03\x1eDQ\xbb*C\x00\x00zDM\xca&D8\x1fCC\x00\x00zD\x1e\xe0,D\x1f\x83[C\x00\x00zD\x1aB5D\x06\xe7sC\x00\x00zD\xcf_BDw%\x86C\x00\x00zDt:JDjW\x92C\x00\x00zDi\xd3PD^\x89\x9eC\x00\x00zD\xe1\xb5ZDQ\xbb\xaaC\x00\x00zD\x957\\DE\xed\xb6C\x00\x00zD\xa2\xe7WD8\x1f\xc3C\x00\x00zD\xa5\xe6PD,Q\xcfC\x00\x00zD\xed\xbdDD\x1f\x83\xdbC\x00\x00zD\x93\xc69D\x13\xb5\xe7C\x00\x00zDB\xb5/D\x06\xe7\xf3C\x00\x00zD6:)D}\x0c\x00D\x00\x00zD\xd8\x9d"Dw%\x06D\x00\x00zD\xc8:\x1dDp>\x0cD\x00\x00zD~\xb5\x13DjW\x12D\x00\x00zD\xd3V\rDdp\x18D\x00\x00zDy\x05\x04D^\x89\x1eD\x00\x00zD\x10\xf3\xfeCW\xa2$D\x00\x00zDK\xa2\xf5CQ\xbb*D\x00\x00zDlb\xeeCK\xd40D\x00\x00zD\x82\xf6\xedCE\xed6D\x00\x00zD\x03\xd4\xebC>\x06=D\x00\x00zD\xc8\xf5\xedC8\x1fCD\x00\x00zD\xd0\xe7\xf2C28ID\x00\x00zD\xa0o\xeeC,QOD\x00\x00zD!x\xdfC%jUD\x00\x00zD\x05\n\xd9C\x1f\x83[D\x00\x00zD\x08\xd2\xe7C\x19\x9caD\x00\x00zDZ,\xf3C\x13\xb5gD\x00\x00zD\xd7\x02\xf4C\x0c\xcemD\x00\x00zD\xe4\x06\xfbC\x06\xe7sD\x00\x00zD7%\xfdC\x00\x00zD\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\xe5\xe4\xe4>\x90\x8f\x0f?\x81\x80\x00<\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\x12\x08\x00\x00\xe9\x07\x00\x00\x13\x08\x00\x00\xe8\x07\x00\x00\xe9\x07\x00\x00\x12\x08\x00\x00 \x08\x00\x00\x1f\x08\x00\x00\xf6\x07\x00\x00\x1f\x08\x00\x00\xf5\x07\x00\x00\xf6\x07\x00\x00\x0b\x08\x00\x00\n\x08\x00\x00\xe0\x07\x00\x00\xe0\x07\x00\x00\xe1\x07\x00\x00\x0b\x08\x00\x00h\x07\x00\x00i\x07\x00\x00\x93\x07\x00\x00\x93\x07\x00\x00\x92\x07\x00\x00h\x07\x00\x00\x0f\x08\x00\x00\xe5\x07\x00\x00\x10\x08\x00\x00\x10\x08\x00\x00\xe5\x07\x00\x00\xe6\x07\x00\x00\x12\x08\x00\x00\x11\x08\x00\x00\xe7\x07\x00\x00\xe7\x07\x00\x00\xe8\x07\x00\x00\x12\x08\x00\x00\xe7\x07\x00\x00\x11\x08\x00\x00\x10\x08\x00\x00\x10\x08\x00\x00\xe6\x07\x00\x00\xe7\x07\x00\x00\x0e\x08\x00\x00\xe5\x07\x00\x00\x0f\x08\x00\x00\xe4\x07\x00\x00\xe5\x07\x00\x00\x0e\x08\x00\x00,\x04\x00\x00+\x04\x00\x00\x01\x04\x00\x00\x01\x04\x00\x00\x02\x04\x00\x00,\x04\x00\x00\xd8\x03\x00\x00\xae\x03\x00\x00\xd9\x03\x00\x00\xd9\x03\x00\x00\xae\x03\x00\x00\xaf\x03\x00\x00\x03\x04\x00\x00\x02\x04\x00\x00\xd9\x03\x00\x00\xd9\x03\x00\x00\x02\x04\x00\x00\xd8\x03\x00\x00\x82\x05\x00\x00\xac\x05\x00\x00\xab\x05\x00\x00\xab\x05\x00\x00\x81\x05\x00\x00\x82\x05\x00\x00\x82\x05\x00\x00\x81\x05\x00\x00W\x05\x00\x00W\x05\x00\x00X\x05\x00\x00\x82\x05\x00\x00\xce\x05\x00\x00\xcf\x05\x00\x00\xf9\x05\x00\x00\xf9\x05\x00\x00\xf8\x05\x00\x00\xce\x05\x00\x00\xc2\x04\x00\x00\xed\x04\x00\x00\xec\x04\x00\x00\xc3\x04\x00\x00\xed\x04\x00\x00\xc2\x04\x00\x00\x9e\x03\x00\x00\x9d\x03\x00\x00s\x03\x00\x00s\x03\x00\x00t\x03\x00\x00\x9e\x03\x00\x00\xc8\x03\x00\x00\xc7\x03\x00\x00\x9e\x03\x00\x00\x9e\x03\x00\x00\xc7\x03\x00\x00\x9d\x03\x00\x00s\x03\x00\x00\x9d\x03\x00\x00\x9c\x03\x00\x00\x9c\x03\x00\x00r\x03\x00\x00s\x03\x00\x00\x9d\x03\x00\x00\xc7\x03\x00\x00\x9c\x03\x00\x00\x9c\x03\x00\x00\xc7\x03\x00\x00\xc6\x03\x00\x00\xf1\x03\x00\x00\xf0\x03\x00\x00\xc6\x03\x00\x00\xc6\x03\x00\x00\xc7\x03\x00\x00\xf1\x03\x00\x00\x1a\x04\x00\x00\xf0\x03\x00\x00\xf1\x03\x00\x00\xf1\x03\x00\x00\x1b\x04\x00\x00\x1a\x04\x00\x00\xf1\x03\x00\x00\xc7\x03\x00\x00\xc8\x03\x00\x00\xf1\x03\x00\x00\xc8\x03\x00\x00\xf2\x03\x00\x00\xf1\x03\x00\x00\x1c\x04\x00\x00\x1b\x04\x00\x00\xf2\x03\x00\x00\x1c\x04\x00\x00\xf1\x03\x00\x00\xd4\x01\x00\x00\xaa\x01\x00\x00\xd5\x01\x00\x00\xaa\x01\x00\x00\xab\x01\x00\x00\xd5\x01\x00\x00\xb3\x03\x00\x00\xdd\x03\x00\x00\xdc\x03\x00\x00\xdc\x03\x00\x00\xb2\x03\x00\x00\xb3\x03\x00\x00\xdb\x03\x00\x00\xb2\x03\x00\x00\xdc\x03\x00\x00\xb1\x03\x00\x00\xb2\x03\x00\x00\xdb\x03\x00\x00\x0e\x02\x00\x00\xe4\x01\x00\x00\xe5\x01\x00\x00\xe5\x01\x00\x00\x0f\x02\x00\x00\x0e\x02\x00\x00\xf4\x07\x00\x00\xf5\x07\x00\x00\x1f\x08\x00\x00\xf4\x07\x00\x00\x1f\x08\x00\x00\x1e\x08\x00\x00\x1e\x08\x00\x00\x1d\x08\x00\x00\xf4\x07\x00\x00\x1d\x08\x00\x00\xf3\x07\x00\x00\xf4\x07\x00\x00\x14\x08\x00\x00\x13\x08\x00\x00\xea\x07\x00\x00\x13\x08\x00\x00\xe9\x07\x00\x00\xea\x07\x00\x00\xbf\x07\x00\x00\xe9\x07\x00\x00\xe8\x07\x00\x00\xbf\x07\x00\x00\xe8\x07\x00\x00\xbe\x07\x00\x00\xea\x07\x00\x00\xe9\x07\x00\x00\xbf\x07\x00\x00\xbf\x07\x00\x00\xc0\x07\x00\x00\xea\x07\x00\x00c\x07\x00\x00\x8c\x07\x00\x00b\x07\x00\x00c\x07\x00\x00\x8d\x07\x00\x00\x8c\x07\x00\x00c\x07\x00\x00b\x07\x00\x008\x07\x00\x008\x07\x00\x009\x07\x00\x00c\x07\x00\x00?\x07\x00\x00i\x07\x00\x00h\x07\x00\x00h\x07\x00\x00>\x07\x00\x00?\x07\x00\x00\x93\x07\x00\x00i\x07\x00\x00j\x07\x00\x00j\x07\x00\x00\x94\x07\x00\x00\x93\x07\x00\x00j\x07\x00\x00i\x07\x00\x00?\x07\x00\x00?\x07\x00\x00@\x07\x00\x00j\x07\x00\x00h\x07\x00\x00\x92\x07\x00\x00\x91\x07\x00\x00\x91\x07\x00\x00g\x07\x00\x00h\x07\x00\x00\x91\x07\x00\x00\x92\x07\x00\x00\xbc\x07\x00\x00\xbc\x07\x00\x00\xbb\x07\x00\x00\x91\x07\x00\x00\xe6\x07\x00\x00\xe5\x07\x00\x00\xbc\x07\x00\x00\xbc\x07\x00\x00\xe5\x07\x00\x00\xbb\x07\x00\x00=\x07\x00\x00>\x07\x00\x00h\x07\x00\x00h\x07\x00\x00g\x07\x00\x00=\x07\x00\x00=\x07\x00\x00g\x07\x00\x00f\x07\x00\x00f\x07\x00\x00<\x07\x00\x00=\x07\x00\x00\x0e\x08\x00\x00\r\x08\x00\x00\xe3\x07\x00\x00\xe3\x07\x00\x00\xe4\x07\x00\x00\x0e\x08\x00\x00\x8e\x07\x00\x00\x8d\x07\x00\x00c\x07\x00\x00c\x07\x00\x00d\x07\x00\x00\x8e\x07\x00\x00\xb7\x07\x00\x00\x8d\x07\x00\x00\x8e\x07\x00\x00\x8e\x07\x00\x00\xb8\x07\x00\x00\xb7\x07\x00\x00A\x06\x00\x00@\x06\x00\x00\x16\x06\x00\x00\x16\x06\x00\x00\x17\x06\x00\x00A\x06\x00\x00\x10\x00\x00\x00\x11\x00\x00\x00;\x00\x00\x00;\x00\x00\x00:\x00\x00\x00\x10\x00\x00\x00<\x02\x00\x00=\x02\x00\x00g\x02\x00\x00g\x02\x00\x00f\x02\x00\x00<\x02\x00\x00\t\x00\x00\x00\n\x00\x00\x004\x00\x00\x004\x00\x00\x003\x00\x00\x00\t\x00\x00\x00\xa8\x00\x00\x00~\x00\x00\x00\x7f\x00\x00\x00\x7f\x00\x00\x00\xa9\x00\x00\x00\xa8\x00\x00\x00/\x00\x00\x00\x05\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x000\x00\x00\x00/\x00\x00\x000\x00\x00\x00Z\x00\x00\x00/\x00\x00\x00/\x00\x00\x00Z\x00\x00\x00Y\x00\x00\x004\x00\x00\x00\n\x00\x00\x00\x0b\x00\x00\x00\x0b\x00\x00\x005\x00\x00\x004\x00\x00\x00\xcf\x01\x00\x00\xce\x01\x00\x00\xa4\x01\x00\x00\xa4\x01\x00\x00\xa5\x01\x00\x00\xcf\x01\x00\x00,\x04\x00\x00\x02\x04\x00\x00-\x04\x00\x00-\x04\x00\x00\x02\x04\x00\x00\x03\x04\x00\x00-\x04\x00\x00V\x04\x00\x00,\x04\x00\x00W\x04\x00\x00V\x04\x00\x00-\x04\x00\x00\x03\x05\x00\x00\x02\x05\x00\x00\xd8\x04\x00\x00\xd9\x04\x00\x00\x03\x05\x00\x00\xd8\x04\x00\x00/\x05\x00\x00.\x05\x00\x00\x04\x05\x00\x00\x04\x05\x00\x00\x05\x05\x00\x00/\x05\x00\x00\x04\x05\x00\x00.\x05\x00\x00-\x05\x00\x00-\x05\x00\x00\x03\x05\x00\x00\x04\x05\x00\x00-\x05\x00\x00X\x05\x00\x00W\x05\x00\x00.\x05\x00\x00X\x05\x00\x00-\x05\x00\x00\xac\x04\x00\x00\xab\x04\x00\x00\x81\x04\x00\x00\x81\x04\x00\x00\x82\x04\x00\x00\xac\x04\x00\x00\xac\x04\x00\x00\x82\x04\x00\x00\x83\x04\x00\x00\x83\x04\x00\x00\xad\x04\x00\x00\xac\x04\x00\x00c\x03\x00\x00d\x03\x00\x00\x8e\x03\x00\x00\x8e\x03\x00\x00\x8d\x03\x00\x00c\x03\x00\x00\xd7\x03\x00\x00\x02\x04\x00\x00\x01\x04\x00\x00\xd8\x03\x00\x00\x02\x04\x00\x00\xd7\x03\x00\x00\x01\x04\x00\x00\x00\x04\x00\x00\xd7\x03\x00\x00\xd7\x03\x00\x00\x00\x04\x00\x00\xd6\x03\x00\x00(\x04\x00\x00R\x04\x00\x00\'\x04\x00\x00\'\x04\x00\x00R\x04\x00\x00Q\x04\x00\x00&\x04\x00\x00\xfc\x03\x00\x00\'\x04\x00\x00\xfc\x03\x00\x00\xfd\x03\x00\x00\'\x04\x00\x00#\x06\x00\x00\xf8\x05\x00\x00\xf9\x05\x00\x00"\x06\x00\x00\xf8\x05\x00\x00#\x06\x00\x00\xf9\x05\x00\x00\xcf\x05\x00\x00\xfa\x05\x00\x00\xfa\x05\x00\x00\xcf\x05\x00\x00\xd0\x05\x00\x00\xd0\x05\x00\x00\xcf\x05\x00\x00\xa6\x05\x00\x00\xcf\x05\x00\x00\xa5\x05\x00\x00\xa6\x05\x00\x00\xa6\x05\x00\x00\xa5\x05\x00\x00{\x05\x00\x00{\x05\x00\x00|\x05\x00\x00\xa6\x05\x00\x00\xf8\x04\x00\x00\xce\x04\x00\x00\xcf\x04\x00\x00\xcf\x04\x00\x00\xf9\x04\x00\x00\xf8\x04\x00\x00\xfa\x04\x00\x00\xf9\x04\x00\x00\xcf\x04\x00\x00\xcf\x04\x00\x00\xd0\x04\x00\x00\xfa\x04\x00\x00U\x04\x00\x00+\x04\x00\x00,\x04\x00\x00,\x04\x00\x00V\x04\x00\x00U\x04\x00\x00{\x05\x00\x00z\x05\x00\x00Q\x05\x00\x00z\x05\x00\x00P\x05\x00\x00Q\x05\x00\x00Q\x05\x00\x00R\x05\x00\x00|\x05\x00\x00Q\x05\x00\x00|\x05\x00\x00{\x05\x00\x00\xd5\x04\x00\x00\xab\x04\x00\x00\xac\x04\x00\x00\xac\x04\x00\x00\xd6\x04\x00\x00\xd5\x04\x00\x00\x98\x04\x00\x00\xc3\x04\x00\x00\xc2\x04\x00\x00\x99\x04\x00\x00\xc3\x04\x00\x00\x98\x04\x00\x00\x1d\x04\x00\x00\x1c\x04\x00\x00\xf2\x03\x00\x00\xf2\x03\x00\x00\xf3\x03\x00\x00\x1d\x04\x00\x00\x98\x04\x00\x00n\x04\x00\x00o\x04\x00\x00o\x04\x00\x00\x99\x04\x00\x00\x98\x04\x00\x00o\x04\x00\x00E\x04\x00\x00F\x04\x00\x00F\x04\x00\x00p\x04\x00\x00o\x04\x00\x00\x1b\x04\x00\x00\x1c\x04\x00\x00F\x04\x00\x00E\x04\x00\x00\x1b\x04\x00\x00F\x04\x00\x00F\x04\x00\x00\x1c\x04\x00\x00\x1d\x04\x00\x00\x1d\x04\x00\x00G\x04\x00\x00F\x04\x00\x00o\x04\x00\x00n\x04\x00\x00D\x04\x00\x00D\x04\x00\x00E\x04\x00\x00o\x04\x00\x00\x1a\x04\x00\x00\x1b\x04\x00\x00D\x04\x00\x00D\x04\x00\x00\x1b\x04\x00\x00E\x04\x00\x00 \x04\x00\x00\xf5\x03\x00\x00\xf6\x03\x00\x00 \x04\x00\x00\x1f\x04\x00\x00\xf5\x03\x00\x00 \x04\x00\x00!\x04\x00\x00K\x04\x00\x00K\x04\x00\x00J\x04\x00\x00 \x04\x00\x00\xdb\x01\x00\x00\x05\x02\x00\x00\x04\x02\x00\x00\x04\x02\x00\x00\xda\x01\x00\x00\xdb\x01\x00\x00\xd7\x02\x00\x00\xd6\x02\x00\x00\xac\x02\x00\x00\xac\x02\x00\x00\xad\x02\x00\x00\xd7\x02\x00\x00\xda\x02\x00\x00\x05\x03\x00\x00\x04\x03\x00\x00\xdb\x02\x00\x00\x05\x03\x00\x00\xda\x02\x00\x00\x04\x03\x00\x00\x05\x03\x00\x00.\x03\x00\x00.\x03\x00\x00\x05\x03\x00\x00/\x03\x00\x00(\x00\x00\x00)\x00\x00\x00S\x00\x00\x00S\x00\x00\x00R\x00\x00\x00(\x00\x00\x00Q\x00\x00\x00\'\x00\x00\x00(\x00\x00\x00(\x00\x00\x00R\x00\x00\x00Q\x00\x00\x00\x1f\x01\x00\x00\xf5\x00\x00\x00\xf6\x00\x00\x00\xf6\x00\x00\x00 \x01\x00\x00\x1f\x01\x00\x00M\x01\x00\x00L\x01\x00\x00"\x01\x00\x00"\x01\x00\x00#\x01\x00\x00M\x01\x00\x00\xf7\x07\x00\x00!\x08\x00\x00 \x08\x00\x00\xf7\x07\x00\x00 \x08\x00\x00\xf6\x07\x00\x00\xda\x03\x00\x00\x03\x04\x00\x00\xd9\x03\x00\x00\xda\x03\x00\x00\x04\x04\x00\x00\x03\x04\x00\x00\x05\x04\x00\x00\x04\x04\x00\x00\xda\x03\x00\x00\xdb\x03\x00\x00\x05\x04\x00\x00\xda\x03\x00\x00\x93\x01\x00\x00\x92\x01\x00\x00h\x01\x00\x00h\x01\x00\x00i\x01\x00\x00\x93\x01\x00\x00\x92\x01\x00\x00\x91\x01\x00\x00h\x01\x00\x00h\x01\x00\x00\x91\x01\x00\x00g\x01\x00\x00A\x02\x00\x00B\x02\x00\x00l\x02\x00\x00l\x02\x00\x00k\x02\x00\x00A\x02\x00\x00\x18\x02\x00\x00\xed\x01\x00\x00\xee\x01\x00\x00\x18\x02\x00\x00\x17\x02\x00\x00\xed\x01\x00\x00A\x02\x00\x00\x17\x02\x00\x00\x18\x02\x00\x00\x18\x02\x00\x00B\x02\x00\x00A\x02\x00\x00\xbc\x02\x00\x00\x93\x02\x00\x00\xbd\x02\x00\x00\x92\x02\x00\x00\x93\x02\x00\x00\xbc\x02\x00\x00\r\x02\x00\x00\xe4\x01\x00\x00\x0e\x02\x00\x00\r\x02\x00\x00\xe3\x01\x00\x00\xe4\x01\x00\x00\xef\x03\x00\x00\x19\x04\x00\x00\x18\x04\x00\x00\x18\x04\x00\x00\xee\x03\x00\x00\xef\x03\x00\x00\xc4\x03\x00\x00\xc5\x03\x00\x00\xef\x03\x00\x00\xef\x03\x00\x00\xee\x03\x00\x00\xc4\x03\x00\x00E\x03\x00\x00F\x03\x00\x00p\x03\x00\x00p\x03\x00\x00o\x03\x00\x00E\x03\x00\x00G\x03\x00\x00q\x03\x00\x00p\x03\x00\x00p\x03\x00\x00F\x03\x00\x00G\x03\x00\x00\x15\x05\x00\x00\x14\x05\x00\x00\xeb\x04\x00\x00\xeb\x04\x00\x00\x14\x05\x00\x00\xea\x04\x00\x00\x01\x08\x00\x00+\x08\x00\x00*\x08\x00\x00*\x08\x00\x00\x00\x08\x00\x00\x01\x08\x00\x00,\x08\x00\x00+\x08\x00\x00\x01\x08\x00\x00\x01\x08\x00\x00\x02\x08\x00\x00,\x08\x00\x00\xd8\x07\x00\x00\x02\x08\x00\x00\x01\x08\x00\x00\x01\x08\x00\x00\xd7\x07\x00\x00\xd8\x07\x00\x00\t\x08\x00\x003\x08\x00\x002\x08\x00\x002\x08\x00\x00\x08\x08\x00\x00\t\x08\x00\x002\x08\x00\x001\x08\x00\x00\x07\x08\x00\x00\x07\x08\x00\x00\x08\x08\x00\x002\x08\x00\x00Y\x05\x00\x00.\x05\x00\x00/\x05\x00\x00Y\x05\x00\x00X\x05\x00\x00.\x05\x00\x00Z\x06\x00\x00[\x06\x00\x00\x85\x06\x00\x00\x85\x06\x00\x00\x84\x06\x00\x00Z\x06\x00\x00\xae\x06\x00\x00\x84\x06\x00\x00\x85\x06\x00\x00\x85\x06\x00\x00\xaf\x06\x00\x00\xae\x06\x00\x00\xee\x04\x00\x00\xef\x04\x00\x00\x19\x05\x00\x00\x19\x05\x00\x00\x18\x05\x00\x00\xee\x04\x00\x00\x17\x05\x00\x00\xed\x04\x00\x00\xee\x04\x00\x00\xee\x04\x00\x00\x18\x05\x00\x00\x17\x05\x00\x00\xee\x04\x00\x00\xed\x04\x00\x00\xc3\x04\x00\x00\xee\x04\x00\x00\xc3\x04\x00\x00\xc4\x04\x00\x00\xec\x04\x00\x00\xed\x04\x00\x00\x16\x05\x00\x00\x16\x05\x00\x00\xed\x04\x00\x00\x17\x05\x00\x00\x1c\x08\x00\x00\xf3\x07\x00\x00\x1d\x08\x00\x00\xf2\x07\x00\x00\xf3\x07\x00\x00\x1c\x08\x00\x00\xf7\x07\x00\x00\xf6\x07\x00\x00\xcc\x07\x00\x00\xcc\x07\x00\x00\xcd\x07\x00\x00\xf7\x07\x00\x00\xf6\x07\x00\x00\xf5\x07\x00\x00\xcb\x07\x00\x00\xcc\x07\x00\x00\xf6\x07\x00\x00\xcb\x07\x00\x00\xeb\x07\x00\x00\x15\x08\x00\x00\x14\x08\x00\x00\xeb\x07\x00\x00\x14\x08\x00\x00\xea\x07\x00\x00\xba\x06\x00\x00\x90\x06\x00\x00\xbb\x06\x00\x00\x90\x06\x00\x00\x91\x06\x00\x00\xbb\x06\x00\x00\xe4\x06\x00\x00\xba\x06\x00\x00\xbb\x06\x00\x00\xbb\x06\x00\x00\xe5\x06\x00\x00\xe4\x06\x00\x00\x8c\x07\x00\x00\x8d\x07\x00\x00\xb6\x07\x00\x00\xb6\x07\x00\x00\x8d\x07\x00\x00\xb7\x07\x00\x00\xb6\x07\x00\x00\xe1\x07\x00\x00\xe0\x07\x00\x00\xb7\x07\x00\x00\xe1\x07\x00\x00\xb6\x07\x00\x00\xee\x06\x00\x00\x19\x07\x00\x00\x18\x07\x00\x00\xef\x06\x00\x00\x19\x07\x00\x00\xee\x06\x00\x00\xbd\x07\x00\x00\x92\x07\x00\x00\x93\x07\x00\x00\xbc\x07\x00\x00\x92\x07\x00\x00\xbd\x07\x00\x00\xe7\x07\x00\x00\xe6\x07\x00\x00\xbd\x07\x00\x00\xbd\x07\x00\x00\xe6\x07\x00\x00\xbc\x07\x00\x00\x93\x07\x00\x00\x94\x07\x00\x00\xbd\x07\x00\x00\xbd\x07\x00\x00\x94\x07\x00\x00\xbe\x07\x00\x00\xbd\x07\x00\x00\xe8\x07\x00\x00\xe7\x07\x00\x00\xbe\x07\x00\x00\xe8\x07\x00\x00\xbd\x07\x00\x00\xe2\x07\x00\x00\r\x08\x00\x00\x0c\x08\x00\x00\xe3\x07\x00\x00\r\x08\x00\x00\xe2\x07\x00\x00\xb7\x07\x00\x00\xb8\x07\x00\x00\xe2\x07\x00\x00\xe2\x07\x00\x00\xe1\x07\x00\x00\xb7\x07\x00\x00\x0b\x08\x00\x00\xe1\x07\x00\x00\xe2\x07\x00\x00\x0c\x08\x00\x00\x0b\x08\x00\x00\xe2\x07\x00\x00\xe2\x07\x00\x00\xb8\x07\x00\x00\xb9\x07\x00\x00\xb9\x07\x00\x00\xe3\x07\x00\x00\xe2\x07\x00\x00\xa7\x06\x00\x00}\x06\x00\x00\xa8\x06\x00\x00\xa8\x06\x00\x00}\x06\x00\x00~\x06\x00\x00\x89\x05\x00\x00_\x05\x00\x00`\x05\x00\x00`\x05\x00\x00\x8a\x05\x00\x00\x89\x05\x00\x00\xde\x03\x00\x00\xdd\x03\x00\x00\xb3\x03\x00\x00\xb3\x03\x00\x00\xb4\x03\x00\x00\xde\x03\x00\x00\xe3\x03\x00\x00\xb9\x03\x00\x00\xba\x03\x00\x00\xba\x03\x00\x00\xe4\x03\x00\x00\xe3\x03\x00\x00\x98\x06\x00\x00\x97\x06\x00\x00n\x06\x00\x00n\x06\x00\x00\x97\x06\x00\x00m\x06\x00\x00o\x06\x00\x00\x99\x06\x00\x00n\x06\x00\x00n\x06\x00\x00\x99\x06\x00\x00\x98\x06\x00\x00\x1d\x06\x00\x00\x1c\x06\x00\x00\xf2\x05\x00\x00\xf2\x05\x00\x00\xf3\x05\x00\x00\x1d\x06\x00\x00F\x06\x00\x00E\x06\x00\x00\x1b\x06\x00\x00\x1c\x06\x00\x00F\x06\x00\x00\x1b\x06\x00\x00\xf2\x05\x00\x00\x1c\x06\x00\x00\x1b\x06\x00\x00\x1b\x06\x00\x00\xf1\x05\x00\x00\xf2\x05\x00\x00\x95\x05\x00\x00\x94\x05\x00\x00j\x05\x00\x00j\x05\x00\x00k\x05\x00\x00\x95\x05\x00\x00A\x05\x00\x00@\x05\x00\x00\x16\x05\x00\x00\x16\x05\x00\x00\x17\x05\x00\x00A\x05\x00\x00j\x05\x00\x00@\x05\x00\x00A\x05\x00\x00A\x05\x00\x00k\x05\x00\x00j\x05\x00\x00B\x05\x00\x00\x18\x05\x00\x00\x19\x05\x00\x00\x19\x05\x00\x00C\x05\x00\x00B\x05\x00\x00\x17\x05\x00\x00\x18\x05\x00\x00B\x05\x00\x00A\x05\x00\x00\x17\x05\x00\x00B\x05\x00\x00m\x06\x00\x00\x97\x06\x00\x00l\x06\x00\x00l\x06\x00\x00\x97\x06\x00\x00\x96\x06\x00\x00>\x00\x00\x00\x14\x00\x00\x00\x15\x00\x00\x00\x15\x00\x00\x00?\x00\x00\x00>\x00\x00\x00\x90\x00\x00\x00\x8f\x00\x00\x00e\x00\x00\x00e\x00\x00\x00f\x00\x00\x00\x90\x00\x00\x00e\x00\x00\x00:\x00\x00\x00;\x00\x00\x00e\x00\x00\x00d\x00\x00\x00:\x00\x00\x00\xbb\x01\x00\x00\xba\x01\x00\x00\x90\x01\x00\x00\x90\x01\x00\x00\x91\x01\x00\x00\xbb\x01\x00\x00\xe5\x01\x00\x00\xe4\x01\x00\x00\xbb\x01\x00\x00\xbb\x01\x00\x00\xe4\x01\x00\x00\xba\x01\x00\x00\xb8\x01\x00\x00\xe2\x01\x00\x00\xe1\x01\x00\x00\xe1\x01\x00\x00\xb7\x01\x00\x00\xb8\x01\x00\x00F\x00\x00\x00\x1c\x00\x00\x00\x1d\x00\x00\x00\x1d\x00\x00\x00G\x00\x00\x00F\x00\x00\x00F\x00\x00\x00G\x00\x00\x00q\x00\x00\x00q\x00\x00\x00p\x00\x00\x00F\x00\x00\x00A\x02\x00\x00k\x02\x00\x00@\x02\x00\x00@\x02\x00\x00k\x02\x00\x00j\x02\x00\x00g\x02\x00\x00=\x02\x00\x00h\x02\x00\x00h\x02\x00\x00=\x02\x00\x00>\x02\x00\x00r\x01\x00\x00s\x01\x00\x00\x9d\x01\x00\x00\x9d\x01\x00\x00\x9c\x01\x00\x00r\x01\x00\x00#\x00\x00\x00$\x00\x00\x00N\x00\x00\x00N\x00\x00\x00M\x00\x00\x00#\x00\x00\x00L\x00\x00\x00"\x00\x00\x00#\x00\x00\x00#\x00\x00\x00M\x00\x00\x00L\x00\x00\x008\x00\x00\x00b\x00\x00\x00a\x00\x00\x00a\x00\x00\x007\x00\x00\x008\x00\x00\x006\x00\x00\x00\x0c\x00\x00\x00\r\x00\x00\x00\r\x00\x00\x007\x00\x00\x006\x00\x00\x006\x00\x00\x007\x00\x00\x00a\x00\x00\x00a\x00\x00\x00`\x00\x00\x006\x00\x00\x00\x0b\x00\x00\x00\x0c\x00\x00\x006\x00\x00\x006\x00\x00\x005\x00\x00\x00\x0b\x00\x00\x002\x00\x00\x00\x08\x00\x00\x00\t\x00\x00\x00\t\x00\x00\x003\x00\x00\x002\x00\x00\x00\xd8\x00\x00\x00\x03\x01\x00\x00\x02\x01\x00\x00\xd8\x00\x00\x00\xd9\x00\x00\x00\x03\x01\x00\x00\xdb\x00\x00\x00\xda\x00\x00\x00\xb0\x00\x00\x00\xb0\x00\x00\x00\xb1\x00\x00\x00\xdb\x00\x00\x00\x7f\x00\x00\x00~\x00\x00\x00T\x00\x00\x00T\x00\x00\x00U\x00\x00\x00\x7f\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00,\x00\x00\x00,\x00\x00\x00+\x00\x00\x00\x01\x00\x00\x00\xfd\x00\x00\x00\xfc\x00\x00\x00\xd2\x00\x00\x00\xd2\x00\x00\x00\xd3\x00\x00\x00\xfd\x00\x00\x00\xa8\x00\x00\x00\xa9\x00\x00\x00\xd2\x00\x00\x00\xd2\x00\x00\x00\xa9\x00\x00\x00\xd3\x00\x00\x00\xfd\x00\x00\x00\xd3\x00\x00\x00\xd4\x00\x00\x00\xd4\x00\x00\x00\xfe\x00\x00\x00\xfd\x00\x00\x00Y\x00\x00\x00Z\x00\x00\x00\x83\x00\x00\x00\x83\x00\x00\x00Z\x00\x00\x00\x84\x00\x00\x00\x83\x00\x00\x00\xad\x00\x00\x00\xac\x00\x00\x00\xac\x00\x00\x00\x82\x00\x00\x00\x83\x00\x00\x00\x81\x00\x00\x00\x82\x00\x00\x00\xac\x00\x00\x00\xac\x00\x00\x00\xab\x00\x00\x00\x81\x00\x00\x00\x03\x01\x00\x00\xd9\x00\x00\x00\x04\x01\x00\x00\x04\x01\x00\x00\xd9\x00\x00\x00\xda\x00\x00\x00\x81\x01\x00\x00\xab\x01\x00\x00\xaa\x01\x00\x00\x81\x01\x00\x00\xaa\x01\x00\x00\x80\x01\x00\x001\x02\x00\x00\x06\x02\x00\x00\x07\x02\x00\x000\x02\x00\x00\x06\x02\x00\x001\x02\x00\x001\x02\x00\x00\x07\x02\x00\x00\x08\x02\x00\x00\x08\x02\x00\x002\x02\x00\x001\x02\x00\x00\x0f\x01\x00\x008\x01\x00\x00\x0e\x01\x00\x009\x01\x00\x008\x01\x00\x00\x0f\x01\x00\x00\xb6\x01\x00\x00\xb7\x01\x00\x00\xe1\x01\x00\x00\xe1\x01\x00\x00\xe0\x01\x00\x00\xb6\x01\x00\x008\x00\x00\x007\x00\x00\x00\x0e\x00\x00\x00\x0e\x00\x00\x007\x00\x00\x00\r\x00\x00\x009\x00\x00\x00\x0f\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00:\x00\x00\x009\x00\x00\x00\x0e\x00\x00\x00\x0f\x00\x00\x009\x00\x00\x009\x00\x00\x008\x00\x00\x00\x0e\x00\x00\x00\x89\x01\x00\x00`\x01\x00\x00\x8a\x01\x00\x00\x89\x01\x00\x00_\x01\x00\x00`\x01\x00\x00\x89\x01\x00\x00\xb4\x01\x00\x00\xb3\x01\x00\x00\x8a\x01\x00\x00\xb4\x01\x00\x00\x89\x01\x00\x00\xaf\x01\x00\x00\xd9\x01\x00\x00\xd8\x01\x00\x00\xd8\x01\x00\x00\xae\x01\x00\x00\xaf\x01\x00\x00\xaf\x01\x00\x00\xda\x01\x00\x00\xd9\x01\x00\x00\xb0\x01\x00\x00\xda\x01\x00\x00\xaf\x01\x00\x00I\x03\x00\x00r\x03\x00\x00H\x03\x00\x00s\x03\x00\x00r\x03\x00\x00I\x03\x00\x00I\x03\x00\x00t\x03\x00\x00s\x03\x00\x00J\x03\x00\x00t\x03\x00\x00I\x03\x00\x00{\x03\x00\x00\xa5\x03\x00\x00\xa4\x03\x00\x00\xa4\x03\x00\x00z\x03\x00\x00{\x03\x00\x00\xff\x00\x00\x00*\x01\x00\x00)\x01\x00\x00\x00\x01\x00\x00*\x01\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xfe\x00\x00\x00\xd4\x00\x00\x00\xd4\x00\x00\x00\xd5\x00\x00\x00\xff\x00\x00\x00(\x01\x00\x00\xfe\x00\x00\x00\xff\x00\x00\x00)\x01\x00\x00(\x01\x00\x00\xff\x00\x00\x00%\x02\x00\x00\xfb\x01\x00\x00&\x02\x00\x00&\x02\x00\x00\xfb\x01\x00\x00\xfc\x01\x00\x00&\x02\x00\x00O\x02\x00\x00%\x02\x00\x00P\x02\x00\x00O\x02\x00\x00&\x02\x00\x00\xd4\x01\x00\x00\xfe\x01\x00\x00\xd3\x01\x00\x00\xfe\x01\x00\x00\xfd\x01\x00\x00\xd3\x01\x00\x00-\x04\x00\x00\x03\x04\x00\x00.\x04\x00\x00\x03\x04\x00\x00\x04\x04\x00\x00.\x04\x00\x00\xd4\x05\x00\x00\xd3\x05\x00\x00\xa9\x05\x00\x00\xa9\x05\x00\x00\xaa\x05\x00\x00\xd4\x05\x00\x00\xa9\x05\x00\x00\xd3\x05\x00\x00\xd2\x05\x00\x00\xd2\x05\x00\x00\xa8\x05\x00\x00\xa9\x05\x00\x00\xac\x04\x00\x00\xad\x04\x00\x00\xd7\x04\x00\x00\xd7\x04\x00\x00\xd6\x04\x00\x00\xac\x04\x00\x00\xae\x04\x00\x00\xd9\x04\x00\x00\xd8\x04\x00\x00\xae\x04\x00\x00\xaf\x04\x00\x00\xd9\x04\x00\x00\xae\x04\x00\x00\xad\x04\x00\x00\x83\x04\x00\x00\x83\x04\x00\x00\x84\x04\x00\x00\xae\x04\x00\x00\xd7\x04\x00\x00\xad\x04\x00\x00\xae\x04\x00\x00\xae\x04\x00\x00\xd8\x04\x00\x00\xd7\x04\x00\x00,\x05\x00\x00V\x05\x00\x00U\x05\x00\x00U\x05\x00\x00+\x05\x00\x00,\x05\x00\x00,\x05\x00\x00\x02\x05\x00\x00\x03\x05\x00\x00,\x05\x00\x00\x03\x05\x00\x00-\x05\x00\x00-\x05\x00\x00W\x05\x00\x00,\x05\x00\x00,\x05\x00\x00W\x05\x00\x00V\x05\x00\x00S\x05\x00\x00)\x05\x00\x00*\x05\x00\x00*\x05\x00\x00T\x05\x00\x00S\x05\x00\x00*\x05\x00\x00+\x05\x00\x00U\x05\x00\x00U\x05\x00\x00T\x05\x00\x00*\x05\x00\x009\x03\x00\x00d\x03\x00\x00c\x03\x00\x00:\x03\x00\x00d\x03\x00\x009\x03\x00\x00;\x03\x00\x00d\x03\x00\x00:\x03\x00\x00;\x03\x00\x00e\x03\x00\x00d\x03\x00\x00\x8e\x03\x00\x00d\x03\x00\x00\x8f\x03\x00\x00d\x03\x00\x00e\x03\x00\x00\x8f\x03\x00\x00\xba\x03\x00\x00\xb9\x03\x00\x00\x8f\x03\x00\x00\x90\x03\x00\x00\xba\x03\x00\x00\x8f\x03\x00\x00a\x03\x00\x00\x8a\x03\x00\x00`\x03\x00\x00\x8b\x03\x00\x00\x8a\x03\x00\x00a\x03\x00\x00\'\x06\x00\x00P\x06\x00\x00&\x06\x00\x00Q\x06\x00\x00P\x06\x00\x00\'\x06\x00\x00\xfc\x05\x00\x00&\x06\x00\x00%\x06\x00\x00%\x06\x00\x00\xfb\x05\x00\x00\xfc\x05\x00\x00\'\x06\x00\x00&\x06\x00\x00\xfc\x05\x00\x00\xfc\x05\x00\x00\xfd\x05\x00\x00\'\x06\x00\x00\xd2\x05\x00\x00\xd3\x05\x00\x00\xfc\x05\x00\x00\xd3\x05\x00\x00\xfd\x05\x00\x00\xfc\x05\x00\x00\xd1\x05\x00\x00\xa8\x05\x00\x00\xd2\x05\x00\x00\xd1\x05\x00\x00\xa7\x05\x00\x00\xa8\x05\x00\x00\xfc\x05\x00\x00\xfb\x05\x00\x00\xd1\x05\x00\x00\xd1\x05\x00\x00\xd2\x05\x00\x00\xfc\x05\x00\x00\xd1\x05\x00\x00\xd0\x05\x00\x00\xa6\x05\x00\x00\xa6\x05\x00\x00\xa7\x05\x00\x00\xd1\x05\x00\x00\xfa\x05\x00\x00\xd0\x05\x00\x00\xd1\x05\x00\x00\xd1\x05\x00\x00\xfb\x05\x00\x00\xfa\x05\x00\x00q\x05\x00\x00\x9b\x05\x00\x00\x9a\x05\x00\x00\x9a\x05\x00\x00p\x05\x00\x00q\x05\x00\x00q\x05\x00\x00G\x05\x00\x00H\x05\x00\x00H\x05\x00\x00r\x05\x00\x00q\x05\x00\x00\x80\x03\x00\x00V\x03\x00\x00\x81\x03\x00\x00V\x03\x00\x00W\x03\x00\x00\x81\x03\x00\x00\xad\x03\x00\x00\xae\x03\x00\x00\xd8\x03\x00\x00\xad\x03\x00\x00\xd8\x03\x00\x00\xd7\x03\x00\x00\xfe\x03\x00\x00(\x04\x00\x00\'\x04\x00\x00\'\x04\x00\x00\xfd\x03\x00\x00\xfe\x03\x00\x00\xfe\x03\x00\x00\xfd\x03\x00\x00\xd3\x03\x00\x00\xd3\x03\x00\x00\xd4\x03\x00\x00\xfe\x03\x00\x00\xd2\x03\x00\x00\xfd\x03\x00\x00\xfc\x03\x00\x00\xd3\x03\x00\x00\xfd\x03\x00\x00\xd2\x03\x00\x00\'\x04\x00\x00Q\x04\x00\x00P\x04\x00\x00P\x04\x00\x00&\x04\x00\x00\'\x04\x00\x00\xa3\x04\x00\x00\xa2\x04\x00\x00x\x04\x00\x00x\x04\x00\x00y\x04\x00\x00\xa3\x04\x00\x00\xa3\x04\x00\x00z\x04\x00\x00\xa4\x04\x00\x00y\x04\x00\x00z\x04\x00\x00\xa3\x04\x00\x00\xf7\x05\x00\x00\xf8\x05\x00\x00"\x06\x00\x00\xf7\x05\x00\x00"\x06\x00\x00!\x06\x00\x00\xfb\x04\x00\x00\xfc\x04\x00\x00&\x05\x00\x00&\x05\x00\x00%\x05\x00\x00\xfb\x04\x00\x00\xcf\x04\x00\x00\xce\x04\x00\x00\xa5\x04\x00\x00\xa5\x04\x00\x00\xce\x04\x00\x00\xa4\x04\x00\x00T\x04\x00\x00U\x04\x00\x00\x7f\x04\x00\x00\x7f\x04\x00\x00~\x04\x00\x00T\x04\x00\x00}\x04\x00\x00~\x04\x00\x00\xa8\x04\x00\x00\xa8\x04\x00\x00\xa7\x04\x00\x00}\x04\x00\x00\x9a\x04\x00\x00\x99\x04\x00\x00o\x04\x00\x00o\x04\x00\x00p\x04\x00\x00\x9a\x04\x00\x00\x9a\x04\x00\x00\xc3\x04\x00\x00\x99\x04\x00\x00\xc4\x04\x00\x00\xc3\x04\x00\x00\x9a\x04\x00\x00q\x04\x00\x00G\x04\x00\x00H\x04\x00\x00H\x04\x00\x00r\x04\x00\x00q\x04\x00\x00q\x04\x00\x00p\x04\x00\x00F\x04\x00\x00F\x04\x00\x00G\x04\x00\x00q\x04\x00\x00\x9a\x04\x00\x00p\x04\x00\x00q\x04\x00\x00q\x04\x00\x00\x9b\x04\x00\x00\x9a\x04\x00\x00I\x04\x00\x00r\x04\x00\x00H\x04\x00\x00s\x04\x00\x00r\x04\x00\x00I\x04\x00\x00I\x04\x00\x00\x1f\x04\x00\x00 \x04\x00\x00 \x04\x00\x00J\x04\x00\x00I\x04\x00\x00I\x04\x00\x00J\x04\x00\x00t\x04\x00\x00t\x04\x00\x00s\x04\x00\x00I\x04\x00\x00\x1d\x04\x00\x00\xf3\x03\x00\x00\x1e\x04\x00\x00\x1e\x04\x00\x00\xf3\x03\x00\x00\xf4\x03\x00\x00\x1e\x04\x00\x00G\x04\x00\x00\x1d\x04\x00\x00H\x04\x00\x00G\x04\x00\x00\x1e\x04\x00\x00\xf5\x03\x00\x00\x1f\x04\x00\x00\x1e\x04\x00\x00\xf4\x03\x00\x00\xf5\x03\x00\x00\x1e\x04\x00\x00I\x04\x00\x00H\x04\x00\x00\x1e\x04\x00\x00\x1e\x04\x00\x00\x1f\x04\x00\x00I\x04\x00\x00\x9e\x04\x00\x00s\x04\x00\x00t\x04\x00\x00\x9e\x04\x00\x00\x9d\x04\x00\x00s\x04\x00\x00#\x04\x00\x00N\x04\x00\x00M\x04\x00\x00$\x04\x00\x00N\x04\x00\x00#\x04\x00\x00\xcb\x04\x00\x00\xf6\x04\x00\x00\xf5\x04\x00\x00\xcb\x04\x00\x00\xcc\x04\x00\x00\xf6\x04\x00\x00E\x05\x00\x00\x1b\x05\x00\x00F\x05\x00\x00\x1b\x05\x00\x00\x1c\x05\x00\x00F\x05\x00\x00q\x05\x00\x00p\x05\x00\x00F\x05\x00\x00F\x05\x00\x00G\x05\x00\x00q\x05\x00\x00\xf2\x03\x00\x00\xc8\x03\x00\x00\xc9\x03\x00\x00\xc9\x03\x00\x00\xf3\x03\x00\x00\xf2\x03\x00\x00\xc9\x03\x00\x00\xc8\x03\x00\x00\x9e\x03\x00\x00\xc9\x03\x00\x00\x9e\x03\x00\x00\x9f\x03\x00\x00K\x04\x00\x00!\x04\x00\x00L\x04\x00\x00!\x04\x00\x00"\x04\x00\x00L\x04\x00\x00#\x04\x00\x00M\x04\x00\x00L\x04\x00\x00L\x04\x00\x00"\x04\x00\x00#\x04\x00\x00u\x04\x00\x00K\x04\x00\x00L\x04\x00\x00L\x04\x00\x00v\x04\x00\x00u\x04\x00\x00u\x04\x00\x00J\x04\x00\x00K\x04\x00\x00t\x04\x00\x00J\x04\x00\x00u\x04\x00\x00/\x02\x00\x00\x06\x02\x00\x000\x02\x00\x00\x05\x02\x00\x00\x06\x02\x00\x00/\x02\x00\x000\x02\x00\x00Z\x02\x00\x00/\x02\x00\x00/\x02\x00\x00Z\x02\x00\x00Y\x02\x00\x00\x04\x02\x00\x00\x05\x02\x00\x00/\x02\x00\x00/\x02\x00\x00.\x02\x00\x00\x04\x02\x00\x00\x03\x02\x00\x00\xda\x01\x00\x00\x04\x02\x00\x00\xd9\x01\x00\x00\xda\x01\x00\x00\x03\x02\x00\x00\x04\x02\x00\x00.\x02\x00\x00\x03\x02\x00\x00\x03\x02\x00\x00.\x02\x00\x00-\x02\x00\x00\xd8\x01\x00\x00\xd9\x01\x00\x00\x03\x02\x00\x00\x03\x02\x00\x00\x02\x02\x00\x00\xd8\x01\x00\x00,\x02\x00\x00\x02\x02\x00\x00\x03\x02\x00\x00-\x02\x00\x00,\x02\x00\x00\x03\x02\x00\x00*\x03\x00\x00T\x03\x00\x00)\x03\x00\x00T\x03\x00\x00S\x03\x00\x00)\x03\x00\x00\xff\x01\x00\x00\xd4\x01\x00\x00\xd5\x01\x00\x00\xff\x01\x00\x00\xfe\x01\x00\x00\xd4\x01\x00\x00,\x03\x00\x00\x01\x03\x00\x00\x02\x03\x00\x00+\x03\x00\x00\x01\x03\x00\x00,\x03\x00\x00\x84\x02\x00\x00\x83\x02\x00\x00Y\x02\x00\x00Y\x02\x00\x00Z\x02\x00\x00\x84\x02\x00\x00\x84\x02\x00\x00\xad\x02\x00\x00\x83\x02\x00\x00\xae\x02\x00\x00\xad\x02\x00\x00\x84\x02\x00\x00\x85\x02\x00\x00\xaf\x02\x00\x00\x84\x02\x00\x00\x84\x02\x00\x00\xaf\x02\x00\x00\xae\x02\x00\x00\x81\x03\x00\x00W\x03\x00\x00X\x03\x00\x00X\x03\x00\x00\x82\x03\x00\x00\x81\x03\x00\x00\x9e\x02\x00\x00\xc8\x02\x00\x00\xc7\x02\x00\x00\xc7\x02\x00\x00\x9d\x02\x00\x00\x9e\x02\x00\x00\x9e\x02\x00\x00\x9f\x02\x00\x00\xc9\x02\x00\x00\xc9\x02\x00\x00\xc8\x02\x00\x00\x9e\x02\x00\x00u\x02\x00\x00\x9f\x02\x00\x00\x9e\x02\x00\x00\x9e\x02\x00\x00t\x02\x00\x00u\x02\x00\x00\x9e\x02\x00\x00\x9d\x02\x00\x00s\x02\x00\x00s\x02\x00\x00t\x02\x00\x00\x9e\x02\x00\x00\xf4\x01\x00\x00\xca\x01\x00\x00\xcb\x01\x00\x00\xcb\x01\x00\x00\xf5\x01\x00\x00\xf4\x01\x00\x00\x15\x03\x00\x00\xeb\x02\x00\x00\xec\x02\x00\x00\xec\x02\x00\x00\x16\x03\x00\x00\x15\x03\x00\x00\x98\x02\x00\x00\xc2\x02\x00\x00\xc1\x02\x00\x00\xc1\x02\x00\x00\x97\x02\x00\x00\x98\x02\x00\x00\xec\x02\x00\x00\xeb\x02\x00\x00\xc1\x02\x00\x00\xc1\x02\x00\x00\xc2\x02\x00\x00\xec\x02\x00\x00\xa6\x00\x00\x00\xa7\x00\x00\x00\xd1\x00\x00\x00\xd1\x00\x00\x00\xd0\x00\x00\x00\xa6\x00\x00\x00{\x00\x00\x00|\x00\x00\x00\xa6\x00\x00\x00\xa6\x00\x00\x00\xa5\x00\x00\x00{\x00\x00\x00Q\x00\x00\x00R\x00\x00\x00{\x00\x00\x00{\x00\x00\x00R\x00\x00\x00|\x00\x00\x00}\x00\x00\x00\xa7\x00\x00\x00\xa6\x00\x00\x00\xa6\x00\x00\x00|\x00\x00\x00}\x00\x00\x00}\x00\x00\x00R\x00\x00\x00S\x00\x00\x00|\x00\x00\x00R\x00\x00\x00}\x00\x00\x00I\x01\x00\x00s\x01\x00\x00r\x01\x00\x00r\x01\x00\x00H\x01\x00\x00I\x01\x00\x00I\x01\x00\x00H\x01\x00\x00\x1e\x01\x00\x00\x1e\x01\x00\x00\x1f\x01\x00\x00I\x01\x00\x00N\x00\x00\x00$\x00\x00\x00%\x00\x00\x00%\x00\x00\x00O\x00\x00\x00N\x00\x00\x00%\x00\x00\x00&\x00\x00\x00P\x00\x00\x00P\x00\x00\x00O\x00\x00\x00%\x00\x00\x00P\x00\x00\x00\'\x00\x00\x00Q\x00\x00\x00&\x00\x00\x00\'\x00\x00\x00P\x00\x00\x00\xcd\x00\x00\x00\xce\x00\x00\x00\xf8\x00\x00\x00\xf8\x00\x00\x00\xf7\x00\x00\x00\xcd\x00\x00\x00!\x01\x00\x00 \x01\x00\x00\xf6\x00\x00\x00\xf6\x00\x00\x00\xf7\x00\x00\x00!\x01\x00\x00!\x01\x00\x00\xf7\x00\x00\x00\xf8\x00\x00\x00\xf8\x00\x00\x00"\x01\x00\x00!\x01\x00\x00$\x01\x00\x00%\x01\x00\x00O\x01\x00\x00O\x01\x00\x00N\x01\x00\x00$\x01\x00\x00M\x01\x00\x00#\x01\x00\x00$\x01\x00\x00$\x01\x00\x00N\x01\x00\x00M\x01\x00\x00\xfb\x00\x00\x00%\x01\x00\x00$\x01\x00\x00$\x01\x00\x00\xfa\x00\x00\x00\xfb\x00\x00\x00\xfb\x00\x00\x00\xd0\x00\x00\x00\xd1\x00\x00\x00\xfa\x00\x00\x00\xd0\x00\x00\x00\xfb\x00\x00\x00y\x01\x00\x00N\x01\x00\x00O\x01\x00\x00x\x01\x00\x00N\x01\x00\x00y\x01\x00\x00M\x01\x00\x00N\x01\x00\x00w\x01\x00\x00w\x01\x00\x00N\x01\x00\x00x\x01\x00\x00\xfa\x07\x00\x00$\x08\x00\x00#\x08\x00\x00#\x08\x00\x00\xf9\x07\x00\x00\xfa\x07\x00\x00%\x08\x00\x00$\x08\x00\x00\xfa\x07\x00\x00\xfa\x07\x00\x00\xfb\x07\x00\x00%\x08\x00\x00\xce\x07\x00\x00\xa4\x07\x00\x00\xa5\x07\x00\x00\xa5\x07\x00\x00\xcf\x07\x00\x00\xce\x07\x00\x00/\x03\x00\x00\x05\x03\x00\x00\x06\x03\x00\x000\x03\x00\x00/\x03\x00\x00\x06\x03\x00\x00\x89\x03\x00\x00\xb4\x03\x00\x00\xb3\x03\x00\x00\x8a\x03\x00\x00\xb4\x03\x00\x00\x89\x03\x00\x00\x85\x03\x00\x00\x86\x03\x00\x00\xb0\x03\x00\x00\xb0\x03\x00\x00\xaf\x03\x00\x00\x85\x03\x00\x00\xd9\x03\x00\x00\xaf\x03\x00\x00\xb0\x03\x00\x00\xda\x03\x00\x00\xd9\x03\x00\x00\xb0\x03\x00\x00\x87\x03\x00\x00\xb1\x03\x00\x00\xb0\x03\x00\x00\xb0\x03\x00\x00\x86\x03\x00\x00\x87\x03\x00\x00\xb0\x03\x00\x00\xb1\x03\x00\x00\xdb\x03\x00\x00\xb0\x03\x00\x00\xdb\x03\x00\x00\xda\x03\x00\x00\x87\x03\x00\x00\x86\x03\x00\x00]\x03\x00\x00\x86\x03\x00\x00\\\x03\x00\x00]\x03\x00\x00?\x01\x00\x00i\x01\x00\x00h\x01\x00\x00h\x01\x00\x00>\x01\x00\x00?\x01\x00\x00\xea\x00\x00\x00\xc0\x00\x00\x00\xc1\x00\x00\x00\xc1\x00\x00\x00\xeb\x00\x00\x00\xea\x00\x00\x00\x98\x02\x00\x00\x97\x02\x00\x00m\x02\x00\x00m\x02\x00\x00n\x02\x00\x00\x98\x02\x00\x00\x0c\x02\x00\x00\xe3\x01\x00\x00\r\x02\x00\x00\xe2\x01\x00\x00\xe3\x01\x00\x00\x0c\x02\x00\x00\xbd\x01\x00\x00\x93\x01\x00\x00\x94\x01\x00\x00\x94\x01\x00\x00\xbe\x01\x00\x00\xbd\x01\x00\x00;\x02\x00\x00:\x02\x00\x00\x10\x02\x00\x00\x10\x02\x00\x00\x11\x02\x00\x00;\x02\x00\x00\x10\x02\x00\x00:\x02\x00\x009\x02\x00\x009\x02\x00\x00\x0f\x02\x00\x00\x10\x02\x00\x009\x02\x00\x00d\x02\x00\x00c\x02\x00\x00:\x02\x00\x00d\x02\x00\x009\x02\x00\x00\x0e\x02\x00\x00\x0f\x02\x00\x009\x02\x00\x008\x02\x00\x00\x0e\x02\x00\x009\x02\x00\x00>\x05\x00\x00=\x05\x00\x00\x13\x05\x00\x00\x13\x05\x00\x00\x14\x05\x00\x00>\x05\x00\x00B\x04\x00\x00\x19\x04\x00\x00C\x04\x00\x00\x18\x04\x00\x00\x19\x04\x00\x00B\x04\x00\x00\x17\x04\x00\x00\x18\x04\x00\x00B\x04\x00\x00B\x04\x00\x00A\x04\x00\x00\x17\x04\x00\x00E\x03\x00\x00o\x03\x00\x00D\x03\x00\x00D\x03\x00\x00o\x03\x00\x00n\x03\x00\x00\x1c\x03\x00\x00\x1d\x03\x00\x00G\x03\x00\x00G\x03\x00\x00F\x03\x00\x00\x1c\x03\x00\x00\xf3\x02\x00\x00\x1d\x03\x00\x00\x1c\x03\x00\x00\x1c\x03\x00\x00\xf2\x02\x00\x00\xf3\x02\x00\x00\xf3\x02\x00\x00\xc8\x02\x00\x00\xc9\x02\x00\x00\xf2\x02\x00\x00\xc8\x02\x00\x00\xf3\x02\x00\x00\xe6\x04\x00\x00\xbc\x04\x00\x00\xbd\x04\x00\x00\xbd\x04\x00\x00\xe7\x04\x00\x00\xe6\x04\x00\x00\'\x08\x00\x00\xfd\x07\x00\x00(\x08\x00\x00(\x08\x00\x00\xfd\x07\x00\x00\xfe\x07\x00\x00\xb4\x07\x00\x00\xb3\x07\x00\x00\x89\x07\x00\x00\x89\x07\x00\x00\x8a\x07\x00\x00\xb4\x07\x00\x00\x8b\x07\x00\x00\xb5\x07\x00\x00\xb4\x07\x00\x00\xb4\x07\x00\x00\x8a\x07\x00\x00\x8b\x07\x00\x00\xdd\x07\x00\x00\xb3\x07\x00\x00\xb4\x07\x00\x00\xb4\x07\x00\x00\xde\x07\x00\x00\xdd\x07\x00\x00\xdd\x07\x00\x00\x08\x08\x00\x00\x07\x08\x00\x00\xde\x07\x00\x00\x08\x08\x00\x00\xdd\x07\x00\x00\xb4\x07\x00\x00\xb5\x07\x00\x00\xdf\x07\x00\x00\xdf\x07\x00\x00\xde\x07\x00\x00\xb4\x07\x00\x00\t\x08\x00\x00\x08\x08\x00\x00\xdf\x07\x00\x00\xdf\x07\x00\x00\x08\x08\x00\x00\xde\x07\x00\x00\x08\x07\x00\x00\t\x07\x00\x003\x07\x00\x003\x07\x00\x002\x07\x00\x00\x08\x07\x00\x003\x07\x00\x00\t\x07\x00\x00\n\x07\x00\x00\n\x07\x00\x004\x07\x00\x003\x07\x00\x00\x86\x07\x00\x00\xb0\x07\x00\x00\xaf\x07\x00\x00\xaf\x07\x00\x00\x85\x07\x00\x00\x86\x07\x00\x00\x86\x07\x00\x00[\x07\x00\x00\\\x07\x00\x00\x85\x07\x00\x00[\x07\x00\x00\x86\x07\x00\x00\x87\x07\x00\x00\xb1\x07\x00\x00\x86\x07\x00\x00\xb1\x07\x00\x00\xb0\x07\x00\x00\x86\x07\x00\x00\\\x07\x00\x00[\x07\x00\x001\x07\x00\x001\x07\x00\x002\x07\x00\x00\\\x07\x00\x001\x07\x00\x00[\x07\x00\x000\x07\x00\x000\x07\x00\x00[\x07\x00\x00Z\x07\x00\x00\xd8\x07\x00\x00\xd7\x07\x00\x00\xad\x07\x00\x00\xad\x07\x00\x00\xae\x07\x00\x00\xd8\x07\x00\x001\x06\x00\x00[\x06\x00\x00Z\x06\x00\x00Z\x06\x00\x000\x06\x00\x001\x06\x00\x00\x89\x05\x00\x00\x8a\x05\x00\x00\xb4\x05\x00\x00\xb4\x05\x00\x00\xb3\x05\x00\x00\x89\x05\x00\x00\xb4\x05\x00\x00\x8a\x05\x00\x00\x8b\x05\x00\x00\x8b\x05\x00\x00\xb5\x05\x00\x00\xb4\x05\x00\x00\xb7\x05\x00\x00\xb8\x05\x00\x00\xe2\x05\x00\x00\xe2\x05\x00\x00\xe1\x05\x00\x00\xb7\x05\x00\x00\x0b\x06\x00\x00\xe1\x05\x00\x00\xe2\x05\x00\x00\xe2\x05\x00\x00\x0c\x06\x00\x00\x0b\x06\x00\x00\xe2\x05\x00\x00\xb9\x05\x00\x00\xe3\x05\x00\x00\xb8\x05\x00\x00\xb9\x05\x00\x00\xe2\x05\x00\x00\xe3\x05\x00\x00\r\x06\x00\x00\xe2\x05\x00\x00\xe2\x05\x00\x00\r\x06\x00\x00\x0c\x06\x00\x00\x1a\x05\x00\x00\x1b\x05\x00\x00E\x05\x00\x00E\x05\x00\x00D\x05\x00\x00\x1a\x05\x00\x00\x1a\x05\x00\x00C\x05\x00\x00\x19\x05\x00\x00\x1a\x05\x00\x00D\x05\x00\x00C\x05\x00\x00\xc5\x04\x00\x00\xef\x04\x00\x00\xee\x04\x00\x00\xee\x04\x00\x00\xc4\x04\x00\x00\xc5\x04\x00\x00\xc5\x04\x00\x00\xc4\x04\x00\x00\x9a\x04\x00\x00\x9a\x04\x00\x00\x9b\x04\x00\x00\xc5\x04\x00\x00\x9c\x04\x00\x00r\x04\x00\x00s\x04\x00\x00s\x04\x00\x00\x9d\x04\x00\x00\x9c\x04\x00\x00\x9c\x04\x00\x00\x9d\x04\x00\x00\xc7\x04\x00\x00\x9c\x04\x00\x00\xc7\x04\x00\x00\xc6\x04\x00\x00q\x04\x00\x00r\x04\x00\x00\x9c\x04\x00\x00\x9c\x04\x00\x00\x9b\x04\x00\x00q\x04\x00\x00\xc5\x04\x00\x00\x9b\x04\x00\x00\x9c\x04\x00\x00\x9c\x04\x00\x00\xc6\x04\x00\x00\xc5\x04\x00\x00\xf9\x06\x00\x00\xf8\x06\x00\x00\xcf\x06\x00\x00\xcf\x06\x00\x00\xf8\x06\x00\x00\xce\x06\x00\x00\xa4\x06\x00\x00\xa3\x06\x00\x00y\x06\x00\x00\xa4\x06\x00\x00y\x06\x00\x00z\x06\x00\x00\xcf\x06\x00\x00\xce\x06\x00\x00\xa4\x06\x00\x00\xa4\x06\x00\x00\xa5\x06\x00\x00\xcf\x06\x00\x00\xcd\x06\x00\x00\xa3\x06\x00\x00\xa4\x06\x00\x00\xa4\x06\x00\x00\xce\x06\x00\x00\xcd\x06\x00\x00\xa2\x06\x00\x00\xa3\x06\x00\x00\xcd\x06\x00\x00\xcd\x06\x00\x00\xcc\x06\x00\x00\xa2\x06\x00\x00\xea\x07\x00\x00\xc0\x07\x00\x00\xc1\x07\x00\x00\xeb\x07\x00\x00\xea\x07\x00\x00\xc1\x07\x00\x00\x18\x07\x00\x00\x19\x07\x00\x00C\x07\x00\x00B\x07\x00\x00\x18\x07\x00\x00C\x07\x00\x00C\x07\x00\x00l\x07\x00\x00B\x07\x00\x00m\x07\x00\x00l\x07\x00\x00C\x07\x00\x00\x96\x06\x00\x00\x97\x06\x00\x00\xc1\x06\x00\x00\xc1\x06\x00\x00\xc0\x06\x00\x00\x96\x06\x00\x00\xc1\x06\x00\x00\x97\x06\x00\x00\x98\x06\x00\x00\x98\x06\x00\x00\xc2\x06\x00\x00\xc1\x06\x00\x00\xbf\x07\x00\x00\xbe\x07\x00\x00\x95\x07\x00\x00\xbe\x07\x00\x00\x94\x07\x00\x00\x95\x07\x00\x00\x95\x07\x00\x00\x94\x07\x00\x00j\x07\x00\x00\x95\x07\x00\x00j\x07\x00\x00k\x07\x00\x00\x95\x07\x00\x00\xc0\x07\x00\x00\xbf\x07\x00\x00\x95\x07\x00\x00\x96\x07\x00\x00\xc0\x07\x00\x00l\x07\x00\x00\x96\x07\x00\x00\x95\x07\x00\x00k\x07\x00\x00l\x07\x00\x00\x95\x07\x00\x00A\x07\x00\x00@\x07\x00\x00\x16\x07\x00\x00\x16\x07\x00\x00\x17\x07\x00\x00A\x07\x00\x00j\x07\x00\x00@\x07\x00\x00A\x07\x00\x00k\x07\x00\x00j\x07\x00\x00A\x07\x00\x00A\x07\x00\x00\x18\x07\x00\x00B\x07\x00\x00A\x07\x00\x00\x17\x07\x00\x00\x18\x07\x00\x00B\x07\x00\x00l\x07\x00\x00A\x07\x00\x00A\x07\x00\x00l\x07\x00\x00k\x07\x00\x00p\x06\x00\x00E\x06\x00\x00F\x06\x00\x00o\x06\x00\x00E\x06\x00\x00p\x06\x00\x00p\x06\x00\x00\x99\x06\x00\x00o\x06\x00\x00\x9a\x06\x00\x00\x99\x06\x00\x00p\x06\x00\x00\xee\x06\x00\x00\x18\x07\x00\x00\xed\x06\x00\x00\x18\x07\x00\x00\x17\x07\x00\x00\xed\x06\x00\x008\x07\x00\x00\x0e\x07\x00\x00\x0f\x07\x00\x00\x0f\x07\x00\x009\x07\x00\x008\x07\x00\x00\x0f\x07\x00\x00\x0e\x07\x00\x00\xe4\x06\x00\x00\xe4\x06\x00\x00\xe5\x06\x00\x00\x0f\x07\x00\x00c\x07\x00\x009\x07\x00\x00:\x07\x00\x00:\x07\x00\x00d\x07\x00\x00c\x07\x00\x00:\x07\x00\x009\x07\x00\x00\x0f\x07\x00\x00\x0f\x07\x00\x00\x10\x07\x00\x00:\x07\x00\x00\x90\x07\x00\x00g\x07\x00\x00\x91\x07\x00\x00f\x07\x00\x00g\x07\x00\x00\x90\x07\x00\x00\x8e\x07\x00\x00d\x07\x00\x00\x8f\x07\x00\x00d\x07\x00\x00e\x07\x00\x00\x8f\x07\x00\x00\x8f\x07\x00\x00\xb8\x07\x00\x00\x8e\x07\x00\x00\xb9\x07\x00\x00\xb8\x07\x00\x00\x8f\x07\x00\x00\x8f\x07\x00\x00f\x07\x00\x00\x90\x07\x00\x00\x8f\x07\x00\x00e\x07\x00\x00f\x07\x00\x00\x7f\x06\x00\x00U\x06\x00\x00\x80\x06\x00\x00\x80\x06\x00\x00U\x06\x00\x00V\x06\x00\x00\xd0\x06\x00\x00\xf9\x06\x00\x00\xcf\x06\x00\x00\xd0\x06\x00\x00\xfa\x06\x00\x00\xf9\x06\x00\x00\xa4\x06\x00\x00z\x06\x00\x00{\x06\x00\x00{\x06\x00\x00\xa5\x06\x00\x00\xa4\x06\x00\x00{\x06\x00\x00P\x06\x00\x00Q\x06\x00\x00z\x06\x00\x00P\x06\x00\x00{\x06\x00\x00\x88\x05\x00\x00\x87\x05\x00\x00]\x05\x00\x00]\x05\x00\x00^\x05\x00\x00\x88\x05\x00\x00\x88\x05\x00\x00_\x05\x00\x00\x89\x05\x00\x00\x88\x05\x00\x00^\x05\x00\x00_\x05\x00\x00\xbb\x03\x00\x00\x92\x03\x00\x00\xbc\x03\x00\x00\xbb\x03\x00\x00\x91\x03\x00\x00\x92\x03\x00\x00\xbb\x03\x00\x00\xe6\x03\x00\x00\xe5\x03\x00\x00\xbc\x03\x00\x00\xe6\x03\x00\x00\xbb\x03\x00\x00\xbb\x03\x00\x00\xba\x03\x00\x00\x90\x03\x00\x00\x90\x03\x00\x00\x91\x03\x00\x00\xbb\x03\x00\x00\xbb\x03\x00\x00\xe4\x03\x00\x00\xba\x03\x00\x00\xe5\x03\x00\x00\xe4\x03\x00\x00\xbb\x03\x00\x00\xba\x04\x00\x00\x90\x04\x00\x00\x91\x04\x00\x00\x91\x04\x00\x00\xbb\x04\x00\x00\xba\x04\x00\x00\x8f\x04\x00\x00\x90\x04\x00\x00\xba\x04\x00\x00\xba\x04\x00\x00\xb9\x04\x00\x00\x8f\x04\x00\x00\x0e\x04\x00\x00\xe4\x03\x00\x00\xe5\x03\x00\x00\x0e\x04\x00\x00\xe5\x03\x00\x00\x0f\x04\x00\x00\x85\x04\x00\x00\xaf\x04\x00\x00\xae\x04\x00\x00\xae\x04\x00\x00\x84\x04\x00\x00\x85\x04\x00\x00\x0c\x05\x00\x00\r\x05\x00\x007\x05\x00\x007\x05\x00\x006\x05\x00\x00\x0c\x05\x00\x007\x05\x00\x00\r\x05\x00\x00\x0e\x05\x00\x00\x0e\x05\x00\x008\x05\x00\x007\x05\x00\x00\t\x05\x00\x002\x05\x00\x00\x08\x05\x00\x003\x05\x00\x002\x05\x00\x00\t\x05\x00\x00\x08\x05\x00\x00\x07\x05\x00\x00\xde\x04\x00\x00\x07\x05\x00\x00\xdd\x04\x00\x00\xde\x04\x00\x00\t\x05\x00\x00\x08\x05\x00\x00\xde\x04\x00\x00\xde\x04\x00\x00\xdf\x04\x00\x00\t\x05\x00\x00\x1c\x08\x00\x00\x1b\x08\x00\x00\xf1\x07\x00\x00\xf1\x07\x00\x00\xf2\x07\x00\x00\x1c\x08\x00\x00p\x06\x00\x00F\x06\x00\x00G\x06\x00\x00G\x06\x00\x00q\x06\x00\x00p\x06\x00\x00G\x06\x00\x00\x1c\x06\x00\x00\x1d\x06\x00\x00G\x06\x00\x00F\x06\x00\x00\x1c\x06\x00\x00r\x06\x00\x00q\x06\x00\x00G\x06\x00\x00H\x06\x00\x00r\x06\x00\x00G\x06\x00\x00s\x05\x00\x00r\x05\x00\x00H\x05\x00\x00H\x05\x00\x00I\x05\x00\x00s\x05\x00\x00J\x05\x00\x00t\x05\x00\x00s\x05\x00\x00s\x05\x00\x00I\x05\x00\x00J\x05\x00\x00\xf2\x05\x00\x00\xf1\x05\x00\x00\xc7\x05\x00\x00\xc7\x05\x00\x00\xc8\x05\x00\x00\xf2\x05\x00\x00\x1a\x06\x00\x00\xf1\x05\x00\x00\x1b\x06\x00\x00\xf0\x05\x00\x00\xf1\x05\x00\x00\x1a\x06\x00\x00\x1a\x06\x00\x00\x19\x06\x00\x00\xef\x05\x00\x00\xef\x05\x00\x00\xf0\x05\x00\x00\x1a\x06\x00\x00\x9b\x06\x00\x00q\x06\x00\x00r\x06\x00\x00\x9b\x06\x00\x00r\x06\x00\x00\x9c\x06\x00\x00\x9b\x06\x00\x00\x9a\x06\x00\x00p\x06\x00\x00p\x06\x00\x00q\x06\x00\x00\x9b\x06\x00\x00\x15\x06\x00\x00\x14\x06\x00\x00\xea\x05\x00\x00\xea\x05\x00\x00\xeb\x05\x00\x00\x15\x06\x00\x00\x13\x06\x00\x00\x12\x06\x00\x00\xe8\x05\x00\x00\xe8\x05\x00\x00\xe9\x05\x00\x00\x13\x06\x00\x00\xea\x05\x00\x00\x14\x06\x00\x00\x13\x06\x00\x00\x13\x06\x00\x00\xe9\x05\x00\x00\xea\x05\x00\x00g\x06\x00\x00\x90\x06\x00\x00f\x06\x00\x00g\x06\x00\x00\x91\x06\x00\x00\x90\x06\x00\x00\x94\x06\x00\x00\x93\x06\x00\x00i\x06\x00\x00i\x06\x00\x00j\x06\x00\x00\x94\x06\x00\x00\xe8\x05\x00\x00\xbe\x05\x00\x00\xbf\x05\x00\x00\xbf\x05\x00\x00\xe9\x05\x00\x00\xe8\x05\x00\x00\xbe\x05\x00\x00\x94\x05\x00\x00\xbf\x05\x00\x00\xbf\x05\x00\x00\x94\x05\x00\x00\x95\x05\x00\x00\xea\x05\x00\x00\xe9\x05\x00\x00\xbf\x05\x00\x00\xbf\x05\x00\x00\xc0\x05\x00\x00\xea\x05\x00\x00\xbf\x05\x00\x00\x96\x05\x00\x00\xc0\x05\x00\x00\x95\x05\x00\x00\x96\x05\x00\x00\xbf\x05\x00\x00\x97\x05\x00\x00\x96\x05\x00\x00l\x05\x00\x00l\x05\x00\x00m\x05\x00\x00\x97\x05\x00\x00B\x05\x00\x00C\x05\x00\x00l\x05\x00\x00C\x05\x00\x00m\x05\x00\x00l\x05\x00\x00\x95\x05\x00\x00k\x05\x00\x00l\x05\x00\x00l\x05\x00\x00\x96\x05\x00\x00\x95\x05\x00\x00l\x05\x00\x00k\x05\x00\x00A\x05\x00\x00l\x05\x00\x00A\x05\x00\x00B\x05\x00\x00\xc1\x05\x00\x00\xeb\x05\x00\x00\xea\x05\x00\x00\xea\x05\x00\x00\xc0\x05\x00\x00\xc1\x05\x00\x00\xc0\x05\x00\x00\x96\x05\x00\x00\xc1\x05\x00\x00\xc1\x05\x00\x00\x96\x05\x00\x00\x97\x05\x00\x00C\x05\x00\x00D\x05\x00\x00n\x05\x00\x00n\x05\x00\x00m\x05\x00\x00C\x05\x00\x00l\x06\x00\x00\x96\x06\x00\x00k\x06\x00\x00\x96\x06\x00\x00\x95\x06\x00\x00k\x06\x00\x00k\x06\x00\x00A\x06\x00\x00B\x06\x00\x00B\x06\x00\x00l\x06\x00\x00k\x06\x00\x00\x94\x06\x00\x00j\x06\x00\x00k\x06\x00\x00k\x06\x00\x00\x95\x06\x00\x00\x94\x06\x00\x00k\x06\x00\x00@\x06\x00\x00A\x06\x00\x00k\x06\x00\x00j\x06\x00\x00@\x06\x00\x00\x13\x00\x00\x00\x14\x00\x00\x00=\x00\x00\x00=\x00\x00\x00\x14\x00\x00\x00>\x00\x00\x00\x0f\x01\x00\x00\x0e\x01\x00\x00\xe4\x00\x00\x00\xe4\x00\x00\x00\xe5\x00\x00\x00\x0f\x01\x00\x00\r\x01\x00\x00\xe3\x00\x00\x00\xe4\x00\x00\x00\xe4\x00\x00\x00\x0e\x01\x00\x00\r\x01\x00\x00\x90\x00\x00\x00f\x00\x00\x00\x91\x00\x00\x00\x91\x00\x00\x00f\x00\x00\x00g\x00\x00\x00<\x00\x00\x00f\x00\x00\x00e\x00\x00\x00e\x00\x00\x00;\x00\x00\x00<\x00\x00\x00;\x00\x00\x00\x11\x00\x00\x00<\x00\x00\x00<\x00\x00\x00\x11\x00\x00\x00\x12\x00\x00\x00g\x00\x00\x00f\x00\x00\x00<\x00\x00\x00=\x00\x00\x00g\x00\x00\x00<\x00\x00\x00\x12\x00\x00\x00\x13\x00\x00\x00<\x00\x00\x00<\x00\x00\x00\x13\x00\x00\x00=\x00\x00\x00C\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x1a\x00\x00\x00D\x00\x00\x00C\x00\x00\x00\x18\x00\x00\x00\x19\x00\x00\x00C\x00\x00\x00C\x00\x00\x00B\x00\x00\x00\x18\x00\x00\x00e\x01\x00\x00\x8f\x01\x00\x00\x8e\x01\x00\x00\x8e\x01\x00\x00d\x01\x00\x00e\x01\x00\x00e\x01\x00\x00d\x01\x00\x00:\x01\x00\x00:\x01\x00\x00;\x01\x00\x00e\x01\x00\x00=\x00\x00\x00>\x00\x00\x00h\x00\x00\x00h\x00\x00\x00g\x00\x00\x00=\x00\x00\x00\x15\x00\x00\x00\x16\x00\x00\x00@\x00\x00\x00@\x00\x00\x00?\x00\x00\x00\x15\x00\x00\x00\xc1\x00\x00\x00\xc0\x00\x00\x00\x96\x00\x00\x00\x96\x00\x00\x00\x97\x00\x00\x00\xc1\x00\x00\x00\xb9\x01\x00\x00\xe2\x01\x00\x00\xb8\x01\x00\x00\xb9\x01\x00\x00\xe3\x01\x00\x00\xe2\x01\x00\x00\x8e\x01\x00\x00\x8f\x01\x00\x00\xb9\x01\x00\x00\xb8\x01\x00\x00\x8e\x01\x00\x00\xb9\x01\x00\x00\xe4\x01\x00\x00\xe3\x01\x00\x00\xb9\x01\x00\x00\xba\x01\x00\x00\xe4\x01\x00\x00\xb9\x01\x00\x00\x90\x01\x00\x00\xba\x01\x00\x00\xb9\x01\x00\x00\xb9\x01\x00\x00\x8f\x01\x00\x00\x90\x01\x00\x00\x1e\x00\x00\x00\x1f\x00\x00\x00I\x00\x00\x00I\x00\x00\x00H\x00\x00\x00\x1e\x00\x00\x00\x1e\x00\x00\x00G\x00\x00\x00\x1d\x00\x00\x00H\x00\x00\x00G\x00\x00\x00\x1e\x00\x00\x00r\x00\x00\x00\x9c\x00\x00\x00\x9b\x00\x00\x00\x9b\x00\x00\x00q\x00\x00\x00r\x00\x00\x00q\x00\x00\x00G\x00\x00\x00r\x00\x00\x00r\x00\x00\x00G\x00\x00\x00H\x00\x00\x00\x9e\x00\x00\x00u\x00\x00\x00\x9f\x00\x00\x00t\x00\x00\x00u\x00\x00\x00\x9e\x00\x00\x00\xec\x00\x00\x00\x16\x01\x00\x00\x15\x01\x00\x00\x15\x01\x00\x00\xeb\x00\x00\x00\xec\x00\x00\x00F\x00\x00\x00p\x00\x00\x00E\x00\x00\x00E\x00\x00\x00p\x00\x00\x00o\x00\x00\x00i\x02\x00\x00\x93\x02\x00\x00\x92\x02\x00\x00i\x02\x00\x00\x92\x02\x00\x00h\x02\x00\x00\x18\x02\x00\x00\xee\x01\x00\x00\xef\x01\x00\x00\xef\x01\x00\x00\x19\x02\x00\x00\x18\x02\x00\x00\x1b\x02\x00\x00\xf1\x01\x00\x00\xf2\x01\x00\x00\xf2\x01\x00\x00\x1c\x02\x00\x00\x1b\x02\x00\x00\xc7\x01\x00\x00\x9c\x01\x00\x00\x9d\x01\x00\x00\xc6\x01\x00\x00\x9c\x01\x00\x00\xc7\x01\x00\x00\xc7\x01\x00\x00\xc8\x01\x00\x00\xf2\x01\x00\x00\xf2\x01\x00\x00\xf1\x01\x00\x00\xc7\x01\x00\x00\x99\x01\x00\x00\x98\x01\x00\x00n\x01\x00\x00n\x01\x00\x00o\x01\x00\x00\x99\x01\x00\x00\x15\x01\x00\x00\x16\x01\x00\x00@\x01\x00\x00?\x01\x00\x00\x15\x01\x00\x00@\x01\x00\x00\xdb\x00\x00\x00\xb1\x00\x00\x00\xb2\x00\x00\x00\xb2\x00\x00\x00\xdc\x00\x00\x00\xdb\x00\x00\x00\xdd\x00\x00\x00\xdc\x00\x00\x00\xb2\x00\x00\x00\xb2\x00\x00\x00\xb3\x00\x00\x00\xdd\x00\x00\x00\x06\x01\x00\x00\xdc\x00\x00\x00\xdd\x00\x00\x00\xdd\x00\x00\x00\x07\x01\x00\x00\x06\x01\x00\x00\xd8\x00\x00\x00\x02\x01\x00\x00\xd7\x00\x00\x00\x02\x01\x00\x00\x01\x01\x00\x00\xd7\x00\x00\x00\x83\x00\x00\x00\x84\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\xad\x00\x00\x00\x83\x00\x00\x00\xae\x00\x00\x00\xd8\x00\x00\x00\xd7\x00\x00\x00\xd7\x00\x00\x00\xad\x00\x00\x00\xae\x00\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00+\x00\x00\x00*\x00\x00\x00*\x00\x00\x00U\x00\x00\x00T\x00\x00\x00+\x00\x00\x00U\x00\x00\x00*\x00\x00\x00\x7f\x00\x00\x00U\x00\x00\x00V\x00\x00\x00V\x00\x00\x00\x80\x00\x00\x00\x7f\x00\x00\x00V\x00\x00\x00+\x00\x00\x00,\x00\x00\x00V\x00\x00\x00U\x00\x00\x00+\x00\x00\x00{\x01\x00\x00Q\x01\x00\x00R\x01\x00\x00R\x01\x00\x00|\x01\x00\x00{\x01\x00\x00\xa4\x01\x00\x00z\x01\x00\x00{\x01\x00\x00{\x01\x00\x00\xa5\x01\x00\x00\xa4\x01\x00\x00{\x01\x00\x00z\x01\x00\x00P\x01\x00\x00P\x01\x00\x00Q\x01\x00\x00{\x01\x00\x00P\x01\x00\x00&\x01\x00\x00\'\x01\x00\x00\'\x01\x00\x00Q\x01\x00\x00P\x01\x00\x00&\x01\x00\x00\xfc\x00\x00\x00\'\x01\x00\x00\'\x01\x00\x00\xfc\x00\x00\x00\xfd\x00\x00\x00R\x01\x00\x00Q\x01\x00\x00\'\x01\x00\x00\'\x01\x00\x00(\x01\x00\x00R\x01\x00\x00\xfd\x00\x00\x00\xfe\x00\x00\x00\'\x01\x00\x00\'\x01\x00\x00\xfe\x00\x00\x00(\x01\x00\x00\xaa\x00\x00\x00\xa9\x00\x00\x00\x7f\x00\x00\x00\x7f\x00\x00\x00\x80\x00\x00\x00\xaa\x00\x00\x00\xd3\x00\x00\x00\xa9\x00\x00\x00\xaa\x00\x00\x00\xd4\x00\x00\x00\xd3\x00\x00\x00\xaa\x00\x00\x00\x81\x00\x00\x00\xab\x00\x00\x00\xaa\x00\x00\x00\xaa\x00\x00\x00\x80\x00\x00\x00\x81\x00\x00\x00\xaa\x00\x00\x00\xd5\x00\x00\x00\xd4\x00\x00\x00\xab\x00\x00\x00\xd5\x00\x00\x00\xaa\x00\x00\x00\\\x00\x00\x00\x86\x00\x00\x00\x85\x00\x00\x00\x85\x00\x00\x00[\x00\x00\x00\\\x00\x00\x00\x84\x00\x00\x00Z\x00\x00\x00\x85\x00\x00\x00\x85\x00\x00\x00Z\x00\x00\x00[\x00\x00\x00\x06\x00\x00\x00\x07\x00\x00\x001\x00\x00\x001\x00\x00\x000\x00\x00\x00\x06\x00\x00\x001\x00\x00\x00Z\x00\x00\x000\x00\x00\x00[\x00\x00\x00Z\x00\x00\x001\x00\x00\x001\x00\x00\x00\x07\x00\x00\x00\x08\x00\x00\x001\x00\x00\x00\x08\x00\x00\x002\x00\x00\x00\\\x00\x00\x00[\x00\x00\x001\x00\x00\x001\x00\x00\x002\x00\x00\x00\\\x00\x00\x00\xd6\x00\x00\x00\x00\x01\x00\x00\xff\x00\x00\x00\xff\x00\x00\x00\xd5\x00\x00\x00\xd6\x00\x00\x00\xd6\x00\x00\x00\xab\x00\x00\x00\xac\x00\x00\x00\xd6\x00\x00\x00\xd5\x00\x00\x00\xab\x00\x00\x00\xd7\x00\x00\x00\x01\x01\x00\x00\xd6\x00\x00\x00\xd6\x00\x00\x00\x01\x01\x00\x00\x00\x01\x00\x00\xac\x00\x00\x00\xad\x00\x00\x00\xd6\x00\x00\x00\xd6\x00\x00\x00\xad\x00\x00\x00\xd7\x00\x00\x00\x82\x02\x00\x00\xad\x02\x00\x00\xac\x02\x00\x00\x83\x02\x00\x00\xad\x02\x00\x00\x82\x02\x00\x00\xac\x01\x00\x00\xab\x01\x00\x00\x81\x01\x00\x00\x81\x01\x00\x00\x82\x01\x00\x00\xac\x01\x00\x00\xac\x01\x00\x00\x82\x01\x00\x00\x83\x01\x00\x00\xac\x01\x00\x00\x83\x01\x00\x00\xad\x01\x00\x00\x05\x01\x00\x00.\x01\x00\x00\x04\x01\x00\x00\x05\x01\x00\x00/\x01\x00\x00.\x01\x00\x00\x05\x01\x00\x00\xda\x00\x00\x00\xdb\x00\x00\x00\x04\x01\x00\x00\xda\x00\x00\x00\x05\x01\x00\x00\xdb\x00\x00\x00\xdc\x00\x00\x00\x05\x01\x00\x00\x05\x01\x00\x00\xdc\x00\x00\x00\x06\x01\x00\x00X\x01\x00\x00.\x01\x00\x00Y\x01\x00\x00.\x01\x00\x00/\x01\x00\x00Y\x01\x00\x00\x83\x01\x00\x00\x82\x01\x00\x00Y\x01\x00\x00Y\x01\x00\x00\x82\x01\x00\x00X\x01\x00\x00X\x01\x00\x00\x82\x01\x00\x00W\x01\x00\x00W\x01\x00\x00\x82\x01\x00\x00\x81\x01\x00\x00\xb3\x01\x00\x00\xb4\x01\x00\x00\xde\x01\x00\x00\xdd\x01\x00\x00\xb3\x01\x00\x00\xde\x01\x00\x00\x08\x02\x00\x00\x07\x02\x00\x00\xde\x01\x00\x00\xde\x01\x00\x00\x07\x02\x00\x00\xdd\x01\x00\x00\t\x02\x00\x00\xdf\x01\x00\x00\xe0\x01\x00\x00\xe0\x01\x00\x00\n\x02\x00\x00\t\x02\x00\x00\t\x02\x00\x00\x08\x02\x00\x00\xde\x01\x00\x00\xde\x01\x00\x00\xdf\x01\x00\x00\t\x02\x00\x00:\x01\x00\x00d\x01\x00\x00c\x01\x00\x00c\x01\x00\x009\x01\x00\x00:\x01\x00\x00c\x01\x00\x008\x01\x00\x009\x01\x00\x00b\x01\x00\x008\x01\x00\x00c\x01\x00\x00\x0e\x01\x00\x008\x01\x00\x007\x01\x00\x00\r\x01\x00\x00\x0e\x01\x00\x007\x01\x00\x00\xb6\x01\x00\x00\xe0\x01\x00\x00\xb5\x01\x00\x00\xe0\x01\x00\x00\xdf\x01\x00\x00\xb5\x01\x00\x00\xde\x01\x00\x00\xb4\x01\x00\x00\xb5\x01\x00\x00\xb5\x01\x00\x00\xdf\x01\x00\x00\xde\x01\x00\x00\xb5\x01\x00\x00\xb4\x01\x00\x00\x8a\x01\x00\x00\x8a\x01\x00\x00\x8b\x01\x00\x00\xb5\x01\x00\x00\x8c\x01\x00\x00\xb6\x01\x00\x00\xb5\x01\x00\x00\xb5\x01\x00\x00\x8b\x01\x00\x00\x8c\x01\x00\x00:\x00\x00\x00d\x00\x00\x00c\x00\x00\x009\x00\x00\x00:\x00\x00\x00c\x00\x00\x00c\x00\x00\x00b\x00\x00\x008\x00\x00\x00c\x00\x00\x008\x00\x00\x009\x00\x00\x00e\x00\x00\x00\x8f\x00\x00\x00\x8e\x00\x00\x00\x8e\x00\x00\x00d\x00\x00\x00e\x00\x00\x00c\x00\x00\x00d\x00\x00\x00\x8e\x00\x00\x00\x8e\x00\x00\x00\x8d\x00\x00\x00c\x00\x00\x00\x07\x02\x00\x00\x06\x02\x00\x00\xdc\x01\x00\x00\xdd\x01\x00\x00\x07\x02\x00\x00\xdc\x01\x00\x00\xdc\x01\x00\x00\xb3\x01\x00\x00\xdd\x01\x00\x00\xdc\x01\x00\x00\xb2\x01\x00\x00\xb3\x01\x00\x00\xdc\x01\x00\x00\x05\x02\x00\x00\xdb\x01\x00\x00\xdc\x01\x00\x00\x06\x02\x00\x00\x05\x02\x00\x00\x88\x01\x00\x00_\x01\x00\x00\x89\x01\x00\x00^\x01\x00\x00_\x01\x00\x00\x88\x01\x00\x00\x89\x01\x00\x00\xb3\x01\x00\x00\x88\x01\x00\x00\xb3\x01\x00\x00\xb2\x01\x00\x00\x88\x01\x00\x00]\x01\x00\x00^\x01\x00\x00\x88\x01\x00\x00\x88\x01\x00\x00\x87\x01\x00\x00]\x01\x00\x002\x01\x00\x003\x01\x00\x00]\x01\x00\x00]\x01\x00\x00\\\x01\x00\x002\x01\x00\x00\xdb\x01\x00\x00\xda\x01\x00\x00\xb1\x01\x00\x00\xb1\x01\x00\x00\xda\x01\x00\x00\xb0\x01\x00\x00\xb1\x01\x00\x00\xb2\x01\x00\x00\xdc\x01\x00\x00\xdc\x01\x00\x00\xdb\x01\x00\x00\xb1\x01\x00\x00\x88\x01\x00\x00\xb2\x01\x00\x00\xb1\x01\x00\x00\xb1\x01\x00\x00\x87\x01\x00\x00\x88\x01\x00\x00\x1f\x03\x00\x00\xf5\x02\x00\x00\xf6\x02\x00\x00\xf6\x02\x00\x00 \x03\x00\x00\x1f\x03\x00\x00\x1f\x03\x00\x00J\x03\x00\x00I\x03\x00\x00\x1f\x03\x00\x00 \x03\x00\x00J\x03\x00\x00\x1f\x03\x00\x00\x1e\x03\x00\x00\xf4\x02\x00\x00\xf4\x02\x00\x00\xf5\x02\x00\x00\x1f\x03\x00\x00H\x03\x00\x00\x1e\x03\x00\x00\x1f\x03\x00\x00I\x03\x00\x00H\x03\x00\x00\x1f\x03\x00\x00O\x03\x00\x00z\x03\x00\x00y\x03\x00\x00P\x03\x00\x00z\x03\x00\x00O\x03\x00\x00\xa5\x02\x00\x00\xa4\x02\x00\x00z\x02\x00\x00z\x02\x00\x00{\x02\x00\x00\xa5\x02\x00\x00\xa3\x03\x00\x00z\x03\x00\x00\xa4\x03\x00\x00y\x03\x00\x00z\x03\x00\x00\xa3\x03\x00\x00\xf9\x01\x00\x00\xf8\x01\x00\x00\xce\x01\x00\x00\xf9\x01\x00\x00\xce\x01\x00\x00\xcf\x01\x00\x00+\x01\x00\x00*\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x01\x01\x00\x00+\x01\x00\x00\xfc\x01\x00\x00\xfb\x01\x00\x00\xd2\x01\x00\x00\xd2\x01\x00\x00\xfb\x01\x00\x00\xd1\x01\x00\x00\xd3\x01\x00\x00\xfd\x01\x00\x00\xd2\x01\x00\x00\xd2\x01\x00\x00\xfd\x01\x00\x00\xfc\x01\x00\x00\xd2\x01\x00\x00\xd1\x01\x00\x00\xa7\x01\x00\x00\xa7\x01\x00\x00\xa8\x01\x00\x00\xd2\x01\x00\x00\xa9\x01\x00\x00\xa8\x01\x00\x00~\x01\x00\x00~\x01\x00\x00\x7f\x01\x00\x00\xa9\x01\x00\x00\xa9\x01\x00\x00\xd3\x01\x00\x00\xd2\x01\x00\x00\xd2\x01\x00\x00\xa8\x01\x00\x00\xa9\x01\x00\x00\x80\x01\x00\x00\xaa\x01\x00\x00\xa9\x01\x00\x00\x7f\x01\x00\x00\x80\x01\x00\x00\xa9\x01\x00\x00\xa9\x01\x00\x00\xaa\x01\x00\x00\xd4\x01\x00\x00\xa9\x01\x00\x00\xd4\x01\x00\x00\xd3\x01\x00\x00T\x01\x00\x00*\x01\x00\x00+\x01\x00\x00+\x01\x00\x00U\x01\x00\x00T\x01\x00\x00T\x01\x00\x00\x7f\x01\x00\x00~\x01\x00\x00U\x01\x00\x00\x7f\x01\x00\x00T\x01\x00\x00X\x04\x00\x00\x82\x04\x00\x00\x81\x04\x00\x00\x81\x04\x00\x00W\x04\x00\x00X\x04\x00\x00X\x04\x00\x00W\x04\x00\x00-\x04\x00\x00X\x04\x00\x00-\x04\x00\x00.\x04\x00\x00\xd4\x05\x00\x00\xaa\x05\x00\x00\xd5\x05\x00\x00\xd5\x05\x00\x00\xaa\x05\x00\x00\xab\x05\x00\x00\xab\x05\x00\x00\xac\x05\x00\x00\xd5\x05\x00\x00\xd5\x05\x00\x00\xac\x05\x00\x00\xd6\x05\x00\x00\xfe\x05\x00\x00\xd4\x05\x00\x00\xd5\x05\x00\x00\xd5\x05\x00\x00\xff\x05\x00\x00\xfe\x05\x00\x00\xfe\x05\x00\x00\xd3\x05\x00\x00\xd4\x05\x00\x00\xfe\x05\x00\x00\xfd\x05\x00\x00\xd3\x05\x00\x00\'\x06\x00\x00\xfd\x05\x00\x00\xfe\x05\x00\x00\xfe\x05\x00\x00(\x06\x00\x00\'\x06\x00\x00{\x06\x00\x00Q\x06\x00\x00R\x06\x00\x00R\x06\x00\x00|\x06\x00\x00{\x06\x00\x00R\x06\x00\x00Q\x06\x00\x00\'\x06\x00\x00\'\x06\x00\x00(\x06\x00\x00R\x06\x00\x00S\x06\x00\x00|\x06\x00\x00R\x06\x00\x00S\x06\x00\x00}\x06\x00\x00|\x06\x00\x00\xd5\x05\x00\x00\xd6\x05\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\xff\x05\x00\x00\xd5\x05\x00\x00\xa6\x05\x00\x00|\x05\x00\x00}\x05\x00\x00}\x05\x00\x00\xa7\x05\x00\x00\xa6\x05\x00\x00|\x05\x00\x00R\x05\x00\x00}\x05\x00\x00}\x05\x00\x00R\x05\x00\x00S\x05\x00\x00\xa8\x05\x00\x00\xa7\x05\x00\x00}\x05\x00\x00~\x05\x00\x00\xa8\x05\x00\x00}\x05\x00\x00S\x05\x00\x00T\x05\x00\x00}\x05\x00\x00}\x05\x00\x00T\x05\x00\x00~\x05\x00\x00,\x05\x00\x00+\x05\x00\x00\x01\x05\x00\x00\x01\x05\x00\x00\x02\x05\x00\x00,\x05\x00\x00\xd8\x04\x00\x00\x02\x05\x00\x00\x01\x05\x00\x00\xd7\x04\x00\x00\xd8\x04\x00\x00\x01\x05\x00\x00\xa9\x05\x00\x00\xa8\x05\x00\x00\x7f\x05\x00\x00\x7f\x05\x00\x00\xa8\x05\x00\x00~\x05\x00\x00\x7f\x05\x00\x00T\x05\x00\x00U\x05\x00\x00~\x05\x00\x00T\x05\x00\x00\x7f\x05\x00\x00\xd5\x04\x00\x00\xd6\x04\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\xff\x04\x00\x00\xd5\x04\x00\x00)\x05\x00\x00\xff\x04\x00\x00\x00\x05\x00\x00*\x05\x00\x00)\x05\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\xd6\x04\x00\x00\xd7\x04\x00\x00\x00\x05\x00\x00\xd7\x04\x00\x00\x01\x05\x00\x00\x00\x05\x00\x00+\x05\x00\x00*\x05\x00\x00\x01\x05\x00\x00+\x05\x00\x00\x00\x05\x00\x00f\x03\x00\x00e\x03\x00\x00;\x03\x00\x00;\x03\x00\x00<\x03\x00\x00f\x03\x00\x00\x8f\x03\x00\x00e\x03\x00\x00f\x03\x00\x00f\x03\x00\x00\x90\x03\x00\x00\x8f\x03\x00\x00=\x03\x00\x00g\x03\x00\x00f\x03\x00\x00f\x03\x00\x00<\x03\x00\x00=\x03\x00\x00f\x03\x00\x00\x91\x03\x00\x00\x90\x03\x00\x00g\x03\x00\x00\x91\x03\x00\x00f\x03\x00\x00z\x06\x00\x00y\x06\x00\x00O\x06\x00\x00O\x06\x00\x00P\x06\x00\x00z\x06\x00\x00&\x06\x00\x00P\x06\x00\x00O\x06\x00\x00%\x06\x00\x00&\x06\x00\x00O\x06\x00\x00$\x06\x00\x00%\x06\x00\x00O\x06\x00\x00O\x06\x00\x00N\x06\x00\x00$\x06\x00\x00$\x06\x00\x00\xfb\x05\x00\x00%\x06\x00\x00\xfa\x05\x00\x00\xfb\x05\x00\x00$\x06\x00\x00#\x06\x00\x00\xf9\x05\x00\x00$\x06\x00\x00$\x06\x00\x00\xf9\x05\x00\x00\xfa\x05\x00\x00\x15\x06\x00\x00\xeb\x05\x00\x00\xec\x05\x00\x00\xec\x05\x00\x00\x16\x06\x00\x00\x15\x06\x00\x00\xec\x05\x00\x00\x17\x06\x00\x00\x16\x06\x00\x00\xed\x05\x00\x00\x17\x06\x00\x00\xec\x05\x00\x00\xf5\x04\x00\x00\xf6\x04\x00\x00 \x05\x00\x00 \x05\x00\x00\x1f\x05\x00\x00\xf5\x04\x00\x00J\x05\x00\x00I\x05\x00\x00 \x05\x00\x00I\x05\x00\x00\x1f\x05\x00\x00 \x05\x00\x00\xf7\x04\x00\x00!\x05\x00\x00 \x05\x00\x00 \x05\x00\x00\xf6\x04\x00\x00\xf7\x04\x00\x00 \x05\x00\x00!\x05\x00\x00K\x05\x00\x00 \x05\x00\x00K\x05\x00\x00J\x05\x00\x00U\x03\x00\x00+\x03\x00\x00,\x03\x00\x00,\x03\x00\x00V\x03\x00\x00U\x03\x00\x00U\x03\x00\x00V\x03\x00\x00\x80\x03\x00\x00U\x03\x00\x00\x80\x03\x00\x00\x7f\x03\x00\x00U\x03\x00\x00T\x03\x00\x00*\x03\x00\x00*\x03\x00\x00+\x03\x00\x00U\x03\x00\x00~\x03\x00\x00T\x03\x00\x00U\x03\x00\x00U\x03\x00\x00\x7f\x03\x00\x00~\x03\x00\x00\xd7\x03\x00\x00\xd6\x03\x00\x00\xac\x03\x00\x00\xad\x03\x00\x00\xd7\x03\x00\x00\xac\x03\x00\x00\x81\x03\x00\x00\x82\x03\x00\x00\xac\x03\x00\x00\xab\x03\x00\x00\x81\x03\x00\x00\xac\x03\x00\x00\xff\x03\x00\x00(\x04\x00\x00\xfe\x03\x00\x00\xff\x03\x00\x00)\x04\x00\x00(\x04\x00\x00|\x03\x00\x00R\x03\x00\x00}\x03\x00\x00R\x03\x00\x00S\x03\x00\x00}\x03\x00\x00}\x03\x00\x00S\x03\x00\x00T\x03\x00\x00}\x03\x00\x00T\x03\x00\x00~\x03\x00\x00\xa6\x03\x00\x00|\x03\x00\x00}\x03\x00\x00}\x03\x00\x00\xa7\x03\x00\x00\xa6\x03\x00\x00\xa6\x03\x00\x00\xa5\x03\x00\x00{\x03\x00\x00\xa6\x03\x00\x00{\x03\x00\x00|\x03\x00\x00\xcf\x03\x00\x00\xa5\x03\x00\x00\xa6\x03\x00\x00\xa6\x03\x00\x00\xd0\x03\x00\x00\xcf\x03\x00\x00\xfa\x03\x00\x00$\x04\x00\x00#\x04\x00\x00#\x04\x00\x00\xf9\x03\x00\x00\xfa\x03\x00\x00\xfa\x03\x00\x00\xf9\x03\x00\x00\xcf\x03\x00\x00\xcf\x03\x00\x00\xd0\x03\x00\x00\xfa\x03\x00\x00\xfb\x03\x00\x00\xfc\x03\x00\x00&\x04\x00\x00&\x04\x00\x00%\x04\x00\x00\xfb\x03\x00\x00\xfb\x03\x00\x00$\x04\x00\x00\xfa\x03\x00\x00\xfb\x03\x00\x00%\x04\x00\x00$\x04\x00\x00O\x04\x00\x00&\x04\x00\x00P\x04\x00\x00O\x04\x00\x00%\x04\x00\x00&\x04\x00\x00O\x04\x00\x00z\x04\x00\x00y\x04\x00\x00P\x04\x00\x00z\x04\x00\x00O\x04\x00\x00O\x04\x00\x00N\x04\x00\x00$\x04\x00\x00$\x04\x00\x00%\x04\x00\x00O\x04\x00\x00O\x04\x00\x00y\x04\x00\x00x\x04\x00\x00x\x04\x00\x00N\x04\x00\x00O\x04\x00\x00O\x05\x00\x00%\x05\x00\x00&\x05\x00\x00&\x05\x00\x00P\x05\x00\x00O\x05\x00\x00O\x05\x00\x00P\x05\x00\x00z\x05\x00\x00O\x05\x00\x00z\x05\x00\x00y\x05\x00\x00L\x04\x00\x00M\x04\x00\x00w\x04\x00\x00w\x04\x00\x00v\x04\x00\x00L\x04\x00\x00M\x04\x00\x00N\x04\x00\x00w\x04\x00\x00w\x04\x00\x00N\x04\x00\x00x\x04\x00\x00\xf6\x04\x00\x00\xcc\x04\x00\x00\xcd\x04\x00\x00\xf7\x04\x00\x00\xf6\x04\x00\x00\xcd\x04\x00\x00\xcd\x04\x00\x00\xa2\x04\x00\x00\xa3\x04\x00\x00\xcd\x04\x00\x00\xcc\x04\x00\x00\xa2\x04\x00\x00\xcd\x04\x00\x00\xce\x04\x00\x00\xf8\x04\x00\x00\xcd\x04\x00\x00\xf8\x04\x00\x00\xf7\x04\x00\x00\xa3\x04\x00\x00\xa4\x04\x00\x00\xcd\x04\x00\x00\xa4\x04\x00\x00\xce\x04\x00\x00\xcd\x04\x00\x00G\x06\x00\x00\x1d\x06\x00\x00\x1e\x06\x00\x00\x1e\x06\x00\x00H\x06\x00\x00G\x06\x00\x00\x1d\x06\x00\x00\xf3\x05\x00\x00\x1e\x06\x00\x00\x1e\x06\x00\x00\xf3\x05\x00\x00\xf4\x05\x00\x00I\x06\x00\x00H\x06\x00\x00\x1e\x06\x00\x00\x1e\x06\x00\x00\x1f\x06\x00\x00I\x06\x00\x00I\x06\x00\x00 \x06\x00\x00J\x06\x00\x00\x1f\x06\x00\x00 \x06\x00\x00I\x06\x00\x00\x1e\x06\x00\x00\xf4\x05\x00\x00\xf5\x05\x00\x00\xf5\x05\x00\x00\x1f\x06\x00\x00\x1e\x06\x00\x00s\x06\x00\x00r\x06\x00\x00H\x06\x00\x00s\x06\x00\x00H\x06\x00\x00I\x06\x00\x00I\x06\x00\x00J\x06\x00\x00t\x06\x00\x00s\x06\x00\x00I\x06\x00\x00t\x06\x00\x00\xfa\x04\x00\x00\xd0\x04\x00\x00\xd1\x04\x00\x00\xfb\x04\x00\x00\xfa\x04\x00\x00\xd1\x04\x00\x00\xd1\x04\x00\x00\xa7\x04\x00\x00\xa8\x04\x00\x00\xa8\x04\x00\x00\xd2\x04\x00\x00\xd1\x04\x00\x00\xd1\x04\x00\x00\xfc\x04\x00\x00\xfb\x04\x00\x00\xd2\x04\x00\x00\xfc\x04\x00\x00\xd1\x04\x00\x00\xaa\x04\x00\x00\xab\x04\x00\x00\xd5\x04\x00\x00\xd5\x04\x00\x00\xd4\x04\x00\x00\xaa\x04\x00\x00\x01\x04\x00\x00+\x04\x00\x00*\x04\x00\x00*\x04\x00\x00\x00\x04\x00\x00\x01\x04\x00\x00*\x04\x00\x00+\x04\x00\x00U\x04\x00\x00*\x04\x00\x00U\x04\x00\x00T\x04\x00\x00*\x04\x00\x00)\x04\x00\x00\xff\x03\x00\x00\xff\x03\x00\x00\x00\x04\x00\x00*\x04\x00\x00*\x04\x00\x00T\x04\x00\x00S\x04\x00\x00S\x04\x00\x00)\x04\x00\x00*\x04\x00\x00T\x04\x00\x00~\x04\x00\x00S\x04\x00\x00S\x04\x00\x00~\x04\x00\x00}\x04\x00\x00S\x04\x00\x00R\x04\x00\x00(\x04\x00\x00(\x04\x00\x00)\x04\x00\x00S\x04\x00\x00|\x04\x00\x00R\x04\x00\x00S\x04\x00\x00S\x04\x00\x00}\x04\x00\x00|\x04\x00\x00Q\x05\x00\x00P\x05\x00\x00\'\x05\x00\x00\'\x05\x00\x00P\x05\x00\x00&\x05\x00\x00\xf2\x04\x00\x00\x1c\x05\x00\x00\x1b\x05\x00\x00\x1b\x05\x00\x00\xf1\x04\x00\x00\xf2\x04\x00\x00\x9e\x03\x00\x00t\x03\x00\x00u\x03\x00\x00\x9f\x03\x00\x00\x9e\x03\x00\x00u\x03\x00\x00u\x03\x00\x00t\x03\x00\x00J\x03\x00\x00u\x03\x00\x00J\x03\x00\x00K\x03\x00\x00!\x03\x00\x00 \x03\x00\x00\xf6\x02\x00\x00\xf6\x02\x00\x00\xf7\x02\x00\x00!\x03\x00\x00J\x03\x00\x00 \x03\x00\x00!\x03\x00\x00K\x03\x00\x00J\x03\x00\x00!\x03\x00\x00\xf8\x02\x00\x00"\x03\x00\x00!\x03\x00\x00!\x03\x00\x00\xf7\x02\x00\x00\xf8\x02\x00\x00\x9e\x04\x00\x00t\x04\x00\x00\x9f\x04\x00\x00\x9f\x04\x00\x00t\x04\x00\x00u\x04\x00\x00\xb0\x02\x00\x00\xda\x02\x00\x00\xd9\x02\x00\x00\xd9\x02\x00\x00\xaf\x02\x00\x00\xb0\x02\x00\x00\xb0\x02\x00\x00\x85\x02\x00\x00\x86\x02\x00\x00\xb0\x02\x00\x00\xaf\x02\x00\x00\x85\x02\x00\x00\xb0\x02\x00\x00\xdb\x02\x00\x00\xda\x02\x00\x00\xb1\x02\x00\x00\xdb\x02\x00\x00\xb0\x02\x00\x00\xac\x02\x00\x00\xd6\x02\x00\x00\xab\x02\x00\x00\xd6\x02\x00\x00\xd5\x02\x00\x00\xab\x02\x00\x00\x82\x02\x00\x00\xac\x02\x00\x00\xab\x02\x00\x00\xab\x02\x00\x00\x81\x02\x00\x00\x82\x02\x00\x00\xff\x02\x00\x00\xfe\x02\x00\x00\xd4\x02\x00\x00\xd4\x02\x00\x00\xd5\x02\x00\x00\xff\x02\x00\x00\xab\x02\x00\x00\xd5\x02\x00\x00\xd4\x02\x00\x00\xd4\x02\x00\x00\xaa\x02\x00\x00\xab\x02\x00\x00\xd1\x02\x00\x00\xfa\x02\x00\x00\xd0\x02\x00\x00\xd1\x02\x00\x00\xfb\x02\x00\x00\xfa\x02\x00\x00\'\x03\x00\x00&\x03\x00\x00\xfc\x02\x00\x00\xfc\x02\x00\x00\xfd\x02\x00\x00\'\x03\x00\x00\xfc\x02\x00\x00\xfb\x02\x00\x00\xd1\x02\x00\x00\xd1\x02\x00\x00\xd2\x02\x00\x00\xfc\x02\x00\x00\x00\x03\x00\x00\xd6\x02\x00\x00\xd7\x02\x00\x00\xd7\x02\x00\x00\x01\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x01\x03\x00\x00+\x03\x00\x00\x00\x03\x00\x00+\x03\x00\x00*\x03\x00\x00\x00\x03\x00\x00\xd5\x02\x00\x00\xd6\x02\x00\x00\xff\x02\x00\x00\xd5\x02\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00*\x03\x00\x00)\x03\x00\x00)\x03\x00\x00\xff\x02\x00\x00\x00\x03\x00\x00{\x03\x00\x00z\x03\x00\x00Q\x03\x00\x00Q\x03\x00\x00z\x03\x00\x00P\x03\x00\x00Q\x03\x00\x00&\x03\x00\x00\'\x03\x00\x00Q\x03\x00\x00P\x03\x00\x00&\x03\x00\x00Q\x03\x00\x00R\x03\x00\x00|\x03\x00\x00|\x03\x00\x00{\x03\x00\x00Q\x03\x00\x00(\x03\x00\x00\xfe\x02\x00\x00\xff\x02\x00\x00(\x03\x00\x00\xff\x02\x00\x00)\x03\x00\x00)\x03\x00\x00S\x03\x00\x00(\x03\x00\x00(\x03\x00\x00S\x03\x00\x00R\x03\x00\x00\'\x03\x00\x00\xfd\x02\x00\x00(\x03\x00\x00(\x03\x00\x00\xfd\x02\x00\x00\xfe\x02\x00\x00Q\x03\x00\x00\'\x03\x00\x00(\x03\x00\x00(\x03\x00\x00R\x03\x00\x00Q\x03\x00\x00&\x02\x00\x00\xfc\x01\x00\x00\'\x02\x00\x00\xfc\x01\x00\x00\xfd\x01\x00\x00\'\x02\x00\x00\'\x02\x00\x00\xfd\x01\x00\x00\xfe\x01\x00\x00\'\x02\x00\x00\xfe\x01\x00\x00(\x02\x00\x00)\x02\x00\x00\xfe\x01\x00\x00\xff\x01\x00\x00(\x02\x00\x00\xfe\x01\x00\x00)\x02\x00\x00+\x02\x00\x00\x02\x02\x00\x00,\x02\x00\x00\x01\x02\x00\x00\x02\x02\x00\x00+\x02\x00\x00S\x02\x00\x00(\x02\x00\x00)\x02\x00\x00S\x02\x00\x00R\x02\x00\x00(\x02\x00\x00S\x02\x00\x00*\x02\x00\x00T\x02\x00\x00)\x02\x00\x00*\x02\x00\x00S\x02\x00\x00\xd7\x01\x00\x00\xae\x01\x00\x00\xd8\x01\x00\x00\xad\x01\x00\x00\xae\x01\x00\x00\xd7\x01\x00\x00\xd8\x01\x00\x00\x02\x02\x00\x00\xd7\x01\x00\x00\xd7\x01\x00\x00\x02\x02\x00\x00\x01\x02\x00\x00X\x03\x00\x00W\x03\x00\x00-\x03\x00\x00-\x03\x00\x00.\x03\x00\x00X\x03\x00\x00-\x03\x00\x00W\x03\x00\x00V\x03\x00\x00-\x03\x00\x00V\x03\x00\x00,\x03\x00\x00\xae\x02\x00\x00\xaf\x02\x00\x00\xd8\x02\x00\x00\xd8\x02\x00\x00\xaf\x02\x00\x00\xd9\x02\x00\x00\x02\x03\x00\x00\x01\x03\x00\x00\xd8\x02\x00\x00\xd8\x02\x00\x00\x01\x03\x00\x00\xd7\x02\x00\x00\xd7\x02\x00\x00\xad\x02\x00\x00\xd8\x02\x00\x00\xd8\x02\x00\x00\xad\x02\x00\x00\xae\x02\x00\x00H\x02\x00\x00G\x02\x00\x00\x1d\x02\x00\x00\x1d\x02\x00\x00\x1e\x02\x00\x00H\x02\x00\x00y\x01\x00\x00\xa3\x01\x00\x00\xa2\x01\x00\x00\xa2\x01\x00\x00x\x01\x00\x00y\x01\x00\x00\xa2\x01\x00\x00\xa3\x01\x00\x00\xcd\x01\x00\x00\xcd\x01\x00\x00\xcc\x01\x00\x00\xa2\x01\x00\x00w\x01\x00\x00x\x01\x00\x00\xa2\x01\x00\x00\xa2\x01\x00\x00\xa1\x01\x00\x00w\x01\x00\x00\xcb\x01\x00\x00\xa1\x01\x00\x00\xa2\x01\x00\x00\xa2\x01\x00\x00\xcc\x01\x00\x00\xcb\x01\x00\x00\xf6\x01\x00\x00\xf5\x01\x00\x00\xcb\x01\x00\x00\xcb\x01\x00\x00\xcc\x01\x00\x00\xf6\x01\x00\x00\xf7\x01\x00\x00!\x02\x00\x00\xf6\x01\x00\x00\xf6\x01\x00\x00!\x02\x00\x00 \x02\x00\x00\xcd\x01\x00\x00\xf7\x01\x00\x00\xf6\x01\x00\x00\xf6\x01\x00\x00\xcc\x01\x00\x00\xcd\x01\x00\x00\xf3\x01\x00\x00\x1c\x02\x00\x00\xf2\x01\x00\x00\x1d\x02\x00\x00\x1c\x02\x00\x00\xf3\x01\x00\x00\xf3\x01\x00\x00\x1e\x02\x00\x00\x1d\x02\x00\x00\xf4\x01\x00\x00\x1e\x02\x00\x00\xf3\x01\x00\x00o\x02\x00\x00p\x02\x00\x00\x99\x02\x00\x00p\x02\x00\x00\x9a\x02\x00\x00\x99\x02\x00\x00\x98\x02\x00\x00n\x02\x00\x00\x99\x02\x00\x00\x99\x02\x00\x00n\x02\x00\x00o\x02\x00\x00\xee\x02\x00\x00\x18\x03\x00\x00\xed\x02\x00\x00\xed\x02\x00\x00\x18\x03\x00\x00\x17\x03\x00\x00\xed\x02\x00\x00\x16\x03\x00\x00\xec\x02\x00\x00\x17\x03\x00\x00\x16\x03\x00\x00\xed\x02\x00\x00\xc0\x02\x00\x00\xea\x02\x00\x00\xe9\x02\x00\x00\xe9\x02\x00\x00\xbf\x02\x00\x00\xc0\x02\x00\x00\xc1\x02\x00\x00\xeb\x02\x00\x00\xc0\x02\x00\x00\xc0\x02\x00\x00\xeb\x02\x00\x00\xea\x02\x00\x00\x94\x02\x00\x00\x93\x02\x00\x00i\x02\x00\x00i\x02\x00\x00j\x02\x00\x00\x94\x02\x00\x00j\x02\x00\x00k\x02\x00\x00\x94\x02\x00\x00\x94\x02\x00\x00k\x02\x00\x00\x95\x02\x00\x00\xbc\x02\x00\x00\xbd\x02\x00\x00\xe7\x02\x00\x00\xe6\x02\x00\x00\xbc\x02\x00\x00\xe7\x02\x00\x00\x12\x03\x00\x00\x13\x03\x00\x00=\x03\x00\x00=\x03\x00\x00<\x03\x00\x00\x12\x03\x00\x00\xe9\x02\x00\x00\x13\x03\x00\x00\x12\x03\x00\x00\x12\x03\x00\x00\xe8\x02\x00\x00\xe9\x02\x00\x00\x12\x03\x00\x00<\x03\x00\x00;\x03\x00\x00;\x03\x00\x00\x11\x03\x00\x00\x12\x03\x00\x00\x12\x03\x00\x00\x11\x03\x00\x00\xe7\x02\x00\x00\xe7\x02\x00\x00\xe8\x02\x00\x00\x12\x03\x00\x00\xef\x02\x00\x00\xc5\x02\x00\x00\xc6\x02\x00\x00\xc6\x02\x00\x00\xf0\x02\x00\x00\xef\x02\x00\x00\xc6\x02\x00\x00\x9d\x02\x00\x00\xc7\x02\x00\x00\x9c\x02\x00\x00\x9d\x02\x00\x00\xc6\x02\x00\x00\xc4\x02\x00\x00\xc5\x02\x00\x00\xef\x02\x00\x00\xef\x02\x00\x00\xee\x02\x00\x00\xc4\x02\x00\x00\x9b\x02\x00\x00\x9a\x02\x00\x00p\x02\x00\x00\x9b\x02\x00\x00p\x02\x00\x00q\x02\x00\x00\x9b\x02\x00\x00\xc5\x02\x00\x00\xc4\x02\x00\x00\xc4\x02\x00\x00\x9a\x02\x00\x00\x9b\x02\x00\x00\xc6\x02\x00\x00\xc5\x02\x00\x00\x9b\x02\x00\x00\x9b\x02\x00\x00\x9c\x02\x00\x00\xc6\x02\x00\x00\xc1\x03\x00\x00\xc0\x03\x00\x00\x96\x03\x00\x00\x96\x03\x00\x00\x97\x03\x00\x00\xc1\x03\x00\x00\x17\x03\x00\x00\x18\x03\x00\x00B\x03\x00\x00A\x03\x00\x00\x17\x03\x00\x00B\x03\x00\x00l\x03\x00\x00k\x03\x00\x00B\x03\x00\x00B\x03\x00\x00k\x03\x00\x00A\x03\x00\x00\xc1\x03\x00\x00\x97\x03\x00\x00\xc2\x03\x00\x00\xc2\x03\x00\x00\x97\x03\x00\x00\x98\x03\x00\x00n\x03\x00\x00o\x03\x00\x00\x99\x03\x00\x00\x98\x03\x00\x00n\x03\x00\x00\x99\x03\x00\x00\xc2\x03\x00\x00\x98\x03\x00\x00\x99\x03\x00\x00\x99\x03\x00\x00\xc3\x03\x00\x00\xc2\x03\x00\x00\xf6\x00\x00\x00\xf5\x00\x00\x00\xcc\x00\x00\x00\xcc\x00\x00\x00\xf5\x00\x00\x00\xcb\x00\x00\x00\xcc\x00\x00\x00\xa3\x00\x00\x00\xcd\x00\x00\x00\xcc\x00\x00\x00\xa2\x00\x00\x00\xa3\x00\x00\x00\xcd\x00\x00\x00\xf7\x00\x00\x00\xcc\x00\x00\x00\xcc\x00\x00\x00\xf7\x00\x00\x00\xf6\x00\x00\x00$\x01\x00\x00#\x01\x00\x00\xf9\x00\x00\x00\xf9\x00\x00\x00\xfa\x00\x00\x00$\x01\x00\x00\xf9\x00\x00\x00#\x01\x00\x00"\x01\x00\x00\xf9\x00\x00\x00"\x01\x00\x00\xf8\x00\x00\x00\x1f\x01\x00\x00 \x01\x00\x00J\x01\x00\x00I\x01\x00\x00\x1f\x01\x00\x00J\x01\x00\x00#\x08\x00\x00"\x08\x00\x00\xf8\x07\x00\x00\xf8\x07\x00\x00\xf9\x07\x00\x00#\x08\x00\x00\xce\x07\x00\x00\xcf\x07\x00\x00\xf8\x07\x00\x00\xf8\x07\x00\x00\xcf\x07\x00\x00\xf9\x07\x00\x00"\x08\x00\x00!\x08\x00\x00\xf8\x07\x00\x00\xf8\x07\x00\x00!\x08\x00\x00\xf7\x07\x00\x00\xf7\x07\x00\x00\xcd\x07\x00\x00\xf8\x07\x00\x00\xf8\x07\x00\x00\xcd\x07\x00\x00\xce\x07\x00\x00*\x07\x00\x00)\x07\x00\x00\xff\x06\x00\x00\xff\x06\x00\x00\x00\x07\x00\x00*\x07\x00\x00T\x07\x00\x00S\x07\x00\x00*\x07\x00\x00*\x07\x00\x00S\x07\x00\x00)\x07\x00\x00\xfd\x06\x00\x00\xfc\x06\x00\x00\xd2\x06\x00\x00\xd2\x06\x00\x00\xd3\x06\x00\x00\xfd\x06\x00\x00\xfd\x06\x00\x00\xd3\x06\x00\x00\xd4\x06\x00\x00\xd4\x06\x00\x00\xfe\x06\x00\x00\xfd\x06\x00\x00\'\x08\x00\x00&\x08\x00\x00\xfc\x07\x00\x00\xfc\x07\x00\x00\xfd\x07\x00\x00\'\x08\x00\x00\xd3\x07\x00\x00\xfd\x07\x00\x00\xfc\x07\x00\x00\xfc\x07\x00\x00\xd2\x07\x00\x00\xd3\x07\x00\x00\xfc\x07\x00\x00&\x08\x00\x00%\x08\x00\x00%\x08\x00\x00\xfb\x07\x00\x00\xfc\x07\x00\x00\xfc\x07\x00\x00\xd1\x07\x00\x00\xd2\x07\x00\x00\xfb\x07\x00\x00\xd1\x07\x00\x00\xfc\x07\x00\x00\xd0\x07\x00\x00\xcf\x07\x00\x00\xa5\x07\x00\x00\xa5\x07\x00\x00\xa6\x07\x00\x00\xd0\x07\x00\x00\xfa\x07\x00\x00\xf9\x07\x00\x00\xd0\x07\x00\x00\xf9\x07\x00\x00\xcf\x07\x00\x00\xd0\x07\x00\x00\xd0\x07\x00\x00\xfb\x07\x00\x00\xfa\x07\x00\x00\xd0\x07\x00\x00\xd1\x07\x00\x00\xfb\x07\x00\x00\xdc\x02\x00\x00\x05\x03\x00\x00\xdb\x02\x00\x00\x06\x03\x00\x00\x05\x03\x00\x00\xdc\x02\x00\x00[\x03\x00\x00\x86\x03\x00\x00\x85\x03\x00\x00[\x03\x00\x00\\\x03\x00\x00\x86\x03\x00\x00Z\x03\x00\x000\x03\x00\x00[\x03\x00\x000\x03\x00\x001\x03\x00\x00[\x03\x00\x00\x87\x02\x00\x00^\x02\x00\x00\x88\x02\x00\x00]\x02\x00\x00^\x02\x00\x00\x87\x02\x00\x00\xb0\x02\x00\x00\x86\x02\x00\x00\x87\x02\x00\x00\x87\x02\x00\x00\xb1\x02\x00\x00\xb0\x02\x00\x00\\\x02\x00\x00]\x02\x00\x00\x87\x02\x00\x00\x87\x02\x00\x00\x86\x02\x00\x00\\\x02\x00\x00\x88\x02\x00\x00^\x02\x00\x00\x89\x02\x00\x00\x89\x02\x00\x00^\x02\x00\x00_\x02\x00\x00\x88\x03\x00\x00\xb2\x03\x00\x00\xb1\x03\x00\x00\x88\x03\x00\x00\xb1\x03\x00\x00\x87\x03\x00\x00\xb3\x03\x00\x00\xb2\x03\x00\x00\x88\x03\x00\x00\x89\x03\x00\x00\xb3\x03\x00\x00\x88\x03\x00\x00C\x02\x00\x00B\x02\x00\x00\x18\x02\x00\x00\x18\x02\x00\x00\x19\x02\x00\x00C\x02\x00\x00l\x02\x00\x00B\x02\x00\x00C\x02\x00\x00m\x02\x00\x00l\x02\x00\x00C\x02\x00\x00;\x03\x00\x00:\x03\x00\x00\x10\x03\x00\x00\x10\x03\x00\x00\x11\x03\x00\x00;\x03\x00\x00\x10\x03\x00\x00\xe6\x02\x00\x00\xe7\x02\x00\x00\xe7\x02\x00\x00\x11\x03\x00\x00\x10\x03\x00\x00\xe5\x02\x00\x00\xbc\x02\x00\x00\xe6\x02\x00\x00\xbb\x02\x00\x00\xbc\x02\x00\x00\xe5\x02\x00\x00\x0b\x02\x00\x00\xe0\x01\x00\x00\xe1\x01\x00\x00\x0b\x02\x00\x00\n\x02\x00\x00\xe0\x01\x00\x00\xe1\x01\x00\x00\xe2\x01\x00\x00\x0b\x02\x00\x00\x0b\x02\x00\x00\xe2\x01\x00\x00\x0c\x02\x00\x00\xbc\x01\x00\x00\x91\x01\x00\x00\x92\x01\x00\x00\xbb\x01\x00\x00\x91\x01\x00\x00\xbc\x01\x00\x00\xbc\x01\x00\x00\x92\x01\x00\x00\x93\x01\x00\x00\xbc\x01\x00\x00\x93\x01\x00\x00\xbd\x01\x00\x00e\x02\x00\x00:\x02\x00\x00;\x02\x00\x00e\x02\x00\x00d\x02\x00\x00:\x02\x00\x00\x90\x02\x00\x00\x8f\x02\x00\x00e\x02\x00\x00e\x02\x00\x00f\x02\x00\x00\x90\x02\x00\x00<\x02\x00\x00f\x02\x00\x00e\x02\x00\x00;\x02\x00\x00<\x02\x00\x00e\x02\x00\x00\x0c\x02\x00\x00\r\x02\x00\x007\x02\x00\x007\x02\x00\x006\x02\x00\x00\x0c\x02\x00\x00\r\x02\x00\x00\x0e\x02\x00\x007\x02\x00\x007\x02\x00\x00\x0e\x02\x00\x008\x02\x00\x00?\x05\x00\x00\x14\x05\x00\x00\x15\x05\x00\x00>\x05\x00\x00\x14\x05\x00\x00?\x05\x00\x00i\x05\x00\x00h\x05\x00\x00?\x05\x00\x00?\x05\x00\x00h\x05\x00\x00>\x05\x00\x00i\x05\x00\x00\x93\x05\x00\x00\x92\x05\x00\x00\x92\x05\x00\x00h\x05\x00\x00i\x05\x00\x00\x92\x05\x00\x00\x93\x05\x00\x00\xbd\x05\x00\x00\xbd\x05\x00\x00\xbc\x05\x00\x00\x92\x05\x00\x00g\x05\x00\x00=\x05\x00\x00>\x05\x00\x00>\x05\x00\x00h\x05\x00\x00g\x05\x00\x00g\x05\x00\x00h\x05\x00\x00\x92\x05\x00\x00\x92\x05\x00\x00\x91\x05\x00\x00g\x05\x00\x00\x8f\x05\x00\x00\x90\x05\x00\x00\xba\x05\x00\x00\xba\x05\x00\x00\xb9\x05\x00\x00\x8f\x05\x00\x00\xe3\x05\x00\x00\xb9\x05\x00\x00\xba\x05\x00\x00\xe4\x05\x00\x00\xe3\x05\x00\x00\xba\x05\x00\x00\x8e\x05\x00\x00\xb9\x05\x00\x00\xb8\x05\x00\x00\x8f\x05\x00\x00\xb9\x05\x00\x00\x8e\x05\x00\x00e\x05\x00\x00\x8f\x05\x00\x00\x8e\x05\x00\x00\x8e\x05\x00\x00d\x05\x00\x00e\x05\x00\x00\xc2\x03\x00\x00\xc3\x03\x00\x00\xed\x03\x00\x00\xed\x03\x00\x00\xec\x03\x00\x00\xc2\x03\x00\x00\xc4\x03\x00\x00\xee\x03\x00\x00\xed\x03\x00\x00\xed\x03\x00\x00\xc3\x03\x00\x00\xc4\x03\x00\x00\xed\x03\x00\x00\xee\x03\x00\x00\x18\x04\x00\x00\xed\x03\x00\x00\x18\x04\x00\x00\x17\x04\x00\x00\x16\x04\x00\x00\xec\x03\x00\x00\xed\x03\x00\x00\xed\x03\x00\x00\x17\x04\x00\x00\x16\x04\x00\x00\x95\x04\x00\x00k\x04\x00\x00l\x04\x00\x00l\x04\x00\x00\x96\x04\x00\x00\x95\x04\x00\x00l\x04\x00\x00A\x04\x00\x00B\x04\x00\x00k\x04\x00\x00A\x04\x00\x00l\x04\x00\x00m\x04\x00\x00\x97\x04\x00\x00l\x04\x00\x00\x97\x04\x00\x00\x96\x04\x00\x00l\x04\x00\x00l\x04\x00\x00C\x04\x00\x00m\x04\x00\x00B\x04\x00\x00C\x04\x00\x00l\x04\x00\x00\x95\x04\x00\x00\x96\x04\x00\x00\xbf\x04\x00\x00\xbf\x04\x00\x00\x96\x04\x00\x00\xc0\x04\x00\x00\x9a\x03\x00\x00\xc5\x03\x00\x00\xc4\x03\x00\x00\x9b\x03\x00\x00\xc5\x03\x00\x00\x9a\x03\x00\x00p\x03\x00\x00q\x03\x00\x00\x9a\x03\x00\x00\x9a\x03\x00\x00q\x03\x00\x00\x9b\x03\x00\x00\x9a\x03\x00\x00\xc3\x03\x00\x00\x99\x03\x00\x00\xc4\x03\x00\x00\xc3\x03\x00\x00\x9a\x03\x00\x00\x9a\x03\x00\x00o\x03\x00\x00p\x03\x00\x00\x99\x03\x00\x00o\x03\x00\x00\x9a\x03\x00\x00\x1b\x03\x00\x00E\x03\x00\x00D\x03\x00\x00D\x03\x00\x00\x1a\x03\x00\x00\x1b\x03\x00\x00\x1b\x03\x00\x00F\x03\x00\x00E\x03\x00\x00\x1c\x03\x00\x00F\x03\x00\x00\x1b\x03\x00\x00\xc1\x04\x00\x00\x96\x04\x00\x00\x97\x04\x00\x00\xc0\x04\x00\x00\x96\x04\x00\x00\xc1\x04\x00\x00\xeb\x04\x00\x00\xea\x04\x00\x00\xc1\x04\x00\x00\xc1\x04\x00\x00\xea\x04\x00\x00\xc0\x04\x00\x00\xbd\x04\x00\x00\x93\x04\x00\x00\xbe\x04\x00\x00\xbe\x04\x00\x00\x93\x04\x00\x00\x94\x04\x00\x00\xbe\x04\x00\x00\xe7\x04\x00\x00\xbd\x04\x00\x00\xe8\x04\x00\x00\xe7\x04\x00\x00\xbe\x04\x00\x00\xbe\x04\x00\x00\x95\x04\x00\x00\xbf\x04\x00\x00\xbe\x04\x00\x00\x94\x04\x00\x00\x95\x04\x00\x00\x92\x04\x00\x00\xbb\x04\x00\x00\x91\x04\x00\x00\xbc\x04\x00\x00\xbb\x04\x00\x00\x92\x04\x00\x00\xbd\x04\x00\x00\xbc\x04\x00\x00\x92\x04\x00\x00\x92\x04\x00\x00\x93\x04\x00\x00\xbd\x04\x00\x00i\x04\x00\x00\x93\x04\x00\x00\x92\x04\x00\x00\x92\x04\x00\x00h\x04\x00\x00i\x04\x00\x00\x92\x04\x00\x00\x91\x04\x00\x00g\x04\x00\x00g\x04\x00\x00h\x04\x00\x00\x92\x04\x00\x00\xfe\x07\x00\x00\xfd\x07\x00\x00\xd4\x07\x00\x00\xd4\x07\x00\x00\xfd\x07\x00\x00\xd3\x07\x00\x00\xd3\x07\x00\x00\xa9\x07\x00\x00\xd4\x07\x00\x00\xd4\x07\x00\x00\xa9\x07\x00\x00\xaa\x07\x00\x00\x88\x07\x00\x00^\x07\x00\x00_\x07\x00\x00_\x07\x00\x00\x89\x07\x00\x00\x88\x07\x00\x00\xde\x06\x00\x00\xb4\x06\x00\x00\xb5\x06\x00\x00\xb5\x06\x00\x00\xdf\x06\x00\x00\xde\x06\x00\x00\xde\x06\x00\x00\t\x07\x00\x00\x08\x07\x00\x00\xde\x06\x00\x00\xdf\x06\x00\x00\t\x07\x00\x00\xe6\x05\x00\x00\xbd\x05\x00\x00\xe7\x05\x00\x00\xe6\x05\x00\x00\xbc\x05\x00\x00\xbd\x05\x00\x00\x0e\x06\x00\x00\r\x06\x00\x00\xe3\x05\x00\x00\x0e\x06\x00\x00\xe3\x05\x00\x00\xe4\x05\x00\x00\xe4\x05\x00\x00\xe5\x05\x00\x00\x0e\x06\x00\x00\x0e\x06\x00\x00\xe5\x05\x00\x00\x0f\x06\x00\x00\xd8\x07\x00\x00\xae\x07\x00\x00\xd9\x07\x00\x00\xd9\x07\x00\x00\xae\x07\x00\x00\xaf\x07\x00\x00\x11\x05\x00\x00\xe7\x04\x00\x00\xe8\x04\x00\x00\xe8\x04\x00\x00\x12\x05\x00\x00\x11\x05\x00\x00\xe6\x04\x00\x00\xe7\x04\x00\x00\x11\x05\x00\x00\x10\x05\x00\x00\xe6\x04\x00\x00\x11\x05\x00\x00\x82\x05\x00\x00X\x05\x00\x00\x83\x05\x00\x00\x83\x05\x00\x00X\x05\x00\x00Y\x05\x00\x00\x07\x07\x00\x001\x07\x00\x000\x07\x00\x000\x07\x00\x00\x06\x07\x00\x00\x07\x07\x00\x00\xde\x06\x00\x00\x08\x07\x00\x00\x07\x07\x00\x00\x07\x07\x00\x00\xdd\x06\x00\x00\xde\x06\x00\x00\x08\x07\x00\x002\x07\x00\x00\x07\x07\x00\x00\x07\x07\x00\x002\x07\x00\x001\x07\x00\x00\x07\x07\x00\x00\x06\x07\x00\x00\xdc\x06\x00\x00\xdc\x06\x00\x00\xdd\x06\x00\x00\x07\x07\x00\x00\x05\x07\x00\x00\x06\x07\x00\x000\x07\x00\x000\x07\x00\x00/\x07\x00\x00\x05\x07\x00\x00\xb0\x06\x00\x00\xaf\x06\x00\x00\x85\x06\x00\x00\x85\x06\x00\x00\x86\x06\x00\x00\xb0\x06\x00\x00\xb0\x06\x00\x00\x86\x06\x00\x00\x87\x06\x00\x00\xb0\x06\x00\x00\x87\x06\x00\x00\xb1\x06\x00\x00X\x07\x00\x00\x82\x07\x00\x00W\x07\x00\x00\x82\x07\x00\x00\x81\x07\x00\x00W\x07\x00\x00\xd8\x06\x00\x00\xd7\x06\x00\x00\xad\x06\x00\x00\xad\x06\x00\x00\xae\x06\x00\x00\xd8\x06\x00\x00\xdf\x05\x00\x00\xe0\x05\x00\x00\n\x06\x00\x00\n\x06\x00\x00\t\x06\x00\x00\xdf\x05\x00\x00\n\x06\x00\x00\xe1\x05\x00\x00\x0b\x06\x00\x00\xe0\x05\x00\x00\xe1\x05\x00\x00\n\x06\x00\x00\xb6\x05\x00\x00\xe0\x05\x00\x00\xdf\x05\x00\x00\xdf\x05\x00\x00\xb5\x05\x00\x00\xb6\x05\x00\x00\xb7\x05\x00\x00\xe1\x05\x00\x00\xb6\x05\x00\x00\xb6\x05\x00\x00\xe1\x05\x00\x00\xe0\x05\x00\x003\x06\x00\x00\t\x06\x00\x00\n\x06\x00\x00\n\x06\x00\x004\x06\x00\x003\x06\x00\x00\x85\x06\x00\x00[\x06\x00\x00\\\x06\x00\x00\\\x06\x00\x00\x86\x06\x00\x00\x85\x06\x00\x00]\x06\x00\x00\x87\x06\x00\x00\\\x06\x00\x00\x87\x06\x00\x00\x86\x06\x00\x00\\\x06\x00\x00\xb1\x06\x00\x00\x87\x06\x00\x00\x88\x06\x00\x00\xb2\x06\x00\x00\xb1\x06\x00\x00\x88\x06\x00\x00\x0b\x06\x00\x00\x0c\x06\x00\x005\x06\x00\x00\x0c\x06\x00\x006\x06\x00\x005\x06\x00\x00\n\x06\x00\x00\x0b\x06\x00\x005\x06\x00\x005\x06\x00\x004\x06\x00\x00\n\x06\x00\x00\xf0\x04\x00\x00\xef\x04\x00\x00\xc5\x04\x00\x00\xc5\x04\x00\x00\xc6\x04\x00\x00\xf0\x04\x00\x00\x19\x05\x00\x00\xef\x04\x00\x00\xf0\x04\x00\x00\x1a\x05\x00\x00\x19\x05\x00\x00\xf0\x04\x00\x00\xc6\x04\x00\x00\xc7\x04\x00\x00\xf0\x04\x00\x00\xc7\x04\x00\x00\xf1\x04\x00\x00\xf0\x04\x00\x00\xf0\x04\x00\x00\x1b\x05\x00\x00\x1a\x05\x00\x00\xf0\x04\x00\x00\xf1\x04\x00\x00\x1b\x05\x00\x00v\x07\x00\x00\x9f\x07\x00\x00u\x07\x00\x00v\x07\x00\x00\xa0\x07\x00\x00\x9f\x07\x00\x00M\x07\x00\x00w\x07\x00\x00v\x07\x00\x00v\x07\x00\x00L\x07\x00\x00M\x07\x00\x00\xa1\x07\x00\x00\xa0\x07\x00\x00v\x07\x00\x00w\x07\x00\x00\xa1\x07\x00\x00v\x07\x00\x00\x9f\x07\x00\x00\xa0\x07\x00\x00\xca\x07\x00\x00\xc9\x07\x00\x00\x9f\x07\x00\x00\xca\x07\x00\x00\xf4\x07\x00\x00\xf3\x07\x00\x00\xca\x07\x00\x00\xca\x07\x00\x00\xf3\x07\x00\x00\xc9\x07\x00\x00\xca\x07\x00\x00\xa0\x07\x00\x00\xa1\x07\x00\x00\xca\x07\x00\x00\xa1\x07\x00\x00\xcb\x07\x00\x00\xca\x07\x00\x00\xf5\x07\x00\x00\xf4\x07\x00\x00\xcb\x07\x00\x00\xf5\x07\x00\x00\xca\x07\x00\x00%\x07\x00\x00\xfb\x06\x00\x00&\x07\x00\x00\xfb\x06\x00\x00\xfc\x06\x00\x00&\x07\x00\x00&\x07\x00\x00\xfc\x06\x00\x00\xfd\x06\x00\x00\xfd\x06\x00\x00\'\x07\x00\x00&\x07\x00\x00O\x07\x00\x00%\x07\x00\x00&\x07\x00\x00&\x07\x00\x00P\x07\x00\x00O\x07\x00\x00\xa3\x07\x00\x00\xa4\x07\x00\x00\xce\x07\x00\x00\xce\x07\x00\x00\xcd\x07\x00\x00\xa3\x07\x00\x00#\x07\x00\x00\xf8\x06\x00\x00\xf9\x06\x00\x00"\x07\x00\x00\xf8\x06\x00\x00#\x07\x00\x00M\x07\x00\x00L\x07\x00\x00#\x07\x00\x00#\x07\x00\x00L\x07\x00\x00"\x07\x00\x00O\x06\x00\x00y\x06\x00\x00x\x06\x00\x00x\x06\x00\x00N\x06\x00\x00O\x06\x00\x00y\x06\x00\x00\xa3\x06\x00\x00x\x06\x00\x00x\x06\x00\x00\xa3\x06\x00\x00\xa2\x06\x00\x00\xa2\x06\x00\x00\xcc\x06\x00\x00\xa1\x06\x00\x00\xcc\x06\x00\x00\xcb\x06\x00\x00\xa1\x06\x00\x00J\x06\x00\x00 \x06\x00\x00K\x06\x00\x00K\x06\x00\x00 \x06\x00\x00!\x06\x00\x00!\x06\x00\x00"\x06\x00\x00K\x06\x00\x00K\x06\x00\x00"\x06\x00\x00L\x06\x00\x00\x97\x07\x00\x00l\x07\x00\x00m\x07\x00\x00\x97\x07\x00\x00\x96\x07\x00\x00l\x07\x00\x00\xc1\x07\x00\x00\xc0\x07\x00\x00\x97\x07\x00\x00\xc0\x07\x00\x00\x96\x07\x00\x00\x97\x07\x00\x00\x19\x08\x00\x00\x18\x08\x00\x00\xee\x07\x00\x00\xee\x07\x00\x00\xef\x07\x00\x00\x19\x08\x00\x00\xee\x07\x00\x00\xc5\x07\x00\x00\xef\x07\x00\x00\xc4\x07\x00\x00\xc5\x07\x00\x00\xee\x07\x00\x00\xbd\x06\x00\x00\x93\x06\x00\x00\x94\x06\x00\x00\xbd\x06\x00\x00\x94\x06\x00\x00\xbe\x06\x00\x00\x92\x06\x00\x00\x91\x06\x00\x00g\x06\x00\x00g\x06\x00\x00h\x06\x00\x00\x92\x06\x00\x00\xbb\x06\x00\x00\x91\x06\x00\x00\x92\x06\x00\x00\xbc\x06\x00\x00\xbb\x06\x00\x00\x92\x06\x00\x00i\x06\x00\x00\x93\x06\x00\x00\x92\x06\x00\x00\x92\x06\x00\x00h\x06\x00\x00i\x06\x00\x00\x92\x06\x00\x00\x93\x06\x00\x00\xbd\x06\x00\x00\xbd\x06\x00\x00\xbc\x06\x00\x00\x92\x06\x00\x00\x0f\x07\x00\x00\xe5\x06\x00\x00\xe6\x06\x00\x00\xe6\x06\x00\x00\x10\x07\x00\x00\x0f\x07\x00\x00\xe6\x06\x00\x00\xe5\x06\x00\x00\xbb\x06\x00\x00\xe6\x06\x00\x00\xbb\x06\x00\x00\xbc\x06\x00\x00\xe6\x06\x00\x00\xbc\x06\x00\x00\xbd\x06\x00\x00\xbd\x06\x00\x00\xe7\x06\x00\x00\xe6\x06\x00\x00?\x07\x00\x00>\x07\x00\x00\x15\x07\x00\x00\x15\x07\x00\x00>\x07\x00\x00\x14\x07\x00\x00\x15\x07\x00\x00@\x07\x00\x00?\x07\x00\x00\x16\x07\x00\x00@\x07\x00\x00\x15\x07\x00\x00\xec\x06\x00\x00\x17\x07\x00\x00\x16\x07\x00\x00\xed\x06\x00\x00\x17\x07\x00\x00\xec\x06\x00\x00\xc1\x06\x00\x00\xc2\x06\x00\x00\xec\x06\x00\x00\xec\x06\x00\x00\xeb\x06\x00\x00\xc1\x06\x00\x00\xec\x06\x00\x00\x16\x07\x00\x00\x15\x07\x00\x00\x15\x07\x00\x00\xeb\x06\x00\x00\xec\x06\x00\x00\x98\x06\x00\x00\x99\x06\x00\x00\xc3\x06\x00\x00\xc3\x06\x00\x00\xc2\x06\x00\x00\x98\x06\x00\x00\xc3\x06\x00\x00\xed\x06\x00\x00\xec\x06\x00\x00\xec\x06\x00\x00\xc2\x06\x00\x00\xc3\x06\x00\x00\xc3\x06\x00\x00\x99\x06\x00\x00\x9a\x06\x00\x00\x9a\x06\x00\x00\xc4\x06\x00\x00\xc3\x06\x00\x00\xc3\x06\x00\x00\xee\x06\x00\x00\xed\x06\x00\x00\xc3\x06\x00\x00\xc4\x06\x00\x00\xee\x06\x00\x00;\x07\x00\x00<\x07\x00\x00f\x07\x00\x00f\x07\x00\x00e\x07\x00\x00;\x07\x00\x00;\x07\x00\x00d\x07\x00\x00:\x07\x00\x00;\x07\x00\x00e\x07\x00\x00d\x07\x00\x00\xba\x07\x00\x00\xe5\x07\x00\x00\xe4\x07\x00\x00\xbb\x07\x00\x00\xe5\x07\x00\x00\xba\x07\x00\x00\x91\x07\x00\x00\xbb\x07\x00\x00\xba\x07\x00\x00\x90\x07\x00\x00\x91\x07\x00\x00\xba\x07\x00\x00\xba\x07\x00\x00\xe4\x07\x00\x00\xe3\x07\x00\x00\xba\x07\x00\x00\xe3\x07\x00\x00\xb9\x07\x00\x00\xba\x07\x00\x00\xb9\x07\x00\x00\x8f\x07\x00\x00\x8f\x07\x00\x00\x90\x07\x00\x00\xba\x07\x00\x00\xd4\x06\x00\x00\xd3\x06\x00\x00\xa9\x06\x00\x00\xa9\x06\x00\x00\xaa\x06\x00\x00\xd4\x06\x00\x00\xa9\x06\x00\x00\x7f\x06\x00\x00\x80\x06\x00\x00\x80\x06\x00\x00\xaa\x06\x00\x00\xa9\x06\x00\x00\xa9\x06\x00\x00\xd3\x06\x00\x00\xd2\x06\x00\x00\xd2\x06\x00\x00\xa8\x06\x00\x00\xa9\x06\x00\x00\xa8\x06\x00\x00~\x06\x00\x00\xa9\x06\x00\x00\xa9\x06\x00\x00~\x06\x00\x00\x7f\x06\x00\x00\xa6\x06\x00\x00\xa5\x06\x00\x00{\x06\x00\x00{\x06\x00\x00|\x06\x00\x00\xa6\x06\x00\x00\xcf\x06\x00\x00\xa5\x06\x00\x00\xa6\x06\x00\x00\xd0\x06\x00\x00\xcf\x06\x00\x00\xa6\x06\x00\x00\xa6\x06\x00\x00}\x06\x00\x00\xa7\x06\x00\x00|\x06\x00\x00}\x06\x00\x00\xa6\x06\x00\x00\xd1\x06\x00\x00\xa7\x06\x00\x00\xa8\x06\x00\x00\xd1\x06\x00\x00\xa8\x06\x00\x00\xd2\x06\x00\x00\xd2\x06\x00\x00\xfc\x06\x00\x00\xd1\x06\x00\x00\xd1\x06\x00\x00\xfc\x06\x00\x00\xfb\x06\x00\x00\xd1\x06\x00\x00\xd0\x06\x00\x00\xa6\x06\x00\x00\xa6\x06\x00\x00\xa7\x06\x00\x00\xd1\x06\x00\x00\xd1\x06\x00\x00\xfa\x06\x00\x00\xd0\x06\x00\x00\xfb\x06\x00\x00\xfa\x06\x00\x00\xd1\x06\x00\x00\x89\x05\x00\x00\xb3\x05\x00\x00\xb2\x05\x00\x00\x88\x05\x00\x00\x89\x05\x00\x00\xb2\x05\x00\x00\xb2\x05\x00\x00\x87\x05\x00\x00\x88\x05\x00\x00\xb1\x05\x00\x00\x87\x05\x00\x00\xb2\x05\x00\x00\xe9\x02\x00\x00\xea\x02\x00\x00\x14\x03\x00\x00\x14\x03\x00\x00\x13\x03\x00\x00\xe9\x02\x00\x00\x14\x03\x00\x00\xeb\x02\x00\x00\x15\x03\x00\x00\xea\x02\x00\x00\xeb\x02\x00\x00\x14\x03\x00\x00\x92\x03\x00\x00\x91\x03\x00\x00h\x03\x00\x00h\x03\x00\x00\x91\x03\x00\x00g\x03\x00\x00h\x03\x00\x00\x93\x03\x00\x00\x92\x03\x00\x00i\x03\x00\x00\x93\x03\x00\x00h\x03\x00\x00\xb6\x04\x00\x00\xb5\x04\x00\x00\x8b\x04\x00\x00\x8b\x04\x00\x00\x8c\x04\x00\x00\xb6\x04\x00\x00\xb6\x04\x00\x00\x8d\x04\x00\x00\xb7\x04\x00\x00\xb6\x04\x00\x00\x8c\x04\x00\x00\x8d\x04\x00\x00\x08\x05\x00\x002\x05\x00\x001\x05\x00\x001\x05\x00\x00\x07\x05\x00\x00\x08\x05\x00\x00Y\x05\x00\x00/\x05\x00\x00Z\x05\x00\x00Z\x05\x00\x00/\x05\x00\x000\x05\x00\x001\x05\x00\x00[\x05\x00\x00Z\x05\x00\x00Z\x05\x00\x000\x05\x00\x001\x05\x00\x00\x06\x05\x00\x00\x07\x05\x00\x001\x05\x00\x001\x05\x00\x000\x05\x00\x00\x06\x05\x00\x00\x06\x05\x00\x00\xdd\x04\x00\x00\x07\x05\x00\x00\xdc\x04\x00\x00\xdd\x04\x00\x00\x06\x05\x00\x00/\x05\x00\x00\x05\x05\x00\x00\x06\x05\x00\x000\x05\x00\x00/\x05\x00\x00\x06\x05\x00\x00\xdb\x04\x00\x00\xdc\x04\x00\x00\x06\x05\x00\x00\x06\x05\x00\x00\x05\x05\x00\x00\xdb\x04\x00\x00\x89\x04\x00\x00\xb3\x04\x00\x00\xb2\x04\x00\x00\xb2\x04\x00\x00\x88\x04\x00\x00\x89\x04\x00\x00\xb2\x04\x00\x00\xdd\x04\x00\x00\xdc\x04\x00\x00\xb3\x04\x00\x00\xdd\x04\x00\x00\xb2\x04\x00\x00\xb8\x03\x00\x00\x8e\x03\x00\x00\x8f\x03\x00\x00\x8f\x03\x00\x00\xb9\x03\x00\x00\xb8\x03\x00\x002\x04\x00\x00\\\x04\x00\x00[\x04\x00\x00[\x04\x00\x001\x04\x00\x002\x04\x00\x00/\x04\x00\x00\x04\x04\x00\x00\x05\x04\x00\x00.\x04\x00\x00\x04\x04\x00\x00/\x04\x00\x00\x07\x04\x00\x00\xdd\x03\x00\x00\xde\x03\x00\x00\xde\x03\x00\x00\x08\x04\x00\x00\x07\x04\x00\x002\x04\x00\x001\x04\x00\x00\x07\x04\x00\x00\x07\x04\x00\x00\x08\x04\x00\x002\x04\x00\x00\xe5\x04\x00\x00\xbc\x04\x00\x00\xe6\x04\x00\x00\xe5\x04\x00\x00\xbb\x04\x00\x00\xbc\x04\x00\x00\xe5\x04\x00\x00\xe6\x04\x00\x00\x10\x05\x00\x00\x10\x05\x00\x00\x0f\x05\x00\x00\xe5\x04\x00\x00\xe3\x04\x00\x00\r\x05\x00\x00\x0c\x05\x00\x00\x0c\x05\x00\x00\xe2\x04\x00\x00\xe3\x04\x00\x00\xe3\x04\x00\x00\xe2\x04\x00\x00\xb8\x04\x00\x00\xb8\x04\x00\x00\xb9\x04\x00\x00\xe3\x04\x00\x009\x05\x00\x00\x0f\x05\x00\x00\x10\x05\x00\x00\x10\x05\x00\x00:\x05\x00\x009\x05\x00\x00:\x05\x00\x00d\x05\x00\x009\x05\x00\x009\x05\x00\x00d\x05\x00\x00c\x05\x00\x009\x05\x00\x008\x05\x00\x00\x0e\x05\x00\x00\x0e\x05\x00\x00\x0f\x05\x00\x009\x05\x00\x00c\x05\x00\x00b\x05\x00\x009\x05\x00\x009\x05\x00\x00b\x05\x00\x008\x05\x00\x007\x05\x00\x008\x05\x00\x00a\x05\x00\x008\x05\x00\x00b\x05\x00\x00a\x05\x00\x00a\x05\x00\x00\x8a\x05\x00\x00`\x05\x00\x00\x8b\x05\x00\x00\x8a\x05\x00\x00a\x05\x00\x00a\x05\x00\x006\x05\x00\x007\x05\x00\x00`\x05\x00\x006\x05\x00\x00a\x05\x00\x00\x8b\x04\x00\x00\xb5\x04\x00\x00\xb4\x04\x00\x00\xb4\x04\x00\x00\x8a\x04\x00\x00\x8b\x04\x00\x00\xb4\x04\x00\x00\xdf\x04\x00\x00\xde\x04\x00\x00\xb5\x04\x00\x00\xdf\x04\x00\x00\xb4\x04\x00\x00\xb4\x04\x00\x00\xb3\x04\x00\x00\x89\x04\x00\x00\x89\x04\x00\x00\x8a\x04\x00\x00\xb4\x04\x00\x00\xde\x04\x00\x00\xdd\x04\x00\x00\xb4\x04\x00\x00\xb4\x04\x00\x00\xdd\x04\x00\x00\xb3\x04\x00\x00\x1b\x08\x00\x00\x1a\x08\x00\x00\xf0\x07\x00\x00\xf1\x07\x00\x00\x1b\x08\x00\x00\xf0\x07\x00\x00\xf0\x07\x00\x00\x1a\x08\x00\x00\x19\x08\x00\x00\x19\x08\x00\x00\xef\x07\x00\x00\xf0\x07\x00\x00\xef\x07\x00\x00\xc5\x07\x00\x00\xf0\x07\x00\x00\xf0\x07\x00\x00\xc5\x07\x00\x00\xc6\x07\x00\x00\xef\x05\x00\x00\xc5\x05\x00\x00\xc6\x05\x00\x00\xc6\x05\x00\x00\xf0\x05\x00\x00\xef\x05\x00\x00\xc7\x05\x00\x00\xf1\x05\x00\x00\xc6\x05\x00\x00\xc6\x05\x00\x00\xf1\x05\x00\x00\xf0\x05\x00\x00A\x06\x00\x00\x17\x06\x00\x00\x18\x06\x00\x00B\x06\x00\x00A\x06\x00\x00\x18\x06\x00\x00C\x06\x00\x00m\x06\x00\x00l\x06\x00\x00C\x06\x00\x00l\x06\x00\x00B\x06\x00\x00C\x06\x00\x00B\x06\x00\x00\x18\x06\x00\x00\x18\x06\x00\x00\x19\x06\x00\x00C\x06\x00\x00\x9a\x05\x00\x00\x9b\x05\x00\x00\xc4\x05\x00\x00\x9b\x05\x00\x00\xc5\x05\x00\x00\xc4\x05\x00\x00\xc5\x06\x00\x00\xef\x06\x00\x00\xee\x06\x00\x00\xee\x06\x00\x00\xc4\x06\x00\x00\xc5\x06\x00\x00\xc5\x06\x00\x00\x9a\x06\x00\x00\x9b\x06\x00\x00\xc5\x06\x00\x00\xc4\x06\x00\x00\x9a\x06\x00\x00\xf0\x06\x00\x00\xef\x06\x00\x00\xc5\x06\x00\x00\xc6\x06\x00\x00\xf0\x06\x00\x00\xc5\x06\x00\x00\x9b\x06\x00\x00\x9c\x06\x00\x00\xc5\x06\x00\x00\xc5\x06\x00\x00\x9c\x06\x00\x00\xc6\x06\x00\x00<\x06\x00\x00\x12\x06\x00\x00=\x06\x00\x00=\x06\x00\x00\x12\x06\x00\x00\x13\x06\x00\x00f\x06\x00\x00<\x06\x00\x00=\x06\x00\x00g\x06\x00\x00f\x06\x00\x00=\x06\x00\x00\x13\x06\x00\x00\x14\x06\x00\x00=\x06\x00\x00\x14\x06\x00\x00>\x06\x00\x00=\x06\x00\x00=\x06\x00\x00h\x06\x00\x00g\x06\x00\x00=\x06\x00\x00>\x06\x00\x00h\x06\x00\x00?\x06\x00\x00\x14\x06\x00\x00\x15\x06\x00\x00?\x06\x00\x00>\x06\x00\x00\x14\x06\x00\x00i\x06\x00\x00h\x06\x00\x00?\x06\x00\x00h\x06\x00\x00>\x06\x00\x00?\x06\x00\x00\x16\x06\x00\x00@\x06\x00\x00?\x06\x00\x00\x15\x06\x00\x00\x16\x06\x00\x00?\x06\x00\x00?\x06\x00\x00j\x06\x00\x00i\x06\x00\x00@\x06\x00\x00j\x06\x00\x00?\x06\x00\x00\x97\x05\x00\x00m\x05\x00\x00\x98\x05\x00\x00\x98\x05\x00\x00m\x05\x00\x00n\x05\x00\x00g\x01\x00\x00\x91\x01\x00\x00f\x01\x00\x00f\x01\x00\x00\x91\x01\x00\x00\x90\x01\x00\x00f\x01\x00\x00\x8f\x01\x00\x00e\x01\x00\x00\x90\x01\x00\x00\x8f\x01\x00\x00f\x01\x00\x00\x0f\x01\x00\x00\xe5\x00\x00\x00\x10\x01\x00\x00\x10\x01\x00\x00\xe5\x00\x00\x00\xe6\x00\x00\x00\x10\x01\x00\x009\x01\x00\x00\x0f\x01\x00\x00:\x01\x00\x009\x01\x00\x00\x10\x01\x00\x00\x10\x01\x00\x00;\x01\x00\x00:\x01\x00\x00\x10\x01\x00\x00\x11\x01\x00\x00;\x01\x00\x00\x10\x01\x00\x00\xe6\x00\x00\x00\xe7\x00\x00\x00\xe7\x00\x00\x00\x11\x01\x00\x00\x10\x01\x00\x00\x12\x01\x00\x00\x11\x01\x00\x00\xe7\x00\x00\x00\xe8\x00\x00\x00\x12\x01\x00\x00\xe7\x00\x00\x00\x96\x00\x00\x00\xc0\x00\x00\x00\xbf\x00\x00\x00\xbf\x00\x00\x00\x95\x00\x00\x00\x96\x00\x00\x00\x91\x00\x00\x00g\x00\x00\x00\x92\x00\x00\x00\x92\x00\x00\x00g\x00\x00\x00h\x00\x00\x00A\x00\x00\x00j\x00\x00\x00@\x00\x00\x00A\x00\x00\x00k\x00\x00\x00j\x00\x00\x00A\x00\x00\x00\x16\x00\x00\x00\x17\x00\x00\x00@\x00\x00\x00\x16\x00\x00\x00A\x00\x00\x00A\x00\x00\x00\x17\x00\x00\x00\x18\x00\x00\x00\x18\x00\x00\x00B\x00\x00\x00A\x00\x00\x00l\x00\x00\x00B\x00\x00\x00C\x00\x00\x00C\x00\x00\x00m\x00\x00\x00l\x00\x00\x00l\x00\x00\x00\x97\x00\x00\x00\x96\x00\x00\x00m\x00\x00\x00\x97\x00\x00\x00l\x00\x00\x00l\x00\x00\x00k\x00\x00\x00A\x00\x00\x00A\x00\x00\x00B\x00\x00\x00l\x00\x00\x00\x96\x00\x00\x00\x95\x00\x00\x00l\x00\x00\x00\x95\x00\x00\x00k\x00\x00\x00l\x00\x00\x00\x9a\x00\x00\x00p\x00\x00\x00q\x00\x00\x00\x9a\x00\x00\x00q\x00\x00\x00\x9b\x00\x00\x00E\x01\x00\x00\x1b\x01\x00\x00\x1c\x01\x00\x00\x1c\x01\x00\x00F\x01\x00\x00E\x01\x00\x00E\x01\x00\x00o\x01\x00\x00n\x01\x00\x00n\x01\x00\x00D\x01\x00\x00E\x01\x00\x00\xc8\x00\x00\x00\xc9\x00\x00\x00\xf3\x00\x00\x00\xf3\x00\x00\x00\xf2\x00\x00\x00\xc8\x00\x00\x00\x9e\x00\x00\x00\x9f\x00\x00\x00\xc8\x00\x00\x00\xc8\x00\x00\x00\x9f\x00\x00\x00\xc9\x00\x00\x00\x9d\x00\x00\x00\x9e\x00\x00\x00\xc8\x00\x00\x00\xc8\x00\x00\x00\xc7\x00\x00\x00\x9d\x00\x00\x00\x1b\x00\x00\x00\x1c\x00\x00\x00F\x00\x00\x00\x1b\x00\x00\x00F\x00\x00\x00E\x00\x00\x00\x1b\x00\x00\x00D\x00\x00\x00\x1a\x00\x00\x00E\x00\x00\x00D\x00\x00\x00\x1b\x00\x00\x00;\x02\x00\x00\x11\x02\x00\x00\x12\x02\x00\x00\x12\x02\x00\x00<\x02\x00\x00;\x02\x00\x00\x12\x02\x00\x00=\x02\x00\x00<\x02\x00\x00\x13\x02\x00\x00=\x02\x00\x00\x12\x02\x00\x00>\x02\x00\x00=\x02\x00\x00\x14\x02\x00\x00\x14\x02\x00\x00=\x02\x00\x00\x13\x02\x00\x00\x13\x02\x00\x00\xe9\x01\x00\x00\x14\x02\x00\x00\x14\x02\x00\x00\xe9\x01\x00\x00\xea\x01\x00\x00\xea\x01\x00\x00\xe9\x01\x00\x00\xc0\x01\x00\x00\xc0\x01\x00\x00\xe9\x01\x00\x00\xbf\x01\x00\x00\xf0\x01\x00\x00\x19\x02\x00\x00\xef\x01\x00\x00\x1a\x02\x00\x00\x19\x02\x00\x00\xf0\x01\x00\x00\xf0\x01\x00\x00\xc6\x01\x00\x00\xc7\x01\x00\x00\xc7\x01\x00\x00\xf1\x01\x00\x00\xf0\x01\x00\x00\xf0\x01\x00\x00\xf1\x01\x00\x00\x1b\x02\x00\x00\x1b\x02\x00\x00\x1a\x02\x00\x00\xf0\x01\x00\x00q\x01\x00\x00H\x01\x00\x00r\x01\x00\x00G\x01\x00\x00H\x01\x00\x00q\x01\x00\x00r\x01\x00\x00\x9c\x01\x00\x00q\x01\x00\x00q\x01\x00\x00\x9c\x01\x00\x00\x9b\x01\x00\x00\xf0\x01\x00\x00\xef\x01\x00\x00\xc5\x01\x00\x00\xc5\x01\x00\x00\xc6\x01\x00\x00\xf0\x01\x00\x00\xc5\x01\x00\x00\x9c\x01\x00\x00\xc6\x01\x00\x00\x9b\x01\x00\x00\x9c\x01\x00\x00\xc5\x01\x00\x00\xc7\x01\x00\x00\x9d\x01\x00\x00\x9e\x01\x00\x00\x9e\x01\x00\x00\xc8\x01\x00\x00\xc7\x01\x00\x00\xcb\x01\x00\x00\xca\x01\x00\x00\xa0\x01\x00\x00\xa0\x01\x00\x00\xa1\x01\x00\x00\xcb\x01\x00\x00y\x00\x00\x00\xa3\x00\x00\x00x\x00\x00\x00\xa3\x00\x00\x00\xa2\x00\x00\x00x\x00\x00\x00N\x00\x00\x00O\x00\x00\x00x\x00\x00\x00x\x00\x00\x00O\x00\x00\x00y\x00\x00\x00z\x00\x00\x00Q\x00\x00\x00{\x00\x00\x00P\x00\x00\x00Q\x00\x00\x00z\x00\x00\x00z\x00\x00\x00O\x00\x00\x00P\x00\x00\x00y\x00\x00\x00O\x00\x00\x00z\x00\x00\x00\xcc\x00\x00\x00\xcb\x00\x00\x00\xa1\x00\x00\x00\xa1\x00\x00\x00\xa2\x00\x00\x00\xcc\x00\x00\x00m\x01\x00\x00l\x01\x00\x00B\x01\x00\x00B\x01\x00\x00C\x01\x00\x00m\x01\x00\x00m\x01\x00\x00D\x01\x00\x00n\x01\x00\x00C\x01\x00\x00D\x01\x00\x00m\x01\x00\x00\x93\x01\x00\x00i\x01\x00\x00j\x01\x00\x00\x94\x01\x00\x00\x93\x01\x00\x00j\x01\x00\x00j\x01\x00\x00i\x01\x00\x00?\x01\x00\x00j\x01\x00\x00?\x01\x00\x00@\x01\x00\x002\x00\x00\x003\x00\x00\x00]\x00\x00\x00\\\x00\x00\x002\x00\x00\x00]\x00\x00\x006\x00\x00\x00`\x00\x00\x00_\x00\x00\x00_\x00\x00\x005\x00\x00\x006\x00\x00\x00Y\x01\x00\x00/\x01\x00\x000\x01\x00\x000\x01\x00\x00Z\x01\x00\x00Y\x01\x00\x000\x01\x00\x00/\x01\x00\x00\x05\x01\x00\x00\x05\x01\x00\x00\x06\x01\x00\x000\x01\x00\x00\x08\x01\x00\x003\x01\x00\x002\x01\x00\x00\t\x01\x00\x003\x01\x00\x00\x08\x01\x00\x00W\x00\x00\x00\x80\x00\x00\x00V\x00\x00\x00\x81\x00\x00\x00\x80\x00\x00\x00W\x00\x00\x00V\x00\x00\x00,\x00\x00\x00W\x00\x00\x00W\x00\x00\x00,\x00\x00\x00-\x00\x00\x00\xaf\x00\x00\x00\xd9\x00\x00\x00\xd8\x00\x00\x00\xaf\x00\x00\x00\xd8\x00\x00\x00\xae\x00\x00\x00\xae\x00\x00\x00\x84\x00\x00\x00\xaf\x00\x00\x00\xaf\x00\x00\x00\x84\x00\x00\x00\x85\x00\x00\x00\xb0\x00\x00\x00\xda\x00\x00\x00\xaf\x00\x00\x00\xda\x00\x00\x00\xd9\x00\x00\x00\xaf\x00\x00\x00\x85\x00\x00\x00\x86\x00\x00\x00\xaf\x00\x00\x00\xaf\x00\x00\x00\x86\x00\x00\x00\xb0\x00\x00\x00/\x02\x00\x00Y\x02\x00\x00X\x02\x00\x00X\x02\x00\x00.\x02\x00\x00/\x02\x00\x00Y\x02\x00\x00\x83\x02\x00\x00X\x02\x00\x00X\x02\x00\x00\x83\x02\x00\x00\x82\x02\x00\x00-\x02\x00\x00.\x02\x00\x00X\x02\x00\x00W\x02\x00\x00-\x02\x00\x00X\x02\x00\x00\x82\x02\x00\x00\x81\x02\x00\x00X\x02\x00\x00X\x02\x00\x00\x81\x02\x00\x00W\x02\x00\x00-\x01\x00\x00\x03\x01\x00\x00\x04\x01\x00\x00\x04\x01\x00\x00.\x01\x00\x00-\x01\x00\x00-\x01\x00\x00.\x01\x00\x00X\x01\x00\x00-\x01\x00\x00X\x01\x00\x00W\x01\x00\x00V\x01\x00\x00\x80\x01\x00\x00\x7f\x01\x00\x00V\x01\x00\x00\x7f\x01\x00\x00U\x01\x00\x00\x81\x01\x00\x00\x80\x01\x00\x00V\x01\x00\x00W\x01\x00\x00\x81\x01\x00\x00V\x01\x00\x003\x02\x00\x00^\x02\x00\x00]\x02\x00\x004\x02\x00\x00^\x02\x00\x003\x02\x00\x00\t\x02\x00\x00\n\x02\x00\x003\x02\x00\x003\x02\x00\x00\n\x02\x00\x004\x02\x00\x003\x02\x00\x00]\x02\x00\x00\\\x02\x00\x00\\\x02\x00\x002\x02\x00\x003\x02\x00\x003\x02\x00\x002\x02\x00\x00\x08\x02\x00\x003\x02\x00\x00\x08\x02\x00\x00\t\x02\x00\x00\x8a\x01\x00\x00`\x01\x00\x00a\x01\x00\x00a\x01\x00\x00\x8b\x01\x00\x00\x8a\x01\x00\x00\x8c\x01\x00\x00\x8b\x01\x00\x00a\x01\x00\x00a\x01\x00\x00b\x01\x00\x00\x8c\x01\x00\x00a\x01\x00\x008\x01\x00\x00b\x01\x00\x007\x01\x00\x008\x01\x00\x00a\x01\x00\x00\x0c\x01\x00\x00\xe3\x00\x00\x00\r\x01\x00\x00\xe2\x00\x00\x00\xe3\x00\x00\x00\x0c\x01\x00\x00\x8d\x01\x00\x00\xb7\x01\x00\x00\xb6\x01\x00\x00\x8d\x01\x00\x00\xb6\x01\x00\x00\x8c\x01\x00\x00\x8d\x01\x00\x00b\x01\x00\x00c\x01\x00\x00\x8c\x01\x00\x00b\x01\x00\x00\x8d\x01\x00\x00\xb8\x01\x00\x00\xb7\x01\x00\x00\x8d\x01\x00\x00\x8d\x01\x00\x00\x8e\x01\x00\x00\xb8\x01\x00\x00\x8d\x01\x00\x00d\x01\x00\x00\x8e\x01\x00\x00c\x01\x00\x00d\x01\x00\x00\x8d\x01\x00\x00\xb8\x00\x00\x00\x8d\x00\x00\x00\x8e\x00\x00\x00\xb8\x00\x00\x00\xb7\x00\x00\x00\x8d\x00\x00\x00\x86\x01\x00\x00\xb0\x01\x00\x00\xaf\x01\x00\x00\x86\x01\x00\x00\xaf\x01\x00\x00\x85\x01\x00\x00]\x01\x00\x00\x87\x01\x00\x00\x86\x01\x00\x00\x86\x01\x00\x00\\\x01\x00\x00]\x01\x00\x00\xb1\x01\x00\x00\xb0\x01\x00\x00\x86\x01\x00\x00\x86\x01\x00\x00\x87\x01\x00\x00\xb1\x01\x00\x00\x86\x01\x00\x00\x85\x01\x00\x00[\x01\x00\x00[\x01\x00\x00\\\x01\x00\x00\x86\x01\x00\x00\xaf\x01\x00\x00\xae\x01\x00\x00\x84\x01\x00\x00\x85\x01\x00\x00\xaf\x01\x00\x00\x84\x01\x00\x00[\x01\x00\x00\x85\x01\x00\x00\x84\x01\x00\x00\x84\x01\x00\x00Z\x01\x00\x00[\x01\x00\x00\xad\x01\x00\x00\x83\x01\x00\x00\x84\x01\x00\x00\x84\x01\x00\x00\xae\x01\x00\x00\xad\x01\x00\x00\x84\x01\x00\x00\x83\x01\x00\x00Y\x01\x00\x00Y\x01\x00\x00Z\x01\x00\x00\x84\x01\x00\x00\x8c\x00\x00\x00b\x00\x00\x00c\x00\x00\x00c\x00\x00\x00\x8d\x00\x00\x00\x8c\x00\x00\x00\x8d\x00\x00\x00\xb7\x00\x00\x00\x8c\x00\x00\x00\x8c\x00\x00\x00\xb7\x00\x00\x00\xb6\x00\x00\x004\x01\x00\x00^\x01\x00\x00]\x01\x00\x00]\x01\x00\x003\x01\x00\x004\x01\x00\x004\x01\x00\x003\x01\x00\x00\t\x01\x00\x004\x01\x00\x00\t\x01\x00\x00\n\x01\x00\x00\n\x01\x00\x00\t\x01\x00\x00\xe0\x00\x00\x00\t\x01\x00\x00\xdf\x00\x00\x00\xe0\x00\x00\x00\xcb\x02\x00\x00\xf5\x02\x00\x00\xf4\x02\x00\x00\xcb\x02\x00\x00\xf4\x02\x00\x00\xca\x02\x00\x00\xf6\x02\x00\x00\xf5\x02\x00\x00\xcb\x02\x00\x00\xcc\x02\x00\x00\xf6\x02\x00\x00\xcb\x02\x00\x00y\x02\x00\x00O\x02\x00\x00P\x02\x00\x00y\x02\x00\x00P\x02\x00\x00z\x02\x00\x00%\x03\x00\x00$\x03\x00\x00\xfa\x02\x00\x00\xfa\x02\x00\x00\xfb\x02\x00\x00%\x03\x00\x00\xfc\x02\x00\x00&\x03\x00\x00%\x03\x00\x00%\x03\x00\x00\xfb\x02\x00\x00\xfc\x02\x00\x00%\x03\x00\x00P\x03\x00\x00O\x03\x00\x00&\x03\x00\x00P\x03\x00\x00%\x03\x00\x00N\x03\x00\x00$\x03\x00\x00%\x03\x00\x00%\x03\x00\x00O\x03\x00\x00N\x03\x00\x00\xce\x02\x00\x00\xa4\x02\x00\x00\xa5\x02\x00\x00\xa5\x02\x00\x00\xcf\x02\x00\x00\xce\x02\x00\x00\xd0\x02\x00\x00\xfa\x02\x00\x00\xf9\x02\x00\x00\xf9\x02\x00\x00\xcf\x02\x00\x00\xd0\x02\x00\x00\xce\x02\x00\x00\xcf\x02\x00\x00\xf9\x02\x00\x00\xf9\x02\x00\x00\xf8\x02\x00\x00\xce\x02\x00\x00\xd1\x02\x00\x00\xd0\x02\x00\x00\xa6\x02\x00\x00\xa6\x02\x00\x00\xa7\x02\x00\x00\xd1\x02\x00\x00\xa5\x02\x00\x00{\x02\x00\x00\xa6\x02\x00\x00\xa6\x02\x00\x00{\x02\x00\x00|\x02\x00\x00\xa6\x02\x00\x00\xcf\x02\x00\x00\xa5\x02\x00\x00\xd0\x02\x00\x00\xcf\x02\x00\x00\xa6\x02\x00\x00\xf6\x03\x00\x00\xf5\x03\x00\x00\xcb\x03\x00\x00\xcc\x03\x00\x00\xf6\x03\x00\x00\xcb\x03\x00\x00\xa2\x03\x00\x00\xcc\x03\x00\x00\xcb\x03\x00\x00\xcb\x03\x00\x00\xa1\x03\x00\x00\xa2\x03\x00\x00\xcd\x03\x00\x00\xcc\x03\x00\x00\xa2\x03\x00\x00\xa2\x03\x00\x00\xa3\x03\x00\x00\xcd\x03\x00\x00#\x02\x00\x00L\x02\x00\x00"\x02\x00\x00#\x02\x00\x00M\x02\x00\x00L\x02\x00\x00"\x02\x00\x00\xf8\x01\x00\x00#\x02\x00\x00#\x02\x00\x00\xf8\x01\x00\x00\xf9\x01\x00\x00\xd1\x01\x00\x00\xfb\x01\x00\x00\xfa\x01\x00\x00\xfa\x01\x00\x00\xd0\x01\x00\x00\xd1\x01\x00\x00\xf9\x01\x00\x00\xcf\x01\x00\x00\xfa\x01\x00\x00\xcf\x01\x00\x00\xd0\x01\x00\x00\xfa\x01\x00\x00\xa7\x01\x00\x00\xd1\x01\x00\x00\xa6\x01\x00\x00\xd1\x01\x00\x00\xd0\x01\x00\x00\xa6\x01\x00\x00{\x01\x00\x00|\x01\x00\x00\xa6\x01\x00\x00\xa6\x01\x00\x00\xa5\x01\x00\x00{\x01\x00\x00\xcf\x01\x00\x00\xa5\x01\x00\x00\xa6\x01\x00\x00\xa6\x01\x00\x00\xd0\x01\x00\x00\xcf\x01\x00\x00}\x01\x00\x00\xa7\x01\x00\x00\xa6\x01\x00\x00\xa6\x01\x00\x00|\x01\x00\x00}\x01\x00\x00}\x01\x00\x00\xa8\x01\x00\x00\xa7\x01\x00\x00~\x01\x00\x00\xa8\x01\x00\x00}\x01\x00\x00~\x06\x00\x00}\x06\x00\x00T\x06\x00\x00T\x06\x00\x00}\x06\x00\x00S\x06\x00\x00T\x06\x00\x00U\x06\x00\x00\x7f\x06\x00\x00\x7f\x06\x00\x00~\x06\x00\x00T\x06\x00\x00\xfe\x05\x00\x00\xff\x05\x00\x00)\x06\x00\x00)\x06\x00\x00(\x06\x00\x00\xfe\x05\x00\x00R\x06\x00\x00(\x06\x00\x00)\x06\x00\x00S\x06\x00\x00R\x06\x00\x00)\x06\x00\x00)\x06\x00\x00\xff\x05\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00*\x06\x00\x00)\x06\x00\x00T\x06\x00\x00S\x06\x00\x00)\x06\x00\x00)\x06\x00\x00*\x06\x00\x00T\x06\x00\x00\xd8\x05\x00\x00\x02\x06\x00\x00\x01\x06\x00\x00\x01\x06\x00\x00\xd7\x05\x00\x00\xd8\x05\x00\x00\x00\x06\x00\x00\xd6\x05\x00\x00\x01\x06\x00\x00\xd6\x05\x00\x00\xd7\x05\x00\x00\x01\x06\x00\x00\x80\x05\x00\x00\xaa\x05\x00\x00\xa9\x05\x00\x00\x80\x05\x00\x00\xa9\x05\x00\x00\x7f\x05\x00\x00U\x05\x00\x00V\x05\x00\x00\x80\x05\x00\x00\x7f\x05\x00\x00U\x05\x00\x00\x80\x05\x00\x00\x80\x05\x00\x00\x81\x05\x00\x00\xab\x05\x00\x00\xab\x05\x00\x00\xaa\x05\x00\x00\x80\x05\x00\x00W\x05\x00\x00\x81\x05\x00\x00\x80\x05\x00\x00V\x05\x00\x00W\x05\x00\x00\x80\x05\x00\x00\xaa\x03\x00\x00\x80\x03\x00\x00\x81\x03\x00\x00\xaa\x03\x00\x00\x81\x03\x00\x00\xab\x03\x00\x00\x7f\x03\x00\x00\x80\x03\x00\x00\xaa\x03\x00\x00\xaa\x03\x00\x00\xa9\x03\x00\x00\x7f\x03\x00\x00\xaa\x03\x00\x00\xd4\x03\x00\x00\xd3\x03\x00\x00\xd3\x03\x00\x00\xa9\x03\x00\x00\xaa\x03\x00\x00\xa8\x03\x00\x00\xd3\x03\x00\x00\xd2\x03\x00\x00\xa8\x03\x00\x00\xa9\x03\x00\x00\xd3\x03\x00\x00~\x03\x00\x00\x7f\x03\x00\x00\xa8\x03\x00\x00\x7f\x03\x00\x00\xa9\x03\x00\x00\xa8\x03\x00\x00}\x03\x00\x00~\x03\x00\x00\xa8\x03\x00\x00\xa8\x03\x00\x00\xa7\x03\x00\x00}\x03\x00\x00\xaf\x03\x00\x00\xae\x03\x00\x00\x84\x03\x00\x00\x85\x03\x00\x00\xaf\x03\x00\x00\x84\x03\x00\x00[\x03\x00\x00\x85\x03\x00\x00\x84\x03\x00\x00\x84\x03\x00\x00Z\x03\x00\x00[\x03\x00\x00\xaa\x03\x00\x00\xab\x03\x00\x00\xd5\x03\x00\x00\xd5\x03\x00\x00\xd4\x03\x00\x00\xaa\x03\x00\x00\xfe\x03\x00\x00\xd4\x03\x00\x00\xd5\x03\x00\x00\xff\x03\x00\x00\xfe\x03\x00\x00\xd5\x03\x00\x00\xac\x03\x00\x00\xd6\x03\x00\x00\xd5\x03\x00\x00\xd5\x03\x00\x00\xab\x03\x00\x00\xac\x03\x00\x00\xd6\x03\x00\x00\x00\x04\x00\x00\xd5\x03\x00\x00\xd5\x03\x00\x00\x00\x04\x00\x00\xff\x03\x00\x00\xa6\x03\x00\x00\xa7\x03\x00\x00\xd1\x03\x00\x00\xd1\x03\x00\x00\xd0\x03\x00\x00\xa6\x03\x00\x00\xfa\x03\x00\x00\xd0\x03\x00\x00\xd1\x03\x00\x00\xfb\x03\x00\x00\xfa\x03\x00\x00\xd1\x03\x00\x00\xa8\x03\x00\x00\xd2\x03\x00\x00\xd1\x03\x00\x00\xd1\x03\x00\x00\xa7\x03\x00\x00\xa8\x03\x00\x00\xd2\x03\x00\x00\xfc\x03\x00\x00\xd1\x03\x00\x00\xd1\x03\x00\x00\xfc\x03\x00\x00\xfb\x03\x00\x00y\x05\x00\x00z\x05\x00\x00\xa4\x05\x00\x00\xa3\x05\x00\x00y\x05\x00\x00\xa4\x05\x00\x00{\x05\x00\x00\xa5\x05\x00\x00\xa4\x05\x00\x00\xa4\x05\x00\x00z\x05\x00\x00{\x05\x00\x00\xa4\x05\x00\x00\xcf\x05\x00\x00\xce\x05\x00\x00\xa4\x05\x00\x00\xa5\x05\x00\x00\xcf\x05\x00\x00\xce\x05\x00\x00\xf8\x05\x00\x00\xcd\x05\x00\x00\xcd\x05\x00\x00\xf8\x05\x00\x00\xf7\x05\x00\x00\xcd\x05\x00\x00\xa3\x05\x00\x00\xa4\x05\x00\x00\xa4\x05\x00\x00\xce\x05\x00\x00\xcd\x05\x00\x00\xa1\x04\x00\x00\xcc\x04\x00\x00\xcb\x04\x00\x00\xa2\x04\x00\x00\xcc\x04\x00\x00\xa1\x04\x00\x00x\x04\x00\x00\xa2\x04\x00\x00\xa1\x04\x00\x00w\x04\x00\x00x\x04\x00\x00\xa1\x04\x00\x00\xf7\x05\x00\x00!\x06\x00\x00\xf6\x05\x00\x00!\x06\x00\x00 \x06\x00\x00\xf6\x05\x00\x00\xf6\x05\x00\x00 \x06\x00\x00\x1f\x06\x00\x00\xf6\x05\x00\x00\x1f\x06\x00\x00\xf5\x05\x00\x00"\x05\x00\x00!\x05\x00\x00\xf7\x04\x00\x00\xf7\x04\x00\x00\xf8\x04\x00\x00"\x05\x00\x00K\x05\x00\x00!\x05\x00\x00"\x05\x00\x00L\x05\x00\x00K\x05\x00\x00"\x05\x00\x00s\x05\x00\x00t\x05\x00\x00\x9e\x05\x00\x00\x9e\x05\x00\x00\x9d\x05\x00\x00s\x05\x00\x00\x9e\x05\x00\x00\xc8\x05\x00\x00\xc7\x05\x00\x00\xc7\x05\x00\x00\x9d\x05\x00\x00\x9e\x05\x00\x00\xc9\x05\x00\x00\xf3\x05\x00\x00\xf2\x05\x00\x00\xf2\x05\x00\x00\xc8\x05\x00\x00\xc9\x05\x00\x00\xc9\x05\x00\x00\xc8\x05\x00\x00\x9e\x05\x00\x00\x9e\x05\x00\x00\x9f\x05\x00\x00\xc9\x05\x00\x00\xc7\x06\x00\x00\xf0\x06\x00\x00\xc6\x06\x00\x00\xf1\x06\x00\x00\xf0\x06\x00\x00\xc7\x06\x00\x00Q\x04\x00\x00R\x04\x00\x00{\x04\x00\x00{\x04\x00\x00R\x04\x00\x00|\x04\x00\x00P\x04\x00\x00Q\x04\x00\x00{\x04\x00\x00{\x04\x00\x00z\x04\x00\x00P\x04\x00\x00\xa4\x04\x00\x00z\x04\x00\x00{\x04\x00\x00\xa5\x04\x00\x00\xa4\x04\x00\x00{\x04\x00\x00\xd1\x04\x00\x00\xd0\x04\x00\x00\xa6\x04\x00\x00\xa6\x04\x00\x00\xa7\x04\x00\x00\xd1\x04\x00\x00}\x04\x00\x00\xa7\x04\x00\x00\xa6\x04\x00\x00|\x04\x00\x00}\x04\x00\x00\xa6\x04\x00\x00\xa6\x04\x00\x00\xd0\x04\x00\x00\xcf\x04\x00\x00\xa6\x04\x00\x00\xcf\x04\x00\x00\xa5\x04\x00\x00{\x04\x00\x00|\x04\x00\x00\xa6\x04\x00\x00\xa6\x04\x00\x00\xa5\x04\x00\x00{\x04\x00\x00\xaa\x04\x00\x00\xd4\x04\x00\x00\xa9\x04\x00\x00\xa9\x04\x00\x00\xd4\x04\x00\x00\xd3\x04\x00\x00\xa9\x04\x00\x00~\x04\x00\x00\x7f\x04\x00\x00\xa8\x04\x00\x00~\x04\x00\x00\xa9\x04\x00\x00\xa9\x04\x00\x00\xd2\x04\x00\x00\xa8\x04\x00\x00\xd3\x04\x00\x00\xd2\x04\x00\x00\xa9\x04\x00\x00\x80\x04\x00\x00V\x04\x00\x00W\x04\x00\x00\x80\x04\x00\x00W\x04\x00\x00\x81\x04\x00\x00\x81\x04\x00\x00\xab\x04\x00\x00\x80\x04\x00\x00\x80\x04\x00\x00\xab\x04\x00\x00\xaa\x04\x00\x00U\x04\x00\x00V\x04\x00\x00\x80\x04\x00\x00\x7f\x04\x00\x00U\x04\x00\x00\x80\x04\x00\x00\x80\x04\x00\x00\xaa\x04\x00\x00\xa9\x04\x00\x00\xa9\x04\x00\x00\x7f\x04\x00\x00\x80\x04\x00\x00\xfd\x04\x00\x00\xfc\x04\x00\x00\xd2\x04\x00\x00\xfd\x04\x00\x00\xd2\x04\x00\x00\xd3\x04\x00\x00&\x05\x00\x00\xfc\x04\x00\x00\xfd\x04\x00\x00\'\x05\x00\x00&\x05\x00\x00\xfd\x04\x00\x00\xc8\x04\x00\x00\x9d\x04\x00\x00\x9e\x04\x00\x00\xc7\x04\x00\x00\x9d\x04\x00\x00\xc8\x04\x00\x00\xf2\x04\x00\x00\xf1\x04\x00\x00\xc8\x04\x00\x00\xc8\x04\x00\x00\xf1\x04\x00\x00\xc7\x04\x00\x00F\x05\x00\x00\x1c\x05\x00\x00\x1d\x05\x00\x00\x1d\x05\x00\x00G\x05\x00\x00F\x05\x00\x00L\x03\x00\x00K\x03\x00\x00!\x03\x00\x00!\x03\x00\x00"\x03\x00\x00L\x03\x00\x00\x86\x02\x00\x00\x85\x02\x00\x00[\x02\x00\x00\\\x02\x00\x00\x86\x02\x00\x00[\x02\x00\x001\x02\x00\x002\x02\x00\x00[\x02\x00\x00[\x02\x00\x002\x02\x00\x00\\\x02\x00\x00\x84\x02\x00\x00Z\x02\x00\x00[\x02\x00\x00[\x02\x00\x00\x85\x02\x00\x00\x84\x02\x00\x00[\x02\x00\x000\x02\x00\x001\x02\x00\x00[\x02\x00\x00Z\x02\x00\x000\x02\x00\x00\x80\x02\x00\x00\x81\x02\x00\x00\xab\x02\x00\x00\xab\x02\x00\x00\xaa\x02\x00\x00\x80\x02\x00\x00\xaa\x02\x00\x00\xa9\x02\x00\x00\x80\x02\x00\x00\x80\x02\x00\x00\xa9\x02\x00\x00\x7f\x02\x00\x00\xa8\x02\x00\x00\xd2\x02\x00\x00\xd1\x02\x00\x00\xd1\x02\x00\x00\xa7\x02\x00\x00\xa8\x02\x00\x00\xd4\x02\x00\x00\xfe\x02\x00\x00\xd3\x02\x00\x00\xfe\x02\x00\x00\xfd\x02\x00\x00\xd3\x02\x00\x00\xd3\x02\x00\x00\xaa\x02\x00\x00\xd4\x02\x00\x00\xd3\x02\x00\x00\xa9\x02\x00\x00\xaa\x02\x00\x00\xd3\x02\x00\x00\xfd\x02\x00\x00\xfc\x02\x00\x00\xfc\x02\x00\x00\xd2\x02\x00\x00\xd3\x02\x00\x00\xd3\x02\x00\x00\xd2\x02\x00\x00\xa8\x02\x00\x00\xa8\x02\x00\x00\xa9\x02\x00\x00\xd3\x02\x00\x00|\x02\x00\x00{\x02\x00\x00Q\x02\x00\x00Q\x02\x00\x00R\x02\x00\x00|\x02\x00\x00\'\x02\x00\x00(\x02\x00\x00Q\x02\x00\x00(\x02\x00\x00R\x02\x00\x00Q\x02\x00\x00Q\x02\x00\x00{\x02\x00\x00z\x02\x00\x00z\x02\x00\x00P\x02\x00\x00Q\x02\x00\x00Q\x02\x00\x00P\x02\x00\x00&\x02\x00\x00Q\x02\x00\x00&\x02\x00\x00\'\x02\x00\x00T\x02\x00\x00*\x02\x00\x00U\x02\x00\x00U\x02\x00\x00*\x02\x00\x00+\x02\x00\x00\xd5\x01\x00\x00\xab\x01\x00\x00\xd6\x01\x00\x00\xd6\x01\x00\x00\xab\x01\x00\x00\xac\x01\x00\x00\xac\x01\x00\x00\xad\x01\x00\x00\xd6\x01\x00\x00\xd6\x01\x00\x00\xad\x01\x00\x00\xd7\x01\x00\x00\xd8\x02\x00\x00\xd9\x02\x00\x00\x03\x03\x00\x00\x03\x03\x00\x00\x02\x03\x00\x00\xd8\x02\x00\x00,\x03\x00\x00\x02\x03\x00\x00\x03\x03\x00\x00-\x03\x00\x00,\x03\x00\x00\x03\x03\x00\x00\xda\x02\x00\x00\x04\x03\x00\x00\x03\x03\x00\x00\xd9\x02\x00\x00\xda\x02\x00\x00\x03\x03\x00\x00\x03\x03\x00\x00\x04\x03\x00\x00.\x03\x00\x00\x03\x03\x00\x00.\x03\x00\x00-\x03\x00\x00s\x02\x00\x00\x9d\x02\x00\x00r\x02\x00\x00r\x02\x00\x00\x9d\x02\x00\x00\x9c\x02\x00\x00I\x02\x00\x00s\x02\x00\x00r\x02\x00\x00r\x02\x00\x00H\x02\x00\x00I\x02\x00\x00\x9b\x02\x00\x00q\x02\x00\x00r\x02\x00\x00r\x02\x00\x00\x9c\x02\x00\x00\x9b\x02\x00\x00r\x02\x00\x00G\x02\x00\x00H\x02\x00\x00q\x02\x00\x00G\x02\x00\x00r\x02\x00\x00J\x02\x00\x00t\x02\x00\x00s\x02\x00\x00J\x02\x00\x00s\x02\x00\x00I\x02\x00\x00J\x02\x00\x00K\x02\x00\x00u\x02\x00\x00u\x02\x00\x00t\x02\x00\x00J\x02\x00\x00J\x02\x00\x00!\x02\x00\x00K\x02\x00\x00 \x02\x00\x00!\x02\x00\x00J\x02\x00\x00\xf4\x01\x00\x00\xf5\x01\x00\x00\x1f\x02\x00\x00\x1f\x02\x00\x00\x1e\x02\x00\x00\xf4\x01\x00\x00H\x02\x00\x00\x1e\x02\x00\x00\x1f\x02\x00\x00I\x02\x00\x00H\x02\x00\x00\x1f\x02\x00\x00\x1f\x02\x00\x00\xf5\x01\x00\x00\xf6\x01\x00\x00\xf6\x01\x00\x00 \x02\x00\x00\x1f\x02\x00\x00J\x02\x00\x00I\x02\x00\x00\x1f\x02\x00\x00\x1f\x02\x00\x00 \x02\x00\x00J\x02\x00\x00\xa0\x01\x00\x00\xca\x01\x00\x00\xc9\x01\x00\x00\xc9\x01\x00\x00\x9f\x01\x00\x00\xa0\x01\x00\x00\xc9\x01\x00\x00\xca\x01\x00\x00\xf4\x01\x00\x00\xc9\x01\x00\x00\xf4\x01\x00\x00\xf3\x01\x00\x00\xc9\x01\x00\x00\xc8\x01\x00\x00\x9e\x01\x00\x00\x9e\x01\x00\x00\x9f\x01\x00\x00\xc9\x01\x00\x00\xf2\x01\x00\x00\xc8\x01\x00\x00\xc9\x01\x00\x00\xf3\x01\x00\x00\xf2\x01\x00\x00\xc9\x01\x00\x00\x96\x02\x00\x00k\x02\x00\x00l\x02\x00\x00\x95\x02\x00\x00k\x02\x00\x00\x96\x02\x00\x00\xc0\x02\x00\x00\xbf\x02\x00\x00\x96\x02\x00\x00\x96\x02\x00\x00\xbf\x02\x00\x00\x95\x02\x00\x00m\x02\x00\x00\x97\x02\x00\x00\x96\x02\x00\x00\x96\x02\x00\x00l\x02\x00\x00m\x02\x00\x00\x96\x02\x00\x00\x97\x02\x00\x00\xc1\x02\x00\x00\x96\x02\x00\x00\xc1\x02\x00\x00\xc0\x02\x00\x00\xe7\x02\x00\x00\xbd\x02\x00\x00\xbe\x02\x00\x00\xbe\x02\x00\x00\xe8\x02\x00\x00\xe7\x02\x00\x00\xbd\x02\x00\x00\x93\x02\x00\x00\xbe\x02\x00\x00\xbe\x02\x00\x00\x93\x02\x00\x00\x94\x02\x00\x00\xbe\x02\x00\x00\xbf\x02\x00\x00\xe9\x02\x00\x00\xe9\x02\x00\x00\xe8\x02\x00\x00\xbe\x02\x00\x00\x94\x02\x00\x00\x95\x02\x00\x00\xbe\x02\x00\x00\x95\x02\x00\x00\xbf\x02\x00\x00\xbe\x02\x00\x00\x99\x02\x00\x00\x9a\x02\x00\x00\xc3\x02\x00\x00\xc3\x02\x00\x00\x9a\x02\x00\x00\xc4\x02\x00\x00\xc3\x02\x00\x00\xee\x02\x00\x00\xed\x02\x00\x00\xc4\x02\x00\x00\xee\x02\x00\x00\xc3\x02\x00\x00\xc3\x02\x00\x00\xc2\x02\x00\x00\x98\x02\x00\x00\xc3\x02\x00\x00\x98\x02\x00\x00\x99\x02\x00\x00\xec\x02\x00\x00\xc2\x02\x00\x00\xc3\x02\x00\x00\xed\x02\x00\x00\xec\x02\x00\x00\xc3\x02\x00\x00\x15\x03\x00\x00\x16\x03\x00\x00@\x03\x00\x00@\x03\x00\x00?\x03\x00\x00\x15\x03\x00\x00i\x03\x00\x00?\x03\x00\x00@\x03\x00\x00j\x03\x00\x00i\x03\x00\x00@\x03\x00\x00@\x03\x00\x00\x16\x03\x00\x00\x17\x03\x00\x00@\x03\x00\x00\x17\x03\x00\x00A\x03\x00\x00@\x03\x00\x00k\x03\x00\x00j\x03\x00\x00A\x03\x00\x00k\x03\x00\x00@\x03\x00\x00\x94\x03\x00\x00\x93\x03\x00\x00i\x03\x00\x00\x94\x03\x00\x00i\x03\x00\x00j\x03\x00\x00\xbc\x03\x00\x00\x92\x03\x00\x00\xbd\x03\x00\x00\x92\x03\x00\x00\x93\x03\x00\x00\xbd\x03\x00\x00\xbd\x03\x00\x00\x93\x03\x00\x00\x94\x03\x00\x00\x94\x03\x00\x00\xbe\x03\x00\x00\xbd\x03\x00\x00\x95\x03\x00\x00k\x03\x00\x00l\x03\x00\x00\x95\x03\x00\x00l\x03\x00\x00\x96\x03\x00\x00\x96\x03\x00\x00\xc0\x03\x00\x00\x95\x03\x00\x00\x95\x03\x00\x00\xc0\x03\x00\x00\xbf\x03\x00\x00j\x03\x00\x00k\x03\x00\x00\x95\x03\x00\x00\x94\x03\x00\x00j\x03\x00\x00\x95\x03\x00\x00\x95\x03\x00\x00\xbe\x03\x00\x00\x94\x03\x00\x00\xbf\x03\x00\x00\xbe\x03\x00\x00\x95\x03\x00\x00\x19\x03\x00\x00\x18\x03\x00\x00\xee\x02\x00\x00\x19\x03\x00\x00\xee\x02\x00\x00\xef\x02\x00\x00\xef\x02\x00\x00\xf0\x02\x00\x00\x19\x03\x00\x00\xf0\x02\x00\x00\x1a\x03\x00\x00\x19\x03\x00\x00\x98\x03\x00\x00\x97\x03\x00\x00m\x03\x00\x00m\x03\x00\x00n\x03\x00\x00\x98\x03\x00\x00m\x03\x00\x00\x97\x03\x00\x00\x96\x03\x00\x00\x96\x03\x00\x00l\x03\x00\x00m\x03\x00\x00\xeb\x03\x00\x00\xc0\x03\x00\x00\xc1\x03\x00\x00\xea\x03\x00\x00\xc0\x03\x00\x00\xeb\x03\x00\x00\x15\x04\x00\x00\x14\x04\x00\x00\xeb\x03\x00\x00\xeb\x03\x00\x00\x14\x04\x00\x00\xea\x03\x00\x00\xeb\x03\x00\x00\xc1\x03\x00\x00\xc2\x03\x00\x00\xc2\x03\x00\x00\xec\x03\x00\x00\xeb\x03\x00\x00\xeb\x03\x00\x00\xec\x03\x00\x00\x16\x04\x00\x00\x16\x04\x00\x00\x15\x04\x00\x00\xeb\x03\x00\x00?\x04\x00\x00\x14\x04\x00\x00\x15\x04\x00\x00>\x04\x00\x00\x14\x04\x00\x00?\x04\x00\x00i\x04\x00\x00h\x04\x00\x00?\x04\x00\x00?\x04\x00\x00h\x04\x00\x00>\x04\x00\x00\xa6\x00\x00\x00\xd0\x00\x00\x00\xcf\x00\x00\x00\xcf\x00\x00\x00\xa5\x00\x00\x00\xa6\x00\x00\x00\xcf\x00\x00\x00\xd0\x00\x00\x00\xfa\x00\x00\x00\xcf\x00\x00\x00\xfa\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xce\x00\x00\x00\xcf\x00\x00\x00\xf9\x00\x00\x00\xf8\x00\x00\x00\xcf\x00\x00\x00K\x01\x00\x00 \x01\x00\x00!\x01\x00\x00J\x01\x00\x00 \x01\x00\x00K\x01\x00\x00"\x01\x00\x00L\x01\x00\x00K\x01\x00\x00!\x01\x00\x00"\x01\x00\x00K\x01\x00\x00\xd4\x06\x00\x00\xaa\x06\x00\x00\xd5\x06\x00\x00\xaa\x06\x00\x00\xab\x06\x00\x00\xd5\x06\x00\x00\xd5\x06\x00\x00\xfe\x06\x00\x00\xd4\x06\x00\x00\xff\x06\x00\x00\xfe\x06\x00\x00\xd5\x06\x00\x00\xff\x06\x00\x00)\x07\x00\x00(\x07\x00\x00(\x07\x00\x00\xfe\x06\x00\x00\xff\x06\x00\x00)\x07\x00\x00S\x07\x00\x00(\x07\x00\x00(\x07\x00\x00S\x07\x00\x00R\x07\x00\x00\xfd\x06\x00\x00\xfe\x06\x00\x00(\x07\x00\x00(\x07\x00\x00\'\x07\x00\x00\xfd\x06\x00\x00\xae\x06\x00\x00\xaf\x06\x00\x00\xd9\x06\x00\x00\xd8\x06\x00\x00\xae\x06\x00\x00\xd9\x06\x00\x00\xaa\x07\x00\x00\xa9\x07\x00\x00\x80\x07\x00\x00\x80\x07\x00\x00\xa9\x07\x00\x00\x7f\x07\x00\x00W\x07\x00\x00\x81\x07\x00\x00\x80\x07\x00\x00\x80\x07\x00\x00V\x07\x00\x00W\x07\x00\x00\xd0\x07\x00\x00\xa6\x07\x00\x00\xa7\x07\x00\x00\xa7\x07\x00\x00\xd1\x07\x00\x00\xd0\x07\x00\x00\xa7\x07\x00\x00\xa6\x07\x00\x00|\x07\x00\x00|\x07\x00\x00}\x07\x00\x00\xa7\x07\x00\x00R\x07\x00\x00S\x07\x00\x00|\x07\x00\x00|\x07\x00\x00S\x07\x00\x00}\x07\x00\x00|\x07\x00\x00\xa6\x07\x00\x00\xa5\x07\x00\x00|\x07\x00\x00\xa5\x07\x00\x00{\x07\x00\x00\xa5\x07\x00\x00\xa4\x07\x00\x00z\x07\x00\x00{\x07\x00\x00\xa5\x07\x00\x00z\x07\x00\x00O\x07\x00\x00P\x07\x00\x00z\x07\x00\x00z\x07\x00\x00y\x07\x00\x00O\x07\x00\x00z\x07\x00\x00\xa4\x07\x00\x00\xa3\x07\x00\x00\xa3\x07\x00\x00y\x07\x00\x00z\x07\x00\x00&\x07\x00\x00\'\x07\x00\x00Q\x07\x00\x00Q\x07\x00\x00P\x07\x00\x00&\x07\x00\x00Q\x07\x00\x00{\x07\x00\x00z\x07\x00\x00z\x07\x00\x00P\x07\x00\x00Q\x07\x00\x00(\x07\x00\x00R\x07\x00\x00Q\x07\x00\x00Q\x07\x00\x00\'\x07\x00\x00(\x07\x00\x00Q\x07\x00\x00R\x07\x00\x00|\x07\x00\x00|\x07\x00\x00{\x07\x00\x00Q\x07\x00\x00\x87\x02\x00\x00\x88\x02\x00\x00\xb2\x02\x00\x00\xb2\x02\x00\x00\xb1\x02\x00\x00\x87\x02\x00\x00\xb2\x02\x00\x00\xdb\x02\x00\x00\xb1\x02\x00\x00\xdc\x02\x00\x00\xdb\x02\x00\x00\xb2\x02\x00\x00\xb2\x02\x00\x00\x88\x02\x00\x00\x89\x02\x00\x00\x89\x02\x00\x00\xb3\x02\x00\x00\xb2\x02\x00\x00\xdd\x02\x00\x00\xdc\x02\x00\x00\xb2\x02\x00\x00\xb2\x02\x00\x00\xb3\x02\x00\x00\xdd\x02\x00\x00\xdd\x02\x00\x00\xb3\x02\x00\x00\xb4\x02\x00\x00\xb4\x02\x00\x00\xde\x02\x00\x00\xdd\x02\x00\x00]\x03\x00\x00\\\x03\x00\x002\x03\x00\x003\x03\x00\x00]\x03\x00\x002\x03\x00\x002\x03\x00\x00\\\x03\x00\x00[\x03\x00\x00[\x03\x00\x001\x03\x00\x002\x03\x00\x00?\x01\x00\x00>\x01\x00\x00\x14\x01\x00\x00\x14\x01\x00\x00\x15\x01\x00\x00?\x01\x00\x00\xea\x00\x00\x00\xeb\x00\x00\x00\x14\x01\x00\x00\x14\x01\x00\x00\xeb\x00\x00\x00\x15\x01\x00\x00h\x01\x00\x00g\x01\x00\x00=\x01\x00\x00=\x01\x00\x00>\x01\x00\x00h\x01\x00\x00\x14\x01\x00\x00>\x01\x00\x00=\x01\x00\x00=\x01\x00\x00\x13\x01\x00\x00\x14\x01\x00\x00D\x02\x00\x00n\x02\x00\x00m\x02\x00\x00D\x02\x00\x00m\x02\x00\x00C\x02\x00\x00C\x02\x00\x00\x19\x02\x00\x00D\x02\x00\x00D\x02\x00\x00\x19\x02\x00\x00\x1a\x02\x00\x00o\x02\x00\x00n\x02\x00\x00D\x02\x00\x00E\x02\x00\x00o\x02\x00\x00D\x02\x00\x00D\x02\x00\x00\x1a\x02\x00\x00\x1b\x02\x00\x00D\x02\x00\x00\x1b\x02\x00\x00E\x02\x00\x00\x91\x02\x00\x00f\x02\x00\x00g\x02\x00\x00\x90\x02\x00\x00f\x02\x00\x00\x91\x02\x00\x00\x91\x02\x00\x00g\x02\x00\x00h\x02\x00\x00h\x02\x00\x00\x92\x02\x00\x00\x91\x02\x00\x00\x91\x02\x00\x00\x92\x02\x00\x00\xbc\x02\x00\x00\x91\x02\x00\x00\xbc\x02\x00\x00\xbb\x02\x00\x00\x0f\x03\x00\x00:\x03\x00\x009\x03\x00\x00\x10\x03\x00\x00:\x03\x00\x00\x0f\x03\x00\x00\x0f\x03\x00\x00\xe6\x02\x00\x00\x10\x03\x00\x00\xe5\x02\x00\x00\xe6\x02\x00\x00\x0f\x03\x00\x00\x0b\x02\x00\x00\x0c\x02\x00\x005\x02\x00\x00\x0c\x02\x00\x006\x02\x00\x005\x02\x00\x00_\x02\x00\x00^\x02\x00\x005\x02\x00\x005\x02\x00\x00^\x02\x00\x004\x02\x00\x005\x02\x00\x00\n\x02\x00\x00\x0b\x02\x00\x004\x02\x00\x00\n\x02\x00\x005\x02\x00\x00\t\x03\x00\x003\x03\x00\x002\x03\x00\x002\x03\x00\x00\x08\x03\x00\x00\t\x03\x00\x00\t\x03\x00\x004\x03\x00\x003\x03\x00\x00\n\x03\x00\x004\x03\x00\x00\t\x03\x00\x00\xe6\x01\x00\x00\x0f\x02\x00\x00\xe5\x01\x00\x00\x10\x02\x00\x00\x0f\x02\x00\x00\xe6\x01\x00\x00\xe6\x01\x00\x00\xe5\x01\x00\x00\xbb\x01\x00\x00\xe6\x01\x00\x00\xbb\x01\x00\x00\xbc\x01\x00\x00\xe6\x01\x00\x00\x11\x02\x00\x00\x10\x02\x00\x00\xe7\x01\x00\x00\x11\x02\x00\x00\xe6\x01\x00\x00\xbc\x01\x00\x00\xbd\x01\x00\x00\xe6\x01\x00\x00\xbd\x01\x00\x00\xe7\x01\x00\x00\xe6\x01\x00\x00\xba\x02\x00\x00\x8f\x02\x00\x00\x90\x02\x00\x00\xb9\x02\x00\x00\x8f\x02\x00\x00\xba\x02\x00\x00\xba\x02\x00\x00\xbb\x02\x00\x00\xe5\x02\x00\x00\xe5\x02\x00\x00\xe4\x02\x00\x00\xba\x02\x00\x00\xba\x02\x00\x00\x90\x02\x00\x00\x91\x02\x00\x00\x91\x02\x00\x00\xbb\x02\x00\x00\xba\x02\x00\x00\x8e\x02\x00\x00d\x02\x00\x00e\x02\x00\x00e\x02\x00\x00\x8f\x02\x00\x00\x8e\x02\x00\x00\n\x03\x00\x00\xe0\x02\x00\x00\x0b\x03\x00\x00\xe0\x02\x00\x00\xe1\x02\x00\x00\x0b\x03\x00\x005\x03\x00\x004\x03\x00\x00\x0b\x03\x00\x00\x0b\x03\x00\x004\x03\x00\x00\n\x03\x00\x00^\x03\x00\x00]\x03\x00\x003\x03\x00\x003\x03\x00\x004\x03\x00\x00^\x03\x00\x00^\x03\x00\x00\x87\x03\x00\x00]\x03\x00\x00\x88\x03\x00\x00\x87\x03\x00\x00^\x03\x00\x00\xe3\x02\x00\x00\xb9\x02\x00\x00\xba\x02\x00\x00\xba\x02\x00\x00\xe4\x02\x00\x00\xe3\x02\x00\x00\xbb\x05\x00\x00\xe4\x05\x00\x00\xba\x05\x00\x00\xbb\x05\x00\x00\xe5\x05\x00\x00\xe4\x05\x00\x00\xba\x05\x00\x00\x90\x05\x00\x00\xbb\x05\x00\x00\xbb\x05\x00\x00\x90\x05\x00\x00\x91\x05\x00\x00\xbb\x05\x00\x00\xbc\x05\x00\x00\xe6\x05\x00\x00\xe6\x05\x00\x00\xe5\x05\x00\x00\xbb\x05\x00\x00\x92\x05\x00\x00\xbc\x05\x00\x00\xbb\x05\x00\x00\xbb\x05\x00\x00\x91\x05\x00\x00\x92\x05\x00\x00g\x05\x00\x00\x91\x05\x00\x00f\x05\x00\x00\x91\x05\x00\x00\x90\x05\x00\x00f\x05\x00\x00f\x05\x00\x00\x90\x05\x00\x00\x8f\x05\x00\x00f\x05\x00\x00\x8f\x05\x00\x00e\x05\x00\x00\xe9\x04\x00\x00\x12\x05\x00\x00\xe8\x04\x00\x00\x13\x05\x00\x00\x12\x05\x00\x00\xe9\x04\x00\x00\xe9\x04\x00\x00\xe8\x04\x00\x00\xbe\x04\x00\x00\xbe\x04\x00\x00\xbf\x04\x00\x00\xe9\x04\x00\x00\xea\x04\x00\x00\x14\x05\x00\x00\xe9\x04\x00\x00\xe9\x04\x00\x00\x14\x05\x00\x00\x13\x05\x00\x00\xbf\x04\x00\x00\xc0\x04\x00\x00\xe9\x04\x00\x00\xc0\x04\x00\x00\xea\x04\x00\x00\xe9\x04\x00\x00\xf1\x02\x00\x00\xf0\x02\x00\x00\xc6\x02\x00\x00\xc6\x02\x00\x00\xc7\x02\x00\x00\xf1\x02\x00\x00\x1b\x03\x00\x00\x1a\x03\x00\x00\xf1\x02\x00\x00\xf1\x02\x00\x00\x1a\x03\x00\x00\xf0\x02\x00\x00\xc7\x02\x00\x00\xc8\x02\x00\x00\xf1\x02\x00\x00\xf1\x02\x00\x00\xc8\x02\x00\x00\xf2\x02\x00\x00\xf1\x02\x00\x00\xf2\x02\x00\x00\x1c\x03\x00\x00\xf1\x02\x00\x00\x1c\x03\x00\x00\x1b\x03\x00\x00\x91\x04\x00\x00\x90\x04\x00\x00f\x04\x00\x00g\x04\x00\x00\x91\x04\x00\x00f\x04\x00\x00\x11\x04\x00\x00\x12\x04\x00\x00;\x04\x00\x00;\x04\x00\x00\x12\x04\x00\x00<\x04\x00\x00\xe5\x03\x00\x00\xe6\x03\x00\x00\x10\x04\x00\x00\x0f\x04\x00\x00\xe5\x03\x00\x00\x10\x04\x00\x00=\x04\x00\x00g\x04\x00\x00f\x04\x00\x00f\x04\x00\x00<\x04\x00\x00=\x04\x00\x00<\x04\x00\x00\x12\x04\x00\x00=\x04\x00\x00=\x04\x00\x00\x12\x04\x00\x00\x13\x04\x00\x00=\x04\x00\x00h\x04\x00\x00g\x04\x00\x00>\x04\x00\x00h\x04\x00\x00=\x04\x00\x00=\x04\x00\x00\x14\x04\x00\x00>\x04\x00\x00\x13\x04\x00\x00\x14\x04\x00\x00=\x04\x00\x00\xe9\x03\x00\x00\xbe\x03\x00\x00\xbf\x03\x00\x00\xe8\x03\x00\x00\xbe\x03\x00\x00\xe9\x03\x00\x00\x13\x04\x00\x00\x12\x04\x00\x00\xe9\x03\x00\x00\xe9\x03\x00\x00\x12\x04\x00\x00\xe8\x03\x00\x00\xbf\x03\x00\x00\xc0\x03\x00\x00\xe9\x03\x00\x00\xe9\x03\x00\x00\xc0\x03\x00\x00\xea\x03\x00\x00\xea\x03\x00\x00\x14\x04\x00\x00\xe9\x03\x00\x00\xe9\x03\x00\x00\x14\x04\x00\x00\x13\x04\x00\x00*\x08\x00\x00)\x08\x00\x00\xff\x07\x00\x00\xff\x07\x00\x00\x00\x08\x00\x00*\x08\x00\x00\xff\x07\x00\x00)\x08\x00\x00(\x08\x00\x00(\x08\x00\x00\xfe\x07\x00\x00\xff\x07\x00\x00]\x07\x00\x00^\x07\x00\x00\x88\x07\x00\x00\x88\x07\x00\x00\x87\x07\x00\x00]\x07\x00\x003\x07\x00\x004\x07\x00\x00]\x07\x00\x00]\x07\x00\x004\x07\x00\x00^\x07\x00\x00\x86\x07\x00\x00\\\x07\x00\x00]\x07\x00\x00]\x07\x00\x00\x87\x07\x00\x00\x86\x07\x00\x00]\x07\x00\x002\x07\x00\x003\x07\x00\x00\\\x07\x00\x002\x07\x00\x00]\x07\x00\x00`\x07\x00\x00\x8a\x07\x00\x00\x89\x07\x00\x00`\x07\x00\x00\x89\x07\x00\x00_\x07\x00\x00`\x07\x00\x00a\x07\x00\x00\x8b\x07\x00\x00\x8b\x07\x00\x00\x8a\x07\x00\x00`\x07\x00\x00`\x07\x00\x007\x07\x00\x00a\x07\x00\x006\x07\x00\x007\x07\x00\x00`\x07\x00\x00_\x07\x00\x00^\x07\x00\x005\x07\x00\x00^\x07\x00\x004\x07\x00\x005\x07\x00\x00`\x07\x00\x00_\x07\x00\x005\x07\x00\x005\x07\x00\x006\x07\x00\x00`\x07\x00\x00\r\x07\x00\x007\x07\x00\x006\x07\x00\x00\r\x07\x00\x006\x07\x00\x00\x0c\x07\x00\x00`\x06\x00\x00\x8a\x06\x00\x00\x89\x06\x00\x00\x89\x06\x00\x00_\x06\x00\x00`\x06\x00\x005\x06\x00\x006\x06\x00\x00`\x06\x00\x00`\x06\x00\x00_\x06\x00\x005\x06\x00\x00\xb5\x06\x00\x00\xb4\x06\x00\x00\x8b\x06\x00\x00\xb4\x06\x00\x00\x8a\x06\x00\x00\x8b\x06\x00\x00\x8b\x06\x00\x00\x8a\x06\x00\x00`\x06\x00\x00`\x06\x00\x00a\x06\x00\x00\x8b\x06\x00\x00\x0c\x06\x00\x00\r\x06\x00\x007\x06\x00\x007\x06\x00\x006\x06\x00\x00\x0c\x06\x00\x00`\x06\x00\x006\x06\x00\x007\x06\x00\x007\x06\x00\x00a\x06\x00\x00`\x06\x00\x00,\x08\x00\x00\x02\x08\x00\x00\x03\x08\x00\x00-\x08\x00\x00,\x08\x00\x00\x03\x08\x00\x00\x03\x08\x00\x00\x02\x08\x00\x00\xd8\x07\x00\x00\x03\x08\x00\x00\xd8\x07\x00\x00\xd9\x07\x00\x00\xda\x07\x00\x00\xb0\x07\x00\x00\xb1\x07\x00\x00\xda\x07\x00\x00\xb1\x07\x00\x00\xdb\x07\x00\x00\xaf\x07\x00\x00\xb0\x07\x00\x00\xda\x07\x00\x00\xd9\x07\x00\x00\xaf\x07\x00\x00\xda\x07\x00\x00\xb2\x07\x00\x00\xb1\x07\x00\x00\x87\x07\x00\x00\xb2\x07\x00\x00\x87\x07\x00\x00\x88\x07\x00\x00\xdb\x07\x00\x00\xb1\x07\x00\x00\xb2\x07\x00\x00\xdc\x07\x00\x00\xdb\x07\x00\x00\xb2\x07\x00\x00\x89\x07\x00\x00\xb3\x07\x00\x00\xb2\x07\x00\x00\x88\x07\x00\x00\x89\x07\x00\x00\xb2\x07\x00\x00\xb2\x07\x00\x00\xb3\x07\x00\x00\xdd\x07\x00\x00\xb2\x07\x00\x00\xdd\x07\x00\x00\xdc\x07\x00\x00e\x05\x00\x00d\x05\x00\x00;\x05\x00\x00;\x05\x00\x00d\x05\x00\x00:\x05\x00\x00;\x05\x00\x00\x10\x05\x00\x00\x11\x05\x00\x00;\x05\x00\x00:\x05\x00\x00\x10\x05\x00\x00\xd6\x05\x00\x00\xac\x05\x00\x00\xad\x05\x00\x00\xad\x05\x00\x00\xd7\x05\x00\x00\xd6\x05\x00\x00\xad\x05\x00\x00\xac\x05\x00\x00\x82\x05\x00\x00\xad\x05\x00\x00\x82\x05\x00\x00\x83\x05\x00\x00\xd8\x05\x00\x00\xd7\x05\x00\x00\xad\x05\x00\x00\xad\x05\x00\x00\xae\x05\x00\x00\xd8\x05\x00\x00\xb3\x06\x00\x00\xdd\x06\x00\x00\xdc\x06\x00\x00\xb3\x06\x00\x00\xdc\x06\x00\x00\xb2\x06\x00\x00\xb3\x06\x00\x00\xb2\x06\x00\x00\x88\x06\x00\x00\x88\x06\x00\x00\x89\x06\x00\x00\xb3\x06\x00\x00\xb3\x06\x00\x00\xb4\x06\x00\x00\xde\x06\x00\x00\xde\x06\x00\x00\xdd\x06\x00\x00\xb3\x06\x00\x00\x89\x06\x00\x00\x8a\x06\x00\x00\xb3\x06\x00\x00\xb3\x06\x00\x00\x8a\x06\x00\x00\xb4\x06\x00\x00\xdb\x06\x00\x00\xb1\x06\x00\x00\xb2\x06\x00\x00\xb2\x06\x00\x00\xdc\x06\x00\x00\xdb\x06\x00\x00\xdc\x06\x00\x00\x06\x07\x00\x00\xdb\x06\x00\x00\xdb\x06\x00\x00\x06\x07\x00\x00\x05\x07\x00\x00\x84\x07\x00\x00\xae\x07\x00\x00\xad\x07\x00\x00\x84\x07\x00\x00\xad\x07\x00\x00\x83\x07\x00\x00\x84\x07\x00\x00\x85\x07\x00\x00\xaf\x07\x00\x00\xaf\x07\x00\x00\xae\x07\x00\x00\x84\x07\x00\x00\x84\x07\x00\x00[\x07\x00\x00\x85\x07\x00\x00Z\x07\x00\x00[\x07\x00\x00\x84\x07\x00\x000\x07\x00\x00Z\x07\x00\x00Y\x07\x00\x00Y\x07\x00\x00/\x07\x00\x000\x07\x00\x00\x84\x07\x00\x00\x83\x07\x00\x00Y\x07\x00\x00Y\x07\x00\x00Z\x07\x00\x00\x84\x07\x00\x00Y\x07\x00\x00\x82\x07\x00\x00X\x07\x00\x00\x83\x07\x00\x00\x82\x07\x00\x00Y\x07\x00\x001\x06\x00\x000\x06\x00\x00\x06\x06\x00\x00\x06\x06\x00\x00\x07\x06\x00\x001\x06\x00\x00\x04\x06\x00\x00\x03\x06\x00\x00\xd9\x05\x00\x00\xda\x05\x00\x00\x04\x06\x00\x00\xd9\x05\x00\x00\xd9\x05\x00\x00\x02\x06\x00\x00\xd8\x05\x00\x00\xd9\x05\x00\x00\x03\x06\x00\x00\x02\x06\x00\x00/\x06\x00\x000\x06\x00\x00Z\x06\x00\x00/\x06\x00\x00Z\x06\x00\x00Y\x06\x00\x00Z\x06\x00\x00\x84\x06\x00\x00\x83\x06\x00\x00Y\x06\x00\x00Z\x06\x00\x00\x83\x06\x00\x00\x83\x06\x00\x00\x84\x06\x00\x00\xae\x06\x00\x00\x83\x06\x00\x00\xae\x06\x00\x00\xad\x06\x00\x00\x83\x06\x00\x00\xad\x06\x00\x00\xac\x06\x00\x00\xac\x06\x00\x00\x82\x06\x00\x00\x83\x06\x00\x00,\x06\x00\x00-\x06\x00\x00W\x06\x00\x00W\x06\x00\x00V\x06\x00\x00,\x06\x00\x00\x02\x06\x00\x00\x03\x06\x00\x00,\x06\x00\x00,\x06\x00\x00\x03\x06\x00\x00-\x06\x00\x00\xdf\x05\x00\x00\t\x06\x00\x00\xde\x05\x00\x00\xde\x05\x00\x00\t\x06\x00\x00\x08\x06\x00\x00\xb4\x05\x00\x00\xb5\x05\x00\x00\xde\x05\x00\x00\xde\x05\x00\x00\xb5\x05\x00\x00\xdf\x05\x00\x00\x07\x06\x00\x00\xdd\x05\x00\x00\xde\x05\x00\x00\x08\x06\x00\x00\x07\x06\x00\x00\xde\x05\x00\x00\xde\x05\x00\x00\xb3\x05\x00\x00\xb4\x05\x00\x00\xde\x05\x00\x00\xdd\x05\x00\x00\xb3\x05\x00\x00a\x05\x00\x00b\x05\x00\x00\x8c\x05\x00\x00\x8c\x05\x00\x00\x8b\x05\x00\x00a\x05\x00\x00\x8c\x05\x00\x00\xb5\x05\x00\x00\x8b\x05\x00\x00\xb6\x05\x00\x00\xb5\x05\x00\x00\x8c\x05\x00\x002\x06\x00\x00\t\x06\x00\x003\x06\x00\x00\x08\x06\x00\x00\t\x06\x00\x002\x06\x00\x002\x06\x00\x00]\x06\x00\x00\\\x06\x00\x003\x06\x00\x00]\x06\x00\x002\x06\x00\x001\x06\x00\x00\x07\x06\x00\x002\x06\x00\x002\x06\x00\x00\x07\x06\x00\x00\x08\x06\x00\x002\x06\x00\x00[\x06\x00\x001\x06\x00\x00\\\x06\x00\x00[\x06\x00\x002\x06\x00\x00^\x06\x00\x004\x06\x00\x005\x06\x00\x005\x06\x00\x00_\x06\x00\x00^\x06\x00\x00^\x06\x00\x00_\x06\x00\x00\x89\x06\x00\x00^\x06\x00\x00\x89\x06\x00\x00\x88\x06\x00\x003\x06\x00\x004\x06\x00\x00^\x06\x00\x00^\x06\x00\x00]\x06\x00\x003\x06\x00\x00^\x06\x00\x00\x87\x06\x00\x00]\x06\x00\x00\x88\x06\x00\x00\x87\x06\x00\x00^\x06\x00\x00\xf2\x06\x00\x00\xf3\x06\x00\x00\x1d\x07\x00\x00\x1d\x07\x00\x00\x1c\x07\x00\x00\xf2\x06\x00\x00\xa2\x07\x00\x00\xcc\x07\x00\x00\xcb\x07\x00\x00\xcb\x07\x00\x00\xa1\x07\x00\x00\xa2\x07\x00\x00\xa2\x07\x00\x00\xcd\x07\x00\x00\xcc\x07\x00\x00\xa3\x07\x00\x00\xcd\x07\x00\x00\xa2\x07\x00\x00\xce\x06\x00\x00\xf8\x06\x00\x00\xf7\x06\x00\x00\xcd\x06\x00\x00\xce\x06\x00\x00\xf7\x06\x00\x00v\x07\x00\x00u\x07\x00\x00K\x07\x00\x00K\x07\x00\x00L\x07\x00\x00v\x07\x00\x00$\x06\x00\x00N\x06\x00\x00M\x06\x00\x00M\x06\x00\x00#\x06\x00\x00$\x06\x00\x00M\x06\x00\x00"\x06\x00\x00#\x06\x00\x00L\x06\x00\x00"\x06\x00\x00M\x06\x00\x00K\x06\x00\x00L\x06\x00\x00u\x06\x00\x00L\x06\x00\x00v\x06\x00\x00u\x06\x00\x00t\x06\x00\x00J\x06\x00\x00u\x06\x00\x00u\x06\x00\x00J\x06\x00\x00K\x06\x00\x00\x9b\x07\x00\x00\xc5\x07\x00\x00\xc4\x07\x00\x00\xc4\x07\x00\x00\x9a\x07\x00\x00\x9b\x07\x00\x00\xea\x06\x00\x00\xc0\x06\x00\x00\xc1\x06\x00\x00\xc1\x06\x00\x00\xeb\x06\x00\x00\xea\x06\x00\x00\x15\x07\x00\x00\x14\x07\x00\x00\xea\x06\x00\x00\xea\x06\x00\x00\xeb\x06\x00\x00\x15\x07\x00\x00\x96\x06\x00\x00\xc0\x06\x00\x00\xbf\x06\x00\x00\xbf\x06\x00\x00\x95\x06\x00\x00\x96\x06\x00\x00\xbf\x06\x00\x00\xc0\x06\x00\x00\xea\x06\x00\x00\xea\x06\x00\x00\xe9\x06\x00\x00\xbf\x06\x00\x00\x94\x06\x00\x00\x95\x06\x00\x00\xbf\x06\x00\x00\xbe\x06\x00\x00\x94\x06\x00\x00\xbf\x06\x00\x00\x13\x07\x00\x00>\x07\x00\x00=\x07\x00\x00\x14\x07\x00\x00>\x07\x00\x00\x13\x07\x00\x00\xea\x06\x00\x00\x14\x07\x00\x00\x13\x07\x00\x00\x13\x07\x00\x00\xe9\x06\x00\x00\xea\x06\x00\x00\x11\x07\x00\x00\x10\x07\x00\x00\xe6\x06\x00\x00\xe6\x06\x00\x00\xe7\x06\x00\x00\x11\x07\x00\x00:\x07\x00\x00\x10\x07\x00\x00\x11\x07\x00\x00;\x07\x00\x00:\x07\x00\x00\x11\x07\x00\x00\x81\x06\x00\x00\x82\x06\x00\x00\xac\x06\x00\x00\xac\x06\x00\x00\xab\x06\x00\x00\x81\x06\x00\x00\x81\x06\x00\x00\xaa\x06\x00\x00\x80\x06\x00\x00\x81\x06\x00\x00\xab\x06\x00\x00\xaa\x06\x00\x00\x80\x06\x00\x00V\x06\x00\x00\x81\x06\x00\x00\x81\x06\x00\x00V\x06\x00\x00W\x06\x00\x00X\x06\x00\x00Y\x06\x00\x00\x83\x06\x00\x00\x83\x06\x00\x00\x82\x06\x00\x00X\x06\x00\x00X\x06\x00\x00\x82\x06\x00\x00\x81\x06\x00\x00\x81\x06\x00\x00W\x06\x00\x00X\x06\x00\x00\x14\x03\x00\x00\x15\x03\x00\x00>\x03\x00\x00\x15\x03\x00\x00?\x03\x00\x00>\x03\x00\x00>\x03\x00\x00i\x03\x00\x00h\x03\x00\x00>\x03\x00\x00?\x03\x00\x00i\x03\x00\x00=\x03\x00\x00\x13\x03\x00\x00>\x03\x00\x00>\x03\x00\x00\x13\x03\x00\x00\x14\x03\x00\x00>\x03\x00\x00g\x03\x00\x00=\x03\x00\x00h\x03\x00\x00g\x03\x00\x00>\x03\x00\x00c\x04\x00\x00d\x04\x00\x00\x8e\x04\x00\x00\x8e\x04\x00\x00\x8d\x04\x00\x00c\x04\x00\x00\xb7\x04\x00\x00\x8d\x04\x00\x00\x8e\x04\x00\x00\xb8\x04\x00\x00\xb7\x04\x00\x00\x8e\x04\x00\x00\x8f\x04\x00\x00\xb9\x04\x00\x00\x8e\x04\x00\x00\x8e\x04\x00\x00\xb9\x04\x00\x00\xb8\x04\x00\x00\x0e\x04\x00\x00\x0f\x04\x00\x009\x04\x00\x008\x04\x00\x00\x0e\x04\x00\x009\x04\x00\x00b\x04\x00\x00\x8c\x04\x00\x00\x8b\x04\x00\x00\x8b\x04\x00\x00a\x04\x00\x00b\x04\x00\x00b\x04\x00\x00a\x04\x00\x007\x04\x00\x007\x04\x00\x008\x04\x00\x00b\x04\x00\x00\x8d\x04\x00\x00\x8c\x04\x00\x00b\x04\x00\x00c\x04\x00\x00\x8d\x04\x00\x00b\x04\x00\x00b\x04\x00\x008\x04\x00\x009\x04\x00\x009\x04\x00\x00c\x04\x00\x00b\x04\x00\x00\\\x05\x00\x002\x05\x00\x003\x05\x00\x00\\\x05\x00\x003\x05\x00\x00]\x05\x00\x00]\x05\x00\x00\x87\x05\x00\x00\\\x05\x00\x00\\\x05\x00\x00\x87\x05\x00\x00\x86\x05\x00\x001\x05\x00\x002\x05\x00\x00\\\x05\x00\x00\\\x05\x00\x00[\x05\x00\x001\x05\x00\x00\x86\x05\x00\x00\x85\x05\x00\x00\\\x05\x00\x00\\\x05\x00\x00\x85\x05\x00\x00[\x05\x00\x00\xb0\x05\x00\x00\xdb\x05\x00\x00\xda\x05\x00\x00\xb0\x05\x00\x00\xb1\x05\x00\x00\xdb\x05\x00\x00\xb0\x05\x00\x00\x87\x05\x00\x00\xb1\x05\x00\x00\x86\x05\x00\x00\x87\x05\x00\x00\xb0\x05\x00\x00Z\x05\x00\x00[\x05\x00\x00\x84\x05\x00\x00[\x05\x00\x00\x85\x05\x00\x00\x84\x05\x00\x00\xad\x05\x00\x00\x83\x05\x00\x00\x84\x05\x00\x00\x84\x05\x00\x00\xae\x05\x00\x00\xad\x05\x00\x00\x83\x05\x00\x00Y\x05\x00\x00\x84\x05\x00\x00\x84\x05\x00\x00Y\x05\x00\x00Z\x05\x00\x00\xda\x04\x00\x00\x03\x05\x00\x00\xd9\x04\x00\x00\x04\x05\x00\x00\x03\x05\x00\x00\xda\x04\x00\x00\xda\x04\x00\x00\x05\x05\x00\x00\x04\x05\x00\x00\xdb\x04\x00\x00\x05\x05\x00\x00\xda\x04\x00\x00\x8b\x04\x00\x00\x8a\x04\x00\x00`\x04\x00\x00`\x04\x00\x00a\x04\x00\x00\x8b\x04\x00\x00\xb1\x04\x00\x00\xdc\x04\x00\x00\xdb\x04\x00\x00\xb2\x04\x00\x00\xdc\x04\x00\x00\xb1\x04\x00\x00c\x03\x00\x00\x8d\x03\x00\x00\x8c\x03\x00\x00\x8c\x03\x00\x00b\x03\x00\x00c\x03\x00\x00\x8c\x03\x00\x00\x8b\x03\x00\x00a\x03\x00\x00a\x03\x00\x00b\x03\x00\x00\x8c\x03\x00\x00\xe3\x03\x00\x00\xe4\x03\x00\x00\r\x04\x00\x00\r\x04\x00\x00\xe4\x03\x00\x00\x0e\x04\x00\x00\r\x04\x00\x00\x0e\x04\x00\x008\x04\x00\x00\r\x04\x00\x008\x04\x00\x007\x04\x00\x00\x85\x04\x00\x00\x84\x04\x00\x00Z\x04\x00\x00[\x04\x00\x00\x85\x04\x00\x00Z\x04\x00\x00Z\x04\x00\x001\x04\x00\x00[\x04\x00\x000\x04\x00\x001\x04\x00\x00Z\x04\x00\x00\x83\x04\x00\x00\x82\x04\x00\x00Y\x04\x00\x00Y\x04\x00\x00\x82\x04\x00\x00X\x04\x00\x00X\x04\x00\x00.\x04\x00\x00Y\x04\x00\x00Y\x04\x00\x00.\x04\x00\x00/\x04\x00\x00Y\x04\x00\x00\x84\x04\x00\x00\x83\x04\x00\x00Z\x04\x00\x00\x84\x04\x00\x00Y\x04\x00\x00Y\x04\x00\x000\x04\x00\x00Z\x04\x00\x00/\x04\x00\x000\x04\x00\x00Y\x04\x00\x00\xdc\x03\x00\x00\xdd\x03\x00\x00\x06\x04\x00\x00\x06\x04\x00\x00\xdd\x03\x00\x00\x07\x04\x00\x00\x07\x04\x00\x001\x04\x00\x00\x06\x04\x00\x00\x06\x04\x00\x001\x04\x00\x000\x04\x00\x00\xdb\x03\x00\x00\xdc\x03\x00\x00\x06\x04\x00\x00\x06\x04\x00\x00\x05\x04\x00\x00\xdb\x03\x00\x00/\x04\x00\x00\x05\x04\x00\x00\x06\x04\x00\x00\x06\x04\x00\x000\x04\x00\x00/\x04\x00\x00\xe4\x04\x00\x00\xb9\x04\x00\x00\xba\x04\x00\x00\xe3\x04\x00\x00\xb9\x04\x00\x00\xe4\x04\x00\x00\x0e\x05\x00\x00\r\x05\x00\x00\xe4\x04\x00\x00\xe4\x04\x00\x00\r\x05\x00\x00\xe3\x04\x00\x00\xba\x04\x00\x00\xbb\x04\x00\x00\xe4\x04\x00\x00\xe4\x04\x00\x00\xbb\x04\x00\x00\xe5\x04\x00\x00\xe5\x04\x00\x00\x0f\x05\x00\x00\xe4\x04\x00\x00\xe4\x04\x00\x00\x0f\x05\x00\x00\x0e\x05\x00\x00\xc8\x07\x00\x00\xf3\x07\x00\x00\xf2\x07\x00\x00\xc9\x07\x00\x00\xf3\x07\x00\x00\xc8\x07\x00\x00\xc8\x07\x00\x00\x9f\x07\x00\x00\xc9\x07\x00\x00\x9e\x07\x00\x00\x9f\x07\x00\x00\xc8\x07\x00\x00\xa1\x06\x00\x00\xcb\x06\x00\x00\xa0\x06\x00\x00\xa0\x06\x00\x00\xcb\x06\x00\x00\xca\x06\x00\x00\x9c\x05\x00\x00\x9b\x05\x00\x00q\x05\x00\x00q\x05\x00\x00r\x05\x00\x00\x9c\x05\x00\x00\xc6\x05\x00\x00\xc5\x05\x00\x00\x9c\x05\x00\x00\x9c\x05\x00\x00\xc5\x05\x00\x00\x9b\x05\x00\x00\x9c\x05\x00\x00r\x05\x00\x00s\x05\x00\x00s\x05\x00\x00\x9d\x05\x00\x00\x9c\x05\x00\x00\x9c\x05\x00\x00\xc7\x05\x00\x00\xc6\x05\x00\x00\x9c\x05\x00\x00\x9d\x05\x00\x00\xc7\x05\x00\x00n\x06\x00\x00m\x06\x00\x00D\x06\x00\x00D\x06\x00\x00m\x06\x00\x00C\x06\x00\x00D\x06\x00\x00\x19\x06\x00\x00\x1a\x06\x00\x00C\x06\x00\x00\x19\x06\x00\x00D\x06\x00\x00D\x06\x00\x00o\x06\x00\x00n\x06\x00\x00D\x06\x00\x00E\x06\x00\x00o\x06\x00\x00\x1b\x06\x00\x00E\x06\x00\x00D\x06\x00\x00\x1a\x06\x00\x00\x1b\x06\x00\x00D\x06\x00\x00\xef\x05\x00\x00\x19\x06\x00\x00\xee\x05\x00\x00\xee\x05\x00\x00\x19\x06\x00\x00\x18\x06\x00\x00\xee\x05\x00\x00\xc5\x05\x00\x00\xef\x05\x00\x00\xc4\x05\x00\x00\xc5\x05\x00\x00\xee\x05\x00\x00\xee\x05\x00\x00\x17\x06\x00\x00\xed\x05\x00\x00\x18\x06\x00\x00\x17\x06\x00\x00\xee\x05\x00\x00\xed\x05\x00\x00\xc3\x05\x00\x00\xee\x05\x00\x00\xee\x05\x00\x00\xc3\x05\x00\x00\xc4\x05\x00\x00\xc2\x05\x00\x00\xed\x05\x00\x00\xec\x05\x00\x00\xc2\x05\x00\x00\xc3\x05\x00\x00\xed\x05\x00\x00\xc2\x05\x00\x00\xeb\x05\x00\x00\xc1\x05\x00\x00\xec\x05\x00\x00\xeb\x05\x00\x00\xc2\x05\x00\x00\xc1\x05\x00\x00\x97\x05\x00\x00\xc2\x05\x00\x00\xc2\x05\x00\x00\x97\x05\x00\x00\x98\x05\x00\x00\x99\x05\x00\x00\x9a\x05\x00\x00\xc4\x05\x00\x00\xc4\x05\x00\x00\xc3\x05\x00\x00\x99\x05\x00\x00\x99\x05\x00\x00\xc3\x05\x00\x00\xc2\x05\x00\x00\xc2\x05\x00\x00\x98\x05\x00\x00\x99\x05\x00\x00\xe4\x00\x00\x00\xe3\x00\x00\x00\xb9\x00\x00\x00\xba\x00\x00\x00\xe4\x00\x00\x00\xb9\x00\x00\x00\xb9\x00\x00\x00\x8f\x00\x00\x00\x90\x00\x00\x00\xb9\x00\x00\x00\x90\x00\x00\x00\xba\x00\x00\x00\xb9\x00\x00\x00\xe3\x00\x00\x00\xe2\x00\x00\x00\xb9\x00\x00\x00\xe2\x00\x00\x00\xb8\x00\x00\x00\x8e\x00\x00\x00\x8f\x00\x00\x00\xb9\x00\x00\x00\xb8\x00\x00\x00\x8e\x00\x00\x00\xb9\x00\x00\x00\xbb\x00\x00\x00\xe5\x00\x00\x00\xe4\x00\x00\x00\xbb\x00\x00\x00\xe4\x00\x00\x00\xba\x00\x00\x00\xbb\x00\x00\x00\x90\x00\x00\x00\x91\x00\x00\x00\xba\x00\x00\x00\x90\x00\x00\x00\xbb\x00\x00\x00\xe6\x00\x00\x00\xe5\x00\x00\x00\xbb\x00\x00\x00\xbb\x00\x00\x00\xbc\x00\x00\x00\xe6\x00\x00\x00\xbb\x00\x00\x00\x91\x00\x00\x00\x92\x00\x00\x00\x92\x00\x00\x00\xbc\x00\x00\x00\xbb\x00\x00\x00;\x01\x00\x00\x11\x01\x00\x00<\x01\x00\x00<\x01\x00\x00\x11\x01\x00\x00\x12\x01\x00\x00e\x01\x00\x00;\x01\x00\x00<\x01\x00\x00f\x01\x00\x00e\x01\x00\x00<\x01\x00\x00<\x01\x00\x00\x13\x01\x00\x00=\x01\x00\x00<\x01\x00\x00\x12\x01\x00\x00\x13\x01\x00\x00<\x01\x00\x00g\x01\x00\x00f\x01\x00\x00=\x01\x00\x00g\x01\x00\x00<\x01\x00\x00\xbd\x00\x00\x00\xe8\x00\x00\x00\xe7\x00\x00\x00\xbd\x00\x00\x00\xbe\x00\x00\x00\xe8\x00\x00\x00\xe7\x00\x00\x00\xe6\x00\x00\x00\xbd\x00\x00\x00\xe6\x00\x00\x00\xbc\x00\x00\x00\xbd\x00\x00\x00\xe9\x00\x00\x00\x12\x01\x00\x00\xe8\x00\x00\x00\x13\x01\x00\x00\x12\x01\x00\x00\xe9\x00\x00\x00\xe8\x00\x00\x00\xbe\x00\x00\x00\xe9\x00\x00\x00\xe9\x00\x00\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\xe9\x00\x00\x00\xea\x00\x00\x00\x14\x01\x00\x00\x14\x01\x00\x00\x13\x01\x00\x00\xe9\x00\x00\x00\xe9\x00\x00\x00\xc0\x00\x00\x00\xea\x00\x00\x00\xbf\x00\x00\x00\xc0\x00\x00\x00\xe9\x00\x00\x00\x93\x00\x00\x00\xbc\x00\x00\x00\x92\x00\x00\x00\xbd\x00\x00\x00\xbc\x00\x00\x00\x93\x00\x00\x00I\x00\x00\x00\x1f\x00\x00\x00J\x00\x00\x00J\x00\x00\x00\x1f\x00\x00\x00 \x00\x00\x00\xf3\x00\x00\x00\xc9\x00\x00\x00\xf4\x00\x00\x00\xc9\x00\x00\x00\xca\x00\x00\x00\xf4\x00\x00\x00\xcb\x00\x00\x00\xf5\x00\x00\x00\xf4\x00\x00\x00\xf4\x00\x00\x00\xca\x00\x00\x00\xcb\x00\x00\x00\xf4\x00\x00\x00\xf5\x00\x00\x00\x1f\x01\x00\x00\xf4\x00\x00\x00\x1f\x01\x00\x00\x1e\x01\x00\x00\x1e\x01\x00\x00H\x01\x00\x00\x1d\x01\x00\x00\x1d\x01\x00\x00H\x01\x00\x00G\x01\x00\x00\x1d\x01\x00\x00\xf3\x00\x00\x00\xf4\x00\x00\x00\xf4\x00\x00\x00\x1e\x01\x00\x00\x1d\x01\x00\x00\x1d\x01\x00\x00F\x01\x00\x00\x1c\x01\x00\x00G\x01\x00\x00F\x01\x00\x00\x1d\x01\x00\x00\x1d\x01\x00\x00\xf2\x00\x00\x00\xf3\x00\x00\x00\x1c\x01\x00\x00\xf2\x00\x00\x00\x1d\x01\x00\x00s\x00\x00\x00I\x00\x00\x00J\x00\x00\x00J\x00\x00\x00t\x00\x00\x00s\x00\x00\x00s\x00\x00\x00t\x00\x00\x00\x9e\x00\x00\x00s\x00\x00\x00\x9e\x00\x00\x00\x9d\x00\x00\x00s\x00\x00\x00H\x00\x00\x00I\x00\x00\x00r\x00\x00\x00H\x00\x00\x00s\x00\x00\x00s\x00\x00\x00\x9c\x00\x00\x00r\x00\x00\x00\x9d\x00\x00\x00\x9c\x00\x00\x00s\x00\x00\x00\xc8\x00\x00\x00\xf2\x00\x00\x00\xf1\x00\x00\x00\xf1\x00\x00\x00\xc7\x00\x00\x00\xc8\x00\x00\x00\x1c\x01\x00\x00\x1b\x01\x00\x00\xf1\x00\x00\x00\xf1\x00\x00\x00\xf2\x00\x00\x00\x1c\x01\x00\x00\x9d\x00\x00\x00\xc7\x00\x00\x00\xc6\x00\x00\x00\xc6\x00\x00\x00\x9c\x00\x00\x00\x9d\x00\x00\x00\xc6\x00\x00\x00\xc7\x00\x00\x00\xf1\x00\x00\x00\xf1\x00\x00\x00\xf0\x00\x00\x00\xc6\x00\x00\x00\x1a\x01\x00\x00\x1b\x01\x00\x00E\x01\x00\x00E\x01\x00\x00D\x01\x00\x00\x1a\x01\x00\x00\xf1\x00\x00\x00\x1b\x01\x00\x00\x1a\x01\x00\x00\x1a\x01\x00\x00\xf0\x00\x00\x00\xf1\x00\x00\x00\xc0\x01\x00\x00\xbf\x01\x00\x00\x95\x01\x00\x00\x95\x01\x00\x00\x96\x01\x00\x00\xc0\x01\x00\x00l\x01\x00\x00\x96\x01\x00\x00\x95\x01\x00\x00k\x01\x00\x00l\x01\x00\x00\x95\x01\x00\x00\x95\x01\x00\x00\xbe\x01\x00\x00\x94\x01\x00\x00\xbf\x01\x00\x00\xbe\x01\x00\x00\x95\x01\x00\x00\x95\x01\x00\x00\x94\x01\x00\x00j\x01\x00\x00j\x01\x00\x00k\x01\x00\x00\x95\x01\x00\x00@\x01\x00\x00\x16\x01\x00\x00A\x01\x00\x00A\x01\x00\x00\x16\x01\x00\x00\x17\x01\x00\x00j\x01\x00\x00@\x01\x00\x00A\x01\x00\x00A\x01\x00\x00k\x01\x00\x00j\x01\x00\x00\x17\x01\x00\x00\x18\x01\x00\x00A\x01\x00\x00A\x01\x00\x00\x18\x01\x00\x00B\x01\x00\x00B\x01\x00\x00l\x01\x00\x00A\x01\x00\x00A\x01\x00\x00l\x01\x00\x00k\x01\x00\x00o\x00\x00\x00p\x00\x00\x00\x99\x00\x00\x00\x99\x00\x00\x00p\x00\x00\x00\x9a\x00\x00\x00\x9a\x00\x00\x00\xc4\x00\x00\x00\x99\x00\x00\x00\x99\x00\x00\x00\xc4\x00\x00\x00\xc3\x00\x00\x00\xee\x00\x00\x00\x18\x01\x00\x00\xed\x00\x00\x00\xed\x00\x00\x00\x18\x01\x00\x00\x17\x01\x00\x00\xed\x00\x00\x00\xc4\x00\x00\x00\xee\x00\x00\x00\xc3\x00\x00\x00\xc4\x00\x00\x00\xed\x00\x00\x00\xed\x00\x00\x00\x16\x01\x00\x00\xec\x00\x00\x00\x17\x01\x00\x00\x16\x01\x00\x00\xed\x00\x00\x00\xbd\x01\x00\x00\xbe\x01\x00\x00\xe8\x01\x00\x00\xe8\x01\x00\x00\xe7\x01\x00\x00\xbd\x01\x00\x00\x12\x02\x00\x00\x11\x02\x00\x00\xe8\x01\x00\x00\xe8\x01\x00\x00\x11\x02\x00\x00\xe7\x01\x00\x00\xbf\x01\x00\x00\xe9\x01\x00\x00\xe8\x01\x00\x00\xe8\x01\x00\x00\xbe\x01\x00\x00\xbf\x01\x00\x00\xe8\x01\x00\x00\x13\x02\x00\x00\x12\x02\x00\x00\xe8\x01\x00\x00\xe9\x01\x00\x00\x13\x02\x00\x00h\x02\x00\x00>\x02\x00\x00?\x02\x00\x00i\x02\x00\x00h\x02\x00\x00?\x02\x00\x00@\x02\x00\x00j\x02\x00\x00?\x02\x00\x00?\x02\x00\x00j\x02\x00\x00i\x02\x00\x00\x97\x01\x00\x00l\x01\x00\x00m\x01\x00\x00\x97\x01\x00\x00\x96\x01\x00\x00l\x01\x00\x00n\x01\x00\x00\x98\x01\x00\x00\x97\x01\x00\x00m\x01\x00\x00n\x01\x00\x00\x97\x01\x00\x00\x1b\x02\x00\x00\x1c\x02\x00\x00F\x02\x00\x00E\x02\x00\x00\x1b\x02\x00\x00F\x02\x00\x00F\x02\x00\x00p\x02\x00\x00o\x02\x00\x00F\x02\x00\x00o\x02\x00\x00E\x02\x00\x00\x1d\x02\x00\x00G\x02\x00\x00F\x02\x00\x00F\x02\x00\x00\x1c\x02\x00\x00\x1d\x02\x00\x00q\x02\x00\x00p\x02\x00\x00F\x02\x00\x00F\x02\x00\x00G\x02\x00\x00q\x02\x00\x00t\x01\x00\x00s\x01\x00\x00I\x01\x00\x00t\x01\x00\x00I\x01\x00\x00J\x01\x00\x00\x9d\x01\x00\x00s\x01\x00\x00t\x01\x00\x00\x9e\x01\x00\x00\x9d\x01\x00\x00t\x01\x00\x00t\x01\x00\x00J\x01\x00\x00K\x01\x00\x00K\x01\x00\x00u\x01\x00\x00t\x01\x00\x00t\x01\x00\x00\x9f\x01\x00\x00\x9e\x01\x00\x00t\x01\x00\x00u\x01\x00\x00\x9f\x01\x00\x00K\x01\x00\x00L\x01\x00\x00v\x01\x00\x00v\x01\x00\x00u\x01\x00\x00K\x01\x00\x00\xa0\x01\x00\x00\x9f\x01\x00\x00v\x01\x00\x00\x9f\x01\x00\x00u\x01\x00\x00v\x01\x00\x00v\x01\x00\x00L\x01\x00\x00M\x01\x00\x00v\x01\x00\x00M\x01\x00\x00w\x01\x00\x00w\x01\x00\x00\xa1\x01\x00\x00v\x01\x00\x00v\x01\x00\x00\xa1\x01\x00\x00\xa0\x01\x00\x00\xa4\x00\x00\x00\xa5\x00\x00\x00\xcf\x00\x00\x00\xcf\x00\x00\x00\xce\x00\x00\x00\xa4\x00\x00\x00{\x00\x00\x00\xa5\x00\x00\x00\xa4\x00\x00\x00z\x00\x00\x00{\x00\x00\x00\xa4\x00\x00\x00\xa4\x00\x00\x00\xce\x00\x00\x00\xcd\x00\x00\x00\xcd\x00\x00\x00\xa3\x00\x00\x00\xa4\x00\x00\x00\xa4\x00\x00\x00\xa3\x00\x00\x00y\x00\x00\x00\xa4\x00\x00\x00y\x00\x00\x00z\x00\x00\x00\xa1\x00\x00\x00\xcb\x00\x00\x00\xa0\x00\x00\x00\xcb\x00\x00\x00\xca\x00\x00\x00\xa0\x00\x00\x00\xc9\x00\x00\x00\x9f\x00\x00\x00\xa0\x00\x00\x00\xa0\x00\x00\x00\xca\x00\x00\x00\xc9\x00\x00\x00\x9f\x00\x00\x00u\x00\x00\x00\xa0\x00\x00\x00\xa0\x00\x00\x00u\x00\x00\x00v\x00\x00\x00L\x00\x00\x00M\x00\x00\x00w\x00\x00\x00v\x00\x00\x00L\x00\x00\x00w\x00\x00\x00w\x00\x00\x00\xa1\x00\x00\x00\xa0\x00\x00\x00\xa0\x00\x00\x00v\x00\x00\x00w\x00\x00\x00w\x00\x00\x00M\x00\x00\x00N\x00\x00\x00w\x00\x00\x00N\x00\x00\x00x\x00\x00\x00x\x00\x00\x00\xa2\x00\x00\x00w\x00\x00\x00w\x00\x00\x00\xa2\x00\x00\x00\xa1\x00\x00\x00\x87\x00\x00\x00\xb1\x00\x00\x00\xb0\x00\x00\x00\xb0\x00\x00\x00\x86\x00\x00\x00\x87\x00\x00\x00\x87\x00\x00\x00\x86\x00\x00\x00\\\x00\x00\x00\x87\x00\x00\x00\\\x00\x00\x00]\x00\x00\x00\x8a\x00\x00\x00\xb4\x00\x00\x00\x89\x00\x00\x00\x89\x00\x00\x00\xb4\x00\x00\x00\xb3\x00\x00\x00_\x00\x00\x00`\x00\x00\x00\x89\x00\x00\x00\x89\x00\x00\x00`\x00\x00\x00\x8a\x00\x00\x00^\x00\x00\x003\x00\x00\x004\x00\x00\x00]\x00\x00\x003\x00\x00\x00^\x00\x00\x004\x00\x00\x005\x00\x00\x00^\x00\x00\x00^\x00\x00\x005\x00\x00\x00_\x00\x00\x00\xdd\x00\x00\x00\xb3\x00\x00\x00\xde\x00\x00\x00\xb3\x00\x00\x00\xb4\x00\x00\x00\xde\x00\x00\x00\xde\x00\x00\x00\x07\x01\x00\x00\xdd\x00\x00\x00\x08\x01\x00\x00\x07\x01\x00\x00\xde\x00\x00\x00\xde\x00\x00\x00\t\x01\x00\x00\x08\x01\x00\x00\xde\x00\x00\x00\xdf\x00\x00\x00\t\x01\x00\x00,\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00-\x00\x00\x00,\x00\x00\x00\x03\x00\x00\x00X\x00\x00\x00Y\x00\x00\x00\x83\x00\x00\x00\x83\x00\x00\x00\x82\x00\x00\x00X\x00\x00\x00X\x00\x00\x00\x82\x00\x00\x00\x81\x00\x00\x00X\x00\x00\x00\x81\x00\x00\x00W\x00\x00\x00,\x01\x00\x00\x01\x01\x00\x00\x02\x01\x00\x00+\x01\x00\x00\x01\x01\x00\x00,\x01\x00\x00,\x01\x00\x00U\x01\x00\x00+\x01\x00\x00V\x01\x00\x00U\x01\x00\x00,\x01\x00\x00\x02\x01\x00\x00\x03\x01\x00\x00,\x01\x00\x00,\x01\x00\x00\x03\x01\x00\x00-\x01\x00\x00-\x01\x00\x00W\x01\x00\x00,\x01\x00\x00,\x01\x00\x00W\x01\x00\x00V\x01\x00\x006\x01\x00\x007\x01\x00\x00a\x01\x00\x00a\x01\x00\x00`\x01\x00\x006\x01\x00\x006\x01\x00\x00\r\x01\x00\x007\x01\x00\x00\x0c\x01\x00\x00\r\x01\x00\x006\x01\x00\x00\x06\x01\x00\x00\x07\x01\x00\x001\x01\x00\x000\x01\x00\x00\x06\x01\x00\x001\x01\x00\x001\x01\x00\x00Z\x01\x00\x000\x01\x00\x00[\x01\x00\x00Z\x01\x00\x001\x01\x00\x00\x08\x01\x00\x002\x01\x00\x001\x01\x00\x001\x01\x00\x00\x07\x01\x00\x00\x08\x01\x00\x002\x01\x00\x00\\\x01\x00\x001\x01\x00\x001\x01\x00\x00\\\x01\x00\x00[\x01\x00\x00\xde\x00\x00\x00\xb4\x00\x00\x00\xb5\x00\x00\x00\xb5\x00\x00\x00\xdf\x00\x00\x00\xde\x00\x00\x00\xe0\x00\x00\x00\xdf\x00\x00\x00\xb5\x00\x00\x00\xb5\x00\x00\x00\xb6\x00\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x00\xb7\x00\x00\x00\xb8\x00\x00\x00\xb8\x00\x00\x00\xe2\x00\x00\x00\xe1\x00\x00\x00\xb6\x00\x00\x00\xb7\x00\x00\x00\xe1\x00\x00\x00\xe0\x00\x00\x00\xb6\x00\x00\x00\xe1\x00\x00\x00\xca\x02\x00\x00\xa0\x02\x00\x00\xa1\x02\x00\x00\xcb\x02\x00\x00\xca\x02\x00\x00\xa1\x02\x00\x00z\x02\x00\x00\xa4\x02\x00\x00\xa3\x02\x00\x00y\x02\x00\x00z\x02\x00\x00\xa3\x02\x00\x00#\x03\x00\x00$\x03\x00\x00N\x03\x00\x00N\x03\x00\x00M\x03\x00\x00#\x03\x00\x00\xfa\x02\x00\x00$\x03\x00\x00#\x03\x00\x00\xf9\x02\x00\x00\xfa\x02\x00\x00#\x03\x00\x00L\x03\x00\x00"\x03\x00\x00#\x03\x00\x00#\x03\x00\x00M\x03\x00\x00L\x03\x00\x00#\x03\x00\x00"\x03\x00\x00\xf8\x02\x00\x00#\x03\x00\x00\xf8\x02\x00\x00\xf9\x02\x00\x00O\x03\x00\x00y\x03\x00\x00x\x03\x00\x00N\x03\x00\x00O\x03\x00\x00x\x03\x00\x00x\x03\x00\x00y\x03\x00\x00\xa3\x03\x00\x00x\x03\x00\x00\xa3\x03\x00\x00\xa2\x03\x00\x00#\x04\x00\x00"\x04\x00\x00\xf8\x03\x00\x00\xf8\x03\x00\x00\xf9\x03\x00\x00#\x04\x00\x00$\x02\x00\x00M\x02\x00\x00#\x02\x00\x00N\x02\x00\x00M\x02\x00\x00$\x02\x00\x00#\x02\x00\x00\xf9\x01\x00\x00$\x02\x00\x00$\x02\x00\x00\xf9\x01\x00\x00\xfa\x01\x00\x00%\x02\x00\x00O\x02\x00\x00$\x02\x00\x00$\x02\x00\x00O\x02\x00\x00N\x02\x00\x00$\x02\x00\x00\xfb\x01\x00\x00%\x02\x00\x00\xfa\x01\x00\x00\xfb\x01\x00\x00$\x02\x00\x00S\x01\x00\x00(\x01\x00\x00)\x01\x00\x00R\x01\x00\x00(\x01\x00\x00S\x01\x00\x00S\x01\x00\x00|\x01\x00\x00R\x01\x00\x00}\x01\x00\x00|\x01\x00\x00S\x01\x00\x00)\x01\x00\x00*\x01\x00\x00S\x01\x00\x00S\x01\x00\x00*\x01\x00\x00T\x01\x00\x00T\x01\x00\x00~\x01\x00\x00S\x01\x00\x00S\x01\x00\x00~\x01\x00\x00}\x01\x00\x00+\x06\x00\x00U\x06\x00\x00T\x06\x00\x00T\x06\x00\x00*\x06\x00\x00+\x06\x00\x00+\x06\x00\x00*\x06\x00\x00\x00\x06\x00\x00+\x06\x00\x00\x00\x06\x00\x00\x01\x06\x00\x00V\x06\x00\x00U\x06\x00\x00+\x06\x00\x00,\x06\x00\x00V\x06\x00\x00+\x06\x00\x00\x01\x06\x00\x00\x02\x06\x00\x00+\x06\x00\x00+\x06\x00\x00\x02\x06\x00\x00,\x06\x00\x00.\x03\x00\x00/\x03\x00\x00Y\x03\x00\x00X\x03\x00\x00.\x03\x00\x00Y\x03\x00\x00Y\x03\x00\x00/\x03\x00\x000\x03\x00\x00Y\x03\x00\x000\x03\x00\x00Z\x03\x00\x00u\x04\x00\x00v\x04\x00\x00\xa0\x04\x00\x00\x9f\x04\x00\x00u\x04\x00\x00\xa0\x04\x00\x00\xa0\x04\x00\x00v\x04\x00\x00w\x04\x00\x00\xa0\x04\x00\x00w\x04\x00\x00\xa1\x04\x00\x00\xcc\x05\x00\x00\xa3\x05\x00\x00\xcd\x05\x00\x00\xcc\x05\x00\x00\xa2\x05\x00\x00\xa3\x05\x00\x00\xcd\x05\x00\x00\xf7\x05\x00\x00\xcc\x05\x00\x00\xcc\x05\x00\x00\xf7\x05\x00\x00\xf6\x05\x00\x00\xf4\x05\x00\x00\xf3\x05\x00\x00\xca\x05\x00\x00\xca\x05\x00\x00\xf3\x05\x00\x00\xc9\x05\x00\x00\xc9\x05\x00\x00\x9f\x05\x00\x00\xca\x05\x00\x00\x9f\x05\x00\x00\xa0\x05\x00\x00\xca\x05\x00\x00\xfb\x04\x00\x00%\x05\x00\x00$\x05\x00\x00$\x05\x00\x00\xfa\x04\x00\x00\xfb\x04\x00\x00$\x05\x00\x00%\x05\x00\x00O\x05\x00\x00$\x05\x00\x00O\x05\x00\x00N\x05\x00\x00x\x05\x00\x00y\x05\x00\x00\xa3\x05\x00\x00\xa3\x05\x00\x00\xa2\x05\x00\x00x\x05\x00\x00O\x05\x00\x00y\x05\x00\x00x\x05\x00\x00N\x05\x00\x00O\x05\x00\x00x\x05\x00\x00u\x05\x00\x00K\x05\x00\x00L\x05\x00\x00u\x05\x00\x00L\x05\x00\x00v\x05\x00\x00u\x05\x00\x00\xa0\x05\x00\x00\x9f\x05\x00\x00v\x05\x00\x00\xa0\x05\x00\x00u\x05\x00\x00u\x05\x00\x00t\x05\x00\x00J\x05\x00\x00J\x05\x00\x00K\x05\x00\x00u\x05\x00\x00\x9e\x05\x00\x00t\x05\x00\x00u\x05\x00\x00u\x05\x00\x00\x9f\x05\x00\x00\x9e\x05\x00\x00\x9c\x06\x00\x00r\x06\x00\x00\x9d\x06\x00\x00\x9d\x06\x00\x00r\x06\x00\x00s\x06\x00\x00\xc6\x06\x00\x00\x9c\x06\x00\x00\x9d\x06\x00\x00\xc7\x06\x00\x00\xc6\x06\x00\x00\x9d\x06\x00\x00\x9d\x06\x00\x00s\x06\x00\x00t\x06\x00\x00t\x06\x00\x00\x9e\x06\x00\x00\x9d\x06\x00\x00\xf2\x06\x00\x00\x1c\x07\x00\x00\x1b\x07\x00\x00\x1b\x07\x00\x00\xf1\x06\x00\x00\xf2\x06\x00\x00p\x07\x00\x00\x9a\x07\x00\x00o\x07\x00\x00o\x07\x00\x00\x9a\x07\x00\x00\x99\x07\x00\x00\xc8\x06\x00\x00\xc7\x06\x00\x00\x9d\x06\x00\x00\x9d\x06\x00\x00\x9e\x06\x00\x00\xc8\x06\x00\x00\xc8\x06\x00\x00\xf1\x06\x00\x00\xc7\x06\x00\x00\xf2\x06\x00\x00\xf1\x06\x00\x00\xc8\x06\x00\x00\xfe\x04\x00\x00\xd4\x04\x00\x00\xd5\x04\x00\x00\xd5\x04\x00\x00\xff\x04\x00\x00\xfe\x04\x00\x00\xd3\x04\x00\x00\xd4\x04\x00\x00\xfe\x04\x00\x00\xfd\x04\x00\x00\xd3\x04\x00\x00\xfe\x04\x00\x00\x1e\x05\x00\x00I\x05\x00\x00H\x05\x00\x00\x1e\x05\x00\x00\x1f\x05\x00\x00I\x05\x00\x00H\x05\x00\x00G\x05\x00\x00\x1e\x05\x00\x00\x1e\x05\x00\x00G\x05\x00\x00\x1d\x05\x00\x00\xc9\x04\x00\x00\x9e\x04\x00\x00\x9f\x04\x00\x00\xc8\x04\x00\x00\x9e\x04\x00\x00\xc9\x04\x00\x00u\x03\x00\x00K\x03\x00\x00v\x03\x00\x00v\x03\x00\x00K\x03\x00\x00L\x03\x00\x00v\x03\x00\x00\x9f\x03\x00\x00u\x03\x00\x00\xa0\x03\x00\x00\x9f\x03\x00\x00v\x03\x00\x00\xca\x03\x00\x00\xf5\x03\x00\x00\xf4\x03\x00\x00\xcb\x03\x00\x00\xf5\x03\x00\x00\xca\x03\x00\x00\xca\x03\x00\x00\xa1\x03\x00\x00\xcb\x03\x00\x00\xa0\x03\x00\x00\xa1\x03\x00\x00\xca\x03\x00\x00\xf4\x03\x00\x00\xf3\x03\x00\x00\xca\x03\x00\x00\xca\x03\x00\x00\xf3\x03\x00\x00\xc9\x03\x00\x00\xc9\x03\x00\x00\x9f\x03\x00\x00\xca\x03\x00\x00\xca\x03\x00\x00\x9f\x03\x00\x00\xa0\x03\x00\x00~\x02\x00\x00T\x02\x00\x00U\x02\x00\x00U\x02\x00\x00\x7f\x02\x00\x00~\x02\x00\x00\x7f\x02\x00\x00\xa9\x02\x00\x00~\x02\x00\x00~\x02\x00\x00\xa9\x02\x00\x00\xa8\x02\x00\x00+\x02\x00\x00,\x02\x00\x00V\x02\x00\x00U\x02\x00\x00+\x02\x00\x00V\x02\x00\x00\x80\x02\x00\x00\x7f\x02\x00\x00V\x02\x00\x00V\x02\x00\x00\x7f\x02\x00\x00U\x02\x00\x00V\x02\x00\x00,\x02\x00\x00-\x02\x00\x00V\x02\x00\x00-\x02\x00\x00W\x02\x00\x00W\x02\x00\x00\x81\x02\x00\x00V\x02\x00\x00V\x02\x00\x00\x81\x02\x00\x00\x80\x02\x00\x00)\x02\x00\x00\xff\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00*\x02\x00\x00)\x02\x00\x00\xff\x01\x00\x00\xd5\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\xd5\x01\x00\x00\xd6\x01\x00\x00\x00\x02\x00\x00\x01\x02\x00\x00+\x02\x00\x00+\x02\x00\x00*\x02\x00\x00\x00\x02\x00\x00\xd7\x01\x00\x00\x01\x02\x00\x00\x00\x02\x00\x00\xd6\x01\x00\x00\xd7\x01\x00\x00\x00\x02\x00\x00\xe7\x03\x00\x00\x12\x04\x00\x00\x11\x04\x00\x00\xe8\x03\x00\x00\x12\x04\x00\x00\xe7\x03\x00\x00\xbd\x03\x00\x00\xbe\x03\x00\x00\xe7\x03\x00\x00\xe7\x03\x00\x00\xbe\x03\x00\x00\xe8\x03\x00\x00\x10\x04\x00\x00\xe6\x03\x00\x00\xe7\x03\x00\x00\xe7\x03\x00\x00\x11\x04\x00\x00\x10\x04\x00\x00\xe7\x03\x00\x00\xe6\x03\x00\x00\xbc\x03\x00\x00\xe7\x03\x00\x00\xbc\x03\x00\x00\xbd\x03\x00\x00C\x03\x00\x00\x1a\x03\x00\x00D\x03\x00\x00\x19\x03\x00\x00\x1a\x03\x00\x00C\x03\x00\x00D\x03\x00\x00n\x03\x00\x00C\x03\x00\x00C\x03\x00\x00n\x03\x00\x00m\x03\x00\x00B\x03\x00\x00\x18\x03\x00\x00C\x03\x00\x00C\x03\x00\x00\x18\x03\x00\x00\x19\x03\x00\x00C\x03\x00\x00l\x03\x00\x00B\x03\x00\x00m\x03\x00\x00l\x03\x00\x00C\x03\x00\x00\x17\x04\x00\x00A\x04\x00\x00@\x04\x00\x00\x16\x04\x00\x00\x17\x04\x00\x00@\x04\x00\x00@\x04\x00\x00\x15\x04\x00\x00\x16\x04\x00\x00?\x04\x00\x00\x15\x04\x00\x00@\x04\x00\x00\x80\x07\x00\x00\x7f\x07\x00\x00U\x07\x00\x00U\x07\x00\x00V\x07\x00\x00\x80\x07\x00\x00,\x07\x00\x00V\x07\x00\x00U\x07\x00\x00U\x07\x00\x00+\x07\x00\x00,\x07\x00\x00U\x07\x00\x00T\x07\x00\x00*\x07\x00\x00U\x07\x00\x00*\x07\x00\x00+\x07\x00\x00*\x07\x00\x00\x00\x07\x00\x00\x01\x07\x00\x00+\x07\x00\x00*\x07\x00\x00\x01\x07\x00\x00\x01\x07\x00\x00\xd7\x06\x00\x00\xd8\x06\x00\x00\xd8\x06\x00\x00\x02\x07\x00\x00\x01\x07\x00\x00,\x07\x00\x00+\x07\x00\x00\x01\x07\x00\x00\x01\x07\x00\x00\x02\x07\x00\x00,\x07\x00\x00\xd3\x07\x00\x00\xd2\x07\x00\x00\xa8\x07\x00\x00\xa8\x07\x00\x00\xa9\x07\x00\x00\xd3\x07\x00\x00\xd2\x07\x00\x00\xd1\x07\x00\x00\xa8\x07\x00\x00\xa8\x07\x00\x00\xd1\x07\x00\x00\xa7\x07\x00\x00\x8c\x02\x00\x00\xb6\x02\x00\x00\x8b\x02\x00\x00\xb6\x02\x00\x00\xb5\x02\x00\x00\x8b\x02\x00\x00\x07\x03\x00\x000\x03\x00\x00\x06\x03\x00\x00\x07\x03\x00\x001\x03\x00\x000\x03\x00\x00\x07\x03\x00\x00\x06\x03\x00\x00\xdc\x02\x00\x00\x07\x03\x00\x00\xdc\x02\x00\x00\xdd\x02\x00\x002\x03\x00\x001\x03\x00\x00\x07\x03\x00\x00\x07\x03\x00\x00\x08\x03\x00\x002\x03\x00\x00\xdd\x02\x00\x00\xde\x02\x00\x00\x07\x03\x00\x00\xde\x02\x00\x00\x08\x03\x00\x00\x07\x03\x00\x00\xdf\x02\x00\x00\xb5\x02\x00\x00\xb6\x02\x00\x00\xb6\x02\x00\x00\xe0\x02\x00\x00\xdf\x02\x00\x00\xdf\x02\x00\x00\n\x03\x00\x00\t\x03\x00\x00\xdf\x02\x00\x00\xe0\x02\x00\x00\n\x03\x00\x00\xdf\x02\x00\x00\xde\x02\x00\x00\xb4\x02\x00\x00\xb4\x02\x00\x00\xb5\x02\x00\x00\xdf\x02\x00\x00\t\x03\x00\x00\x08\x03\x00\x00\xdf\x02\x00\x00\xdf\x02\x00\x00\x08\x03\x00\x00\xde\x02\x00\x00\xb8\x02\x00\x00\xb9\x02\x00\x00\xe3\x02\x00\x00\xe3\x02\x00\x00\xe2\x02\x00\x00\xb8\x02\x00\x00\xb8\x02\x00\x00\x8f\x02\x00\x00\xb9\x02\x00\x00\x8e\x02\x00\x00\x8f\x02\x00\x00\xb8\x02\x00\x00_\x03\x00\x00\x89\x03\x00\x00\x88\x03\x00\x00_\x03\x00\x00\x88\x03\x00\x00^\x03\x00\x00_\x03\x00\x004\x03\x00\x005\x03\x00\x00^\x03\x00\x004\x03\x00\x00_\x03\x00\x00`\x03\x00\x00\x8a\x03\x00\x00_\x03\x00\x00_\x03\x00\x00\x8a\x03\x00\x00\x89\x03\x00\x009\x03\x00\x00c\x03\x00\x008\x03\x00\x00c\x03\x00\x00b\x03\x00\x008\x03\x00\x008\x03\x00\x00b\x03\x00\x00a\x03\x00\x008\x03\x00\x00a\x03\x00\x007\x03\x00\x00_\x03\x00\x005\x03\x00\x006\x03\x00\x006\x03\x00\x00`\x03\x00\x00_\x03\x00\x00a\x03\x00\x00`\x03\x00\x006\x03\x00\x007\x03\x00\x00a\x03\x00\x006\x03\x00\x009\x02\x00\x00c\x02\x00\x00b\x02\x00\x00b\x02\x00\x008\x02\x00\x009\x02\x00\x00\x8e\x04\x00\x00d\x04\x00\x00e\x04\x00\x00e\x04\x00\x00\x8f\x04\x00\x00\x8e\x04\x00\x00e\x04\x00\x00\x90\x04\x00\x00\x8f\x04\x00\x00f\x04\x00\x00\x90\x04\x00\x00e\x04\x00\x00;\x04\x00\x00<\x04\x00\x00e\x04\x00\x00e\x04\x00\x00<\x04\x00\x00f\x04\x00\x00e\x04\x00\x00d\x04\x00\x00:\x04\x00\x00:\x04\x00\x00;\x04\x00\x00e\x04\x00\x00:\x04\x00\x00\x11\x04\x00\x00;\x04\x00\x00\x10\x04\x00\x00\x11\x04\x00\x00:\x04\x00\x00:\x04\x00\x00d\x04\x00\x00c\x04\x00\x00:\x04\x00\x00c\x04\x00\x009\x04\x00\x00:\x04\x00\x00\x0f\x04\x00\x00\x10\x04\x00\x009\x04\x00\x00\x0f\x04\x00\x00:\x04\x00\x00\x01\x08\x00\x00\x00\x08\x00\x00\xd6\x07\x00\x00\xd6\x07\x00\x00\xd7\x07\x00\x00\x01\x08\x00\x00\xe7\x05\x00\x00\x11\x06\x00\x00\x10\x06\x00\x00\xe6\x05\x00\x00\xe7\x05\x00\x00\x10\x06\x00\x00\x0f\x06\x00\x00\xe5\x05\x00\x00\x10\x06\x00\x00\x10\x06\x00\x00\xe5\x05\x00\x00\xe6\x05\x00\x00\x10\x06\x00\x00\x11\x06\x00\x00;\x06\x00\x00;\x06\x00\x00:\x06\x00\x00\x10\x06\x00\x00e\x06\x00\x00d\x06\x00\x00;\x06\x00\x00;\x06\x00\x00d\x06\x00\x00:\x06\x00\x009\x06\x00\x00\x0f\x06\x00\x00\x10\x06\x00\x00\x10\x06\x00\x00:\x06\x00\x009\x06\x00\x00\x8c\x06\x00\x00\xb5\x06\x00\x00\x8b\x06\x00\x00\x8c\x06\x00\x00\xb6\x06\x00\x00\xb5\x06\x00\x00\x8b\x06\x00\x00a\x06\x00\x00\x8c\x06\x00\x00a\x06\x00\x00b\x06\x00\x00\x8c\x06\x00\x008\x06\x00\x00a\x06\x00\x007\x06\x00\x008\x06\x00\x00b\x06\x00\x00a\x06\x00\x008\x06\x00\x00\r\x06\x00\x00\x0e\x06\x00\x007\x06\x00\x00\r\x06\x00\x008\x06\x00\x00\x0e\x06\x00\x00\x0f\x06\x00\x008\x06\x00\x008\x06\x00\x00\x0f\x06\x00\x009\x06\x00\x00\x04\x08\x00\x00.\x08\x00\x00-\x08\x00\x00\x04\x08\x00\x00-\x08\x00\x00\x03\x08\x00\x00\x03\x08\x00\x00\xd9\x07\x00\x00\x04\x08\x00\x00\x04\x08\x00\x00\xd9\x07\x00\x00\xda\x07\x00\x00/\x08\x00\x00.\x08\x00\x00\x04\x08\x00\x00\x04\x08\x00\x00\x05\x08\x00\x00/\x08\x00\x00\xda\x07\x00\x00\xdb\x07\x00\x00\x04\x08\x00\x00\x04\x08\x00\x00\xdb\x07\x00\x00\x05\x08\x00\x00\xdd\x07\x00\x00\x07\x08\x00\x00\x06\x08\x00\x00\xdc\x07\x00\x00\xdd\x07\x00\x00\x06\x08\x00\x00\x07\x08\x00\x001\x08\x00\x00\x06\x08\x00\x00\x06\x08\x00\x001\x08\x00\x000\x08\x00\x00\x06\x08\x00\x00\xdb\x07\x00\x00\xdc\x07\x00\x00\x05\x08\x00\x00\xdb\x07\x00\x00\x06\x08\x00\x000\x08\x00\x00/\x08\x00\x00\x06\x08\x00\x00/\x08\x00\x00\x05\x08\x00\x00\x06\x08\x00\x00\x11\x05\x00\x00\x12\x05\x00\x00<\x05\x00\x00;\x05\x00\x00\x11\x05\x00\x00<\x05\x00\x00f\x05\x00\x00e\x05\x00\x00<\x05\x00\x00<\x05\x00\x00e\x05\x00\x00;\x05\x00\x00\x13\x05\x00\x00=\x05\x00\x00<\x05\x00\x00<\x05\x00\x00\x12\x05\x00\x00\x13\x05\x00\x00<\x05\x00\x00=\x05\x00\x00g\x05\x00\x00<\x05\x00\x00g\x05\x00\x00f\x05\x00\x00\xda\x06\x00\x00\xaf\x06\x00\x00\xb0\x06\x00\x00\xd9\x06\x00\x00\xaf\x06\x00\x00\xda\x06\x00\x00\xb0\x06\x00\x00\xb1\x06\x00\x00\xda\x06\x00\x00\xda\x06\x00\x00\xb1\x06\x00\x00\xdb\x06\x00\x00\xdb\x06\x00\x00\x05\x07\x00\x00\xda\x06\x00\x00\xda\x06\x00\x00\x05\x07\x00\x00\x04\x07\x00\x00W\x07\x00\x00V\x07\x00\x00-\x07\x00\x00-\x07\x00\x00V\x07\x00\x00,\x07\x00\x00\xb2\x05\x00\x00\xb3\x05\x00\x00\xdc\x05\x00\x00\xb3\x05\x00\x00\xdd\x05\x00\x00\xdc\x05\x00\x00\xdc\x05\x00\x00\x07\x06\x00\x00\x06\x06\x00\x00\xdc\x05\x00\x00\xdd\x05\x00\x00\x07\x06\x00\x00\xdc\x05\x00\x00\xb1\x05\x00\x00\xb2\x05\x00\x00\xdb\x05\x00\x00\xb1\x05\x00\x00\xdc\x05\x00\x00\x05\x06\x00\x00\x04\x06\x00\x00\xda\x05\x00\x00\xda\x05\x00\x00\xdb\x05\x00\x00\x05\x06\x00\x00\xdc\x05\x00\x00\x06\x06\x00\x00\x05\x06\x00\x00\x05\x06\x00\x00\xdb\x05\x00\x00\xdc\x05\x00\x00\x06\x06\x00\x000\x06\x00\x00\x05\x06\x00\x00\x05\x06\x00\x000\x06\x00\x00/\x06\x00\x00\x01\x07\x00\x00\x00\x07\x00\x00\xd6\x06\x00\x00\xd6\x06\x00\x00\xd7\x06\x00\x00\x01\x07\x00\x00\xad\x06\x00\x00\xd7\x06\x00\x00\xd6\x06\x00\x00\xac\x06\x00\x00\xad\x06\x00\x00\xd6\x06\x00\x00\xd6\x06\x00\x00\x00\x07\x00\x00\xff\x06\x00\x00\xd6\x06\x00\x00\xff\x06\x00\x00\xd5\x06\x00\x00\xd5\x06\x00\x00\xab\x06\x00\x00\xd6\x06\x00\x00\xd6\x06\x00\x00\xab\x06\x00\x00\xac\x06\x00\x00\x8d\x05\x00\x00\xb7\x05\x00\x00\xb6\x05\x00\x00\x8d\x05\x00\x00\xb6\x05\x00\x00\x8c\x05\x00\x00\x8d\x05\x00\x00b\x05\x00\x00c\x05\x00\x00\x8c\x05\x00\x00b\x05\x00\x00\x8d\x05\x00\x00\x8d\x05\x00\x00\xb8\x05\x00\x00\xb7\x05\x00\x00\x8e\x05\x00\x00\xb8\x05\x00\x00\x8d\x05\x00\x00\x8d\x05\x00\x00d\x05\x00\x00\x8e\x05\x00\x00c\x05\x00\x00d\x05\x00\x00\x8d\x05\x00\x00\xf9\x06\x00\x00\xfa\x06\x00\x00$\x07\x00\x00#\x07\x00\x00\xf9\x06\x00\x00$\x07\x00\x00$\x07\x00\x00M\x07\x00\x00#\x07\x00\x00N\x07\x00\x00M\x07\x00\x00$\x07\x00\x00$\x07\x00\x00\xfb\x06\x00\x00%\x07\x00\x00$\x07\x00\x00\xfa\x06\x00\x00\xfb\x06\x00\x00$\x07\x00\x00%\x07\x00\x00O\x07\x00\x00$\x07\x00\x00O\x07\x00\x00N\x07\x00\x00O\x07\x00\x00y\x07\x00\x00x\x07\x00\x00N\x07\x00\x00O\x07\x00\x00x\x07\x00\x00x\x07\x00\x00y\x07\x00\x00\xa3\x07\x00\x00x\x07\x00\x00\xa3\x07\x00\x00\xa2\x07\x00\x00x\x07\x00\x00w\x07\x00\x00M\x07\x00\x00x\x07\x00\x00M\x07\x00\x00N\x07\x00\x00x\x07\x00\x00\xa1\x07\x00\x00w\x07\x00\x00\xa2\x07\x00\x00\xa1\x07\x00\x00x\x07\x00\x00\xf6\x06\x00\x00\xcc\x06\x00\x00\xcd\x06\x00\x00\xf6\x06\x00\x00\xcd\x06\x00\x00\xf7\x06\x00\x00\xf6\x06\x00\x00\xcb\x06\x00\x00\xcc\x06\x00\x00\xf5\x06\x00\x00\xcb\x06\x00\x00\xf6\x06\x00\x00!\x07\x00\x00\xf8\x06\x00\x00"\x07\x00\x00\xf7\x06\x00\x00\xf8\x06\x00\x00!\x07\x00\x00"\x07\x00\x00L\x07\x00\x00!\x07\x00\x00!\x07\x00\x00L\x07\x00\x00K\x07\x00\x00\xf6\x06\x00\x00\xf7\x06\x00\x00!\x07\x00\x00!\x07\x00\x00 \x07\x00\x00\xf6\x06\x00\x00u\x07\x00\x00\x9f\x07\x00\x00t\x07\x00\x00t\x07\x00\x00\x9f\x07\x00\x00\x9e\x07\x00\x00\x1f\x07\x00\x00\xf5\x06\x00\x00\xf6\x06\x00\x00\xf6\x06\x00\x00 \x07\x00\x00\x1f\x07\x00\x00\xf4\x06\x00\x00\xf5\x06\x00\x00\x1f\x07\x00\x00\x1f\x07\x00\x00\x1e\x07\x00\x00\xf4\x06\x00\x00\xca\x06\x00\x00\xcb\x06\x00\x00\xf4\x06\x00\x00\xf4\x06\x00\x00\xcb\x06\x00\x00\xf5\x06\x00\x00\x1d\x07\x00\x00\xf3\x06\x00\x00\xf4\x06\x00\x00\xf4\x06\x00\x00\x1e\x07\x00\x00\x1d\x07\x00\x00x\x06\x00\x00\xa2\x06\x00\x00w\x06\x00\x00w\x06\x00\x00\xa2\x06\x00\x00\xa1\x06\x00\x00w\x06\x00\x00N\x06\x00\x00x\x06\x00\x00M\x06\x00\x00N\x06\x00\x00w\x06\x00\x00w\x06\x00\x00\xa1\x06\x00\x00\xa0\x06\x00\x00\xa0\x06\x00\x00v\x06\x00\x00w\x06\x00\x00w\x06\x00\x00L\x06\x00\x00M\x06\x00\x00w\x06\x00\x00v\x06\x00\x00L\x06\x00\x00\xee\x07\x00\x00\x18\x08\x00\x00\x17\x08\x00\x00\xed\x07\x00\x00\xee\x07\x00\x00\x17\x08\x00\x00\xc3\x07\x00\x00\x9a\x07\x00\x00\xc4\x07\x00\x00\x99\x07\x00\x00\x9a\x07\x00\x00\xc3\x07\x00\x00\xc3\x07\x00\x00\xc4\x07\x00\x00\xee\x07\x00\x00\xc3\x07\x00\x00\xee\x07\x00\x00\xed\x07\x00\x00=\x07\x00\x00<\x07\x00\x00\x12\x07\x00\x00\x13\x07\x00\x00=\x07\x00\x00\x12\x07\x00\x00\x12\x07\x00\x00<\x07\x00\x00;\x07\x00\x00\x12\x07\x00\x00;\x07\x00\x00\x11\x07\x00\x00.\x06\x00\x00\x04\x06\x00\x00\x05\x06\x00\x00\x05\x06\x00\x00/\x06\x00\x00.\x06\x00\x00/\x06\x00\x00Y\x06\x00\x00.\x06\x00\x00.\x06\x00\x00Y\x06\x00\x00X\x06\x00\x00.\x06\x00\x00\x03\x06\x00\x00\x04\x06\x00\x00-\x06\x00\x00\x03\x06\x00\x00.\x06\x00\x00W\x06\x00\x00-\x06\x00\x00.\x06\x00\x00X\x06\x00\x00W\x06\x00\x00.\x06\x00\x00\xb8\x04\x00\x00\xe2\x04\x00\x00\xe1\x04\x00\x00\xe1\x04\x00\x00\xb7\x04\x00\x00\xb8\x04\x00\x00\xe1\x04\x00\x00\xe2\x04\x00\x00\x0c\x05\x00\x00\xe1\x04\x00\x00\x0c\x05\x00\x00\x0b\x05\x00\x00`\x05\x00\x00_\x05\x00\x005\x05\x00\x005\x05\x00\x006\x05\x00\x00`\x05\x00\x00\x0c\x05\x00\x006\x05\x00\x005\x05\x00\x00\x0b\x05\x00\x00\x0c\x05\x00\x005\x05\x00\x00\xaf\x05\x00\x00\x85\x05\x00\x00\x86\x05\x00\x00\xaf\x05\x00\x00\x86\x05\x00\x00\xb0\x05\x00\x00\xaf\x05\x00\x00\xda\x05\x00\x00\xd9\x05\x00\x00\xb0\x05\x00\x00\xda\x05\x00\x00\xaf\x05\x00\x00\x84\x05\x00\x00\x85\x05\x00\x00\xaf\x05\x00\x00\xaf\x05\x00\x00\xae\x05\x00\x00\x84\x05\x00\x00\xd8\x05\x00\x00\xae\x05\x00\x00\xaf\x05\x00\x00\xd9\x05\x00\x00\xd8\x05\x00\x00\xaf\x05\x00\x00[\x04\x00\x00\\\x04\x00\x00\x86\x04\x00\x00\x86\x04\x00\x00\x85\x04\x00\x00[\x04\x00\x00\xb5\x03\x00\x00\x8a\x03\x00\x00\x8b\x03\x00\x00\xb5\x03\x00\x00\xb4\x03\x00\x00\x8a\x03\x00\x00\xde\x03\x00\x00\xb4\x03\x00\x00\xb5\x03\x00\x00\xdf\x03\x00\x00\xde\x03\x00\x00\xb5\x03\x00\x00\xb7\x03\x00\x00\x8d\x03\x00\x00\x8e\x03\x00\x00\xb7\x03\x00\x00\x8e\x03\x00\x00\xb8\x03\x00\x00_\x04\x00\x00\x8a\x04\x00\x00\x89\x04\x00\x00`\x04\x00\x00\x8a\x04\x00\x00_\x04\x00\x00\t\x04\x00\x00\x08\x04\x00\x00\xde\x03\x00\x00\t\x04\x00\x00\xde\x03\x00\x00\xdf\x03\x00\x00\xc7\x07\x00\x00\xf1\x07\x00\x00\xf0\x07\x00\x00\xf0\x07\x00\x00\xc6\x07\x00\x00\xc7\x07\x00\x00\xc7\x07\x00\x00\xf2\x07\x00\x00\xf1\x07\x00\x00\xc8\x07\x00\x00\xf2\x07\x00\x00\xc7\x07\x00\x00F\x05\x00\x00p\x05\x00\x00o\x05\x00\x00o\x05\x00\x00E\x05\x00\x00F\x05\x00\x00o\x05\x00\x00p\x05\x00\x00\x9a\x05\x00\x00o\x05\x00\x00\x9a\x05\x00\x00\x99\x05\x00\x00o\x05\x00\x00D\x05\x00\x00E\x05\x00\x00n\x05\x00\x00D\x05\x00\x00o\x05\x00\x00\x98\x05\x00\x00n\x05\x00\x00o\x05\x00\x00\x99\x05\x00\x00\x98\x05\x00\x00o\x05\x00\x00i\x00\x00\x00?\x00\x00\x00@\x00\x00\x00@\x00\x00\x00j\x00\x00\x00i\x00\x00\x00>\x00\x00\x00?\x00\x00\x00i\x00\x00\x00h\x00\x00\x00>\x00\x00\x00i\x00\x00\x00\x92\x00\x00\x00h\x00\x00\x00i\x00\x00\x00\x93\x00\x00\x00\x92\x00\x00\x00i\x00\x00\x00\x94\x00\x00\x00\xbe\x00\x00\x00\xbd\x00\x00\x00\x94\x00\x00\x00\xbd\x00\x00\x00\x93\x00\x00\x00i\x00\x00\x00j\x00\x00\x00\x94\x00\x00\x00\x94\x00\x00\x00\x93\x00\x00\x00i\x00\x00\x00\x94\x00\x00\x00\x95\x00\x00\x00\xbf\x00\x00\x00\xbf\x00\x00\x00\xbe\x00\x00\x00\x94\x00\x00\x00j\x00\x00\x00k\x00\x00\x00\x94\x00\x00\x00\x94\x00\x00\x00k\x00\x00\x00\x95\x00\x00\x00K\x00\x00\x00u\x00\x00\x00t\x00\x00\x00K\x00\x00\x00t\x00\x00\x00J\x00\x00\x00 \x00\x00\x00!\x00\x00\x00K\x00\x00\x00J\x00\x00\x00 \x00\x00\x00K\x00\x00\x00v\x00\x00\x00u\x00\x00\x00K\x00\x00\x00K\x00\x00\x00L\x00\x00\x00v\x00\x00\x00!\x00\x00\x00"\x00\x00\x00K\x00\x00\x00K\x00\x00\x00"\x00\x00\x00L\x00\x00\x00\x9a\x00\x00\x00\x9b\x00\x00\x00\xc5\x00\x00\x00\xc5\x00\x00\x00\xc4\x00\x00\x00\x9a\x00\x00\x00\x9b\x00\x00\x00\x9c\x00\x00\x00\xc5\x00\x00\x00\xc5\x00\x00\x00\x9c\x00\x00\x00\xc6\x00\x00\x00\x19\x01\x00\x00C\x01\x00\x00B\x01\x00\x00B\x01\x00\x00\x18\x01\x00\x00\x19\x01\x00\x00\x19\x01\x00\x00D\x01\x00\x00C\x01\x00\x00\x1a\x01\x00\x00D\x01\x00\x00\x19\x01\x00\x00C\x00\x00\x00D\x00\x00\x00n\x00\x00\x00n\x00\x00\x00m\x00\x00\x00C\x00\x00\x00E\x00\x00\x00o\x00\x00\x00n\x00\x00\x00n\x00\x00\x00D\x00\x00\x00E\x00\x00\x00\xc2\x00\x00\x00\xeb\x00\x00\x00\xc1\x00\x00\x00\xec\x00\x00\x00\xeb\x00\x00\x00\xc2\x00\x00\x00\xc2\x00\x00\x00\xc3\x00\x00\x00\xed\x00\x00\x00\xed\x00\x00\x00\xec\x00\x00\x00\xc2\x00\x00\x00\x15\x02\x00\x00>\x02\x00\x00\x14\x02\x00\x00?\x02\x00\x00>\x02\x00\x00\x15\x02\x00\x00\x14\x02\x00\x00\xea\x01\x00\x00\x15\x02\x00\x00\x15\x02\x00\x00\xea\x01\x00\x00\xeb\x01\x00\x00\xc1\x01\x00\x00\xea\x01\x00\x00\xc0\x01\x00\x00\xeb\x01\x00\x00\xea\x01\x00\x00\xc1\x01\x00\x00\xc0\x01\x00\x00\x96\x01\x00\x00\xc1\x01\x00\x00\xc1\x01\x00\x00\x96\x01\x00\x00\x97\x01\x00\x00E\x01\x00\x00F\x01\x00\x00p\x01\x00\x00p\x01\x00\x00o\x01\x00\x00E\x01\x00\x00\x99\x01\x00\x00o\x01\x00\x00p\x01\x00\x00\x9a\x01\x00\x00\x99\x01\x00\x00p\x01\x00\x00p\x01\x00\x00G\x01\x00\x00q\x01\x00\x00p\x01\x00\x00F\x01\x00\x00G\x01\x00\x00q\x01\x00\x00\x9b\x01\x00\x00p\x01\x00\x00p\x01\x00\x00\x9b\x01\x00\x00\x9a\x01\x00\x00\xee\x01\x00\x00\xed\x01\x00\x00\xc4\x01\x00\x00\xed\x01\x00\x00\xc3\x01\x00\x00\xc4\x01\x00\x00\xc4\x01\x00\x00\x99\x01\x00\x00\x9a\x01\x00\x00\xc4\x01\x00\x00\xc3\x01\x00\x00\x99\x01\x00\x00\xef\x01\x00\x00\xee\x01\x00\x00\xc4\x01\x00\x00\xc5\x01\x00\x00\xef\x01\x00\x00\xc4\x01\x00\x00\xc4\x01\x00\x00\x9b\x01\x00\x00\xc5\x01\x00\x00\x9a\x01\x00\x00\x9b\x01\x00\x00\xc4\x01\x00\x00\x88\x00\x00\x00\xb3\x00\x00\x00\xb2\x00\x00\x00\x89\x00\x00\x00\xb3\x00\x00\x00\x88\x00\x00\x00\x88\x00\x00\x00_\x00\x00\x00\x89\x00\x00\x00^\x00\x00\x00_\x00\x00\x00\x88\x00\x00\x00\xb2\x00\x00\x00\xb1\x00\x00\x00\x88\x00\x00\x00\x88\x00\x00\x00\xb1\x00\x00\x00\x87\x00\x00\x00\x87\x00\x00\x00]\x00\x00\x00\x88\x00\x00\x00\x88\x00\x00\x00]\x00\x00\x00^\x00\x00\x00.\x00\x00\x00\x05\x00\x00\x00/\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00.\x00\x00\x00/\x00\x00\x00Y\x00\x00\x00.\x00\x00\x00.\x00\x00\x00Y\x00\x00\x00X\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00.\x00\x00\x00.\x00\x00\x00-\x00\x00\x00\x03\x00\x00\x00W\x00\x00\x00-\x00\x00\x00.\x00\x00\x00X\x00\x00\x00W\x00\x00\x00.\x00\x00\x005\x01\x00\x00_\x01\x00\x00^\x01\x00\x005\x01\x00\x00^\x01\x00\x004\x01\x00\x00`\x01\x00\x00_\x01\x00\x005\x01\x00\x006\x01\x00\x00`\x01\x00\x005\x01\x00\x00\x8b\x00\x00\x00`\x00\x00\x00a\x00\x00\x00\x8a\x00\x00\x00`\x00\x00\x00\x8b\x00\x00\x00\x8b\x00\x00\x00\xb4\x00\x00\x00\x8a\x00\x00\x00\xb5\x00\x00\x00\xb4\x00\x00\x00\x8b\x00\x00\x00a\x00\x00\x00b\x00\x00\x00\x8b\x00\x00\x00\x8b\x00\x00\x00b\x00\x00\x00\x8c\x00\x00\x00\x8c\x00\x00\x00\xb6\x00\x00\x00\x8b\x00\x00\x00\x8b\x00\x00\x00\xb6\x00\x00\x00\xb5\x00\x00\x00v\x02\x00\x00L\x02\x00\x00w\x02\x00\x00L\x02\x00\x00M\x02\x00\x00w\x02\x00\x00w\x02\x00\x00\xa0\x02\x00\x00v\x02\x00\x00\xa1\x02\x00\x00\xa0\x02\x00\x00w\x02\x00\x00\xcd\x02\x00\x00\xf7\x02\x00\x00\xf6\x02\x00\x00\xcd\x02\x00\x00\xf6\x02\x00\x00\xcc\x02\x00\x00\xf8\x02\x00\x00\xf7\x02\x00\x00\xcd\x02\x00\x00\xce\x02\x00\x00\xf8\x02\x00\x00\xcd\x02\x00\x00\xcd\x02\x00\x00\xa4\x02\x00\x00\xce\x02\x00\x00\xa3\x02\x00\x00\xa4\x02\x00\x00\xcd\x02\x00\x00\xf7\x03\x00\x00"\x04\x00\x00!\x04\x00\x00\xf8\x03\x00\x00"\x04\x00\x00\xf7\x03\x00\x00 \x04\x00\x00\xf6\x03\x00\x00\xf7\x03\x00\x00\xf7\x03\x00\x00!\x04\x00\x00 \x04\x00\x00\xf7\x03\x00\x00\xf6\x03\x00\x00\xcc\x03\x00\x00\xf7\x03\x00\x00\xcc\x03\x00\x00\xcd\x03\x00\x00\xa4\x03\x00\x00\xa5\x03\x00\x00\xce\x03\x00\x00\xce\x03\x00\x00\xa5\x03\x00\x00\xcf\x03\x00\x00\xcf\x03\x00\x00\xf9\x03\x00\x00\xce\x03\x00\x00\xce\x03\x00\x00\xf9\x03\x00\x00\xf8\x03\x00\x00\xa3\x03\x00\x00\xa4\x03\x00\x00\xce\x03\x00\x00\xcd\x03\x00\x00\xa3\x03\x00\x00\xce\x03\x00\x00\xce\x03\x00\x00\xf8\x03\x00\x00\xf7\x03\x00\x00\xf7\x03\x00\x00\xcd\x03\x00\x00\xce\x03\x00\x00\xac\x03\x00\x00\x82\x03\x00\x00\x83\x03\x00\x00\x83\x03\x00\x00\xad\x03\x00\x00\xac\x03\x00\x00\x83\x03\x00\x00\x82\x03\x00\x00X\x03\x00\x00\x83\x03\x00\x00X\x03\x00\x00Y\x03\x00\x00\x83\x03\x00\x00\xae\x03\x00\x00\xad\x03\x00\x00\x84\x03\x00\x00\xae\x03\x00\x00\x83\x03\x00\x00\x83\x03\x00\x00Z\x03\x00\x00\x84\x03\x00\x00Y\x03\x00\x00Z\x03\x00\x00\x83\x03\x00\x00\xf6\x05\x00\x00\xf5\x05\x00\x00\xcb\x05\x00\x00\xcc\x05\x00\x00\xf6\x05\x00\x00\xcb\x05\x00\x00\xcb\x05\x00\x00\xa2\x05\x00\x00\xcc\x05\x00\x00\xa1\x05\x00\x00\xa2\x05\x00\x00\xcb\x05\x00\x00\xf5\x05\x00\x00\xf4\x05\x00\x00\xcb\x05\x00\x00\xcb\x05\x00\x00\xf4\x05\x00\x00\xca\x05\x00\x00\xca\x05\x00\x00\xa0\x05\x00\x00\xcb\x05\x00\x00\xcb\x05\x00\x00\xa0\x05\x00\x00\xa1\x05\x00\x00\xf8\x04\x00\x00\xf9\x04\x00\x00#\x05\x00\x00"\x05\x00\x00\xf8\x04\x00\x00#\x05\x00\x00#\x05\x00\x00\xf9\x04\x00\x00\xfa\x04\x00\x00#\x05\x00\x00\xfa\x04\x00\x00$\x05\x00\x00w\x05\x00\x00\xa0\x05\x00\x00v\x05\x00\x00\xa1\x05\x00\x00\xa0\x05\x00\x00w\x05\x00\x00x\x05\x00\x00\xa2\x05\x00\x00w\x05\x00\x00w\x05\x00\x00\xa2\x05\x00\x00\xa1\x05\x00\x00\x1a\x07\x00\x00\x19\x07\x00\x00\xef\x06\x00\x00\x1a\x07\x00\x00\xef\x06\x00\x00\xf0\x06\x00\x00\x1a\x07\x00\x00\xf0\x06\x00\x00\xf1\x06\x00\x00\x1a\x07\x00\x00\xf1\x06\x00\x00\x1b\x07\x00\x00\x97\x07\x00\x00m\x07\x00\x00n\x07\x00\x00n\x07\x00\x00\x98\x07\x00\x00\x97\x07\x00\x00o\x07\x00\x00\x99\x07\x00\x00n\x07\x00\x00\x99\x07\x00\x00\x98\x07\x00\x00n\x07\x00\x00\xc9\x06\x00\x00\xca\x06\x00\x00\xf4\x06\x00\x00\xf4\x06\x00\x00\xf3\x06\x00\x00\xc9\x06\x00\x00\xc9\x06\x00\x00\xf3\x06\x00\x00\xf2\x06\x00\x00\xc9\x06\x00\x00\xf2\x06\x00\x00\xc8\x06\x00\x00S\x05\x00\x00R\x05\x00\x00(\x05\x00\x00(\x05\x00\x00)\x05\x00\x00S\x05\x00\x00(\x05\x00\x00\xff\x04\x00\x00)\x05\x00\x00\xfe\x04\x00\x00\xff\x04\x00\x00(\x05\x00\x00(\x05\x00\x00R\x05\x00\x00Q\x05\x00\x00(\x05\x00\x00Q\x05\x00\x00\'\x05\x00\x00(\x05\x00\x00\'\x05\x00\x00\xfd\x04\x00\x00(\x05\x00\x00\xfd\x04\x00\x00\xfe\x04\x00\x00\xf3\x04\x00\x00\x1c\x05\x00\x00\xf2\x04\x00\x00\x1d\x05\x00\x00\x1c\x05\x00\x00\xf3\x04\x00\x00\xf3\x04\x00\x00\xf2\x04\x00\x00\xc8\x04\x00\x00\xf3\x04\x00\x00\xc8\x04\x00\x00\xc9\x04\x00\x00L\x03\x00\x00M\x03\x00\x00w\x03\x00\x00v\x03\x00\x00L\x03\x00\x00w\x03\x00\x00w\x03\x00\x00\xa0\x03\x00\x00v\x03\x00\x00w\x03\x00\x00\xa1\x03\x00\x00\xa0\x03\x00\x00w\x03\x00\x00M\x03\x00\x00N\x03\x00\x00w\x03\x00\x00N\x03\x00\x00x\x03\x00\x00\xa2\x03\x00\x00\xa1\x03\x00\x00w\x03\x00\x00x\x03\x00\x00\xa2\x03\x00\x00w\x03\x00\x00\xa8\x02\x00\x00\xa7\x02\x00\x00}\x02\x00\x00~\x02\x00\x00\xa8\x02\x00\x00}\x02\x00\x00S\x02\x00\x00T\x02\x00\x00}\x02\x00\x00}\x02\x00\x00T\x02\x00\x00~\x02\x00\x00}\x02\x00\x00\xa7\x02\x00\x00\xa6\x02\x00\x00\xa6\x02\x00\x00|\x02\x00\x00}\x02\x00\x00}\x02\x00\x00R\x02\x00\x00S\x02\x00\x00|\x02\x00\x00R\x02\x00\x00}\x02\x00\x00j\x04\x00\x00k\x04\x00\x00\x95\x04\x00\x00\x95\x04\x00\x00\x94\x04\x00\x00j\x04\x00\x00j\x04\x00\x00A\x04\x00\x00k\x04\x00\x00@\x04\x00\x00A\x04\x00\x00j\x04\x00\x00\x94\x04\x00\x00\x93\x04\x00\x00j\x04\x00\x00j\x04\x00\x00\x93\x04\x00\x00i\x04\x00\x00j\x04\x00\x00i\x04\x00\x00?\x04\x00\x00j\x04\x00\x00?\x04\x00\x00@\x04\x00\x00U\x07\x00\x00\x7f\x07\x00\x00~\x07\x00\x00~\x07\x00\x00T\x07\x00\x00U\x07\x00\x00\x7f\x07\x00\x00\xa9\x07\x00\x00~\x07\x00\x00~\x07\x00\x00\xa9\x07\x00\x00\xa8\x07\x00\x00~\x07\x00\x00S\x07\x00\x00T\x07\x00\x00}\x07\x00\x00S\x07\x00\x00~\x07\x00\x00\xa7\x07\x00\x00}\x07\x00\x00~\x07\x00\x00\xa8\x07\x00\x00\xa7\x07\x00\x00~\x07\x00\x00\x8a\x02\x00\x00\xb3\x02\x00\x00\x89\x02\x00\x00\xb4\x02\x00\x00\xb3\x02\x00\x00\x8a\x02\x00\x00\x8b\x02\x00\x00\xb5\x02\x00\x00\x8a\x02\x00\x00\x8a\x02\x00\x00\xb5\x02\x00\x00\xb4\x02\x00\x00\xb7\x02\x00\x00\xe1\x02\x00\x00\xe0\x02\x00\x00\xb7\x02\x00\x00\xe0\x02\x00\x00\xb6\x02\x00\x00\xb8\x02\x00\x00\xe2\x02\x00\x00\xb7\x02\x00\x00\xe2\x02\x00\x00\xe1\x02\x00\x00\xb7\x02\x00\x00\xe3\x02\x00\x00\xe4\x02\x00\x00\x0e\x03\x00\x00\x0e\x03\x00\x00\r\x03\x00\x00\xe3\x02\x00\x008\x03\x00\x007\x03\x00\x00\x0e\x03\x00\x007\x03\x00\x00\r\x03\x00\x00\x0e\x03\x00\x00\x0e\x03\x00\x00\xe5\x02\x00\x00\x0f\x03\x00\x00\x0e\x03\x00\x00\xe4\x02\x00\x00\xe5\x02\x00\x00\x0f\x03\x00\x009\x03\x00\x00\x0e\x03\x00\x00\x0e\x03\x00\x009\x03\x00\x008\x03\x00\x00\x0c\x03\x00\x00\xe2\x02\x00\x00\xe3\x02\x00\x00\xe3\x02\x00\x00\r\x03\x00\x00\x0c\x03\x00\x00\x0c\x03\x00\x007\x03\x00\x006\x03\x00\x00\x0c\x03\x00\x00\r\x03\x00\x007\x03\x00\x00\x0b\x03\x00\x00\xe1\x02\x00\x00\x0c\x03\x00\x00\x0c\x03\x00\x00\xe1\x02\x00\x00\xe2\x02\x00\x00\x0c\x03\x00\x005\x03\x00\x00\x0b\x03\x00\x006\x03\x00\x005\x03\x00\x00\x0c\x03\x00\x007\x02\x00\x008\x02\x00\x00a\x02\x00\x00a\x02\x00\x008\x02\x00\x00b\x02\x00\x00a\x02\x00\x00\x8c\x02\x00\x00\x8b\x02\x00\x00b\x02\x00\x00\x8c\x02\x00\x00a\x02\x00\x00\xac\x07\x00\x00\x82\x07\x00\x00\x83\x07\x00\x00\x83\x07\x00\x00\xad\x07\x00\x00\xac\x07\x00\x00\xad\x07\x00\x00\xd7\x07\x00\x00\xac\x07\x00\x00\xac\x07\x00\x00\xd7\x07\x00\x00\xd6\x07\x00\x00\xd5\x07\x00\x00\xfe\x07\x00\x00\xd4\x07\x00\x00\xff\x07\x00\x00\xfe\x07\x00\x00\xd5\x07\x00\x00\xd5\x07\x00\x00\x00\x08\x00\x00\xff\x07\x00\x00\xd6\x07\x00\x00\x00\x08\x00\x00\xd5\x07\x00\x00:\x06\x00\x00d\x06\x00\x00c\x06\x00\x009\x06\x00\x00:\x06\x00\x00c\x06\x00\x00c\x06\x00\x00d\x06\x00\x00\x8e\x06\x00\x00\x8e\x06\x00\x00\x8d\x06\x00\x00c\x06\x00\x00c\x06\x00\x00b\x06\x00\x008\x06\x00\x008\x06\x00\x009\x06\x00\x00c\x06\x00\x00\x8c\x06\x00\x00b\x06\x00\x00c\x06\x00\x00c\x06\x00\x00\x8d\x06\x00\x00\x8c\x06\x00\x00\x8f\x06\x00\x00\xb9\x06\x00\x00\xb8\x06\x00\x00\x8f\x06\x00\x00\xb8\x06\x00\x00\x8e\x06\x00\x00\x8f\x06\x00\x00d\x06\x00\x00e\x06\x00\x00\x8e\x06\x00\x00d\x06\x00\x00\x8f\x06\x00\x00\xe0\x06\x00\x00\xdf\x06\x00\x00\xb5\x06\x00\x00\xb5\x06\x00\x00\xb6\x06\x00\x00\xe0\x06\x00\x00\n\x07\x00\x00\t\x07\x00\x00\xe0\x06\x00\x00\t\x07\x00\x00\xdf\x06\x00\x00\xe0\x06\x00\x00\xb7\x06\x00\x00\xb6\x06\x00\x00\x8c\x06\x00\x00\x8c\x06\x00\x00\x8d\x06\x00\x00\xb7\x06\x00\x00\xe0\x06\x00\x00\xb6\x06\x00\x00\xb7\x06\x00\x00\xb7\x06\x00\x00\xe1\x06\x00\x00\xe0\x06\x00\x00\xb7\x06\x00\x00\x8d\x06\x00\x00\x8e\x06\x00\x00\x8e\x06\x00\x00\xb8\x06\x00\x00\xb7\x06\x00\x00\x0b\x07\x00\x004\x07\x00\x00\n\x07\x00\x005\x07\x00\x004\x07\x00\x00\x0b\x07\x00\x00\x0b\x07\x00\x00\n\x07\x00\x00\xe0\x06\x00\x00\xe0\x06\x00\x00\xe1\x06\x00\x00\x0b\x07\x00\x00\x0b\x07\x00\x006\x07\x00\x005\x07\x00\x00\x0c\x07\x00\x006\x07\x00\x00\x0b\x07\x00\x00\r\x07\x00\x00\x0c\x07\x00\x00\xe2\x06\x00\x00\xe3\x06\x00\x00\r\x07\x00\x00\xe2\x06\x00\x00\xe2\x06\x00\x00\xb9\x06\x00\x00\xe3\x06\x00\x00\xb8\x06\x00\x00\xb9\x06\x00\x00\xe2\x06\x00\x00\x0b\x07\x00\x00\xe1\x06\x00\x00\xe2\x06\x00\x00\xe2\x06\x00\x00\x0c\x07\x00\x00\x0b\x07\x00\x00\xe2\x06\x00\x00\xe1\x06\x00\x00\xb7\x06\x00\x00\xb7\x06\x00\x00\xb8\x06\x00\x00\xe2\x06\x00\x00\x03\x07\x00\x00\xd8\x06\x00\x00\xd9\x06\x00\x00\x03\x07\x00\x00\x02\x07\x00\x00\xd8\x06\x00\x00,\x07\x00\x00\x02\x07\x00\x00\x03\x07\x00\x00-\x07\x00\x00,\x07\x00\x00\x03\x07\x00\x00\x03\x07\x00\x00\xd9\x06\x00\x00\xda\x06\x00\x00\xda\x06\x00\x00\x04\x07\x00\x00\x03\x07\x00\x00.\x07\x00\x00X\x07\x00\x00W\x07\x00\x00.\x07\x00\x00W\x07\x00\x00-\x07\x00\x00.\x07\x00\x00-\x07\x00\x00\x03\x07\x00\x00\x03\x07\x00\x00\x04\x07\x00\x00.\x07\x00\x00.\x07\x00\x00/\x07\x00\x00Y\x07\x00\x00Y\x07\x00\x00X\x07\x00\x00.\x07\x00\x00\x05\x07\x00\x00/\x07\x00\x00.\x07\x00\x00\x04\x07\x00\x00\x05\x07\x00\x00.\x07\x00\x00F\x07\x00\x00\x1c\x07\x00\x00\x1d\x07\x00\x00F\x07\x00\x00\x1d\x07\x00\x00G\x07\x00\x00\x1b\x07\x00\x00\x1c\x07\x00\x00F\x07\x00\x00F\x07\x00\x00E\x07\x00\x00\x1b\x07\x00\x00F\x07\x00\x00p\x07\x00\x00o\x07\x00\x00o\x07\x00\x00E\x07\x00\x00F\x07\x00\x00\x9b\x07\x00\x00\x9a\x07\x00\x00q\x07\x00\x00q\x07\x00\x00\x9a\x07\x00\x00p\x07\x00\x00F\x07\x00\x00G\x07\x00\x00q\x07\x00\x00q\x07\x00\x00p\x07\x00\x00F\x07\x00\x00J\x07\x00\x00 \x07\x00\x00!\x07\x00\x00!\x07\x00\x00K\x07\x00\x00J\x07\x00\x00K\x07\x00\x00u\x07\x00\x00J\x07\x00\x00J\x07\x00\x00u\x07\x00\x00t\x07\x00\x00\xc2\x07\x00\x00\xc1\x07\x00\x00\x97\x07\x00\x00\x97\x07\x00\x00\x98\x07\x00\x00\xc2\x07\x00\x00\xc2\x07\x00\x00\x99\x07\x00\x00\xc3\x07\x00\x00\xc2\x07\x00\x00\x98\x07\x00\x00\x99\x07\x00\x00\xbd\x06\x00\x00\xbe\x06\x00\x00\xe8\x06\x00\x00\xe8\x06\x00\x00\xe7\x06\x00\x00\xbd\x06\x00\x00\x11\x07\x00\x00\xe7\x06\x00\x00\xe8\x06\x00\x00\x12\x07\x00\x00\x11\x07\x00\x00\xe8\x06\x00\x00\xbf\x06\x00\x00\xe9\x06\x00\x00\xe8\x06\x00\x00\xe8\x06\x00\x00\xbe\x06\x00\x00\xbf\x06\x00\x00\xe8\x06\x00\x00\xe9\x06\x00\x00\x13\x07\x00\x00\xe8\x06\x00\x00\x13\x07\x00\x00\x12\x07\x00\x00\xe0\x04\x00\x00\xb5\x04\x00\x00\xb6\x04\x00\x00\xe0\x04\x00\x00\xdf\x04\x00\x00\xb5\x04\x00\x00\xb6\x04\x00\x00\xb7\x04\x00\x00\xe0\x04\x00\x00\xe0\x04\x00\x00\xb7\x04\x00\x00\xe1\x04\x00\x004\x05\x00\x00^\x05\x00\x00]\x05\x00\x00]\x05\x00\x003\x05\x00\x004\x05\x00\x00_\x05\x00\x00^\x05\x00\x004\x05\x00\x005\x05\x00\x00_\x05\x00\x004\x05\x00\x00\xd9\x04\x00\x00\xaf\x04\x00\x00\xb0\x04\x00\x00\xda\x04\x00\x00\xd9\x04\x00\x00\xb0\x04\x00\x00\xb0\x04\x00\x00\xaf\x04\x00\x00\x85\x04\x00\x00\xb0\x04\x00\x00\x85\x04\x00\x00\x86\x04\x00\x00\xb0\x04\x00\x00\xdb\x04\x00\x00\xda\x04\x00\x00\xb1\x04\x00\x00\xdb\x04\x00\x00\xb0\x04\x00\x00\xb0\x04\x00\x00\x86\x04\x00\x00\x87\x04\x00\x00\x87\x04\x00\x00\xb1\x04\x00\x00\xb0\x04\x00\x00\x86\x04\x00\x00\\\x04\x00\x00\x87\x04\x00\x00\x87\x04\x00\x00\\\x04\x00\x00]\x04\x00\x00\x87\x04\x00\x00\x88\x04\x00\x00\xb2\x04\x00\x00\x87\x04\x00\x00\xb2\x04\x00\x00\xb1\x04\x00\x00\xb6\x03\x00\x00\xdf\x03\x00\x00\xb5\x03\x00\x00\xb6\x03\x00\x00\xe0\x03\x00\x00\xdf\x03\x00\x00\xb6\x03\x00\x00\x8b\x03\x00\x00\x8c\x03\x00\x00\xb5\x03\x00\x00\x8b\x03\x00\x00\xb6\x03\x00\x00\xe1\x03\x00\x00\xe0\x03\x00\x00\xb6\x03\x00\x00\xb7\x03\x00\x00\xe1\x03\x00\x00\xb6\x03\x00\x00\x8c\x03\x00\x00\x8d\x03\x00\x00\xb6\x03\x00\x00\xb6\x03\x00\x00\x8d\x03\x00\x00\xb7\x03\x00\x00\xe2\x03\x00\x00\xb9\x03\x00\x00\xe3\x03\x00\x00\xb8\x03\x00\x00\xb9\x03\x00\x00\xe2\x03\x00\x00\xe2\x03\x00\x00\xe3\x03\x00\x00\r\x04\x00\x00\xe2\x03\x00\x00\r\x04\x00\x00\x0c\x04\x00\x00\xb7\x03\x00\x00\xb8\x03\x00\x00\xe2\x03\x00\x00\xe2\x03\x00\x00\xe1\x03\x00\x00\xb7\x03\x00\x00\xe2\x03\x00\x00\x0b\x04\x00\x00\xe1\x03\x00\x00\x0c\x04\x00\x00\x0b\x04\x00\x00\xe2\x03\x00\x006\x04\x00\x00`\x04\x00\x00_\x04\x00\x00_\x04\x00\x005\x04\x00\x006\x04\x00\x006\x04\x00\x00\x0b\x04\x00\x00\x0c\x04\x00\x005\x04\x00\x00\x0b\x04\x00\x006\x04\x00\x007\x04\x00\x00a\x04\x00\x006\x04\x00\x006\x04\x00\x00a\x04\x00\x00`\x04\x00\x00\r\x04\x00\x007\x04\x00\x006\x04\x00\x00\x0c\x04\x00\x00\r\x04\x00\x006\x04\x00\x00\x87\x04\x00\x00]\x04\x00\x00^\x04\x00\x00^\x04\x00\x00\x88\x04\x00\x00\x87\x04\x00\x00\x89\x04\x00\x00\x88\x04\x00\x00^\x04\x00\x00_\x04\x00\x00\x89\x04\x00\x00^\x04\x00\x00\n\x04\x00\x00\xe0\x03\x00\x00\xe1\x03\x00\x00\xe1\x03\x00\x00\x0b\x04\x00\x00\n\x04\x00\x00\t\x04\x00\x00\xdf\x03\x00\x00\n\x04\x00\x00\xdf\x03\x00\x00\xe0\x03\x00\x00\n\x04\x00\x00\x9d\x07\x00\x00\x9e\x07\x00\x00\xc8\x07\x00\x00\x9d\x07\x00\x00\xc8\x07\x00\x00\xc7\x07\x00\x00\xc6\x00\x00\x00\xf0\x00\x00\x00\xef\x00\x00\x00\xc5\x00\x00\x00\xc6\x00\x00\x00\xef\x00\x00\x00\xef\x00\x00\x00\xf0\x00\x00\x00\x1a\x01\x00\x00\xef\x00\x00\x00\x1a\x01\x00\x00\x19\x01\x00\x00\xee\x00\x00\x00\xc4\x00\x00\x00\xef\x00\x00\x00\xef\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\x00\x00\xef\x00\x00\x00\x18\x01\x00\x00\xee\x00\x00\x00\x19\x01\x00\x00\x18\x01\x00\x00\xef\x00\x00\x00\x98\x00\x00\x00\x97\x00\x00\x00m\x00\x00\x00\x98\x00\x00\x00m\x00\x00\x00n\x00\x00\x00\xc1\x00\x00\x00\x97\x00\x00\x00\x98\x00\x00\x00\xc2\x00\x00\x00\xc1\x00\x00\x00\x98\x00\x00\x00\x98\x00\x00\x00o\x00\x00\x00\x99\x00\x00\x00n\x00\x00\x00o\x00\x00\x00\x98\x00\x00\x00\x99\x00\x00\x00\xc3\x00\x00\x00\x98\x00\x00\x00\x98\x00\x00\x00\xc3\x00\x00\x00\xc2\x00\x00\x00\x15\x02\x00\x00\xeb\x01\x00\x00\x16\x02\x00\x00\xeb\x01\x00\x00\xec\x01\x00\x00\x16\x02\x00\x00\x16\x02\x00\x00@\x02\x00\x00?\x02\x00\x00\x16\x02\x00\x00?\x02\x00\x00\x15\x02\x00\x00\xed\x01\x00\x00\x17\x02\x00\x00\x16\x02\x00\x00\xec\x01\x00\x00\xed\x01\x00\x00\x16\x02\x00\x00\x16\x02\x00\x00\x17\x02\x00\x00A\x02\x00\x00\x16\x02\x00\x00A\x02\x00\x00@\x02\x00\x00\xc2\x01\x00\x00\xeb\x01\x00\x00\xc1\x01\x00\x00\xc2\x01\x00\x00\xec\x01\x00\x00\xeb\x01\x00\x00\x97\x01\x00\x00\x98\x01\x00\x00\xc2\x01\x00\x00\xc1\x01\x00\x00\x97\x01\x00\x00\xc2\x01\x00\x00\xc2\x01\x00\x00\xc3\x01\x00\x00\xed\x01\x00\x00\xc2\x01\x00\x00\xed\x01\x00\x00\xec\x01\x00\x00\xc2\x01\x00\x00\x98\x01\x00\x00\x99\x01\x00\x00\x99\x01\x00\x00\xc3\x01\x00\x00\xc2\x01\x00\x00\x0b\x01\x00\x00\n\x01\x00\x00\xe0\x00\x00\x00\x0b\x01\x00\x00\xe0\x00\x00\x00\xe1\x00\x00\x004\x01\x00\x00\n\x01\x00\x00\x0b\x01\x00\x005\x01\x00\x004\x01\x00\x00\x0b\x01\x00\x00\x0b\x01\x00\x00\xe2\x00\x00\x00\x0c\x01\x00\x00\xe1\x00\x00\x00\xe2\x00\x00\x00\x0b\x01\x00\x00\x0b\x01\x00\x00\x0c\x01\x00\x006\x01\x00\x00\x0b\x01\x00\x006\x01\x00\x005\x01\x00\x00x\x02\x00\x00O\x02\x00\x00y\x02\x00\x00N\x02\x00\x00O\x02\x00\x00x\x02\x00\x00x\x02\x00\x00M\x02\x00\x00N\x02\x00\x00w\x02\x00\x00M\x02\x00\x00x\x02\x00\x00M\x05\x00\x00L\x05\x00\x00"\x05\x00\x00M\x05\x00\x00"\x05\x00\x00#\x05\x00\x00v\x05\x00\x00L\x05\x00\x00M\x05\x00\x00w\x05\x00\x00v\x05\x00\x00M\x05\x00\x00$\x05\x00\x00N\x05\x00\x00M\x05\x00\x00#\x05\x00\x00$\x05\x00\x00M\x05\x00\x00M\x05\x00\x00N\x05\x00\x00x\x05\x00\x00M\x05\x00\x00x\x05\x00\x00w\x05\x00\x00\x1a\x07\x00\x00\x1b\x07\x00\x00D\x07\x00\x00\x1b\x07\x00\x00E\x07\x00\x00D\x07\x00\x00D\x07\x00\x00o\x07\x00\x00n\x07\x00\x00D\x07\x00\x00E\x07\x00\x00o\x07\x00\x00C\x07\x00\x00\x19\x07\x00\x00D\x07\x00\x00D\x07\x00\x00\x19\x07\x00\x00\x1a\x07\x00\x00D\x07\x00\x00m\x07\x00\x00C\x07\x00\x00n\x07\x00\x00m\x07\x00\x00D\x07\x00\x00\x9f\x06\x00\x00t\x06\x00\x00u\x06\x00\x00\x9f\x06\x00\x00\x9e\x06\x00\x00t\x06\x00\x00\xc8\x06\x00\x00\x9e\x06\x00\x00\x9f\x06\x00\x00\xc9\x06\x00\x00\xc8\x06\x00\x00\x9f\x06\x00\x00u\x06\x00\x00v\x06\x00\x00\x9f\x06\x00\x00\x9f\x06\x00\x00v\x06\x00\x00\xa0\x06\x00\x00\xa0\x06\x00\x00\xca\x06\x00\x00\x9f\x06\x00\x00\x9f\x06\x00\x00\xca\x06\x00\x00\xc9\x06\x00\x00\xf5\x04\x00\x00\x1f\x05\x00\x00\xf4\x04\x00\x00\xf4\x04\x00\x00\x1f\x05\x00\x00\x1e\x05\x00\x00\x1e\x05\x00\x00\x1d\x05\x00\x00\xf4\x04\x00\x00\xf4\x04\x00\x00\x1d\x05\x00\x00\xf3\x04\x00\x00c\x02\x00\x00d\x02\x00\x00\x8d\x02\x00\x00\x8d\x02\x00\x00d\x02\x00\x00\x8e\x02\x00\x00\x8d\x02\x00\x00\x8e\x02\x00\x00\xb8\x02\x00\x00\x8d\x02\x00\x00\xb8\x02\x00\x00\xb7\x02\x00\x00b\x02\x00\x00c\x02\x00\x00\x8d\x02\x00\x00\x8d\x02\x00\x00\x8c\x02\x00\x00b\x02\x00\x00\x8d\x02\x00\x00\xb6\x02\x00\x00\x8c\x02\x00\x00\xb7\x02\x00\x00\xb6\x02\x00\x00\x8d\x02\x00\x00`\x02\x00\x006\x02\x00\x007\x02\x00\x00`\x02\x00\x007\x02\x00\x00a\x02\x00\x00`\x02\x00\x00\x8b\x02\x00\x00\x8a\x02\x00\x00a\x02\x00\x00\x8b\x02\x00\x00`\x02\x00\x00`\x02\x00\x00_\x02\x00\x005\x02\x00\x005\x02\x00\x006\x02\x00\x00`\x02\x00\x00\x89\x02\x00\x00_\x02\x00\x00`\x02\x00\x00\x8a\x02\x00\x00\x89\x02\x00\x00`\x02\x00\x00\xab\x07\x00\x00\xaa\x07\x00\x00\x80\x07\x00\x00\x80\x07\x00\x00\x81\x07\x00\x00\xab\x07\x00\x00\xd4\x07\x00\x00\xaa\x07\x00\x00\xab\x07\x00\x00\xd5\x07\x00\x00\xd4\x07\x00\x00\xab\x07\x00\x00\xab\x07\x00\x00\x81\x07\x00\x00\x82\x07\x00\x00\xab\x07\x00\x00\x82\x07\x00\x00\xac\x07\x00\x00\xac\x07\x00\x00\xd6\x07\x00\x00\xab\x07\x00\x00\xab\x07\x00\x00\xd6\x07\x00\x00\xd5\x07\x00\x00\xec\x07\x00\x00\x15\x08\x00\x00\xeb\x07\x00\x00\x16\x08\x00\x00\x15\x08\x00\x00\xec\x07\x00\x00\xec\x07\x00\x00\xeb\x07\x00\x00\xc1\x07\x00\x00\xec\x07\x00\x00\xc1\x07\x00\x00\xc2\x07\x00\x00\x17\x08\x00\x00\x16\x08\x00\x00\xec\x07\x00\x00\xec\x07\x00\x00\xed\x07\x00\x00\x17\x08\x00\x00\xc3\x07\x00\x00\xed\x07\x00\x00\xec\x07\x00\x00\xc2\x07\x00\x00\xc3\x07\x00\x00\xec\x07\x00\x00\xe1\x04\x00\x00\x0b\x05\x00\x00\n\x05\x00\x00\xe0\x04\x00\x00\xe1\x04\x00\x00\n\x05\x00\x00\n\x05\x00\x00\x0b\x05\x00\x005\x05\x00\x00\n\x05\x00\x005\x05\x00\x004\x05\x00\x00\t\x05\x00\x00\xdf\x04\x00\x00\n\x05\x00\x00\n\x05\x00\x00\xdf\x04\x00\x00\xe0\x04\x00\x00\n\x05\x00\x003\x05\x00\x00\t\x05\x00\x004\x05\x00\x003\x05\x00\x00\n\x05\x00\x004\x04\x00\x005\x04\x00\x00_\x04\x00\x004\x04\x00\x00_\x04\x00\x00^\x04\x00\x004\x04\x00\x00\x0b\x04\x00\x005\x04\x00\x00\n\x04\x00\x00\x0b\x04\x00\x004\x04\x00\x00\xa2\x02\x00\x00\xcc\x02\x00\x00\xcb\x02\x00\x00\xa2\x02\x00\x00\xcb\x02\x00\x00\xa1\x02\x00\x00\xa2\x02\x00\x00\xa1\x02\x00\x00w\x02\x00\x00\xa2\x02\x00\x00w\x02\x00\x00x\x02\x00\x00\xcd\x02\x00\x00\xcc\x02\x00\x00\xa2\x02\x00\x00\xa2\x02\x00\x00\xa3\x02\x00\x00\xcd\x02\x00\x00\xa2\x02\x00\x00y\x02\x00\x00\xa3\x02\x00\x00x\x02\x00\x00y\x02\x00\x00\xa2\x02\x00\x00\xa1\x04\x00\x00\xcb\x04\x00\x00\xca\x04\x00\x00\xa0\x04\x00\x00\xa1\x04\x00\x00\xca\x04\x00\x00\xcb\x04\x00\x00\xf5\x04\x00\x00\xca\x04\x00\x00\xca\x04\x00\x00\xf5\x04\x00\x00\xf4\x04\x00\x00\xca\x04\x00\x00\x9f\x04\x00\x00\xa0\x04\x00\x00\xc9\x04\x00\x00\x9f\x04\x00\x00\xca\x04\x00\x00\xf3\x04\x00\x00\xc9\x04\x00\x00\xca\x04\x00\x00\xf4\x04\x00\x00\xf3\x04\x00\x00\xca\x04\x00\x00^\x04\x00\x00]\x04\x00\x003\x04\x00\x004\x04\x00\x00^\x04\x00\x003\x04\x00\x003\x04\x00\x00\t\x04\x00\x00\n\x04\x00\x003\x04\x00\x00\n\x04\x00\x004\x04\x00\x003\x04\x00\x00\\\x04\x00\x002\x04\x00\x00]\x04\x00\x00\\\x04\x00\x003\x04\x00\x002\x04\x00\x00\x08\x04\x00\x003\x04\x00\x003\x04\x00\x00\x08\x04\x00\x00\t\x04\x00\x00\x1d\x07\x00\x00\x1e\x07\x00\x00H\x07\x00\x00G\x07\x00\x00\x1d\x07\x00\x00H\x07\x00\x00q\x07\x00\x00G\x07\x00\x00H\x07\x00\x00r\x07\x00\x00q\x07\x00\x00H\x07\x00\x00\x1f\x07\x00\x00 \x07\x00\x00I\x07\x00\x00I\x07\x00\x00 \x07\x00\x00J\x07\x00\x00I\x07\x00\x00\x1e\x07\x00\x00\x1f\x07\x00\x00H\x07\x00\x00\x1e\x07\x00\x00I\x07\x00\x00\xc6\x07\x00\x00\xc5\x07\x00\x00\x9c\x07\x00\x00\x9c\x07\x00\x00\xc5\x07\x00\x00\x9b\x07\x00\x00\x9c\x07\x00\x00\x9b\x07\x00\x00q\x07\x00\x00\x9c\x07\x00\x00q\x07\x00\x00r\x07\x00\x00\xc7\x07\x00\x00\xc6\x07\x00\x00\x9c\x07\x00\x00\x9d\x07\x00\x00\xc7\x07\x00\x00\x9c\x07\x00\x00t\x07\x00\x00\x9e\x07\x00\x00s\x07\x00\x00s\x07\x00\x00\x9e\x07\x00\x00\x9d\x07\x00\x00J\x07\x00\x00t\x07\x00\x00s\x07\x00\x00I\x07\x00\x00J\x07\x00\x00s\x07\x00\x00\x9c\x07\x00\x00r\x07\x00\x00s\x07\x00\x00s\x07\x00\x00\x9d\x07\x00\x00\x9c\x07\x00\x00s\x07\x00\x00r\x07\x00\x00H\x07\x00\x00s\x07\x00\x00H\x07\x00\x00I\x07\x00\x00') PASSED [ 2%] PASSED [ 3%]is path /home/miguel/.cache/pooch/b3eaa3b88746691a91bb91f922f3b338-combination Active grids: ['regular'] bytearray(b'REX1\x01\x00\x00\x00\x00\x00\x05\x00V\x00\xa4\x01\x00\x00\x00\x00\x00\x00000000000000000000000000000000000000000000$\x0f\x00\x00\x04\x00EPSG\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x00D\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa5\xa4\xa4>\xed\xec\xec>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\xa5\xa4\xa4>\xed\xec\xec>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\xa5\xa4\xa4>\xed\xec\xec>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\x81\x80\x80;\xa9\xa8\xa8>\x83\x82\x02?\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xa0\x9f\x1f?\x00\x00\x00\x00\xa5\xa4\xa4>\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\xbf\xbe>?\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?\x05\x00\x01\x00D\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\x00\x00\x80?\x00\x00\x80?\x00\x00\x80?\xff\xff\xff\xff\xff\xff\xff\x7f\xcd\xcc\xcc=\x00\x00\x80?') Downloading data from 'https://github.com/cgre-aachen/gempy_data/raw/master/data/gempy_models/combination.zip' to file '/home/miguel/.cache/pooch/b3eaa3b88746691a91bb91f922f3b338-combination.zip'. SHA256 hash of downloaded file: 8f2e02fa778ce50c54bb7afa18ebd9d7063b0deb893062fca81f4827feee68c1 Use this value as the 'known_hash' argument of 'pooch.retrieve' to ensure that the file hasn't changed if it is downloaded again in the future. Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 3%] PASSED [ 4%]Active grids: ['regular'] PASSED [ 5%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 5%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 6%]Active grids: ['regular'] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_run Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 0.0 $C_o$ 0.0 drift equations [3] PASSED [ 7%]Active grids: ['regular'] Active grids: ['regular' 'centered'] Setting kriging parameters to their default values. values Structure isLith True isFault False number faults 0 number surfaces 2 number series 1 number surfaces per series [2] len surfaces surface_points [2, 2] len series surface_points [4] len series orientations [1] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 13.266499 $C_o$ 4.190476 drift equations [3] Rescaling rescaling factor 12.0 centers [6.0, 0.0, 2.51] [-1624.17138237] PASSED [ 7%] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_run Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 0.0 $C_o$ 0.0 drift equations [3] PASSED [ 8%]Active grids: ['regular'] Active grids: ['regular' 'centered'] Setting kriging parameters to their default values. 125 [473.78364798] Active grids: ['centered'] Setting kriging parameters to their default values. PASSED [ 8%]Active grids: ['centered'] 0 Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 9%] PASSED [ 10%] Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 10%] PASSED [ 11%] PASSED [ 12%]Active grids: ['regular'] SKIPPED (Expensive test. It should be ran manually.) [ 12%] SKIPPED (Private data missing from the repo) [ 13%] PASSED [ 14%] order_series BottomRelation isActive foo3 1 Erosion False boo 2 Erosion False foo7 3 Erosion False foo5 4 Erosion False foo20 5 Erosion False surface series order_surfaces color id 0 foo foo20 1 #015482 1 1 foo2 foo20 2 #9f0052 2 2 foo5 foo20 3 #ffbe00 3 3 feeeee foo20 4 #728f02 4 0 foo 1 foo2 2 foo5 3 feeeee Name: surface, dtype: object surface series order_surfaces color id value_0 0 foo foo20 1 #015482 1 2 1 foo2 foo20 2 #9f0052 2 2 2 foo5 foo20 3 #ffbe00 3 2 3 feeeee foo20 4 #728f02 4 5 surface series order_surfaces color id value_0 val_foo val2_foo 0 foo foo20 1 #015482 1 2 2 2 1 foo2 foo20 2 #9f0052 2 2 2 2 2 foo5 foo20 3 #ffbe00 3 2 2 1 3 feeeee foo20 4 #728f02 4 5 6 8 surface series order_surfaces color id val2_foo 0 foo foo20 1 #015482 1 2 1 foo2 foo20 2 #9f0052 2 2 2 foo5 foo20 3 #ffbe00 3 1 3 feeeee foo20 4 #728f02 4 8 surface series order_surfaces color id val_foo val2_foo 0 foo foo20 1 #015482 1 2 2 1 foo2 foo20 2 #9f0052 2 2 2 2 foo5 foo20 3 #ffbe00 3 2 1 3 feeeee foo20 4 #728f02 4 6 8 0 foo20 1 foo20 2 foo20 3 foo20 Name: series, dtype: category Categories (5, object): ['foo3', 'boo', 'foo7', 'foo5', 'foo20'] 0 foo 1 foo2 2 foo5 3 feeeee Name: surface, dtype: object surface series order_surfaces color id val_foo val2_foo 1 foo2 boo 1 #9f0052 1 2 2 2 foo5 boo 2 #ffbe00 2 2 1 0 foo foo7 1 #015482 3 2 2 3 feeeee foo20 1 #728f02 4 6 8 surface series order_surfaces color id val_foo val2_foo 1 foo2 boo 1 #9f0052 1 2 2 2 foo5 boo 2 #ffbe00 2 2 1 0 foo foo7 1 #015482 3 2 2 3 feeeee foo20 1 #728f02 4 6 8 surface series order_surfaces color id val_foo val2_foo 1 lala boo 1 #9f0052 1 2 2 2 foo5 boo 2 #ffbe00 2 2 1 0 foo foo7 1 #015482 3 2 2 3 feeeee foo20 1 #728f02 4 6 8 surface series order_surfaces color id val_foo val2_foo 1 lala boo 1 #9f0052 1 2 2 2 foo5 boo 2 #ffbe00 2 22 1 0 foo foo7 1 #015482 3 2 2 3 feeeee foo20 1 #728f02 4 6 8 PASSED [ 14%] X Y Z G_x G_y G_z smooth surface 0 1.0 1.0 1.0 1.000000e+00 0.000000e+00 1.0 0.01 foo 1 2.0 2.0 2.0 1.000000e-12 1.000000e-12 1.0 0.01 foo 2 1.0 1.0 1.0 1.000000e+00 0.000000e+00 1.0 0.01 foo PASSED [ 15%] PASSED [ 16%] Empty DataFrame Columns: [X, Y, Z, smooth, surface] Index: [] X Y Z smooth surface 0 0.907111 0.505988 0.391950 0.000002 foo 1 0.477907 0.556531 0.713103 0.000002 foo5 2 0.567881 0.533721 0.085224 0.000002 lala 3 0.474279 0.213689 0.775950 0.000002 foo5 4 0.135712 0.226703 0.228706 0.000002 lala 5 0.865928 0.366988 0.052788 0.000002 feeeee X Y Z smooth surface 0 0.907111 0.505988 0.391950 0.000002 foo 1 0.477907 0.556531 0.713103 0.000002 foo5 2 0.567881 0.533721 0.085224 0.000002 lala 3 0.474279 0.213689 0.775950 0.000002 foo5 4 0.135712 0.226703 0.228706 0.000002 lala 5 0.865928 0.366988 0.052788 0.000002 feeeee X Y Z smooth surface 0 0.907111 0.505988 0.391950 0.000002 foo 1 0.477907 0.556531 0.713103 0.000002 foo5 2 0.567881 0.533721 0.085224 0.000002 lala 3 0.474279 0.213689 0.775950 0.000002 foo5 4 0.135712 0.226703 0.228706 0.000002 lala 5 0.865928 0.366988 0.052788 0.000002 feeeee X Y Z smooth surface 0 0.907111 0.505988 0.391950 0.000002 foo 1 0.477907 0.556531 0.713103 0.000002 foo5 2 0.567881 0.533721 0.085224 0.000002 lala 3 0.474279 0.213689 0.775950 0.000002 foo5 4 0.135712 0.226703 0.228706 0.000002 lala 5 0.865928 0.366988 0.052788 0.000002 feeeee X Y Z smooth surface 2 0.567881 0.533721 0.085224 0.000002 lala 4 0.135712 0.226703 0.228706 0.000002 lala 1 0.477907 0.556531 0.713103 0.000002 foo5 3 0.474279 0.213689 0.775950 0.000002 foo5 0 0.907111 0.505988 0.391950 0.000002 foo 5 0.865928 0.366988 0.052788 0.000002 feeeee PASSED [ 16%] Empty DataFrame Columns: [X, Y, Z, G_x, G_y, G_z, smooth, surface] Index: [] X Y Z G_x G_y G_z smooth surface 0 6.158143 1.074522 7.457793 0.006508 0.860719 0.639610 0.01 foo 1 1.339547 9.933769 6.031268 0.689821 0.693746 0.314390 0.01 foo5 2 3.655285 9.722756 3.908049 0.638101 0.231377 0.471284 0.01 lala 3 5.149455 7.101185 1.878485 0.973958 0.934199 0.797727 0.01 foo5 4 5.946195 3.441145 3.070265 0.264553 0.578896 0.218209 0.01 lala 5 0.819608 0.011488 0.608167 0.896632 0.560491 0.377451 0.01 feeeee X Y Z G_x G_y G_z smooth surface 0 4.554007 7.983589 5.890162 0.321616 1.619556 7.214686 0.01 foo 1 9.349686 5.224257 7.963614 0.572737 2.630836 17.388708 0.01 foo5 2 3.900684 6.100325 8.972885 0.732125 2.229721 7.274096 0.01 lala 3 7.580344 5.776509 7.915510 0.001390 0.971052 4.771013 0.01 foo5 4 9.062750 3.596733 8.679631 0.226881 1.050554 15.519829 0.01 lala 5 4.979871 4.711573 4.951103 0.968313 3.949245 14.006075 0.01 feeeee X Y Z G_x G_y G_z smooth surface 0 4.554007 7.983589 5.890162 0.321616 1.619556 7.214686 0.01 foo 1 9.349686 5.224257 7.963614 0.572737 2.630836 17.388708 0.01 foo5 2 3.900684 6.100325 8.972885 0.732125 2.229721 7.274096 0.01 lala 3 7.580344 5.776509 7.915510 0.001390 0.971052 4.771013 0.01 foo5 4 9.062750 3.596733 8.679631 0.226881 1.050554 15.519829 0.01 lala 5 4.979871 4.711573 4.951103 0.968313 3.949245 14.006075 0.01 feeeee X Y Z G_x G_y G_z smooth surface 0 4.554007 7.983589 5.890162 0.321616 1.619556 7.214686 0.01 foo 1 9.349686 5.224257 7.963614 0.572737 2.630836 17.388708 0.01 foo5 2 3.900684 6.100325 8.972885 0.732125 2.229721 7.274096 0.01 lala 3 7.580344 5.776509 7.915510 0.001390 0.971052 4.771013 0.01 foo5 4 9.062750 3.596733 8.679631 0.226881 1.050554 15.519829 0.01 lala 5 4.979871 4.711573 4.951103 0.968313 3.949245 14.006075 0.01 feeeee X Y Z G_x G_y G_z smooth surface 0 4.554007 7.983589 5.890162 0.321616 1.619556 7.214686 0.01 foo 1 9.349686 5.224257 7.963614 0.572737 2.630836 17.388708 0.01 foo5 2 3.900684 6.100325 8.972885 0.732125 2.229721 7.274096 0.01 lala 3 7.580344 5.776509 7.915510 0.001390 0.971052 4.771013 0.01 foo5 4 9.062750 3.596733 8.679631 0.226881 1.050554 15.519829 0.01 lala 5 4.979871 4.711573 4.951103 0.968313 3.949245 14.006075 0.01 feeeee PASSED [ 17%] PASSED [ 17%] PASSED [ 18%] PASSED [ 19%] PASSED [ 19%]The surface passed does not exist in the pandas categories. This may imply thatdoes not exist in the surface object either. PASSED [ 20%] PASSED [ 21%] PASSED [ 21%] PASSED [ 22%] PASSED [ 23%] PASSED [ 23%] PASSED [ 24%] X Y Z smooth surface 0 400.0 300.0 -500.0 0.000001 foo2 X Y Z smooth surface 0 400.0 800 -500.0 0.000001 foo2 PASSED [ 25%] PASSED [ 25%] PASSED [ 26%] PASSED [ 26%]Fault colors changed. If you do not like this behavior, set change_color to False. Fault colors changed. If you do not like this behavior, set change_color to False. ['foo2'] PASSED [ 27%] PASSED [ 28%]Active grids: ['regular'] PASSED [ 28%]Empty DataFrame Columns: [surface, series, order_surfaces, color, id] Index: [] PASSED [ 29%]Active grids: ['regular'] PASSED [ 30%] Setting kriging parameters to their default values. Active grids: ['regular' 'topography'] PASSED [ 30%]foo PASSED [ 31%]Active grids: ['regular'] Active grids: ['regular' 'topography'] PASSED [ 32%]is path /home/miguel/.cache/pooch/0744c4cf13b4426d3eb20cca3d23e6f6-viz_3d Active grids: ['regular'] Active grids: ['regular' 'topography'] Downloading data from 'https://github.com/cgre-aachen/gempy_data/raw/master/data/gempy_models/viz_3d.zip' to file '/home/miguel/.cache/pooch/0744c4cf13b4426d3eb20cca3d23e6f6-viz_3d.zip'. SHA256 hash of downloaded file: 37e8a5c5fff03cb38ed12344a585942f91324031f2bfed6f746ac10dbd9ab8be Use this value as the 'known_hash' argument of 'pooch.retrieve' to ensure that the file hasn't changed if it is downloaded again in the future. PASSED [ 32%] Downloading data from 'https://nowhere.zip' to file '/home/miguel/.cache/pooch/0f0b20cbf7607d1a32c3b8d06ce93942-'. PASSED [ 33%]is path /home/miguel/.cache/pooch/bdc57aae09be8b8517ff7162a3f12498-Onlap_relations Active grids: ['regular'] Active grids: ['regular' 'topography'] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 1854.723699 $C_o$ 81904.761905 drift equations [3, 3, 3, 3, 3] nugget grad 0.01 nugget scalar 0.000001 Downloading data from 'https://github.com/cgre-aachen/gempy_data/raw/master/data/gempy_models/Onlap_relations.zip' to file '/home/miguel/.cache/pooch/bdc57aae09be8b8517ff7162a3f12498-Onlap_relations.zip'. SHA256 hash of downloaded file: 927968b50ae6ec8d9ff742bca736875bf2c143d993ee7fbc28d514088cd8ba6d Use this value as the 'known_hash' argument of 'pooch.retrieve' to ensure that the file hasn't changed if it is downloaded again in the future. PASSED [ 33%]<pooch.core.Pooch object at 0x7f682196d150> PASSED [ 34%]Active grids: ['regular'] X Y Z smooth surface 0 0.231023 1.721407 0.356143 0.000002 surface_1 1 0.020010 0.692064 -0.649647 0.000002 surface_1 2 0.443810 -1.231450 -0.688408 0.000002 surface_1 3 0.865262 -0.583194 0.918076 0.000002 surface_2 4 -0.774628 -0.969160 1.526413 0.000002 surface_2 X Y Z ... G_z smooth surface 0 0.812639 -0.845421 0.099480 ... 2.052763 0.01 surface_1 1 -1.190455 0.212550 -0.682445 ... 0.425689 0.01 surface_1 2 -0.806670 -1.136213 2.332153 ... -0.725706 0.01 surface_1 3 -1.933519 -0.346317 0.296644 ... 0.232094 0.01 surface_2 4 0.679137 -0.091081 0.053065 ... -0.661261 0.01 surface_2 [5 rows x 8 columns] Active grids: ['regular'] X Y Z smooth surface 0 0.231023 1.721407 0.356143 0.000002 surface_1 1 0.020010 0.692064 -0.649647 0.000002 surface_1 2 0.443810 -1.231450 -0.688408 0.000002 surface_1 3 0.865262 -0.583194 0.918076 0.000002 surface_2 4 -0.774628 -0.969160 1.526413 0.000002 surface_2 X Y Z ... G_z smooth surface 0 0.812639 -0.845421 0.099480 ... 2.052763 0.01 surface_1 1 -1.190455 0.212550 -0.682445 ... 0.425689 0.01 surface_1 2 -0.806670 -1.136213 2.332153 ... -0.725706 0.01 surface_1 3 -1.933519 -0.346317 0.296644 ... 0.232094 0.01 surface_2 4 0.679137 -0.091081 0.053065 ... -0.661261 0.01 surface_2 [5 rows x 8 columns] Active grids: ['regular'] PASSED [ 35%] Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 35%] surface series order_surfaces color id 4 Main_Fault Fault_Series 1 #527682 1 0 Shale Strat_Series 1 #015482 2 1 Sandstone_1 Strat_Series 2 #9f0052 3 2 Siltstone Strat_Series 3 #ffbe00 4 3 Sandstone_2 Strat_Series 4 #728f02 5 5 basement Strat_Series 5 #ff3f20 6 PASSED [ 36%]Fault colors changed. If you do not like this behavior, set change_color to False. ['Fault_Series'] Fault colors changed. If you do not like this behavior, set change_color to False. [] PASSED [ 37%]Setting kriging parameters to their default values. PASSED [ 37%]Setting kriging parameters to their default values. Directory already exists, files will be overwritten PASSED [ 38%]Setting kriging parameters to their default values. [6. 6. 6. ... 2. 2. 2.] values Structure isLith True isFault True number faults 1 number surfaces 5 number series 2 number surfaces per series [1, 4] len surfaces surface_points [5, 8, 13, 16, 15] len series surface_points [5, 52] len series orientations [1, 2] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 3464.101615 $C_o$ 285714.285714 drift equations [3, 3] Rescaling rescaling factor 3800.0 centers [850.0, 1000.0, 900.0] [0 3] [0 3] drift equations range $C_o$ drift equations values 1 285714.285714 [0, 3] [6. 6. 6. ... 2. 2. 2.] values Structure isLith True isFault True number faults 1 number surfaces 5 number series 2 number surfaces per series [1, 4] len surfaces surface_points [5, 8, 13, 16, 15] len series surface_points [5, 52] len series orientations [1, 2] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 1 $C_o$ 285714.285714 drift equations [0, 3] Rescaling rescaling factor 3800.0 centers [850.0, 1000.0, 900.0] Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 1 Compilation Done! Kriging values: values range 1 $C_o$ 285714.285714 drift equations [0, 3] [4.00645492 4.00623068 4.00600644 ... 3.9931591 3.99293487 3.99271063] values Structure isLith True isFault True number faults 1 number surfaces 5 number series 2 number surfaces per series [1, 4] len surfaces surface_points [5, 8, 13, 16, 15] len series surface_points [5, 52] len series orientations [1, 2] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 1 $C_o$ 285714.285714 drift equations [0, 3] Rescaling rescaling factor 3800.0 centers [850.0, 1000.0, 900.0] PASSED [ 39%] PASSED [ 39%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 40%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 41%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. order_series BottomRelation isActive isFault isFinite Fault1 1 Fault False True False Cycle1 2 Erosion False False False PASSED [ 41%]Active grids: ['regular'] Setting kriging parameters to their default values. Fault colors changed. If you do not like this behavior, set change_color to False. Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 42%]Active grids: ['regular'] Setting kriging parameters to their default values. [array([[0.087789 , 0.09072717, 0.7501 ], [0.087789 , 0.10739383, 0.7501 ], [0.10445567, 0.09072717, 0.7501 ], ..., [0.90445567, 0.8740605 , 0.7501 ], [0.90445567, 0.89072717, 0.7501 ], [0.90445567, 0.90739383, 0.7501 ]]), array([[0.087789 , 0.09072717, 0.2501 ], [0.087789 , 0.10739383, 0.2501 ], [0.10445567, 0.09072717, 0.2501 ], ..., [0.90445567, 0.8740605 , 0.2501 ], [0.90445567, 0.89072717, 0.2501 ], [0.90445567, 0.90739383, 0.2501 ]])] Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 42%]Active grids: ['regular' 'custom'] PASSED [ 43%][[[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]] [[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]] [[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]] ... [[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]] [[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]] [[False False False ... False False False] [False False False ... False False False] [False False False ... False False False] ... [False False False ... False False False] [False False False ... False False False] [False False False ... False False False]]] [[[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]] [[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]] [[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]] ... [[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]] [[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]] [[ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False] ... [ True True True ... False False False] [ True True True ... False False False] [ True True True ... False False False]]] [False False False ... True True True] PASSED [ 44%]Active grids: ['regular' 'topography' 'sections'] Active grids: ['sections'] Setting kriging parameters to their default values. [-400. 0.] FAILED [ 44%] test/test_core/test_xsol.py:94 (test_xsol)sol_values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] a_grid = Grid Object. Values: array([[ 20. , 20. , -1980. ], [ 20. , 20. , -194....4040404], [ 1750. , 250. , -20.2020202], [ 1750. , 250. , 0. ]]) stack_eg = order_series BottomRelation isActive isFault isFinite foo3 1 Erosion True False ... 4 Erosion True False False foo20 5 Erosion True False False surface_eg = surface series order_surfaces color id val_foo val2_foo 0 foo foo20 1 #015482 1 ... foo20 3 #ffbe00 3 2 1 3 fee foo20 4 #728f02 4 6 8 def test_xsol(sol_values, a_grid, stack_eg, surface_eg): sol = XSolution(a_grid, stack=stack_eg, surfaces=surface_eg) > sol.set_values(sol_values) test_core/test_xsol.py:97: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/core/xsolution.py:131: in set_values self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.xsolution.XSolution object at 0x7f68266ceb30> values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] l0 = 0, l1 = 125000 coords_base = {'Features': ['foo3', 'boo', 'foo7', 'foo5', 'foo20'], 'Properties': ['id', 'val_foo', 'val2_foo'], 'X': array([ 20.,... 1460., 1500., 1540., 1580., 1620., 1660., 1700., 1740., 1780., 1820., 1860., 1900., 1940., 1980.]), ...} def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) > self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) E NameError: name 'subsurface' is not defined ../gempy/core/xsolution.py:297: NameError FAILED [ 45%] test/test_core/test_xsol.py:107 (test_xsol_unstructured)sol_values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] a_grid = Grid Object. Values: array([[ 20. , 20. , -1980. ], [ 20. , 20. , -194....4040404], [ 1750. , 250. , -20.2020202], [ 1750. , 250. , 0. ]]) stack_eg = order_series BottomRelation isActive isFault isFinite foo3 1 Erosion True False ... 4 Erosion True False False foo20 5 Erosion True False False surface_eg = surface series order_surfaces color id val_foo val2_foo 0 foo foo20 1 #015482 1 ... foo20 3 #ffbe00 3 2 1 3 fee foo20 4 #728f02 4 6 8 def test_xsol_unstructured(sol_values, a_grid, stack_eg, surface_eg): sol = XSolution(a_grid, stack=stack_eg, surfaces=surface_eg) > sol.set_values(sol_values) test_core/test_xsol.py:110: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/core/xsolution.py:131: in set_values self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.xsolution.XSolution object at 0x7f68264e6680> values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] l0 = 0, l1 = 125000 coords_base = {'Features': ['foo3', 'boo', 'foo7', 'foo5', 'foo20'], 'Properties': ['id', 'val_foo', 'val2_foo'], 'X': array([ 20.,... 1460., 1500., 1540., 1580., 1620., 1660., 1700., 1740., 1780., 1820., 1860., 1900., 1940., 1980.]), ...} def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) > self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) E NameError: name 'subsurface' is not defined ../gempy/core/xsolution.py:297: NameError FAILED [ 46%] test/test_core/test_xsol.py:113 (test_xsol_structured)sol_values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] a_grid = Grid Object. Values: array([[ 20. , 20. , -1980. ], [ 20. , 20. , -194....4040404], [ 1750. , 250. , -20.2020202], [ 1750. , 250. , 0. ]]) stack_eg = order_series BottomRelation isActive isFault isFinite foo3 1 Erosion True False ... 4 Erosion True False False foo20 5 Erosion True False False surface_eg = surface series order_surfaces color id val_foo val2_foo 0 foo foo20 1 #015482 1 ... foo20 3 #ffbe00 3 2 1 3 fee foo20 4 #728f02 4 6 8 def test_xsol_structured(sol_values, a_grid, stack_eg, surface_eg): sol = XSolution(a_grid, stack=stack_eg, surfaces=surface_eg) > sol.set_values(sol_values) test_core/test_xsol.py:116: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/core/xsolution.py:131: in set_values self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.xsolution.XSolution object at 0x7f68262c4670> values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] l0 = 0, l1 = 125000 coords_base = {'Features': ['foo3', 'boo', 'foo7', 'foo5', 'foo20'], 'Properties': ['id', 'val_foo', 'val2_foo'], 'X': array([ 20.,... 1460., 1500., 1540., 1580., 1620., 1660., 1700., 1740., 1780., 1820., 1860., 1900., 1940., 1980.]), ...} def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) > self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) E NameError: name 'subsurface' is not defined ../gempy/core/xsolution.py:297: NameError FAILED [ 46%] test/test_core/test_xsol.py:119 (test_xsol_to_disk)sol_values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] a_grid = Grid Object. Values: array([[ 20. , 20. , -1980. ], [ 20. , 20. , -194....4040404], [ 1750. , 250. , -20.2020202], [ 1750. , 250. , 0. ]]) stack_eg = order_series BottomRelation isActive isFault isFinite foo3 1 Erosion True False ... 4 Erosion True False False foo20 5 Erosion True False False surface_eg = surface series order_surfaces color id val_foo val2_foo 0 foo foo20 1 #015482 1 ... foo20 3 #ffbe00 3 2 1 3 fee foo20 4 #728f02 4 6 8 tmpdir = local('/tmp/pytest-of-miguel/pytest-0/test_xsol_to_disk0') def test_xsol_to_disk(sol_values, a_grid, stack_eg, surface_eg, tmpdir): sol = XSolution(a_grid, stack=stack_eg, surfaces=surface_eg) > sol.set_values(sol_values) test_core/test_xsol.py:122: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/core/xsolution.py:131: in set_values self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.xsolution.XSolution object at 0x7f682641c2e0> values = [array([[9, 6, 6, ..., 3, 1, 3], [9, 8, 0, ..., 2, 2, 8], [4, 3, 7, ..., 7, 7, 6]]), array([[[8, 1, 4, ....[27, 23, 22, ..., 22, 20, 23], [28, 22, 22, ..., 20, 29, 21], [26, 29, 20, ..., 22, 29, 26]]), None, ...] l0 = 0, l1 = 125000 coords_base = {'Features': ['foo3', 'boo', 'foo7', 'foo5', 'foo20'], 'Properties': ['id', 'val_foo', 'val2_foo'], 'X': array([ 20.,... 1460., 1500., 1540., 1580., 1620., 1660., 1700., 1740., 1780., 1820., 1860., 1900., 1940., 1980.]), ...} def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) > self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) E NameError: name 'subsurface' is not defined ../gempy/core/xsolution.py:297: NameError SKIPPED (Test for gempy_lite) [ 47%] SKIPPED (Test for gempy_lite) [ 48%] FAILED [ 48%] test/test_core/test_xsol.py:157 (test_xsol_full)model_horizontal_two_layers = interpolator 2023-03-07 07:25 def test_xsol_full(model_horizontal_two_layers): model_horizontal_two_layers.update_to_interpolator() vals = gp.compute_model(model_horizontal_two_layers, set_solutions=False) sol = XSolution( model_horizontal_two_layers._grid, stack=model_horizontal_two_layers._stack, surfaces=model_horizontal_two_layers._surfaces) > sol.set_values(vals) test_core/test_xsol.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/core/xsolution.py:131: in set_values self.set_values_to_regular_grid_(values, l[0], l[1], coords_base.copy()) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.xsolution.XSolution object at 0x7f6828d65de0> values = [array([[3. , 3. , 3. , ..., 2.5, 1.5, 2.5]]), array([[[3. , 3. , 3. , ..., 2.5, 1.5, 2.5]]]), array([[0., 0., 0., ......0.18353333, 0.21686667, 0.2502 , ..., 0.5002 , 1.5002 , 0.5002 ]]), array([[1.5002, 0.5002]]), ...] l0 = 0, l1 = 125000 coords_base = {'Features': ['Default series'], 'Properties': ['id'], 'X': array([0.1, 0.3, 0.5, 0.7, 0.9, 1.1, 1.3, 1.5, 1.7, 1.9, 2... 5.9, 6.1, 6.3, 6.5, 6.7, 6.9, 7.1, 7.3, 7.5, 7.7, 7.9, 8.1, 8.3, 8.5, 8.7, 8.9, 9.1, 9.3, 9.5, 9.7, 9.9]), ...} def set_values_to_regular_grid_(self, values: list, l0, l1, coords_base: dict): coords = self.add_cartesian_coords(coords_base) arrays = self.create_struc_xarrays(values, l0, l1, self.grid.regular_grid.resolution) > self.s_regular_grid = subsurface.StructuredData.from_dict(data_dict=arrays, coords=coords) E NameError: name 'subsurface' is not defined ../gempy/core/xsolution.py:297: NameError PASSED [ 49%] FAILED [ 50%] test/test_core/test_xsol.py:174 (test_set_meshes)model_horizontal_two_layers = interpolator 2023-03-07 07:25 def test_set_meshes(model_horizontal_two_layers): > import subsurface E ModuleNotFoundError: No module named 'subsurface' test_core/test_xsol.py:176: ModuleNotFoundError PASSED [ 50%] PASSED [ 51%] PASSED [ 51%] PASSED [ 52%] PASSED [ 53%] PASSED [ 53%] PASSED [ 54%] PASSED [ 55%] PASSED [ 55%] PASSED [ 56%] PASSED [ 57%] PASSED [ 57%] PASSED [ 58%] PASSED [ 58%]Active grids: ['regular'] [ 800. 1000.] Active grids: ['regular' 'topography'] Active grids: ['regular' 'topography' 'sections'] start stop resolution dist section1 [0, 0] [1000, 1000] [100, 80] 1414.213562 section2 [800, 0] [800, 1000] [150, 100] 1000.000000 section3 [50, 200] [100, 500] [200, 150] 304.138127 PASSED [ 59%]Active grids: ['regular'] Active grids: ['regular' 'sections'] Active grids: ['regular' 'sections'] start stop resolution dist section1 [0, 0] [1000, 1000] [100, 80] 1414.213562 section2 [800, 0] [800, 1000] [150, 100] 1000.000000 section3 [50, 200] [100, 500] [200, 150] 304.138127 PASSED [ 60%] FAILED [ 60%]Active grids: ['regular'] test/test_core/test_grids/test_topography.py:31 (test_real_grid_ales)@pytest.mark.skipif(("TRAVIS" in os.environ and os.environ["TRAVIS"] == "true") or ("GITHUBACTION" in os.environ and os.environ["GITHUBACTION"] == "true"), reason="Skipping this test on Travis CI because gdal.") def test_real_grid_ales(): resolution = [30, 20, 50] extent = np.array([729550.0, 751500.0, 1913500.0, 1923650.0, -50, 800.0]) path_interf = data_path + "/2018_interf.csv" path_orient = data_path + "/2018_orient_clust_n_init5_0.csv" path_dem = data_path + "/_cropped_DEM_coarse.tif" geo_model = gp.create_model('Alesmodel') gp.init_data(geo_model, extent=extent, resolution=resolution, path_i=path_interf, path_o=path_orient) > geo_model.set_topography(source='gdal', filepath=path_dem) test_core/test_grids/test_topography.py:47: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/decorators.py:108: in pst topography = func(*args, **kwargs) ../gempy/core/model.py:428: in set_topography self._grid.create_topography(source, **kwargs) ../gempy/core/data.py:183: in create_topography self.topography.load_from_gdal(filepath) ../gempy/core/grid_modules/topography.py:122: in load_from_gdal dem = LoadDEMGDAL(filepath, extent=self.extent) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.grid_modules.create_topography.LoadDEMGDAL object at 0x7f68264392d0> path_dem = '/home/miguel/PycharmProjects/gempy/test/test_core/test_grids/../../input_data/_cropped_DEM_coarse.tif' grid = None extent = array([ 7.29550e+05, 7.51500e+05, 1.91350e+06, 1.92365e+06, -5.00000e+01, 8.00000e+02]) delete_temp = True def __init__(self, path_dem, grid=None, extent=None, delete_temp=True): """ Args: path_dem: path where dem is stored. file format: GDAL raster formats if grid: cropped to geomodel extent """ if GDAL_IMPORT == False: > raise ImportError('Gdal package is not installed. No support for raster formats.') E ImportError: Gdal package is not installed. No support for raster formats. ../gempy/core/grid_modules/create_topography.py:35: ImportError [1600. 2000.] [[ 0. 0. 1965.35297791] [ 0. 40.81632653 1951.7566901 ] [ 0. 81.63265306 1938.28261911] ... [2000. 1918.36734694 1994.00395337] [2000. 1959.18367347 1999.46369539] [2000. 2000. 1991.12328024]] [[[ 0. 0. 1965.35297791] [ 0. 40.81632653 1951.7566901 ] [ 0. 81.63265306 1938.28261911] ... [ 0. 1918.36734694 1981.16072145] [ 0. 1959.18367347 1985.82487834] [ 0. 2000. 1985.588668 ]] [[ 40.81632653 0. 1977.20208871] [ 40.81632653 40.81632653 1973.08605219] [ 40.81632653 81.63265306 1933.43176595] ... [ 40.81632653 1918.36734694 1957.60528886] [ 40.81632653 1959.18367347 1966.79428539] [ 40.81632653 2000. 1976.11353164]] [[ 81.63265306 0. 1967.71153881] [ 81.63265306 40.81632653 1960.09034566] [ 81.63265306 81.63265306 1936.30847248] ... [ 81.63265306 1918.36734694 1942.74336416] [ 81.63265306 1959.18367347 1946.83944313] [ 81.63265306 2000. 1963.58112269]] ... [[1918.36734694 0. 1938.41053067] [1918.36734694 40.81632653 1933.36534759] [1918.36734694 81.63265306 1933.98495031] ... [1918.36734694 1918.36734694 1964.2780338 ] [1918.36734694 1959.18367347 1966.82838829] [1918.36734694 2000. 1958.19672717]] [[1959.18367347 0. 1954.76901087] [1959.18367347 40.81632653 1936.43380299] [1959.18367347 81.63265306 1929.18684525] ... [1959.18367347 1918.36734694 1993.02967815] [1959.18367347 1959.18367347 2000. ] [1959.18367347 2000. 1986.34117143]] [[2000. 0. 1959.80102413] [2000. 40.81632653 1940.01437642] [2000. 81.63265306 1927.47976069] ... [2000. 1918.36734694 1994.00395337] [2000. 1959.18367347 1999.46369539] [2000. 2000. 1991.12328024]]] FAILED [ 61%][1600. 2000.] Active grids: ['regular' 'topography'] test/test_core/test_grids/test_topography.py:97 (test_plot_2d_topography)one_fault_model_no_interp = one_fault_model 2023-03-07 07:24 artificial_grid = <gempy.core.grid_modules.topography.Topography object at 0x7f68209ec640> def test_plot_2d_topography(one_fault_model_no_interp, artificial_grid): geo_model = one_fault_model_no_interp #geo_model._grid.topography = artificial_grid geo_model.set_topography() > p2d = gp.plot_2d(geo_model, section_names=['topography'], show_topography=True, kwargs_topography={'hillshade': False}) test_core/test_grids/test_topography.py:102: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/plot_api.py:216: in plot_2d p.plot_section_traces(temp_ax) ../gempy/plot/visualization_2d.py:695: in plot_section_traces self.plot_data(ax, section_name='topography', **kwargs) ../gempy/plot/visualization_2d.py:458: in plot_data points_df.plot.scatter(x=x, y=y, ax=ax, c=points_df['surface'].map(self._color_lot), ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:1636: in scatter return self(kind="scatter", x=x, y=y, s=s, c=c, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:917: in __call__ return plot_backend.plot(data, x=x, y=y, kind=kind, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/__init__.py:71: in plot plot_obj.generate() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:291: in generate self._adorn_subplots() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:497: in _adorn_subplots handle_shared_axes( ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:432: in handle_shared_axes if is_first_col(ax): _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ x = <Axes: ylabel='elevation [m]'> > is_first_col = lambda x: x.get_subplotspec().is_first_col() E AttributeError: 'NoneType' object has no attribute 'is_first_col' ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:393: AttributeError FAILED [ 62%] test/test_core/test_grids/test_topography.py:114 (test_plot_3d_structure_topo2)unconformity_model_topo = unconformity_model 2023-03-07 07:24 artificial_grid = <gempy.core.grid_modules.topography.Topography object at 0x7f68209ec640> def test_plot_3d_structure_topo2(unconformity_model_topo, artificial_grid): geo_model = unconformity_model_topo with pytest.raises(AssertionError): geo_model._grid.regular_grid.set_topography_mask(artificial_grid) # geo_model._grid.regular_grid.set_topography_mask(geo_model._grid.topography) > p2d = gp.plot_2d(geo_model, section_names=['topography'], show_topography=True, show_lith=False, kwargs_topography={'hillshade': True}) test_core/test_grids/test_topography.py:123: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/plot_api.py:216: in plot_2d p.plot_section_traces(temp_ax) ../gempy/plot/visualization_2d.py:695: in plot_section_traces self.plot_data(ax, section_name='topography', **kwargs) ../gempy/plot/visualization_2d.py:458: in plot_data points_df.plot.scatter(x=x, y=y, ax=ax, c=points_df['surface'].map(self._color_lot), ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:1636: in scatter return self(kind="scatter", x=x, y=y, s=s, c=c, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:917: in __call__ return plot_backend.plot(data, x=x, y=y, kind=kind, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/__init__.py:71: in plot plot_obj.generate() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:291: in generate self._adorn_subplots() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:497: in _adorn_subplots handle_shared_axes( ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:432: in handle_shared_axes if is_first_col(ax): _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ x = <Axes: ylabel='elevation [m]'> > is_first_col = lambda x: x.get_subplotspec().is_first_col() E AttributeError: 'NoneType' object has no attribute 'is_first_col' ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:393: AttributeError Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 62%] Lithology ids [5. 2. 2. ... 1. 1. 1.] PASSED [ 63%] Lithology ids [5. 5. 5. ... 1. 1. 1.] PASSED [ 64%] Lithology ids [5. 5. 5. ... 3. 3. 1.] PASSED [ 64%]Active grids: ['regular'] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 1854.723699 $C_o$ 81904.761905 drift equations [3, 3, 3, 3, 3] nugget grad 0.01 nugget scalar 0.000001 Active grids: ['regular'] PASSED [ 65%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 16 Compilation Done! Kriging values: values range 54089.18561 $C_o$ 69658095.238095 drift equations [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] PASSED [ 66%] Fault_2235 ... Rocklea_Inlier_metagranitic_unit Fault_2235 0.0 ... 0 Fault_2843 0.0 ... 0 Fault_2248 0.0 ... 0 Fault_16769 0.0 ... 0 Fault_2997 0.0 ... 0 Fault_5993 0.0 ... 0 Fault_3496 0.0 ... 0 Fault_7439 0.0 ... 0 Fault_3498 0.0 ... 0 Fault_12647 0.0 ... 0 Fault_12658 0.0 ... 0 Fault_7436 NaN ... 1 Fault_7099 NaN ... 0 Fault_10762 NaN ... 0 Fault_12660 NaN ... 0 Fault_14378 NaN ... 0 [16 rows x 15 columns] FAILED [ 66%]Active grids: ['regular'] test/test_integrations/test_map2loop.py:69 (test_loop2gempy2)@pytest.mark.skipif(("TRAVIS" in os.environ and os.environ["TRAVIS"] == "true") or ("GITHUBACTION" in os.environ and os.environ["GITHUBACTION"] == "true"), reason="Skipping this test on Travis CI. For some reason there is a linalg " "error.") def test_loop2gempy2(): topo = fp2 # topo = None > loop2gempy(contacts_file2, orientations_file2, extent[:4], series_file2, extent[4], extent[5], dtm_reproj_file=topo, faults_contact=faults_contact2, faults_orientations=faults_orientations2, faults_faults_rel=ff, faults_groups_rel=fg, model_name='testing_map', compute=True, vtk=True, vtk_path=None, image_2d=True) test_integrations/test_map2loop.py:78: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/addons/map2gempy.py:128: in loop2gempy geo_model.set_topography(source=source, **topo_kwarg) ../gempy/plot/decorators.py:108: in pst topography = func(*args, **kwargs) ../gempy/core/model.py:428: in set_topography self._grid.create_topography(source, **kwargs) ../gempy/core/data.py:183: in create_topography self.topography.load_from_gdal(filepath) ../gempy/core/grid_modules/topography.py:122: in load_from_gdal dem = LoadDEMGDAL(filepath, extent=self.extent) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.grid_modules.create_topography.LoadDEMGDAL object at 0x7f6825c44370> path_dem = '/home/miguel/PycharmProjects/gempy/test/test_integrations/../input_data/dtm_rp2.tif' grid = None extent = array([ 5.15687310e+05, 5.62666860e+05, 7.47344677e+06, 7.52127357e+06, -3.20000000e+03, 1.20000000e+03]) delete_temp = True def __init__(self, path_dem, grid=None, extent=None, delete_temp=True): """ Args: path_dem: path where dem is stored. file format: GDAL raster formats if grid: cropped to geomodel extent """ if GDAL_IMPORT == False: > raise ImportError('Gdal package is not installed. No support for raster formats.') E ImportError: Gdal package is not installed. No support for raster formats. ../gempy/core/grid_modules/create_topography.py:35: ImportError FAILED [ 67%]Active grids: ['regular'] test/test_integrations/test_map2loop.py:90 (test_map2loop_model_import_data)@pytest.mark.skipif(("TRAVIS" in os.environ and os.environ["TRAVIS"] == "true") or ("GITHUBACTION" in os.environ and os.environ["GITHUBACTION"] == "true"), reason="Skipping this test on Travis CI. For some reason there is a linalg " "error.") def test_map2loop_model_import_data(): geo_model = gp.create_model('test_map2Loop') gp.init_data( geo_model, extent=[bbox[0], bbox[2], bbox[1], bbox[3], model_base, model_top], resolution=[50, 50, 50], path_o=orientations_file, path_i=contacts_file ) # Load Topology > geo_model.set_topography(source='gdal', filepath=fp) test_integrations/test_map2loop.py:106: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/decorators.py:108: in pst topography = func(*args, **kwargs) ../gempy/core/model.py:428: in set_topography self._grid.create_topography(source, **kwargs) ../gempy/core/data.py:183: in create_topography self.topography.load_from_gdal(filepath) ../gempy/core/grid_modules/topography.py:122: in load_from_gdal dem = LoadDEMGDAL(filepath, extent=self.extent) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.grid_modules.create_topography.LoadDEMGDAL object at 0x7f681fe811b0> path_dem = '/home/miguel/PycharmProjects/gempy/test/test_integrations/../input_data/dtm_rp.tif' grid = None extent = array([5.00e+05, 5.45e+05, 7.49e+06, 7.52e+06, 0.00e+00, 8.00e+02]) delete_temp = True def __init__(self, path_dem, grid=None, extent=None, delete_temp=True): """ Args: path_dem: path where dem is stored. file format: GDAL raster formats if grid: cropped to geomodel extent """ if GDAL_IMPORT == False: > raise ImportError('Gdal package is not installed. No support for raster formats.') E ImportError: Gdal package is not installed. No support for raster formats. ../gempy/core/grid_modules/create_topography.py:35: ImportError FAILED [ 67%]Active grids: ['regular'] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 54230.987452 $C_o$ 70023809.52381 drift equations [3, 3] test/test_integrations/test_map2loop.py:117 (test_map2loop_model_no_faults)@pytest.mark.skipif(("TRAVIS" in os.environ and os.environ["TRAVIS"] == "true") or ("GITHUBACTION" in os.environ and os.environ["GITHUBACTION"] == "true"), reason="Skipping this test on Travis CI. For some reason there is a linalg " "error.") def test_map2loop_model_no_faults(): # Location box bbox = (500000, 7490000, 545000, 7520000) model_base = -3200 # Original 3200 model_top = 800 # Input files geo_model = gp.create_model('test_map2Loop') gp.init_data( geo_model, extent=[bbox[0], bbox[2], bbox[1], bbox[3], model_base, model_top], resolution=[50, 50, 80], path_o=orientations_file, path_i=contacts_file ) gp.set_interpolator(geo_model) # Load Topology > geo_model.set_topography(source='gdal', filepath=fp) test_integrations/test_map2loop.py:141: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/decorators.py:108: in pst topography = func(*args, **kwargs) ../gempy/core/model.py:428: in set_topography self._grid.create_topography(source, **kwargs) ../gempy/core/data.py:183: in create_topography self.topography.load_from_gdal(filepath) ../gempy/core/grid_modules/topography.py:122: in load_from_gdal dem = LoadDEMGDAL(filepath, extent=self.extent) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <gempy.core.grid_modules.create_topography.LoadDEMGDAL object at 0x7f682024b130> path_dem = '/home/miguel/PycharmProjects/gempy/test/test_integrations/../input_data/dtm_rp.tif' grid = None extent = array([ 5.00e+05, 5.45e+05, 7.49e+06, 7.52e+06, -3.20e+03, 8.00e+02]) delete_temp = True def __init__(self, path_dem, grid=None, extent=None, delete_temp=True): """ Args: path_dem: path where dem is stored. file format: GDAL raster formats if grid: cropped to geomodel extent """ if GDAL_IMPORT == False: > raise ImportError('Gdal package is not installed. No support for raster formats.') E ImportError: Gdal package is not installed. No support for raster formats. ../gempy/core/grid_modules/create_topography.py:35: ImportError Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 68%]default_project 2023-03-07 07:25 2023-03-07 07:25 PASSED [ 69%] X Y Z ... G_x G_y G_z surface_points 99 2000 0 400 ... NaN NaN NaN 100 2000 500 400 ... NaN NaN NaN 101 2000 1000 400 ... NaN NaN NaN 0 0 0 800 ... NaN NaN NaN 1 0 500 800 ... NaN NaN NaN ... ... ... ... ... ... ... ... 98 1300 1000 799 ... NaN NaN NaN orientations 3 2000 500 400 ... 8.191520e-01 1.000050e-12 0.573576 2 500 500 800 ... 1.000000e-12 1.000000e-12 1.000000 0 0 500 450 ... -5.000000e-01 9.999694e-13 0.866025 1 0 500 250 ... -2.588190e-01 9.999842e-13 0.965926 [106 rows x 8 columns] values Structure isLith True isFault True number faults 1 number surfaces 4 number series 4 number surfaces per series [1, 1, 2, 0] len surfaces surface_points [3, 15, 39, 45] len series surface_points [3, 15, 84, 0] len series orientations [1, 1, 2, 0] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 2872.281323 $C_o$ 196428.571429 drift equations [3, 3, 3, 3] Rescaling rescaling factor 4600 centers [1150.0, 500.0, 525.0] PASSED [ 69%]one_fault_model 2023-03-07 07:24 PASSED [ 70%] X Y Z ... G_x G_y G_z surface_points 52 700 1000 900.000 ... NaN NaN NaN 53 600 1000 600.000 ... NaN NaN NaN 54 500 1000 300.000 ... NaN NaN NaN 55 800 1000 1200.000 ... NaN NaN NaN 56 900 1000 1500.000 ... NaN NaN NaN 44 0 1000 1500.000 ... NaN NaN NaN 45 300 1000 1400.000 ... NaN NaN NaN 46 600 1000 1300.000 ... NaN NaN NaN 47 1100 1000 1300.000 ... NaN NaN NaN 48 1400 1000 1250.000 ... NaN NaN NaN 49 1700 1000 1300.000 ... NaN NaN NaN 50 1500 500 1200.000 ... NaN NaN NaN 51 1500 1500 1150.000 ... NaN NaN NaN 31 900 150 920.000 ... NaN NaN NaN 32 900 300 920.000 ... NaN NaN NaN 33 900 1500 920.000 ... NaN NaN NaN 34 900 1700 820.000 ... NaN NaN NaN 35 900 1950 870.000 ... NaN NaN NaN 36 0 1000 1300.000 ... NaN NaN NaN 37 300 1000 1200.000 ... NaN NaN NaN 38 600 1000 1100.000 ... NaN NaN NaN 39 1100 1000 1100.000 ... NaN NaN NaN 40 1400 1000 1050.000 ... NaN NaN NaN 41 1700 1000 1100.000 ... NaN NaN NaN 42 1500 500 1000.000 ... NaN NaN NaN 43 1500 1500 950.000 ... NaN NaN NaN 0 800 50 750.000 ... NaN NaN NaN 1 800 150 700.000 ... NaN NaN NaN 2 800 300 700.000 ... NaN NaN NaN 3 800 500 800.000 ... NaN NaN NaN 4 800 1000 1000.000 ... NaN NaN NaN 5 800 1500 700.000 ... NaN NaN NaN 6 800 1700 600.000 ... NaN NaN NaN 7 800 1950 650.000 ... NaN NaN NaN 8 0 1000 1100.000 ... NaN NaN NaN 9 300 1000 1000.000 ... NaN NaN NaN 10 450 1000 950.000 ... NaN NaN NaN 11 1100 1000 900.000 ... NaN NaN NaN 12 1400 1000 850.000 ... NaN NaN NaN 13 1700 1000 900.000 ... NaN NaN NaN 14 1500 500 800.000 ... NaN NaN NaN 15 1500 1500 750.000 ... NaN NaN NaN 16 800 50 450.000 ... NaN NaN NaN 17 800 150 400.000 ... NaN NaN NaN 18 800 300 400.000 ... NaN NaN NaN 19 800 500 500.000 ... NaN NaN NaN 20 800 1000 700.000 ... NaN NaN NaN 21 800 1500 400.000 ... NaN NaN NaN 22 800 1700 300.000 ... NaN NaN NaN 23 800 1950 350.000 ... NaN NaN NaN 24 0 1000 800.000 ... NaN NaN NaN 25 300 1000 700.000 ... NaN NaN NaN 26 1100 1000 600.000 ... NaN NaN NaN 27 1400 1000 550.000 ... NaN NaN NaN 28 1700 1000 600.000 ... NaN NaN NaN 29 1500 500 500.000 ... NaN NaN NaN 30 1500 1500 450.000 ... NaN NaN NaN orientations 2 500 1000 864.602 ... -0.948683 9.998257e-13 0.316229 1 400 1000 1400.000 ... 0.316229 1.000019e-12 0.948683 0 1000 1000 950.000 ... 0.316229 1.000019e-12 0.948683 [60 rows x 8 columns] values Structure isLith True isFault True number faults 1 number surfaces 5 number series 3 number surfaces per series [1, 4, 0] len surfaces surface_points [5, 8, 13, 16, 15] len series surface_points [5, 52, 0] len series orientations [1, 2, 0] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity None Kriging range 3464.101615 $C_o$ 285714.285714 drift equations [3, 3, 3] Rescaling rescaling factor 3800.0 centers [850.0, 1000.0, 900.0] PASSED [ 71%] PASSED [ 71%] Lithology ids [6. 6. 6. ... 2. 2. 2.] PASSED [ 72%] PASSED [ 73%]Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 73%]Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 74%]Active grids: ['regular'] Setting kriging parameters to their default values. PASSED [ 75%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 75%]Active grids: ['regular'] Fault colors changed. If you do not like this behavior, set change_color to False. Setting kriging parameters to their default values. PASSED [ 76%]Active grids: ['regular'] Setting kriging parameters to their default values. Fault colors changed. If you do not like this behavior, set change_color to False. [array([[ 686.66664124, 20. , -1940. ], [ 673.33328247, 20. , -1980. ], [ 686.66664124, 60. , -1940. ], ..., [ 1326.66671753, 1940. , -20. ], [ 1313.33328247, 1980. , -60. ], [ 1326.66671753, 1980. , -20. ]]), array([[ 20. , 20. , -286.66992188], [ 20. , 60. , -291.58874512], [ 60. , 20. , -289.60845947], ..., [1980. , 1924.77844238, -420. ], [1980. , 1940. , -409.91333008], [1980. , 1980. , -383.2472229 ]]), array([[ 20. , 20. , -421.09481812], [ 20. , 60. , -424.28619385], [ 60. , 20. , -424.64828491], ..., [1980. , 1940. , -549.03137207], [1980. , 1954.659729 , -540. ], [1980. , 1980. , -524.12384033]]), array([[ 24.65882838, 20. , -1060. ], [ 60. , 54.68887568, -1060. ], [ 60. , 20. , -1069.35462952], ..., [ 1980. , 1900.90560913, -1140. ], [ 1980. , 1940. , -1127.25219727], [ 1980. , 1980. , -1113.39775085]]), array([[ 20. , 20. , -1587.05173492], [ 60. , 58.98488045, -1580. ], [ 60. , 20. , -1602.81368256], ..., [ 1980. , 1900. , -1555.06591797], [ 1980. , 1940. , -1551.07387543], [ 1980. , 1980. , -1546.51187897]])] [array([[ 2, 1, 0], [ 3, 1, 2], [ 5, 0, 4], ..., [3296, 3199, 3195], [3299, 3296, 3297], [3298, 3296, 3299]], dtype=int32), array([[ 2, 1, 0], [ 3, 1, 2], [ 6, 5, 4], ..., [3912, 3991, 3992], [3992, 3913, 3912], [3993, 3913, 3992]], dtype=int32), array([[ 2, 1, 0], [ 3, 1, 2], [ 3, 4, 1], ..., [3819, 3894, 3820], [3821, 3820, 3894], [3821, 3894, 3895]], dtype=int32), array([[ 2, 1, 0], [ 3, 0, 1], [ 4, 3, 1], ..., [3850, 3913, 3914], [3914, 3851, 3850], [3915, 3851, 3914]], dtype=int32), array([[ 2, 1, 0], [ 0, 1, 3], [ 4, 3, 1], ..., [4200, 4122, 4199], [4200, 4123, 4122], [4201, 4123, 4200]], dtype=int32)] PASSED [ 76%]Active grids: ['regular'] Setting kriging parameters to their default values. Fault colors changed. If you do not like this behavior, set change_color to False. PASSED [ 77%]Active grids: ['regular'] Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 8.485281 $C_o$ 1.714286 drift equations [3] [0] [0] drift equations range $C_o$ drift equations values 50 1.714286 [0] scalar_field_iter __str__ = [ 0. -0.169 0. ] n_surface_op_float_sigmoid __str__ = [[0. 1. 2. 0.]] n_surface_0 __str__ = [[0.]] a __str__ = 0.0 n_surface_1 __str__ = [[1.]] b __str__ = -0.16908401533258222 drift[slice_init:slice_init+1][0] __str__ = [[1.]] middle point __str__ = [[0. 0. 1. 1. 0. 0. 1. 1. 0. 0. 1. 1. 0. 0. 0. 1. 0.5 0.499 0.504 0.503 0.501 0.494 0.5 0.5 0.5 0.5 0.5 0.5 ]] n_surface_0 __str__ = [[2.]] a __str__ = -0.16908401533258222 n_surface_1 __str__ = [[0.]] b __str__ = 0.0 drift[slice_init:slice_init+1][0] __str__ = [[2.]] middle point __str__ = [[2. 2. 0. 0. 2. 2. 0. 0. 2. 2. 0. 0. 2. 2. 2. 0. 1. 1.003 0.991 0.994 0.998 1.011 1. 1. 1. 1. 1. 1. ]] values Structure isLith True isFault False number faults 0 number surfaces 1 number series 1 number surfaces per series [1] len surfaces surface_points [7] len series surface_points [7] len series orientations [2] Options dtype float64 output geology theano_optimizer fast_compile device cpu verbosity [n_surface_op_float_sigmoid, scalar_field_iter, compare, sigma] Kriging range 50 $C_o$ 1.714286 drift equations [0] Rescaling rescaling factor 12.0 centers [0.0, 0.0, 1.5] [[-0.287 -0.218 -0.107 0.05 -0.258 -0.204 -0.115 0.021 -0.227 -0.194 -0.147 -0.047 -0.206 -0.189 -0.177 -0.137]] [[-3. 0. -3.] [-3. 0. -1.] [-3. 0. 1.] [-3. 0. 3.] [-1. 0. -3.] [-1. 0. -1.] [-1. 0. 1.] [-1. 0. 3.] [ 1. 0. -3.] [ 1. 0. -1.] [ 1. 0. 1.] [ 1. 0. 3.] [ 3. 0. -3.] [ 3. 0. -1.] [ 3. 0. 1.] [ 3. 0. 3.]] [ 6.446e+00 -1.281e+01 2.255e-15 -2.784e-15 1.239e+01 2.838e+01 -6.678e+01 -6.108e+02 1.664e+03 1.064e+03 2.490e+02 -2.300e+03] PASSED [ 78%] PASSED [ 78%] PASSED [ 79%] FAILED [ 80%]Active grids: ['regular' 'topography' 'sections'] Active grids: ['regular' 'topography' 'sections'] test/test_plotting/test_2d.py:23 (test_plot_2d_test_labels)one_fault_model_no_interp = one_fault_model 2023-03-07 07:24 def test_plot_2d_test_labels(one_fault_model_no_interp): geo_model = one_fault_model_no_interp section_dict = {'section_SW-NE': ([250, 250], [1750, 1750], [100, 100]), 'section_NW-SE': ([250, 1750], [1750, 250], [100, 100])} geo_model.set_section_grid(section_dict) geo_model.set_topography(fd=1.2, d_z=np.array([600, 2000]), resolution=np.array([60, 60])) > gp.plot_2d(geo_model, section_names=['section_NW-SE', 'section_NW-SE', 'topography'], direction=['x'], cell_number=['mid'], show_topography=True, ) test_plotting/test_2d.py:31: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../gempy/plot/plot_api.py:216: in plot_2d p.plot_section_traces(temp_ax) ../gempy/plot/visualization_2d.py:695: in plot_section_traces self.plot_data(ax, section_name='topography', **kwargs) ../gempy/plot/visualization_2d.py:458: in plot_data points_df.plot.scatter(x=x, y=y, ax=ax, c=points_df['surface'].map(self._color_lot), ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:1636: in scatter return self(kind="scatter", x=x, y=y, s=s, c=c, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_core.py:917: in __call__ return plot_backend.plot(data, x=x, y=y, kind=kind, **kwargs) ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/__init__.py:71: in plot plot_obj.generate() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:291: in generate self._adorn_subplots() ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:497: in _adorn_subplots handle_shared_axes( ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:403: in handle_shared_axes layout[row_num(ax), col_num(ax)] = ax.get_visible() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ x = <Axes: ylabel='elevation [m]'> > row_num = lambda x: x.get_subplotspec().rowspan.start E AttributeError: 'NoneType' object has no attribute 'rowspan' ../venv/lib/python3.10/site-packages/pandas/plotting/_matplotlib/tools.py:386: AttributeError Active grids: ['sections'] Active grids: ['sections'] Setting kriging parameters to their default values. PASSED [ 80%] PASSED [ 81%] PASSED [ 82%] PASSED [ 82%]Active grids: ['topography' 'sections'] PASSED [ 83%] PASSED [ 83%] PASSED [ 84%] PASSED [ 85%] PASSED [ 85%] PASSED [ 86%] PASSED [ 87%] PASSED [ 87%] SKIPPED (github actions does not like background plot) [ 88%] PASSED [ 89%]foo PASSED [ 89%]foo PASSED [ 90%]foo SKIPPED (github actions does not like background plot) [ 91%] PASSED [ 91%]foo PASSED [ 92%] PASSED [ 92%] PASSED [ 93%] PASSED [ 94%]foo PASSED [ 94%][1600. 2000.] Active grids: ['topography' 'sections'] foo PASSED [ 95%]foo PASSED [ 96%]foo PASSED [ 96%]foo PASSED [ 97%]foo PASSED [ 98%]foo PASSED [ 98%] PASSED [ 99%] PASSED [100%] ================================================ FILE: test/__init__.py ================================================ ================================================ FILE: test/conftest.py ================================================ import enum import os input_path = os.path.dirname(__file__) + '/input_data' input_path2 = os.path.dirname(__file__) + '/../examples/data/input_data/' import numpy as np np.random.seed(1234) class TestSpeed(enum.Enum): MILLISECONDS = 0 SECONDS = 1 MINUTES = 2 HOURS = 3 class Requirements(enum.Enum): CORE = enum.auto() BASE = enum.auto() OPTIONAL = enum.auto() DEV = enum.auto() TEST_SPEED = TestSpeed.MINUTES # * Use seconds for compile errors, minutes before pushing and hours before release REQUIREMENT_LEVEL = Requirements.CORE # * Use CORE for mandatory tests, OPTIONAL for optional tests and DEV for development tests ================================================ FILE: test/context.py ================================================ """ The main function of the code you provided is to add the parent directory of the tests folder to the Python path (sys.path). his is done with sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))). his line is adding the directory one level up from the directory of the context.py file to the front of the sys.path. sys.path is the list of directories that Python checks when it's trying to import a module. By inserting the parent directory of the tests directory at the front of sys.path, Python will check this directory first when importing modules. This allows test scripts in the tests directory to import modules from the parent directory (like gempy in your case) as if they were in the same directory. This is very helpful when you're running tests because it ensures the tests are running against the source code in your project, rather than an installed version of your package. """ # -*- coding: utf-8 -*- import sys import os sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) ================================================ FILE: test/pytest.ini ================================================ [pytest] addopts = -v norecursedirs = test\test_modules\_geophysics_TO_UPDATE ================================================ FILE: test/test_api/__init__.py ================================================ ================================================ FILE: test/test_api/test_backends.py ================================================ import pytest import gempy as gp import gempy_viewer as gpv from gempy.core.data.gempy_engine_config import GemPyEngineConfig from gempy_engine.config import AvailableBackends from gempy.core.data.enumerators import ExampleModel from test.conftest import TEST_SPEED, TestSpeed @pytest.mark.skipif(TEST_SPEED.value < TestSpeed.SECONDS.value, reason="Global test speed below this test value.") class TestBackends: @pytest.fixture(scope='class') def geo_model(self): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ONE_FAULT, compute_model=False ) geo_model.interpolation_options.number_octree_levels = 6 return geo_model def test_backends_numpy(self, geo_model): gp.compute_model(geo_model, engine_config=GemPyEngineConfig(backend=AvailableBackends.numpy)) gpv.plot_3d( model=geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True ) def test_numpy_pykeops(self, geo_model): gp.compute_model( gempy_model=geo_model, engine_config=GemPyEngineConfig( backend=AvailableBackends.numpy, use_gpu=False, )) gpv.plot_3d( model=geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True ) @pytest.mark.skip(reason="Not finished yet. Fault data is not passed to legacy properly.") @pytest.mark.skipif(TEST_SPEED.value <= 1, reason="Global test speed below this test value.") def test_backends_legacy(self, geo_model): # TODO: (Sep 2023, Miguel) Pass fault data to legacy properly gp.compute_model(geo_model, engine_config=GemPyEngineConfig(backend=AvailableBackends.legacy)) from gempy.optional_dependencies import require_gempy_legacy gpl = require_gempy_legacy() gpl.plot_3d( model=geo_model.legacy_model, show_data=True, show_boundaries=True, show_lith=False, image=True ) ================================================ FILE: test/test_api/test_fault_api.py ================================================ import numpy as np import gempy as gp from gempy.core.data.structural_group import FaultsRelationSpecialCase def test_fault_api(): frame = _create_structural_frame() gp.set_is_fault( frame=frame, fault_groups=['1', '3'], faults_relation_type=FaultsRelationSpecialCase.OFFSET_FORMATIONS, ) print(frame) print(frame.fault_relations) np.testing.assert_array_equal( frame.fault_relations, np.array( [ [False, True, False, True], [False, False, False, False], [False, False, False, True], [False, False, False, False] ] ) ) def test_fault_api_setter(): frame = _create_structural_frame() # Use the setter to set the fault_relations frame.fault_relations = np.array( [ [False, True, False, True], [False, False, False, False], [False, False, False, True], [False, False, False, False] ] ) # Now we verify if the StructuralGroup fault_relations have been updated correctly assert frame.structural_groups[0].fault_relations == [frame.structural_groups[1], frame.structural_groups[3]] assert frame.structural_groups[1].fault_relations == FaultsRelationSpecialCase.OFFSET_NONE assert frame.structural_groups[2].fault_relations == FaultsRelationSpecialCase.OFFSET_ALL # ! Last group does not matter really. assert frame.structural_groups[3].fault_relations == FaultsRelationSpecialCase.OFFSET_NONE def _create_structural_frame(): frame = gp.data.StructuralFrame( structural_groups=[ gp.data.StructuralGroup( name='1', elements=[], structural_relation=gp.data.StackRelationType.ERODE ), gp.data.StructuralGroup( name='2', elements=[], structural_relation=gp.data.StackRelationType.ERODE ), gp.data.StructuralGroup( name='3', elements=[], structural_relation=gp.data.StackRelationType.ERODE ), gp.data.StructuralGroup( name='4', elements=[], structural_relation=gp.data.StackRelationType.ERODE ), ], color_gen=gp.ColorsGenerator() # * Irrlevant for this test ) return frame ================================================ FILE: test/test_api/test_gempy_legacy_comp.py ================================================ import gempy as gp import gempy_viewer from gempy.core.data import Solutions from gempy.API.gp2_gp3_compatibility.gp3_to_gp2_input import gempy3_to_gempy2 from gempy.optional_dependencies import require_gempy_legacy from test.test_api.test_initialization_and_compute_api import _create_data # Skip pytest if legacy is not installed try: require_gempy_legacy() except ImportError: import pytest pytest.skip("Legacy is not installed.", allow_module_level=True) def test_compare_numpy_with_legacy(): geo_data = _create_data() gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) sol: Solutions = gp.compute_model(geo_data) gempy_viewer.plot_2d(geo_data, direction=['y'], show_data=True, show_boundaries=False) legacy_model = gempy3_to_gempy2(geo_data) gl = require_gempy_legacy() gl.set_interpolator(legacy_model) gl.compute_model(legacy_model) gl.plot_2d(legacy_model, direction=['y']) ================================================ FILE: test/test_api/test_initialization_and_compute_api.py ================================================ from pprint import pprint import gempy as gp import gempy_viewer from gempy.core.data import GeoModel from gempy_engine.core.data.solutions import Solutions def test_api_create_data(): geo_data = _create_data() pprint(geo_data) def _create_data(): data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' geo_data: GeoModel = gp.create_geomodel( project_name='horizontal', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[50, 5, 50], importer_helper=gp.data.ImporterHelper( path_to_surface_points=data_path + "/data/input_data/jan_models/model1_surface_points.csv", path_to_orientations=data_path + "/data/input_data/jan_models/model1_orientations.csv" ) ) return geo_data def test_map_stack_to_surfaces(): geo_data = _create_data() gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) pprint(geo_data.structural_frame) def test_api_compute_model(): geo_data = _create_data() gp.map_stack_to_surfaces( gempy_model=geo_data, mapping_object={"Strat_Series": ('rock2', 'rock1')} ) gempy_viewer.plot_2d(geo_data, direction=['y']) sol: Solutions = gp.compute_model(geo_data) gempy_viewer.plot_2d(geo_data, direction=['y'], show_data=True, show_boundaries=True, show_lith=False) gempy_viewer.plot_2d(geo_data, direction=['y'], show_data=False, show_scalar=True) ================================================ FILE: test/test_api/test_model_construction_granular.py ================================================ import pooch import gempy as gp import gempy_engine.core.data.solutions import gempy_viewer from gempy.core.color_generator import ColorsGenerator from gempy_engine.core.data import InterpolationOptions from gempy.core.data import GeoModel from gempy.API.io_API import read_orientations, read_surface_points from gempy.core.data.orientations import OrientationsTable from gempy.core.data.structural_element import StructuralElement from gempy.core.data.structural_frame import StructuralFrame from gempy.core.data.structural_group import Stack from gempy.core.data.surface_points import SurfacePointsTable from gempy.optional_dependencies import require_gempy_viewer """ - [x] create data - [x] map series - [ ] plot data - [ ] compute - [ ] plot results """ def test_read_input_points(): _, _ = _read_data() def _read_data() -> tuple[SurfacePointsTable, OrientationsTable]: data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' surface_points_file = pooch.retrieve( url=data_path + "data/input_data/jan_models/model1_surface_points.csv", known_hash="6f1a39ed77e87a4057f03629c946b1876b87e24409cadfe0e1cf7ab1488f69e4" ) orientations_file = pooch.retrieve( url=data_path + "data/input_data/jan_models/model1_orientations.csv", known_hash="04c307ae23f70252fe54144a2fb95ca7d96584a2d497ea539ed32dfd23e7cd5d" ) print(pooch.file_hash(surface_points_file)) print(pooch.file_hash(orientations_file)) surface_points: SurfacePointsTable = read_surface_points( path=surface_points_file, ) orientations: OrientationsTable = read_orientations( path=orientations_file ) return surface_points, orientations def test_create_grid(): _generate_grid() def _generate_grid(): grid: gp.data.Grid = gp.data.Grid( extent=[0, 1000, 0, 1000, 0, 500], resolution=[50, 5, 50] ) return grid def test_create_structural_frame(): # * Structural elements _create_structural_frame() def _create_structural_frame(): surface_points, orientations = _read_data() surface_points_groups = surface_points.get_surface_points_by_id_groups() orientations_groups = orientations.get_orientations_by_id_groups() structural_elements = [] color_gen = ColorsGenerator() for i in range(len(surface_points_groups)): # TODO: Split surface points and orientations by id structural_element: StructuralElement = StructuralElement( name="layer1", surface_points=surface_points_groups[i], orientations=orientations_groups[i], color=next(color_gen) ) structural_elements.append(structural_element) # * Structural groups definitions default_formation: Stack = Stack( name="default_formation", elements=structural_elements, structural_relation=gp.data.StackRelationType.ERODE ) # ? Should I move this to the constructor? structural_frame: StructuralFrame = StructuralFrame( structural_groups=[default_formation], color_gen=color_gen ) return structural_frame def test_create_interpolation_options(): interpolation_options = _generate_interpolation_options() def _generate_interpolation_options(): range_ = 1000.0 interpolation_options: InterpolationOptions = InterpolationOptions.from_args( range=range_, c_o=(range_ ** 2) / 14 / 3, ) return interpolation_options def _create_geomodel() -> GeoModel: geo_model: GeoModel = GeoModel.from_args( name="horizontal", structural_frame=_create_structural_frame(), grid=_generate_grid(), interpolation_options=_generate_interpolation_options() ) return geo_model def test_structural_frame_surface_points(): structural_frame: StructuralFrame = _create_structural_frame() print(structural_frame.surface_points_copy) pass def _interpolate_numpy() -> GeoModel: geo_model: GeoModel = _create_geomodel() solutions: gempy_engine.core.data.solutions.Solutions = gempy_engine.compute_model( interpolation_input=geo_model.interpolation_input_copy, options=geo_model.interpolation_options, data_descriptor=geo_model.input_data_descriptor ) print(solutions) geo_model.solutions = solutions # TODO: Use gempy API if PLOT := True: from gempy_engine.core.data.output.blocks_value_type import ValueType from gempy_engine.plugins.plotting.helper_functions import plot_block_and_input_2d plot_block_and_input_2d( stack_number=0, interpolation_input=geo_model.interpolation_input_copy, outputs=geo_model.solutions.octrees_output, structure=geo_model.structural_frame.input_data_descriptor.stack_structure, value_type=ValueType.ids ) gempy_viewer.plot_3d(geo_model, show_boundaries=True, image=True) return geo_model def test_interpolate_aesara(): geo_model: GeoModel = _create_geomodel() def test_plot_input(): geo_model: GeoModel = _create_geomodel() gp_viewer: gempy_viewer = require_gempy_viewer() # TODO: Add all the plot data in a plot options class # TODO: Make options required gp_viewer.plot_2d( geo_model, direction=['y'], show_results=False ) def test_plot_results(): solved_geo_model: GeoModel = _interpolate_numpy() gp_viewer: gempy_viewer = require_gempy_viewer() gp_viewer.plot_2d( solved_geo_model, direction=['y'], show_boundaries=False, # TODO: Fix boundaries show_results=True ) ================================================ FILE: test/test_api/test_modify_input_data.py ================================================ from gempy import generate_example_model from gempy.core.data.enumerators import ExampleModel import gempy_viewer as gp_viewer import gempy as gp def test_modify_surface_point_by_name_and_index(): model = generate_example_model(ExampleModel.ONE_FAULT, compute_model=False) print(model.structural_frame) gp_viewer.plot_2d( model, direction=['y'], show_boundaries=False, # TODO: Fix boundaries ) gp.modify_surface_points( geo_model=model, elements_names=["fault"], Z=800 # This can be an array of the same length as the number of points ) gp_viewer.plot_2d( model, direction=['y'], show_boundaries=False, # TODO: Fix boundaries ) def test_modify_surface_point_by_global_index(): model = generate_example_model(ExampleModel.ONE_FAULT, compute_model=False) print(model.surface_points_copy.df) gp_viewer.plot_2d( model, direction=['y'], show_boundaries=False, # TODO: Fix boundaries ) gp.modify_surface_points( geo_model=model, slice=0, Z=800 ) print(model.surface_points_copy.df) gp_viewer.plot_2d( model, direction=['y'], show_boundaries=False, # TODO: Fix boundaries ) ================================================ FILE: test/test_api/test_show_input_data.py ================================================ from gempy import generate_example_model from gempy.core.data.enumerators import ExampleModel def test_print_structural_frame(): model = generate_example_model(ExampleModel.ONE_FAULT, compute_model=False) print(model.structural_frame) ================================================ FILE: test/test_community_bugs/__init__.py ================================================ ================================================ FILE: test/test_community_bugs/test_community_bugs.py ================================================ """ This scrip is to add test for specific issues that the community has found. Use the the following template: def test_issue_XXX(): ... """ ================================================ FILE: test/test_core/__init__.py ================================================ ================================================ FILE: test/test_core/test_color_generator.py ================================================ import gempy.core.color_generator as cg def test_color_generator(): # create an instance of ColorsGenerator color_iterator: iter = cg.ColorsGenerator() # generate color dictionary (with optional seaborn palettes if you want) # get the generator from next_color method # now you can get colors one by one print(next(color_iterator)) # prints first color print(next(color_iterator)) # prints second color left_colors = color_iterator._gempy_default_colors[2:] assert left_colors == [ color for color, _ in zip(color_iterator, left_colors) ] # get a random color assert color_iterator.up_next() == next(color_iterator) # override the random color generator cg.np.random.randint = lambda a, b: 0x00ff42 assert color_iterator._random_hexcolor() == "#00ff42" assert next(color_iterator) == "#00ff42" # trigger up_next method for the cache assert color_iterator.up_next() == "#00ff42" cg.np.random.randint = lambda a, b: 0x000000 # ensure that the up_next method still returns the same color assert color_iterator.up_next() == "#00ff42" # trigger the cache assert next(color_iterator) == "#00ff42" assert next(color_iterator) == "#000000" # etc... ================================================ FILE: test/test_core/test_installation.py ================================================ def test_installation(): import gempy import gempy_engine ================================================ FILE: test/test_core/test_transfoms.py ================================================ from gempy.core.data import GeoModel from gempy_engine.core.data.transforms import Transform from test.test_api.test_initialization_and_compute_api import _create_data import numpy as np import matplotlib.pyplot as plt def test_transform_1(): geo_data: GeoModel = _create_data() print(geo_data.input_transform) transformed_xyz = geo_data.input_transform.apply(geo_data.surface_points_copy.xyz) print(transformed_xyz) return # Assuming you have your Transform class defined above this. def plot_points(points, title): fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(points[:, 0], points[:, 1], points[:, 2], c='r', marker='o') ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title(title) plt.show() def test_transform_operations_scale_move(): transform = Transform( position=np.array([1, 2, 3]), rotation=np.array([0, 0, 0]), scale=np.array([2, 2, 2])) original_points = np.array([ [0, 0, 0], [1, 1, 1], [-1, -1, -1] ]) transformed_points = transform.apply(original_points) inv_transformed_points = transform.apply_inverse(transformed_points) fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Original points ax.scatter(original_points[:, 0], original_points[:, 1], original_points[:, 2], c='r', marker='o', label='Original') # Transformed points ax.scatter(transformed_points[:, 0], transformed_points[:, 1], transformed_points[:, 2], c='g', marker='^', label='Transformed') # Inverse transformed points ax.scatter(inv_transformed_points[:, 0], inv_transformed_points[:, 1], inv_transformed_points[:, 2], c='b', marker='x', label='Inv Transformed') ax.legend() plt.show() assert np.allclose(original_points, inv_transformed_points) def test_transform_operations_rotate(): transform = Transform( position=np.array([0, 0, 0]), rotation=np.array([45, 45, 45]), scale=np.array([1, 1, 1])) original_points = np.array([ [0, 0, 0], [1, 1, 1], [-1, -1, -1] ]) transformed_points = transform.apply(original_points) inv_transformed_points = transform.apply_inverse(transformed_points) fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Original points ax.scatter(original_points[:, 0], original_points[:, 1], original_points[:, 2], c='r', marker='o', label='Original') # Transformed points ax.scatter(transformed_points[:, 0], transformed_points[:, 1], transformed_points[:, 2], c='g', marker='^', label='Transformed') # Inverse transformed points ax.scatter(inv_transformed_points[:, 0], inv_transformed_points[:, 1], inv_transformed_points[:, 2], c='b', marker='x', label='Inv Transformed') ax.legend() plt.show() assert np.allclose(original_points, inv_transformed_points) ================================================ FILE: test/test_model_types/__init__.py ================================================ ================================================ FILE: test/test_model_types/test_example_models_I.py ================================================ from typing import Any from numpy import dtype, ndarray import gempy as gp from gempy.core.data import GeoModel from gempy.core.data.enumerators import ExampleModel from gempy.optional_dependencies import require_gempy_viewer from gempy_engine.core.data.interp_output import InterpOutput from gempy_viewer import GemPyToVista from test.verify_helper import gempy_verify_array import pytest from test.conftest import TEST_SPEED, TestSpeed # ! When importing the model is computed # TODO []: Use the generator and do some approval testing PLOT = True pytestmark = pytest.mark.skipif(TEST_SPEED.value < TestSpeed.MINUTES.value, reason="Global test speed below this test value.") def _verify_scalar_field(model, name): outputs_centers_: InterpOutput = model.solutions.octrees_output[-1].outputs[0] scalar_field = outputs_centers_.exported_fields.scalar_field scalar_field = scalar_field[::int(len(scalar_field) / 50)] # Pick 50 values from the scalar field array gempy_verify_array(scalar_field, name) def test_generate_horizontal_stratigraphic_model(): model = gp.generate_example_model(ExampleModel.HORIZONTAL_STRAT, compute_model=True) print(model.structural_frame) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, show_data=True, image=True) if False: _verify_scalar_field( model=model, name="Horizontal Stratigraphic Scalar Field" ) def test_generate_fold_model(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=True) print(model.structural_frame) if PLOT or False: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) _verify_scalar_field( model=model, name="Anticline Scalar Field" ) def test_generate_fault_model(): model = gp.generate_example_model(ExampleModel.ONE_FAULT, compute_model=True) print(model.structural_frame) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) _verify_scalar_field( model=model, name="Fault Scalar Field" ) def test_generate_combination_model(): model = gp.generate_example_model(ExampleModel.COMBINATION, compute_model=True) print(model.structural_frame) if PLOT: gpv = require_gempy_viewer() gpv.plot_2d(model) pd3 = gpv.plot_3d( model, image=True, show_lith=True, show_octree=True, show=True ) _verify_scalar_field( model=model, name="Combination Scalar Field" ) def test_generate_greenstone_model(): model = gp.generate_example_model(ExampleModel.GREENSTONE, compute_model=True) print(model.structural_frame) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) ================================================ FILE: test/test_model_types/test_example_models_I.test_generate_combination_model.Combination Scalar Field.approved.txt ================================================ [-0.48762027 -0.37851606 -0.20602752 0.18466945 0.24586016 0.34157167 -0.37574516 -0.23997105 -0.38798331 -0.30116176 -0.22103656 -0.22657835 -0.40356962 -0.26444733 -0.30116176 -0.26664095 -0.28892361 -0.23997105 -0.12532504 -0.01622083 -0.019569 0.03607991 -0.20879842 -0.06297978 -0.07856609 0.03942809 0.10950876 0.14957136 0.07279434 0.10396697 0.19967849 0.25867558 0.30208635 0.14957136 0.17739582 0.09172883 0.22750295 0.34549713 0.27761007 0.25752102 0.23858653 0.33210443 0.36327706 0.40668784 0.49016121 0.25752102 0.26975916 0.39110152 0.38221155 0.43786047 0.52133384] ================================================ FILE: test/test_model_types/test_example_models_I.test_generate_fault_model.Fault Scalar Field.approved.txt ================================================ [-1.13708400e-02 -2.52401253e-01 -1.58105889e-01 -2.53046188e-01 -1.02730053e-01 3.07857424e-02 1.65039406e-02 1.02339531e-02 -7.49849706e-03 2.03358730e-03 1.68709401e-02 1.16318104e-02 -5.46883208e-03 -3.66307173e-01 -2.16332415e-01 -3.08865566e-01 -2.15389261e-01 -1.11256902e-01 2.72083076e-02 4.20445442e-02 -7.47304561e-02 3.98513512e-02 1.63139249e-02 4.29008353e-02 -7.33691160e-03 3.78053797e-02 1.68817500e-03 1.19697379e-02 2.92719967e-02 1.01708771e-02 2.46994485e-02 2.91498040e-02 2.38183394e-02 1.43569767e-01 2.64840495e-01 3.68607253e-01 2.35431983e-01 3.12159958e-01 2.13482001e-05 5.67351744e-02 -8.42197714e-03 1.74023726e-01 1.53633321e-02 6.80918669e-03 -1.60048318e-03 1.23676916e-01 2.07197240e-01 2.84933975e-01 1.27564214e-02 2.58711537e-01 2.99561004e-02] ================================================ FILE: test/test_model_types/test_example_models_I.test_generate_fold_model.Anticline Scalar Field.approved.txt ================================================ [-0.52188333 -0.50112162 -0.4782676 -0.4049219 -0.52592991 -0.35477513 -0.32950309 -0.49867861 -0.39645404 -0.3705816 -0.53297922 -0.4170038 -0.38884941 -0.50066294 -0.52343835 -0.50147135 -0.38406676 -0.49930607 -0.34000787 -0.36981774 -0.39715035 -0.50713183 -0.38966825 -0.5074257 -0.53982527 -0.35470835 -0.49995446 -0.383908 -0.54971153 -0.47881636 -0.54893268 -0.39154008 -0.41173995 -0.50805229 -0.37732251 -0.35443146 -0.40539656 -0.38387161 -0.54517857 -0.52338116 -0.40620542 -0.47800398 -0.49943244 -0.50482445 -0.5102548 -0.35318898 -0.55119547 -0.35075437 -0.41029029 -0.32958424 -0.35520657] ================================================ FILE: test/test_model_types/test_example_models_I.test_generate_horizontal_stratigraphic_model.Horizontal Stratigraphic Scalar Field.approved.txt ================================================ [-0.53138973 -0.53401697 -0.53639193 -0.53851076 -0.54037354 -0.54198423 -0.54335025 -0.54448177 -0.54539063 -0.54608928 -0.54658948 -0.54690111 -0.54703108 -0.5469825 -0.54675437 -0.54634166 -0.54573594 -0.5449263 -0.54390055 -0.54264645 -0.54115292 -0.53941111 -0.53741528 -0.53516341 -0.5326574 -0.53138973 -0.53401697 -0.53639193 -0.53851076 -0.54037354 -0.54198423 -0.54335025 -0.54448177 -0.54539063 -0.54608928 -0.54658948 -0.54690111 -0.54703108 -0.5469825 -0.54675437 -0.54634166 -0.54573594 -0.5449263 -0.54390055 -0.54264645 -0.54115292 -0.53941111 -0.53741528 -0.53516341 -0.5326574 ] ================================================ FILE: test/test_model_types/test_subduction.py ================================================ import os import gempy as gp import gempy_viewer as gpv def test_subduction(): # Get the directory containing the test file current_dir = os.path.dirname(os.path.abspath(__file__)) # Navigate to examples directory relative to test location data_path = os.path.join(current_dir, '../..', 'examples') geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Onlap_relations', extent=[-200, 1000, -500, 500, -1000, 0], resolution=[50, 50, 50], refinement=5, importer_helper=gp.data.ImporterHelper( path_to_orientations=data_path + "/data/input_data/tut-ch1-4/tut_ch1-4_orientations.csv", path_to_surface_points=data_path + "/data/input_data/tut-ch1-4/tut_ch1-4_points.csv", ) ) gp.add_structural_group( model=geo_model, group_index=0, structural_group_name="seafloor_series", elements=[geo_model.structural_frame.get_element_by_name("seafloor")], structural_relation=gp.data.StackRelationType.ERODE, ) gp.add_structural_group( model=geo_model, group_index=1, structural_group_name="right_series", elements=[ geo_model.structural_frame.get_element_by_name("rock1"), geo_model.structural_frame.get_element_by_name("rock2"), ], structural_relation=gp.data.StackRelationType.ONLAP ) gp.add_structural_group( model=geo_model, group_index=2, structural_group_name="onlap_series", elements=[geo_model.structural_frame.get_element_by_name("onlap_surface")], structural_relation=gp.data.StackRelationType.ERODE ) gp.add_structural_group( model=geo_model, group_index=3, structural_group_name="left_series", elements=[geo_model.structural_frame.get_element_by_name("rock3")], structural_relation=gp.data.StackRelationType.BASEMENT ) gp.remove_structural_group_by_name(model=geo_model, group_name="default_formation") # %% from gempy_engine.core.data.options import MeshExtractionMaskingOptions from gempy_engine.core.data.options import EvaluationOptions evaluation_options: EvaluationOptions = geo_model.interpolation_options.evaluation_options evaluation_options.mesh_extraction_masking_options = MeshExtractionMaskingOptions.INTERSECT s = gp.compute_model(geo_model) gpv.plot_2d(geo_model) # %% gpv.plot_3d( model=geo_model, show_surfaces=True, show_data=True, image=True, show_topography=True, kwargs_plot_structured_grid={'opacity': 0.1} ) # %% # ! White are True, black are False if False: p = gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[0], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[1], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[2], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) gpv.plot_2d( model=geo_model, cell_number=2, override_regular_grid=geo_model.solutions.raw_arrays.mask_matrix_squeezed[3], show_data=True, kwargs_lithology={'cmap': 'gray', 'norm': None} ) ================================================ FILE: test/test_modules/__init__.py ================================================ ================================================ FILE: test/test_modules/test_cg/__init__.py ================================================ ================================================ FILE: test/test_modules/test_cg/test_cg_solver.py ================================================ import pytest import gempy as gp from gempy.core.data.enumerators import ExampleModel from gempy.optional_dependencies import require_gempy_viewer import gempy_engine.core.backend_tensor as BackendTensor from gempy_engine.modules.weights_cache.weights_cache_interface import WeightCache PLOT = True pytest.mark.skip("Run explicitly") def test_solve_with_cg(): model = gp.generate_example_model(ExampleModel.GREENSTONE, compute_model=False) print(model.structural_frame) WeightCache.clear_cache() BackendTensor.PYKEOPS = False sol = gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, use_gpu=False, dtype='float64' ) ) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) def test_save_weights(): model = gp.generate_example_model(ExampleModel.GREENSTONE, compute_model=False) print(model.structural_frame) sol = gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, use_gpu=False, dtype='float32' ) ) weights1 = sol.octrees_output[0].outputs[0].weights weights2 = sol.octrees_output[0].outputs[1].weights weights3 = sol.octrees_output[0].outputs[2].weights WeightCache.clear_cache() BackendTensor.PYKEOPS = False sol = gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, use_gpu=False, dtype='float32' ) ) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) def test_keops_x_torch(): model = gp.generate_example_model(ExampleModel.GREENSTONE, compute_model=False) print(model.structural_frame) WeightCache.clear_cache() BackendTensor.PYKEOPS = False sol = gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, use_gpu=False, dtype='float32' ) ) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d(model, image=True) ================================================ FILE: test/test_modules/test_compute_times_for_grids.py ================================================ import numpy as np import gempy as gp import time PLOT = True DENSE_RESOLUTION = [20, 20, 20] def test_compute_time_dense_dense(): geo_model: gp.data.GeoModel = _setup_model() geo_model.interpolation_options.evaluation_options.mesh_extraction = True geo_model.grid.active_grids = gp.data.Grid.GridTypes.DENSE start_time = time.perf_counter() gp.compute_model(geo_model) print(f"Computing model on grids: {geo_model.grid.active_grids}") end_time = time.perf_counter() computation_time_dense_I = end_time - start_time start_time = time.perf_counter() gp.compute_model(geo_model) print(f"Computing model on grids: {geo_model.grid.active_grids}") end_time = time.perf_counter() computation_time_dense_II = end_time - start_time print(f"Computation only model dense grid 125*50*50: {computation_time_dense_I:.2f} seconds") print(f"Computation only model dense grid 125*50*50: {computation_time_dense_II:.2f} seconds") # Assert that it is not too different assert abs(computation_time_dense_I - computation_time_dense_II) < 0.2 def test_compute_time_topo_dense_grid(): geo_model: gp.data.GeoModel = _setup_model() geo_model.grid.active_grids = gp.data.Grid.GridTypes.DENSE start_time = time.perf_counter() gp.compute_model(geo_model) print(f"Computing model on grids: {geo_model.grid.active_grids}") end_time = time.perf_counter() computation_time_dense = end_time - start_time # Compute a solution for the model geo_model.grid.active_grids = gp.data.Grid.GridTypes.TOPOGRAPHY start_time = time.perf_counter() gp.compute_model(geo_model) print(f"Computing model on grids: {geo_model.grid.active_grids}") end_time = time.perf_counter() computation_time_topo = end_time - start_time # Recompute model as a new grid was added geo_model.grid.active_grids = gp.data.Grid.GridTypes.TOPOGRAPHY | gp.data.Grid.GridTypes.DENSE start_time = time.perf_counter() gp.compute_model(geo_model) print(f"Computing model on grids: {geo_model.grid.active_grids}") end_time = time.perf_counter() computation_time_topo_dense = end_time - start_time print(f"Computation only model dense grid 125*50*50: {computation_time_dense:.2f} seconds") print(f"Computation time with topography 125*50: {computation_time_topo:.2f} seconds") print(f"Computation time with topography and dense grid 125*50*50: {computation_time_topo_dense:.2f} seconds") # Assert that dense takes longer than topo and that the sum of both is close assert computation_time_topo_dense > computation_time_dense def test_compute_time_custom_dense_grid(): geo_model: gp.data.GeoModel = _setup_model() # numpy array with random coordinates within the extent of the model custom_coordinates = np.random.uniform( low=geo_model.grid.extent[:3], high=geo_model.grid.extent[3:], size=(1000, 3) ) start_time = time.perf_counter() gp.compute_model_at(geo_model, custom_coordinates) end_time = time.perf_counter() computation_time_at = end_time - start_time print(f"Computation compute_at with 1000 custom points: {computation_time_at:.2f} seconds") def _setup_model(): # Define the path to data data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" # Create a GeoModel instance geo_model = gp.create_geomodel( project_name='EGU_example', extent=[0, 2500, 0, 1000, 0, 1000], resolution=DENSE_RESOLUTION, importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "model7_orientations.csv", path_to_surface_points=path_to_data + "model7_surface_points.csv" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=geo_model, mapping_object={ "Fault_Series" : ('fault'), "Strat_Series1": ('rock3'), "Strat_Series2": ('rock2', 'rock1'), } ) # Define youngest structural group as fault gp.set_is_fault(geo_model, ["Fault_Series"]) # Setting a randomly generated topography gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=2, d_z=np.array([700, 950]), topography_resolution=np.array([125, 50]) ) return geo_model ================================================ FILE: test/test_modules/test_faults/__init__.py ================================================ ================================================ FILE: test/test_modules/test_faults/test_fault_relations.py ================================================ import numpy as np import gempy as gp from gempy.core.data.enumerators import ExampleModel from gempy.optional_dependencies import require_gempy_viewer PLOT = True def test_fault_relations_implementation(): # TODO! (Miguel Dec25) These fault description are not serializing! model = gp.generate_example_model(ExampleModel.FAULT_RELATION, compute_model=True) correct_relations = np.array([ [0, 1, 1, 1], [0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0] ], dtype=bool) # Assert assert np.array_equal(model.structural_frame.fault_relations, correct_relations) == True if PLOT: gpv = require_gempy_viewer() gtv: gpv.GemPyToVista = gpv.plot_3d( model=model, show_data=True, image=True, show=True ) ================================================ FILE: test/test_modules/test_faults/test_finite_faults.py ================================================ import numpy as np import pytest import gempy as gp import gempy_viewer as gpv from gempy.core.data.enumerators import ExampleModel from test.verify_helper import verify_model_serialization from gempy_viewer.optional_dependencies import require_pyvista from test.conftest import TEST_SPEED, TestSpeed center = np.array([500, 500, 500]) radius = np.array([500, 100, 200]) / 2 k = np.array([1, 1, 1]) * 1 PLOT = False @pytest.mark.skipif(TEST_SPEED.value < TestSpeed.SECONDS.value, reason="Global test speed below this test value.") def test_finite_fault_scalar_field_on_fault(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ONE_FAULT, compute_model=False ) regular_grid = geo_model.grid.regular_grid # TODO: Extract grid from the model scaled_center = geo_model.input_transform.apply(center.reshape(1, -1))[0] scaled_radius = geo_model.input_transform.scale_points(radius.reshape(1, -1))[0] scalar_funtion: callable = gp.implicit_functions.ellipsoid_3d_factory( # * This paints the 3d regular grid center=scaled_center, radius=scaled_radius, max_slope=k # * This controls the speed of the transition ) transform = gp.data.Transform( position=np.array([0, 0, 0]), rotation=np.array([0, 60, 0]), scale=np.ones(3) ) faults_data = gp.data.FaultsData( fault_values_everywhere=np.zeros(0), fault_values_on_sp=np.zeros(0), thickness=None, fault_values_ref=np.zeros(0), fault_values_rest=np.zeros(0), finite_fault_data=gp.data.FiniteFaultData( implicit_function=scalar_funtion, implicit_function_transform=transform, pivot=scaled_center, ) ) geo_model.structural_frame.structural_groups[0].faults_input_data = faults_data verify_model_serialization( model=geo_model, verify_moment="after", file_name=f"verify/{geo_model.meta.name}" ) gp.compute_model(geo_model) # TODO: Try to do this afterwards if plot_pyvista := True: plot3d = gpv.plot_3d( geo_model, show_lith=False, show=False ) scalar_block_for_viz = _apply( regular_grid=regular_grid, scalar_funtion=gp.implicit_functions.ellipsoid_3d_factory( # * This paints the 3d regular grid center=center, radius=radius, max_slope=k # * This controls the speed of the transition ), transform=transform ) _plot_scalar_field(regular_grid, scalar_block_for_viz, plot3d.p, background_field=False) def test_finite_fault_scalar_field(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ONE_FAULT, compute_model=False ) regular_grid = geo_model.grid.regular_grid # TODO: Extract grid from the model scalar_funtion: callable = gp.implicit_functions.ellipsoid_3d_factory( # * This paints the 3d regular grid center=center, radius=radius, max_slope=k # * This controls the speed of the transition ) transform = gp.data.Transform( position=np.array([0, 0, 0]), rotation=np.array([0, 0, 30]), scale=np.ones(3) ) transformed_points = transform.apply_inverse_with_pivot( points=regular_grid.values, pivot=center ) scalar_block = scalar_funtion(transformed_points) # TODO: Try to do this afterwards # scalar_fault = scalar_funtion(regular_grid.values) if plot_pyvista := True: _plot_scalar_field(regular_grid, scalar_block) @pytest.mark.skipif(TEST_SPEED.value < TestSpeed.SECONDS.value, reason="Global test speed below this test value.") def test_finite_fault_scalar_field_on_fault_ZERO(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ONE_FAULT, compute_model=True ) regular_grid = geo_model.grid.regular_grid # TODO: Extract grid from the model scalar_funtion: callable = gp.implicit_functions.ellipsoid_3d_factory( # * This paints the 3d regular grid center=center, radius=radius, max_slope=k # * This controls the speed of the transition ) transform = gp.data.Transform( position=np.array([0, 0, 0]), rotation=np.array([0, 0, 30]), scale=np.ones(3) ) transformed_points = transform.apply_inverse_with_pivot( points=regular_grid.values, pivot=center ) scalar_block = scalar_funtion(transformed_points) # TODO: Try to do this afterwards # scalar_fault = scalar_funtion(regular_grid.values) if plot_pyvista := True: plot3d = gpv.plot_3d( geo_model, show=False ) _plot_scalar_field(regular_grid, scalar_block, plot3d.p) def _apply(regular_grid, scalar_funtion, transform): transformed_points = transform.apply_inverse_with_pivot( points=regular_grid.values, # ! This depends on the octree pivot=center ) scalar_block = scalar_funtion(transformed_points) return scalar_block def _plot_scalar_field(regular_grid, scalar_block, plotter=None, background_field=True): if not PLOT: return pv = require_pyvista() p = plotter or pv.Plotter() regular_grid_values = regular_grid.values_vtk_format grid_3d = regular_grid_values.reshape(*(regular_grid.resolution + 1), 3).T regular_grid_mesh = pv.StructuredGrid(*grid_3d) regular_grid_mesh["lith"] = scalar_block if True: area_of_effect = regular_grid_mesh.threshold([.000000001, 1.1]) p.add_mesh(area_of_effect, show_edges=True, opacity=.4) area_of_effect_2 = regular_grid_mesh.threshold([.2, 1.1]) p.add_mesh(area_of_effect_2, show_edges=True, opacity=.8) if background_field: p.add_mesh(regular_grid_mesh, show_edges=False, opacity=.2) p.show_bounds(bounds=regular_grid.extent) # * Add the fault if False: dual_mesh = pv.PolyData(fault_mesh.vertices, np.insert(fault_mesh.edges, 0, 3, axis=1).ravel()) dual_mesh["bar"] = scalar_fault p.add_mesh(dual_mesh, opacity=1, silhouette=True, show_edges=True) p.show() ================================================ FILE: test/test_modules/test_faults/test_finite_faults.test_finite_fault_scalar_field_on_fault.verify/fault.approved.txt ================================================ { "meta": { "name": "fault", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "Fault_Series", "elements": [ { "name": "fault", "is_active": true, "_color": "#527682", "surface_points": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 65970106 } ], "structural_relation": 3, "fault_relations": 1, "faults_input_data": { "fault_values_everywhere": [], "fault_values_on_sp": [], "fault_values_ref": [], "fault_values_rest": [], "thickness": null, "finite_fault_data": { "implicit_function_transform": { "position": [ 0, 0, 0 ], "rotation": [ 0, 60, 0 ], "scale": [ 1.0, 1.0, 1.0 ], "_is_default_transform": false, "_cached_pivot": null }, "pivot": [ 0.0, 0.0, 0.0 ] } }, "solution": null }, { "name": "Strat_Series", "elements": [ { "name": "rock2", "is_active": true, "_color": "#ffbe00", "surface_points": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 217776925 }, { "name": "rock1", "is_active": true, "_color": "#9f0052", "surface_points": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "fault": 65970106, "rock1": 167239155, "rock2": 217776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 167239155 } ], "structural_relation": 1, "fault_relations": 3, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 4 }, "basement_color": "#728f02", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 792, "ori_binary_length": 300 } }, "grid": { "_octree_grid": { "resolution": [ 64, 64, 64 ], "extent": [ 0.0, 1000.0, 0.0, 1000.0, 0.0, 1000.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_dense_grid": null, "_custom_grid": null, "_topography": null, "_sections": null, "_centered_grid": null, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 0, "topography_binary_length": 0 }, "active_grids": 1025 }, "geophysics_input": null, "input_transform": { "position": [ -500.0, -500.0, -500.0 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.0005, 0.0005, 0.0005 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 6, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "fault", "block_solutions_type": 1, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_gempy_subsurface.py ================================================ import pytest import gempy as gp import gempy_viewer as gpv from gempy import optional_dependencies from gempy.core.data.enumerators import ExampleModel import numpy as np from ..conftest import REQUIREMENT_LEVEL, Requirements pytestmark = pytest.mark.skipif( condition=REQUIREMENT_LEVEL.value < Requirements.DEV.value and False, reason="This test needs higher requirements." ) pd = pytest.importorskip("pandas", reason="Pandas is not installed") def test_gempy_to_subsurface(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=True) if False: gpv.plot_3d(model) vertex: list[np.ndarray] = model.solutions.raw_arrays.vertices simplex_list: list[np.ndarray] = model.solutions.raw_arrays.edges idx_max = 0 for simplex_array in simplex_list: simplex_array += idx_max idx_max = simplex_array.max() + 1 vertex_id_array = [np.full(v.shape[0], i + 1) for i, v in enumerate(vertex)] cell_id_array = [np.full(v.shape[0], i + 1) for i, v in enumerate(simplex_list)] concatenated_id_array = np.concatenate(vertex_id_array) concatenated_cell_id_array = np.concatenate(cell_id_array) subsurface = optional_dependencies.require_subsurface() ss = subsurface meshes: ss.UnstructuredData = ss.UnstructuredData.from_array( vertex=np.concatenate(vertex), cells=np.concatenate(simplex_list), vertex_attr=pd.DataFrame({'id': concatenated_id_array}), cells_attr=pd.DataFrame({'id': concatenated_cell_id_array}) ) trisurf = subsurface.core.structs.unstructured_elements.triangular_surface.TriSurf(meshes) pyvista_mesh = ss.visualization.to_pyvista_mesh(trisurf) ss.visualization.pv_plot([pyvista_mesh], image_2d=True) def test_gempy_to_subsurface_II(): model: gp.data.GeoModel = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=True) subsurface = optional_dependencies.require_subsurface() ss = subsurface meshes: ss.UnstructuredData = model.solutions.raw_arrays.meshes_to_subsurface() trisurf = subsurface.core.structs.unstructured_elements.triangular_surface.TriSurf(meshes) pyvista_mesh = ss.visualization.to_pyvista_mesh(trisurf) ss.visualization.pv_plot([pyvista_mesh], image_2d=True) def test_gempy_to_subsurface_III(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=True) subsurface = optional_dependencies.require_subsurface() ss = subsurface meshes: ss.UnstructuredData = model.solutions.meshes_to_unstruct() trisurf = subsurface.core.structs.unstructured_elements.triangular_surface.TriSurf(meshes) pyvista_mesh = ss.visualization.to_pyvista_mesh(trisurf) ss.visualization.pv_plot([pyvista_mesh], image_2d=True) ================================================ FILE: test/test_modules/test_geophysics/__init__.py ================================================ import pytest pytestmark = pytest.mark.skip(reason="Geophysics module is not yet updated") ================================================ FILE: test/test_modules/test_geophysics/test_gravity.py ================================================ # Importing GemPy import gempy as gp # Importing auxiliary libraries import numpy as np from test.verify_helper import verify_model_serialization def test_gravity(): color_generator = gp.data.ColorsGenerator() element1 = gp.data.StructuralElement( name='surface1', color=next(color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([3, 9]), y=np.array([0, 0]), z=np.array([3.05, 3.05]), names='surface1' ), orientations=gp.data.OrientationsTable.from_arrays( x=np.array([6]), y=np.array([0]), z=np.array([4]), G_x=np.array([0]), G_y=np.array([0]), G_z=np.array([1]), names='surface1' ) ) element2 = gp.data.StructuralElement( name='surface2', color=next(color_generator), surface_points=gp.data.SurfacePointsTable.from_arrays( x=np.array([3, 9]), y=np.array([0, 0]), z=np.array([1.02, 1.02]), names='surface2' ), orientations=gp.data.OrientationsTable.initialize_empty() ) frame = gp.data.StructuralFrame( structural_groups=[gp.data.StructuralGroup( name='default', elements=[element1, element2], structural_relation=gp.data.StackRelationType.ERODE ) ], color_gen=color_generator ) geo_model: gp.data.GeoModel = gp.create_geomodel( project_name="2-layers", extent=[0, 12, -2, 2, 0, 4], resolution=[500, 1, 500], refinement=1, structural_frame=frame, ) gp.compute_model(geo_model, validate_serialization=True) import gempy_viewer as gpv gpv.plot_2d(geo_model, cell_number=0) gp.set_centered_grid( grid=geo_model.grid, centers=np.array([[6, 0, 4]], dtype="float"), resolution=np.array([10, 10, 100], dtype="float"), radius=np.array([16000, 16000, 16000], dtype="float") # ? This radius makes 0 sense but it is the original one in gempy v2 ) gravity_gradient = gp.calculate_gravity_gradient(geo_model.grid.centered_grid) geo_model.geophysics_input = gp.data.GeophysicsInput( tz=gravity_gradient, densities=np.array([2.6, 2.4, 3.2]), ) verify_model_serialization( model=geo_model, verify_moment="after", file_name=f"verify/{geo_model.meta.name}" ) gp.compute_model(geo_model) print(geo_model.solutions.gravity) np.testing.assert_almost_equal(geo_model.solutions.gravity, np.array([-1624.1714]), decimal=4) ================================================ FILE: test/test_modules/test_geophysics/test_gravity.test_gravity.verify/2-layers.approved.txt ================================================ { "meta": { "name": "2-layers", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "default", "elements": [ { "name": "surface1", "is_active": true, "_color": "#015482", "surface_points": { "name_id_map": { "surface1": 57292991 }, "_model_transform": null }, "orientations": { "name_id_map": { "surface1": 57292991 }, "_model_transform": null }, "scalar_field_at_interface": 0.09000000000000002, "_id": -1 }, { "name": "surface2", "is_active": true, "_color": "#9f0052", "surface_points": { "name_id_map": { "surface2": 21816406 }, "_model_transform": null }, "orientations": { "name_id_map": null, "_model_transform": null }, "scalar_field_at_interface": -0.2483333333333333, "_id": -1 } ], "structural_relation": 1, "fault_relations": null, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 3 }, "basement_color": "#ffbe00", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 144, "ori_binary_length": 60 } }, "grid": { "_octree_grid": null, "_dense_grid": { "resolution": [ 500, 1, 500 ], "extent": [ 0.0, 12.0, -2.0, 2.0, 0.0, 4.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_custom_grid": null, "_topography": null, "_sections": null, "_centered_grid": { "centers": [ [ 6.0, 0.0, 4.0 ] ], "resolution": [ 10.0, 10.0, 100.0 ], "radius": [ 16000.0, 16000.0, 16000.0 ] }, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 0, "topography_binary_length": 0 }, "active_grids": 1058 }, "geophysics_input": { "gravity_input": { "tz": [], "densities": [ 2.6, 2.4, 3.2 ] }, "magnetics_input": null }, "input_transform": { "position": [ -6.0, -0.0, -2.51 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.08333333333333333, 0.16778523489932887, 0.08333333333333333 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 1, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "2-layers", "block_solutions_type": 2, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_grids/__init__.py ================================================ ================================================ FILE: test/test_modules/test_grids/test_custom_grid.py ================================================ import numpy as np import pytest from test.verify_helper import verify_model_serialization from test.conftest import TEST_SPEED, TestSpeed import gempy as gp from gempy.core.data.enumerators import ExampleModel pytestmark = pytest.mark.skipif(TEST_SPEED.value < TestSpeed.SECONDS.value, reason="Global test speed below this test value.") xyz_coord = np.array( [[0, 0, 0], [1000, 0, 0], [0, 1000, 0], [1000, 1000, 0], [0, 0, 1000], [1000, 0, 1000], [0, 1000, 1000], [1000, 1000, 1000]], dtype=float ) def test_custom_grid(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ANTICLINE, compute_model=False ) geo_model.interpolation_options.number_octree_levels = 2 gp.set_custom_grid( grid=geo_model.grid, xyz_coord=xyz_coord ) verify_model_serialization( model=geo_model, verify_moment="after", file_name=f"verify/{geo_model.meta.name}" ) sol: gp.data.Solutions = gp.compute_model(geo_model, validate_serialization=True) np.testing.assert_array_equal( sol.raw_arrays.custom, np.array([3., 3., 3., 3., 1., 1., 1., 1.]) ) def test_compute_at(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ANTICLINE, compute_model=False ) geo_model.interpolation_options.number_octree_levels = 2 sol: np.ndarray = gp.compute_model_at( gempy_model=geo_model, at=xyz_coord ) np.testing.assert_array_equal( sol, np.array([3., 3., 3., 3., 1., 1., 1., 1.]) ) ================================================ FILE: test/test_modules/test_grids/test_custom_grid.test_custom_grid.verify/fold.approved.txt ================================================ { "meta": { "name": "fold", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "Strat_Series", "elements": [ { "name": "rock2", "is_active": true, "_color": "#9f0052", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 117776925 }, { "name": "rock1", "is_active": true, "_color": "#015482", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 67239155 } ], "structural_relation": 1, "fault_relations": null, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 3 }, "basement_color": "#ffbe00", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 1296, "ori_binary_length": 120 } }, "grid": { "_octree_grid": { "resolution": [ 32, 32, 32 ], "extent": [ 0.0, 1000.0, 0.0, 1000.0, 0.0, 1000.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_dense_grid": null, "_custom_grid": {}, "_topography": null, "_sections": null, "_centered_grid": null, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 192, "topography_binary_length": 0 }, "active_grids": 1029 }, "geophysics_input": null, "input_transform": { "position": [ -500.0, -500.0, -510.0 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.0005, 0.0005, 0.0005 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 2, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "fold", "block_solutions_type": 1, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_grids/test_diamond_square.py ================================================ import gempy.core.data.grid_modules.diamond_square import pytest # to add fixtures and to test error raises import numpy as np # as another testing environment def test_class_nocrash(): """Simply check if class can be instantiated""" gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 5)) def test_grid_generation(): """Test grid generation and extension for non-suitable grid sizes""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 5)) assert ds.grid.shape == (5, 5) ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(8, 10)) assert ds.grid.shape == (9, 17) def test_diamond_selection(): """Test selection of diamond positions""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 5)) z = ds.get_selection_diamond(1) assert np.all(z == np.array([[2, 0, 0, 0, 2], [0, 0, 0, 0, 0], [0, 0, 1, 0, 0], [0, 0, 0, 0, 0], [2, 0, 0, 0, 2]])) z = ds.get_selection_diamond(0) assert np.all(z == np.array([[2, 0, 2, 0, 2], [0, 1, 0, 1, 0], [2, 0, 2, 0, 2], [0, 1, 0, 1, 0], [2, 0, 2, 0, 2]])) def test_square_selection(): """Test selection of diamond positions""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 5)) z = ds.get_selection_square(0) assert np.all(z == np.array([[0, 0, 2, 0, 2, 0, 0], [0, 2, 1, 2, 1, 2, 0], [2, 1, 2, 1, 2, 1, 2], [0, 2, 1, 2, 1, 2, 0], [2, 1, 2, 1, 2, 1, 2], [0, 2, 1, 2, 1, 2, 0], [0, 0, 2, 0, 2, 0, 0]])) z = ds.get_selection_square(1) assert np.all(z == np.array([[0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 1, 0, 2, 0, 1, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0]])) def test_random_initialization(): """Test random initialization of corner points""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 6), seed=52062) ds.random_initialization() m_pow_max = min(ds.n, ds.m) step_size = int(2 ** m_pow_max) np.testing.assert_array_almost_equal(ds.grid[::step_size, ::step_size], np.array([[0.35127005, 0.55476571, 0.93745213], [0.66668382, 0.85215985, 0.53222795]])) def test_random_initialization_level(): """Test random initialization on lower level""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(33, 33), seed=52062) level = 3 ds.random_initialization(level=level) step_size = int(2 ** level) np.testing.assert_array_almost_equal(ds.grid[::step_size, ::step_size], np.array([[0.35127005, 0.55476571, 0.93745213, 0.66668382, 0.85215985], [0.53222795, 0.55800027, 0.20974513, 0.74837501, 0.64394326], [0.0359961, 0.22723278, 0.56347804, 0.13438884, 0.32613594], [0.20868763, 0.03116471, 0.1498014, 0.20755495, 0.86021482], [0.64707457, 0.44744272, 0.36504945, 0.52473407, 0.27948164]])) def test_reset_grid(): ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(5, 6), seed=52062) ds.random_initialization() ds.reset_grid() np.testing.assert_array_almost_equal(ds.grid, np.array([[0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 0.]])) def test_random_func(): """Test random function implementation""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(33, 33), seed=52062) np.testing.assert_array_almost_equal(ds.random_func(2, 2), np.array([-0.14872995, 0.05476571])) # testing for correct default implementation ds.r_type = 'default' np.testing.assert_array_almost_equal(ds.random_func(2, 2), np.array([0.43745213, 0.16668382])) # testing long-range correlation ds.r_type = 'long_range' np.testing.assert_array_almost_equal(ds.random_func(2, 2), np.array([0.04401998, 0.00402849])) # testing level-scale correlation ds.r_type = 'level_scale' np.testing.assert_array_almost_equal(ds.random_func(2, 2), np.array([0.18600009, 0.06991504])) # testing deterministic implementation (no random value) ds.r_type = 'deterministic' assert ds.random_func(2, 2) == 0.0 def test_random_func_raises_error(): """Test if random function raises NonImplementedError correctly""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(33, 33), seed=52062) ds.r_type = 'fail' with pytest.raises(NotImplementedError): ds.random_func(2, 2) def test_interpolate(): """Test interpolation step itself""" ds = gempy.core.data.grid_modules.diamond_square.DiaomondSquare(size=(9, 9), seed=52062) ds.interpolate() np.testing.assert_array_almost_equal(ds.grid, np.array([[0., 0.2951411, 0.21781267, 0.29361906, 0.01037812, -0.0376406, -0.59889259, 0.01136296, 0.], [-0.13102895, -0.07079394, 0.40240191, -0.24139454, -0.64535709, -0.25358984, -0.20811689, -0.38977623, -0.02280871], [-0.32311967, -0.08246826, 0.03236034, -0.72313104, -0.6863271, -0.09742037, 0.16154592, -0.41643384, -0.23968483], [-0.53344647, -0.09313507, -0.66247738, -0.42849468, -0.06519284, -0.50628043, -0.31159035, 0.53516982, 0.07387422], [0.23421434, 0.32817758, -0.45156142, -0.24627659, -0.2974599, 0.16071127, 0.36261452, 0.62070397, 0.60516641], [-0.20172896, -0.05668301, -0.26331217, -0.22196496, 0.42029741, 0.35078669, 0.77129922, 0.38999358, 0.95701668], [-0.41296032, -0.04377428, -0.23235603, 0.60954786, 0.72643437, 0.37788456, 0.62211967, 0.16198846, 0.61709021], [0.00192109, -0.28399285, 0.28596529, 0.54081866, 1.00235637, 0.25454729, 0.1248549, 0.85789169, 0.23511424], [0., -0.54507578, -0.33592062, 0.62216544, 0.77575097, 0.5338132, 0.22007596, 0.02926128, 0.]])) ================================================ FILE: test/test_modules/test_grids/test_grids_I.py ================================================ import pytest import gempy as gp import gempy_viewer as gpv from gempy.core.data.enumerators import ExampleModel from gempy_engine.core.data.output.blocks_value_type import ValueType from gempy_engine.plugins.plotting.helper_functions import plot_block_and_input_2d from test.conftest import TEST_SPEED, TestSpeed pytestmark = pytest.mark.skipif(TEST_SPEED.value < TestSpeed.MINUTES.value, reason="Global test speed below this test value.") def test_octree(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ANTICLINE, compute_model=False ) geo_model.interpolation_options.number_octree_levels = 4 gp.compute_model(geo_model) plot_block_and_input_2d( stack_number=0, interpolation_input=geo_model.interpolation_input_copy, outputs=geo_model.solutions.octrees_output, structure=geo_model.structural_frame.input_data_descriptor.stack_structure, value_type=ValueType.ids ) gpv.plot_3d(geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True) geo_model.interpolation_options.number_octree_levels = 2 gp.compute_model(geo_model) plot_block_and_input_2d( stack_number=0, interpolation_input=geo_model.interpolation_input_copy, outputs=geo_model.solutions.octrees_output, structure=geo_model.structural_frame.input_data_descriptor.stack_structure, value_type=ValueType.ids ) gpv.plot_3d(geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True) ================================================ FILE: test/test_modules/test_grids/test_grids_sections.py ================================================ import numpy as np import pytest import gempy as gp import gempy_viewer as gpv from gempy.core.data.enumerators import ExampleModel from test.verify_helper import verify_model_serialization from test.conftest import TEST_SPEED, TestSpeed def test_section_grids(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.ANTICLINE, compute_model=False ) geo_model.grid.set_octree_grid_by_levels( octree_levels=2, evaluation_options=geo_model.interpolation_options.evaluation_options ) gp.set_section_grid( grid=geo_model.grid, section_dict={ 'section_SW-NE': ((250., 250.), (1750., 1750.), (100, 100)), 'section_NW-SE': ((250., 1750.), (1750., 250.), (100, 100)) } ) gp.set_topography_from_random( grid=geo_model.grid, fractal_dimension=1.2, d_z=np.array([200, 1000]), topography_resolution=np.array([60, 60]) ) verify_model_serialization( model=geo_model, verify_moment="after", file_name=f"verify/{geo_model.meta.name}" ) gp.compute_model(geo_model, validate_serialization=True) gpv.plot_2d( model=geo_model, section_names=['section_SW-NE', 'section_NW-SE', 'topography'], direction=['x'], cell_number=['mid'], show_lith=[False, True, False, True], show_boundaries=[False, False, False, True], show_topography=True, show_section_traces=True # TODO: Test this one ) gpv.plot_2d(geo_model, show_boundaries=False, section_names=['topography']) gpv.plot_3d( geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True ) @pytest.mark.skipif(TEST_SPEED.value < TestSpeed.MINUTES.value, reason="Global test speed below this test value.") def test_topography_II(): geo_model: gp.data.GeoModel = gp.generate_example_model( example_model=ExampleModel.TWO_AND_A_HALF_D, compute_model=False ) gpv.plot_3d( geo_model, show_data=True, show_boundaries=True, show_lith=False, image=True ) verify_model_serialization( model=geo_model, verify_moment="after", file_name=f"verify/{geo_model.meta.name}" ) gp.compute_model(geo_model) gpv.plot_2d(geo_model, show_boundaries=False, section_names=['topography']) gpv.plot_3d( geo_model, show_data=True, show_boundaries=True, show_lith=True, image=True, kwargs_plot_structured_grid={'opacity': .1} ) ================================================ FILE: test/test_modules/test_grids/test_grids_sections.test_section_grids.verify/fold.approved.txt ================================================ { "meta": { "name": "fold", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "Strat_Series", "elements": [ { "name": "rock2", "is_active": true, "_color": "#9f0052", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 117776925 }, { "name": "rock1", "is_active": true, "_color": "#015482", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 67239155 } ], "structural_relation": 1, "fault_relations": null, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 3 }, "basement_color": "#ffbe00", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 1296, "ori_binary_length": 120 } }, "grid": { "_octree_grid": { "resolution": [ 4, 4, 4 ], "extent": [ 0.0, 1000.0, 0.0, 1000.0, 0.0, 1000.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_dense_grid": null, "_custom_grid": null, "_topography": { "_regular_grid": { "resolution": [ 4, 4, 4 ], "extent": [ 0.0, 1000.0, 0.0, 1000.0, 0.0, 1000.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "source": null, "values": [], "resolution": [ 60, 60 ], "raster_shape": [], "_mask_topo": null, "_x": null, "_y": null }, "_sections": { "z_ext": [ 0.0, 1000.0 ], "section_dict": { "section_SW-NE": [ [ 250.0, 250.0 ], [ 1750.0, 1750.0 ], [ 100, 100 ] ], "section_NW-SE": [ [ 250.0, 1750.0 ], [ 1750.0, 250.0 ], [ 100, 100 ] ] } }, "_centered_grid": null, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 0, "topography_binary_length": 86400 }, "active_grids": 1049 }, "geophysics_input": null, "input_transform": { "position": [ -500.0, -500.0, -510.0 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.0005, 0.0005, 0.0005 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 2, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "fold", "block_solutions_type": 1, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_grids/test_grids_sections.test_topography_II.verify/Model1.approved.txt ================================================ { "meta": { "name": "Model1", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "Fault1", "elements": [ { "name": "fault1", "is_active": true, "_color": "#443988", "surface_points": { "name_id_map": { "fault1": 26244822 }, "_model_transform": null }, "orientations": { "name_id_map": { "fault1": 26244822 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": -1 } ], "structural_relation": 3, "fault_relations": 3, "faults_input_data": null, "solution": null }, { "name": "default_formations", "elements": [ { "name": "surface1", "is_active": true, "_color": "#015482", "surface_points": { "name_id_map": {}, "_model_transform": null }, "orientations": { "name_id_map": null, "_model_transform": null }, "scalar_field_at_interface": null, "_id": -1 }, { "name": "surface2", "is_active": true, "_color": "#ffbe00", "surface_points": { "name_id_map": { "surface2": 21816406 }, "_model_transform": null }, "orientations": { "name_id_map": null, "_model_transform": null }, "scalar_field_at_interface": null, "_id": -1 }, { "name": "surface3", "is_active": true, "_color": "#728f02", "surface_points": { "name_id_map": { "surface3": 98435767 }, "_model_transform": null }, "orientations": { "name_id_map": null, "_model_transform": null }, "scalar_field_at_interface": null, "_id": -1 } ], "structural_relation": 1, "fault_relations": null, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 5 }, "basement_color": "#9f0052", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 360, "ori_binary_length": 120 } }, "grid": { "_octree_grid": null, "_dense_grid": { "resolution": [ 50, 50, 50 ], "extent": [ 0.0, 791.0, -200.0, 200.0, -582.0, 0.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_custom_grid": null, "_topography": { "_regular_grid": { "resolution": [ 50, 50, 50 ], "extent": [ 0.0, 791.0, -200.0, 200.0, -582.0, 0.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "source": null, "values": [], "resolution": [ 50, 40 ], "raster_shape": [], "_mask_topo": null, "_x": null, "_y": null }, "_sections": null, "_centered_grid": null, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 0, "topography_binary_length": 48000 }, "active_grids": 1034 }, "geophysics_input": null, "input_transform": { "position": [ -417.5, -0.5, 157.0 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.0012853470437017994, 0.0012853470437017994, 0.0012853470437017994 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 1, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "Model1", "block_solutions_type": 2, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_json_io.py ================================================ """ Tests for JSON I/O operations in GemPy. """ import json import numpy as np import pytest import gempy as gp from gempy.modules.json_io import JsonIO from gempy_engine.core.data.stack_relation_type import StackRelationType from gempy.core.data.importer_helper import ImporterHelper import pandas as pd from gempy.core.data.structural_group import FaultsRelationSpecialCase @pytest.fixture def sample_surface_points(): """Create sample surface points data for testing.""" x = np.array([0, 1, 2, 3, 4]) y = np.array([0, 1, 2, 3, 4]) z = np.array([0, 1, 2, 3, 4]) nugget = np.array([0.00002, 0.00002, 0.00002, 0.00002, 0.00002]) # Create a SurfacePointsTable surface_points = gp.data.SurfacePointsTable.from_arrays( x=x, y=y, z=z, names=["surface_0", "surface_0", "surface_1", "surface_1", "surface_2"], nugget=nugget ) return surface_points, x, y, z, nugget @pytest.fixture def sample_orientations(): """Create sample orientation data for testing.""" x = np.array([0.5, 1.5, 2.5, 3.5]) y = np.array([0.5, 1.5, 2.5, 3.5]) z = np.array([0.5, 1.5, 2.5, 3.5]) G_x = np.array([0, 0, 0, 0]) G_y = np.array([0, 0, 0, 0]) G_z = np.array([1, 1, -1, 1]) # One reversed orientation nugget = np.array([0.01, 0.01, 0.01, 0.01]) # Create an OrientationsTable orientations = gp.data.OrientationsTable.from_arrays( x=x, y=y, z=z, G_x=G_x, G_y=G_y, G_z=G_z, names=["surface_0", "surface_1", "surface_1", "surface_2"], nugget=nugget ) return orientations, x, y, z, G_x, G_y, G_z, nugget @pytest.fixture def sample_json_data(sample_surface_points, sample_orientations): """Create sample JSON data for testing.""" _, x_sp, y_sp, z_sp, nugget_sp = sample_surface_points _, x_ori, y_ori, z_ori, G_x, G_y, G_z, nugget_ori = sample_orientations return { "metadata": { "name": "sample_model", "creation_date": "2024-03-19", "last_modification_date": "2024-03-19", "owner": "tutorial" }, "surface_points": [ { "x": float(x_sp[i]), "y": float(y_sp[i]), "z": float(z_sp[i]), "id": 0, # Default ID, not used in tests "nugget": float(nugget_sp[i]) } for i in range(len(x_sp)) ], "orientations": [ { "x": float(x_ori[i]), "y": float(y_ori[i]), "z": float(z_ori[i]), "G_x": float(G_x[i]), "G_y": float(G_y[i]), "G_z": float(G_z[i]), "id": 0, # Default ID, not used in tests "nugget": float(nugget_ori[i]), "polarity": 1 # Always set to 1 since we're testing the raw G_z values } for i in range(len(x_ori)) ], "series": [ { "name": "series1", "surfaces": ["surface_0", "surface_1"], "structural_relation": "erode", "colors": ["#FF0000", "#00FF00"] }, { "name": "series2", "surfaces": ["surface_2"], "structural_relation": "erode", "colors": ["#0000FF"] } ], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 4, 0, 4, 0, 4], "octree_levels": None }, "interpolation_options": {} } def test_surface_points_loading(): """Test loading surface points from JSON data.""" data = { "surface_points": [ { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0, "nugget": 0.0 } ] } surface_points = JsonIO._load_surface_points(data["surface_points"]) assert len(surface_points.xyz) == 1 assert surface_points.xyz[0, 0] == 1.0 # x coordinate assert surface_points.xyz[0, 1] == 1.0 # y coordinate assert surface_points.xyz[0, 2] == 1.0 # z coordinate assert surface_points.nugget[0] == 0.0 # nugget def test_orientations_loading(): """Test loading orientations from JSON data.""" data = { "orientations": [ { "x": 1.0, "y": 1.0, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "nugget": 0.01, "polarity": 1 } ] } orientations = JsonIO._load_orientations(data["orientations"]) assert len(orientations.xyz) == 1 assert orientations.xyz[0, 0] == 1.0 # x coordinate assert orientations.xyz[0, 1] == 1.0 # y coordinate assert orientations.xyz[0, 2] == 1.0 # z coordinate assert orientations.grads[0, 0] == 0.0 # G_x assert orientations.grads[0, 1] == 0.0 # G_y assert orientations.grads[0, 2] == 1.0 # G_z assert orientations.nugget[0] == 0.01 # nugget def test_surface_points_saving(tmp_path): """Test saving surface points to a JSON file.""" # Create sample surface points surface_points = np.array([[1.0, 1.0, 1.0, 0, 0.0]]) # Create a complete model data structure data = { "surface_points": [ { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0, "nugget": 0.0 } ], "orientations": [], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 10, 0, 10, 0, 10] } } # Save to temporary file file_path = tmp_path / "test_surface_points.json" with open(file_path, 'w') as f: json.dump(data, f) # Load and verify loaded_model = JsonIO.load_model_from_json(str(file_path)) assert len(loaded_model.surface_points_copy.xyz) == 1 assert loaded_model.surface_points_copy.xyz[0, 0] == 1.0 # x coordinate assert loaded_model.surface_points_copy.xyz[0, 1] == 1.0 # y coordinate assert loaded_model.surface_points_copy.xyz[0, 2] == 1.0 # z coordinate assert loaded_model.surface_points_copy.nugget[0] == 0.0 # nugget def test_invalid_surface_points_data(): """Test that invalid surface points data raises appropriate errors.""" data = { 'surface_points': [{'x': 0, 'y': 0}], # Missing z 'orientations': [], 'grid_settings': {'regular_grid_resolution': [50, 50, 50], 'regular_grid_extent': [0, 1, 0, 1, 0, 1]} } with pytest.raises(ValueError, match="Missing required key in surface point: z"): JsonIO._validate_json_schema(data) def test_missing_surface_points_data(): """Test handling of missing surface points data.""" data = { "orientations": [] # Missing surface_points key } with pytest.raises(ValueError, match="Missing required key: surface_points"): JsonIO._validate_json_schema(data) def test_invalid_orientations_data(): """Test that invalid orientations data raises appropriate errors.""" data = { 'surface_points': [{'x': 0, 'y': 0, 'z': 0}], 'orientations': [{'x': 0, 'y': 0, 'z': 0}], # Missing G_x, G_y, G_z 'grid_settings': {'regular_grid_resolution': [50, 50, 50], 'regular_grid_extent': [0, 1, 0, 1, 0, 1]} } with pytest.raises(ValueError, match="Missing required key in orientation: G_x"): JsonIO._validate_json_schema(data) def test_missing_orientations_data(): """Test handling of missing orientations data.""" data = { "surface_points": [] # Missing orientations key } with pytest.raises(ValueError, match="Missing required key: orientations"): JsonIO._validate_json_schema(data) def test_invalid_orientation_polarity(): """Test handling of invalid orientation polarity.""" data = { "orientations": [ { "x": 1.0, "y": 1.0, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "nugget": 0.01, "polarity": 2 # Invalid polarity value } ] } with pytest.raises(ValueError, match="Invalid polarity in orientation"): JsonIO._load_orientations(data["orientations"]) def test_default_nugget_values(tmp_path): """Test that default nugget values are correctly applied.""" # Create minimal data without nugget values data = { "surface_points": [ { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0 } ], "orientations": [ { "x": 1.0, "y": 1.0, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "polarity": 1 } ], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 10, 0, 10, 0, 10] } } # Save data to temporary file file_path = tmp_path / "test_default_nugget.json" with open(file_path, 'w') as f: json.dump(data, f) # Load model from JSON model = JsonIO.load_model_from_json(str(file_path)) # Verify default nugget values assert model.surface_points_copy.nugget[0] == 0.0 # Default surface point nugget assert model.orientations_copy.nugget[0] == 0.01 # Default orientation nugget def test_default_series_values(tmp_path): """Test that default series values are correctly applied.""" # Create minimal data without series data = { "surface_points": [ { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0, "nugget": 0.0 } ], "orientations": [ { "x": 1.0, "y": 1.0, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "nugget": 0.01, "polarity": 1 } ], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 10, 0, 10, 0, 10] } } # Save data to temporary file file_path = tmp_path / "test_default_series.json" with open(file_path, 'w') as f: json.dump(data, f) # Load model from JSON (this will create default series) model = JsonIO.load_model_from_json(str(file_path)) # Verify default series assert len(model.structural_frame.structural_groups) == 1 assert model.structural_frame.structural_groups[0].name == "Strat_Series" assert model.structural_frame.structural_groups[0].structural_relation == StackRelationType.ERODE def test_default_interpolation_options(): """Test that default interpolation options are correctly applied.""" data = { 'surface_points': [{'x': 0, 'y': 0, 'z': 0}], 'orientations': [{'x': 0, 'y': 0, 'z': 0, 'G_x': 0, 'G_y': 0, 'G_z': 1}], 'grid_settings': {'regular_grid_resolution': [50, 50, 50], 'regular_grid_extent': [0, 1, 0, 1, 0, 1]}, 'interpolation_options': {} } JsonIO._validate_json_schema(data) assert data['interpolation_options'].get('number_octree_levels', 4) == 4 # Default is now 4 assert data['interpolation_options'].get('mesh_extraction', True) is True def test_default_metadata(tmp_path): """Test that default metadata is correctly applied.""" # Create minimal data without metadata data = { "surface_points": [ { "x": 1.0, "y": 1.0, "z": 1.0, "id": 0, "nugget": 0.0 } ], "orientations": [ { "x": 1.0, "y": 1.0, "z": 1.0, "G_x": 0.0, "G_y": 0.0, "G_z": 1.0, "id": 0, "nugget": 0.01, "polarity": 1 } ], "grid_settings": { "regular_grid_resolution": [10, 10, 10], "regular_grid_extent": [0, 10, 0, 10, 0, 10] } } # Save data to temporary file file_path = tmp_path / "test_default_metadata.json" with open(file_path, 'w') as f: json.dump(data, f) # Load model from JSON model = JsonIO.load_model_from_json(str(file_path)) # Verify default metadata assert model.meta.name == "GemPy Model" # Default name assert model.meta.owner == "GemPy Modeller" # Default owner assert model.meta.creation_date is not None # Should be set to current date assert model.meta.last_modification_date is not None # Should be set to current date def test_optional_series_colors(): """Test that series colors are optional and properly validated.""" data = { 'surface_points': [{'x': 0, 'y': 0, 'z': 0}], 'orientations': [{'x': 0, 'y': 0, 'z': 0, 'G_x': 0, 'G_y': 0, 'G_z': 1}], 'grid_settings': {'regular_grid_resolution': [50, 50, 50], 'regular_grid_extent': [0, 1, 0, 1, 0, 1]}, 'series': [ {'name': 'Series1', 'surfaces': ['Surface1'], 'colors': ['#015482']}, # Valid color {'name': 'Series2', 'surfaces': ['Surface2']} # No colors specified ] } JsonIO._validate_json_schema(data) assert data['series'][0]['colors'] == ['#015482'] # Color should be preserved assert 'colors' not in data['series'][1] # No colors should be added if not specified @pytest.fixture def sample_model_with_series(): """Create a sample model with series and fault relations.""" # Create a simple model with two series and a fault from gempy.core.data.structural_frame import StructuralFrame from gempy.core.data import StructuralElement, StructuralGroup from gempy_engine.core.data.stack_relation_type import StackRelationType # Create structural frame first structural_frame = StructuralFrame.initialize_default_structure() # Create model with structural frame model = gp.create_geomodel( project_name="test_model", extent=[0, 10, 0, 10, 0, 10], resolution=[10, 10, 10], structural_frame=structural_frame ) # Create structural elements fault_element = StructuralElement( name="fault", color=next(model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.initialize_empty(), orientations=gp.data.OrientationsTable.initialize_empty() ) rock1_element = StructuralElement( name="rock1", color=next(model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.initialize_empty(), orientations=gp.data.OrientationsTable.initialize_empty() ) rock2_element = StructuralElement( name="rock2", color=next(model.structural_frame.color_generator), surface_points=gp.data.SurfacePointsTable.initialize_empty(), orientations=gp.data.OrientationsTable.initialize_empty() ) # Create structural groups fault_group = StructuralGroup( name="fault_series", elements=[fault_element], structural_relation=StackRelationType.FAULT ) strat_group = StructuralGroup( name="strat_series", elements=[rock1_element, rock2_element], structural_relation=StackRelationType.ERODE ) # Set up the structural frame model.structural_frame.structural_groups = [fault_group, strat_group] # Set fault relations (2x2 matrix: fault affects strat_series) model.structural_frame.fault_relations = np.array([ [0, 1], # fault_series affects strat_series [0, 0] # strat_series doesn't affect any series ]) # Add surface points gp.add_surface_points( geo_model=model, x=[1, 2, 3, 4, 5], y=[1, 2, 3, 4, 5], z=[1, 2, 3, 4, 5], elements_names=["fault", "rock1", "rock1", "rock2", "rock2"] ) # Add orientations gp.add_orientations( geo_model=model, x=[1.5, 2.5, 3.5, 4.5], y=[1.5, 2.5, 3.5, 4.5], z=[1.5, 2.5, 3.5, 4.5], elements_names=["fault", "rock1", "rock1", "rock2"], pole_vector=[[0, 0, 1], [0, 0, 1], [0, 0, 1], [0, 0, 1]] ) return model def test_metadata_handling(tmp_path, sample_model_with_series): """Test metadata handling in JSON I/O.""" model = sample_model_with_series # Add custom metadata model.meta.owner = "test_value" # Save model file_path = tmp_path / "test_metadata.json" JsonIO.save_model_to_json(model, str(file_path)) # Load model loaded_model = JsonIO.load_model_from_json(str(file_path)) # Verify metadata assert loaded_model.meta.owner == "test_value" assert loaded_model.meta.creation_date is not None assert loaded_model.meta.last_modification_date is not None def test_grid_settings_handling(tmp_path, sample_model_with_series): """Test grid settings handling in JSON I/O.""" model = sample_model_with_series # Modify grid settings model.grid.regular_grid.resolution = [20, 20, 20] model.grid.regular_grid.extent = [0, 20, 0, 20, 0, 20] # Save model file_path = tmp_path / "test_grid_settings.json" JsonIO.save_model_to_json(model, str(file_path)) # Load model loaded_model = JsonIO.load_model_from_json(str(file_path)) # Verify grid settings np.testing.assert_array_equal( model.grid.regular_grid.resolution, loaded_model.grid.regular_grid.resolution ) np.testing.assert_array_equal( model.grid.regular_grid.extent, loaded_model.grid.regular_grid.extent ) def test_interpolation_options_handling(tmp_path, sample_model_with_series): """Test interpolation options handling in JSON I/O.""" model = sample_model_with_series # Set custom interpolation options model.interpolation_options.kernel_options.range = 10.0 model.interpolation_options.kernel_options.c_o = 15.0 model.interpolation_options.mesh_extraction = False model.interpolation_options.number_octree_levels = 2 # Save model file_path = tmp_path / "test_interpolation_options.json" JsonIO.save_model_to_json(model, str(file_path)) # Load model loaded_model = JsonIO.load_model_from_json(str(file_path)) # Verify interpolation options assert loaded_model.interpolation_options.kernel_options.range == 10.0 assert loaded_model.interpolation_options.kernel_options.c_o == 15.0 assert loaded_model.interpolation_options.mesh_extraction is False assert loaded_model.interpolation_options.number_octree_levels == 2 def test_fault_relationships(tmp_path): """Test saving and loading models with fault relationships.""" # Create temporary CSV files for surface points and orientations surface_points_data = pd.DataFrame({ 'X': [500, 500, 500], 'Y': [500, 500, 500], 'Z': [800, 500, 200], 'surface': ['fault', 'rock2', 'rock1'] }) orientations_data = pd.DataFrame({ 'X': [500, 500, 500], 'Y': [500, 500, 500], 'Z': [800, 500, 200], 'dip': [90, 0, 0], 'azimuth': [90, 90, 90], 'polarity': [1, 1, 1], 'surface': ['fault', 'rock2', 'rock1'] }) surface_points_path = tmp_path / "surface_points.csv" orientations_path = tmp_path / "orientations.csv" surface_points_data.to_csv(surface_points_path, index=False) orientations_data.to_csv(orientations_path, index=False) # Create a model with fault relationships importer_helper = ImporterHelper( path_to_surface_points=str(surface_points_path), path_to_orientations=str(orientations_path) ) model = gp.create_geomodel( project_name='fault_test', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[10, 10, 10], importer_helper=importer_helper ) # Map stack to surfaces gp.map_stack_to_surfaces( gempy_model=model, mapping_object={ "Fault_Series": ['fault'], "Strat_Series1": ['rock2'], "Strat_Series2": ['rock1'] } ) # Set structural relations model.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT model.structural_frame.structural_groups[0].fault_relations = FaultsRelationSpecialCase.OFFSET_ALL # Save the model file_path = tmp_path / "fault_model.json" JsonIO.save_model_to_json(model, str(file_path)) # Load the model and verify loaded_model = JsonIO.load_model_from_json(str(file_path)) # Check structural groups assert len(loaded_model.structural_frame.structural_groups) == 3 assert loaded_model.structural_frame.structural_groups[0].name == "Fault_Series" assert loaded_model.structural_frame.structural_groups[0].structural_relation == StackRelationType.FAULT assert loaded_model.structural_frame.structural_groups[0].fault_relations == FaultsRelationSpecialCase.OFFSET_ALL # Check fault relations matrix np.testing.assert_array_equal( loaded_model.structural_frame.fault_relations, np.array([[0, 1, 1], [0, 0, 0], [0, 0, 0]]) ) def test_multiple_series_relationships(tmp_path): """Test saving and loading models with multiple series and different structural relationships.""" # Create temporary CSV files for surface points and orientations surface_points_data = pd.DataFrame({ 'X': [500, 500, 500, 500], 'Y': [500, 500, 500, 500], 'Z': [800, 600, 400, 200], 'surface': ['fault', 'rock3', 'rock2', 'rock1'] }) orientations_data = pd.DataFrame({ 'X': [500, 500, 500, 500], 'Y': [500, 500, 500, 500], 'Z': [800, 600, 400, 200], 'dip': [90, 0, 0, 0], 'azimuth': [90, 90, 90, 90], 'polarity': [1, 1, 1, 1], 'surface': ['fault', 'rock3', 'rock2', 'rock1'] }) surface_points_path = tmp_path / "surface_points.csv" orientations_path = tmp_path / "orientations.csv" surface_points_data.to_csv(surface_points_path, index=False) orientations_data.to_csv(orientations_path, index=False) # Create a model with multiple series relationships importer_helper = ImporterHelper( path_to_surface_points=str(surface_points_path), path_to_orientations=str(orientations_path) ) model = gp.create_geomodel( project_name='multiple_series_test', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[10, 10, 10], importer_helper=importer_helper ) # Map stack to surfaces gp.map_stack_to_surfaces( gempy_model=model, mapping_object={ "Fault_Series": ['fault'], "Series3": ['rock3'], "Series2": ['rock2'], "Series1": ['rock1'] } ) # Set structural relations model.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT model.structural_frame.structural_groups[0].fault_relations = FaultsRelationSpecialCase.OFFSET_ALL model.structural_frame.structural_groups[1].structural_relation = StackRelationType.ONLAP model.structural_frame.structural_groups[2].structural_relation = StackRelationType.ERODE model.structural_frame.structural_groups[3].structural_relation = StackRelationType.ERODE # Set colors for verification model.structural_frame.get_element_by_name("fault").color = '#527682' # Fault color model.structural_frame.get_element_by_name("rock3").color = '#9f0052' # rock3 color model.structural_frame.get_element_by_name("rock2").color = '#015482' # rock2 color model.structural_frame.get_element_by_name("rock1").color = '#728f02' # rock1 color # Save the model file_path = tmp_path / "multiple_series_model.json" JsonIO.save_model_to_json(model, str(file_path)) # Load the model and verify loaded_model = JsonIO.load_model_from_json(str(file_path)) # Check structural groups assert len(loaded_model.structural_frame.structural_groups) == 4 assert loaded_model.structural_frame.structural_groups[0].structural_relation == StackRelationType.FAULT assert loaded_model.structural_frame.structural_groups[1].structural_relation == StackRelationType.ONLAP assert loaded_model.structural_frame.structural_groups[2].structural_relation == StackRelationType.ERODE # Check colors are preserved assert loaded_model.structural_frame.get_element_by_name("fault").color == '#527682' assert loaded_model.structural_frame.get_element_by_name("rock3").color == '#9f0052' assert loaded_model.structural_frame.get_element_by_name("rock2").color == '#015482' assert loaded_model.structural_frame.get_element_by_name("rock1").color == '#728f02' def test_combination_model(tmp_path): """Test saving and loading a complex model that combines faults and unconformities.""" # Create temporary CSV files for surface points and orientations surface_points_data = pd.DataFrame({ 'X': [500, 500, 500], 'Y': [500, 500, 500], 'Z': [800, 500, 200], 'surface': ['fault', 'rock2', 'rock1'] }) orientations_data = pd.DataFrame({ 'X': [500, 500, 500], 'Y': [500, 500, 500], 'Z': [800, 500, 200], 'dip': [90, 0, 0], 'azimuth': [90, 90, 90], 'polarity': [1, 1, 1], 'surface': ['fault', 'rock2', 'rock1'] }) surface_points_path = tmp_path / "surface_points.csv" orientations_path = tmp_path / "orientations.csv" surface_points_data.to_csv(surface_points_path, index=False) orientations_data.to_csv(orientations_path, index=False) # Create a combination model importer_helper = ImporterHelper( path_to_surface_points=str(surface_points_path), path_to_orientations=str(orientations_path) ) model = gp.create_geomodel( project_name='Combination Model', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[10, 10, 10], importer_helper=importer_helper ) # Map stack to surfaces gp.map_stack_to_surfaces( gempy_model=model, mapping_object={ "Fault_Series": ['fault'], "Strat_Series1": ['rock2'], "Strat_Series2": ['rock1'] } ) # Set structural relations model.structural_frame.structural_groups[0].structural_relation = StackRelationType.FAULT model.structural_frame.structural_groups[0].fault_relations = FaultsRelationSpecialCase.OFFSET_ALL model.structural_frame.structural_groups[1].structural_relation = StackRelationType.ERODE model.structural_frame.structural_groups[2].structural_relation = StackRelationType.ONLAP # Set metadata model.meta.creation_date = "2024-03-24" model.meta.last_modification_date = "2024-03-24" # Save the model file_path = tmp_path / "combination_model.json" JsonIO.save_model_to_json(model, str(file_path)) # Load the model and verify loaded_model = JsonIO.load_model_from_json(str(file_path)) # Check structural setup assert len(loaded_model.structural_frame.structural_groups) == 3 assert loaded_model.structural_frame.structural_groups[0].structural_relation == StackRelationType.FAULT assert loaded_model.structural_frame.structural_groups[1].structural_relation == StackRelationType.ERODE assert loaded_model.structural_frame.structural_groups[2].structural_relation == StackRelationType.ONLAP # Check fault relations np.testing.assert_array_equal( loaded_model.structural_frame.fault_relations, np.array([[0, 1, 1], [0, 0, 0], [0, 0, 0]]) ) # Check metadata assert loaded_model.meta.creation_date == "2024-03-24" assert loaded_model.meta.last_modification_date == "2024-03-24" ================================================ FILE: test/test_modules/test_marching_cubes.py ================================================ import numpy as np from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution import gempy as gp from gempy.core.data.enumerators import ExampleModel from gempy.core.data.grid_modules import RegularGrid from gempy.modules.mesh_extranction import marching_cubes from gempy.optional_dependencies import require_gempy_viewer PLOT = True def test_marching_cubes_implementation(): model = gp.generate_example_model(ExampleModel.COMBINATION, compute_model=False) # Change the grid to only be the dense grid dense_grid: RegularGrid = RegularGrid( extent=model.grid.extent, resolution=np.array([40, 20, 20]) ) model.grid.dense_grid = dense_grid gp.set_active_grid( grid=model.grid, grid_type=[model.grid.GridTypes.DENSE], reset=True ) model.interpolation_options = gp.data.InterpolationOptions.init_dense_grid_options() gp.compute_model(model) # Assert assert model.solutions.block_solution_type == RawArraysSolution.BlockSolutionType.DENSE_GRID assert model.solutions.dc_meshes is None arrays = model.solutions.raw_arrays # * arrays is equivalent to gempy v2 solutions # assert arrays.scalar_field_matrix.shape == (3, 8_000) # * 3 surfaces, 8000 points marching_cubes.set_meshes_with_marching_cubes(model) # Assert assert model.solutions.block_solution_type == RawArraysSolution.BlockSolutionType.DENSE_GRID assert model.solutions.dc_meshes is None assert model.structural_frame.structural_groups[0].elements[0].vertices.shape == (600, 3) assert model.structural_frame.structural_groups[1].elements[0].vertices.shape == (860, 3) assert model.structural_frame.structural_groups[2].elements[0].vertices.shape == (1_256, 3) assert model.structural_frame.structural_groups[2].elements[1].vertices.shape == (1_680, 3) if PLOT: gpv = require_gempy_viewer() gtv: gpv.GemPyToVista = gpv.plot_3d( model=model, show_data=True, image=True, show=True ) ================================================ FILE: test/test_modules/test_marching_cubes_pytorch.py ================================================ """ Copied from "test_marching_cubes.py" to test the pytorch implementation of marching cubes with minor adjustments """ import os os.environ["DEFAULT_BACKEND"] = "PYTORCH" import numpy as np from gempy_engine.core.data.raw_arrays_solution import RawArraysSolution import gempy as gp from gempy.core.data.enumerators import ExampleModel from gempy.core.data.grid_modules import RegularGrid from gempy.modules.mesh_extranction import marching_cubes from gempy.optional_dependencies import require_gempy_viewer PLOT = True def test_marching_cubes_implementation(): assert os.environ["DEFAULT_BACKEND"] == "PYTORCH" model = gp.generate_example_model(ExampleModel.COMBINATION, compute_model=False) # Change the grid to only be the dense grid dense_grid: RegularGrid = RegularGrid( extent=model.grid.extent, resolution=np.array([40, 20, 20]) ) model.grid.dense_grid = dense_grid gp.set_active_grid( grid=model.grid, grid_type=[model.grid.GridTypes.DENSE], reset=True ) model.interpolation_options = gp.data.InterpolationOptions.init_dense_grid_options() gp.compute_model(model) # Assert assert model.solutions.block_solution_type == RawArraysSolution.BlockSolutionType.DENSE_GRID assert model.solutions.dc_meshes is None arrays = model.solutions.raw_arrays # * arrays is equivalent to gempy v2 solutions # assert arrays.scalar_field_matrix.shape == (3, 8_000) # * 3 surfaces, 8000 points marching_cubes.set_meshes_with_marching_cubes(model) # Assert assert model.solutions.block_solution_type == RawArraysSolution.BlockSolutionType.DENSE_GRID assert model.solutions.dc_meshes is None assert model.structural_frame.structural_groups[0].elements[0].vertices.shape == (600, 3) assert model.structural_frame.structural_groups[1].elements[0].vertices.shape == (860, 3) assert model.structural_frame.structural_groups[2].elements[0].vertices.shape == (1_256, 3) assert model.structural_frame.structural_groups[2].elements[1].vertices.shape == (1_680, 3) if PLOT: gpv = require_gempy_viewer() gtv: gpv.GemPyToVista = gpv.plot_3d( model=model, show_data=True, image=True, show=True ) ================================================ FILE: test/test_modules/test_outliers.py ================================================ import gempy as gp from gempy.optional_dependencies import require_gempy_viewer from gempy.core.data.enumerators import ExampleModel from gempy.core.data.grid_modules import RegularGrid import numpy as np PLOT = True def test_outliers_model_1(): # Path to input data data_path = "https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/" path_to_data = data_path + "/data/input_data/video_tutorials_v3/" # Create instance of geomodel model = gp.create_geomodel( project_name='tutorial_model_onlap_1', extent=[0, 2000, 0, 1000, 0, 1000], resolution=[100, 50, 50], importer_helper=gp.data.ImporterHelper( path_to_orientations=path_to_data + "tutorial_model_onlap_1_orientations.csv?cache=", path_to_surface_points=path_to_data + "tutorial_model_onlap_1_surface_points.csv?cache=" ) ) # Map geological series to surfaces gp.map_stack_to_surfaces( gempy_model=model, mapping_object={ "Young_Series": ("basin_fill_2", "basin_fill_1"), "Old_Series" : ("basin_top", "basin_bottom") } ) # Set the relation of the youngest group to Onlap from gempy_engine.core.data.stack_relation_type import StackRelationType model.structural_frame.structural_groups[0].structural_relation = StackRelationType.ONLAP model.interpolation_options.sigmoid_slope = 5_000_000 # Compute a solution for the model gp.compute_model( gempy_model=model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.numpy ) ) # Assert arrays = model.solutions.raw_arrays # * arrays is equivalent to gempy v2 solutions assert arrays.scalar_field_matrix.shape == (2, 250_000) # * 2 groups, 250000 points if PLOT: gpv = require_gempy_viewer() gpv.plot_2d( model=model, show_data=True, show_boundaries=False, show=True ) gpv.plot_2d( model=model, show_data=False, show_boundaries=False, show_scalar=True, show=True ) gpv.plot_2d( model=model, show_data=False, show_boundaries=False, show_scalar=True, series_n=1, show=True ) ================================================ FILE: test/test_modules/test_pile/__init__.py ================================================ ================================================ FILE: test/test_modules/test_pile/test_stratigraphic_pile.py ================================================ import os import pandas as pd import pytest from subsurface.core.geological_formats.boreholes.boreholes import BoreholeSet, MergeOptions from subsurface.core.geological_formats.boreholes.collars import Collars from subsurface.core.geological_formats.boreholes.survey import Survey from subsurface.core.reader_helpers.readers_data import GenericReaderFilesHelper from subsurface.modules.reader.wells.read_borehole_interface import read_lith, read_survey, read_collar from subsurface.modules.visualization import to_pyvista_line, pv_plot, to_pyvista_points import gempy as gp import gempy_viewer as gpv # Check if PATH_TO_SPREMBERG_STRATIGRAPHY is set if not skip the test @pytest.mark.skipif( os.getenv("PATH_TO_SPREMBERG") is None, reason="PATH_TO_SPREMBERG_STRATIGRAPHY is not set" ) class TestStratigraphicPile: @pytest.fixture(autouse=True) def borehole_set(self): reader: GenericReaderFilesHelper = GenericReaderFilesHelper( file_or_buffer=os.getenv("PATH_TO_SPREMBERG") + "Spremberg_stratigraphy.csv", columns_map={ 'hole_id' : 'id', 'depth_from': 'top', 'depth_to' : 'base', 'lit_code' : 'component lith' } ) lith: pd.DataFrame = read_lith(reader) reader: GenericReaderFilesHelper = GenericReaderFilesHelper( file_or_buffer=os.getenv("PATH_TO_SPREMBERG") + "Spremberg_survey.csv", columns_map={ 'depth' : 'md', 'dip' : 'dip', 'azimuth': 'azi' }, encoding="latin-1" ) df = read_survey(reader) survey: Survey = Survey.from_df(df) survey.update_survey_with_lith(lith) reader_collar: GenericReaderFilesHelper = GenericReaderFilesHelper( file_or_buffer=os.getenv("PATH_TO_SPREMBERG") + "Spremberg_collar_updated.csv", header=0, usecols=[0, 1, 2, 4], columns_map={ "hole_id" : "id", # ? Index name is not mapped "X_GK5_incl_inserted": "x", "Y__incl_inserted" : "y", "Z_GK" : "z" } ) df_collar = read_collar(reader_collar) collar = Collars.from_df(df_collar) borehole_set = BoreholeSet( collars=collar, survey=survey, merge_option=MergeOptions.INTERSECT ) return borehole_set # TODO: Rename this to test structural elements from borehole set def test_structural_elements_from_borehole_set(self, borehole_set: BoreholeSet): from subsurface import LineSet borehole_trajectory: LineSet = borehole_set.combined_trajectory if PLOT := False: s = to_pyvista_line( line_set=borehole_trajectory, radius=10, active_scalar="lith_ids" ) pv_plot([s], image_2d=False, cmap="tab20c") elements = gp.structural_elements_from_borehole_set( borehole_set=borehole_set, elements_dict={ "Buntsandstein" : { "id" : 53_300, "color": "#983999" }, "Werra-Anhydrit" : { "id" : 61_730, "color": "#00923f" }, "Kupfershiefer" : { "id" : 61_760, "color": "#da251d" }, "Zechsteinkonglomerat": { "id" : 61_770, "color": "#f8c300" }, "Rotliegend" : { "id" : 62_000, "color": "#bb825b" } }, group_by="component lith" ) group = gp.data.StructuralGroup( name="Stratigraphic Pile", elements=elements, structural_relation=gp.data.StackRelationType.ERODE ) structural_frame = gp.data.StructuralFrame( structural_groups=[group], color_gen=gp.data.ColorsGenerator() ) print(group) all_surface_points_coords: gp.data.SurfacePointsTable = structural_frame.surface_points_copy extent_from_data = all_surface_points_coords.xyz.min(axis=0), all_surface_points_coords.xyz.max(axis=0) geo_model = gp.data.GeoModel.from_args( name="Stratigraphic Pile", structural_frame=structural_frame, grid=gp.data.Grid( extent=[extent_from_data[0][0], extent_from_data[1][0], extent_from_data[0][1], extent_from_data[1][1], extent_from_data[0][2], extent_from_data[1][2]], resolution=(50, 50, 50) ), interpolation_options=gp.data.InterpolationOptions.from_args( range=5, c_o=10, mesh_extraction=True, number_octree_levels=3, ), ) gempy_plot = gpv.plot_3d( model=geo_model, # ve=10, kwargs_pyvista_bounds={ 'show_xlabels': False, 'show_ylabels': False, # 'show_zlabels': True, }, show=True, image=True ) ================================================ FILE: test/test_modules/test_serialize_model.py ================================================ import tempfile import json import os import pprint from gempy_engine.core.data import InterpolationOptions import gempy as gp from gempy.core.data.encoders.converters import loading_model_from_binary from gempy.core.data.enumerators import ExampleModel from gempy.modules.serialization.save_load import save_model, load_model from test.verify_helper import verify_json def test_generate_horizontal_stratigraphic_model(): model: gp.data.GeoModel = gp.generate_example_model(ExampleModel.HORIZONTAL_STRAT, compute_model=False) model_json = model.model_dump_json(by_alias=True, indent=4) # Write the JSON to disk if False: file_path = os.path.join("temp", "horizontal_stratigraphic_model.json") with open(file_path, "w") as f: f.write(model_json) with loading_model_from_binary( input_binary=model.structural_frame.input_tables_binary, grid_binary=model.grid.grid_binary # binary_body=model.structural_frame.input_tables_binary ): model_deserialized = gp.data.GeoModel.model_validate_json(model_json) _validate_serialization(model, model_deserialized) # # Validate json against schema if True: # Ensure the 'verify/' directory exists os.makedirs("verify", exist_ok=True) verify_model = json.loads(model_json) verify_model["meta"]["creation_date"] = "" verify_json(json.dumps(verify_model, indent=4), name="verify/Horizontal Stratigraphic Model serialization") def test_save_model_to_disk(): model = gp.generate_example_model(ExampleModel.COMBINATION, compute_model=False) with tempfile.NamedTemporaryFile(mode='w+', delete=True) as tmp: tmp_name = tmp.name + ".gempy" # Store the name to use it later save_model(model, tmp_name) # Load the model from disk loaded_model = load_model(tmp_name) _validate_serialization(model, loaded_model) gp.compute_model(loaded_model) if True: import gempy_viewer as gpv gpv.plot_3d(loaded_model, image=True) # Test save after compute with tempfile.NamedTemporaryFile(mode='w+', delete=True) as tmp: tmp_name = tmp.name + ".gempy" # Store the name to use it later save_model( model=model, path=tmp_name, validate_serialization=True ) def test_interpolation_options(): options = InterpolationOptions.from_args( range=1.7, c_o=10. ) json = options.model_dump(mode="json") # Pretty print json pprint.pp(json) # Deserialize with pydantic options2 = InterpolationOptions.model_validate(json) assert options.__str__() == options2.__str__() def _validate_serialization(original_model, model_deserialized): a = hash(original_model.structural_frame.surface_points_copy.data.tobytes()) b = hash(model_deserialized.structural_frame.surface_points_copy.data.tobytes()) o_a = hash(original_model.structural_frame.orientations_copy.data.tobytes()) o_b = hash(model_deserialized.structural_frame.orientations_copy.data.tobytes()) assert a == b, "Hashes for surface points are not equal" assert o_a == o_b, "Hashes for orientations are not equal" assert model_deserialized.__str__() == original_model.__str__() ================================================ FILE: test/test_modules/test_serialize_model.test_generate_horizontal_stratigraphic_model.verify/Horizontal Stratigraphic Model serialization.approved.txt ================================================ { "meta": { "name": "horizontal", "creation_date": "", "last_modification_date": null, "owner": null }, "structural_frame": { "structural_groups": [ { "name": "Strat_Series", "elements": [ { "name": "rock2", "is_active": true, "_color": "#9f0052", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 117776925 }, { "name": "rock1", "is_active": true, "_color": "#015482", "surface_points": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "orientations": { "name_id_map": { "rock1": 67239155, "rock2": 117776925 }, "_model_transform": null }, "scalar_field_at_interface": null, "_id": 67239155 } ], "structural_relation": 1, "fault_relations": null, "faults_input_data": null, "solution": null } ], "color_generator": { "_index": 3 }, "basement_color": "#ffbe00", "is_dirty": true, "binary_meta_data": { "sp_binary_length": 432, "ori_binary_length": 120 } }, "grid": { "_octree_grid": null, "_dense_grid": { "resolution": [ 50, 5, 50 ], "extent": [ 0.0, 1000.0, 0.0, 1000.0, 0.0, 1000.0 ], "_transform": null, "_base_resolution": [ 2, 2, 2 ] }, "_custom_grid": null, "_topography": null, "_sections": null, "_centered_grid": null, "_transform": null, "_octree_levels": -1, "binary_meta_data": { "custom_grid_binary_length": 0, "topography_binary_length": 0 }, "active_grids": 1026 }, "geophysics_input": null, "input_transform": { "position": [ -500.0, -500.0, -500.0 ], "rotation": [ 0.0, 0.0, 0.0 ], "scale": [ 0.000625, 0.000625, 0.000625 ], "_is_default_transform": false, "_cached_pivot": null }, "_interpolation_options": { "kernel_options": { "range": 1.7, "c_o": 10.0, "uni_degree": 1, "i_res": 4.0, "gi_res": 2.0, "number_dimensions": 3, "kernel_function": "cubic", "kernel_solver": 1, "compute_condition_number": false, "optimizing_condition_number": false, "condition_number": null }, "evaluation_options": { "_number_octree_levels": 3, "_number_octree_levels_surface": 4, "octree_curvature_threshold": -1.0, "octree_error_threshold": 1.0, "octree_min_level": 2, "mesh_extraction": true, "mesh_extraction_masking_options": 3, "mesh_extraction_fancy": true, "evaluation_chunk_size": 500000, "compute_scalar": true, "compute_scalar_gradient": false, "verbose": false }, "debug": false, "cache_mode": 3, "cache_model_name": "horizontal", "block_solutions_type": 2, "sigmoid_slope": 5000000 } } ================================================ FILE: test/test_modules/test_transformed_space.py ================================================ import numpy as np import gempy as gp from gempy.core.data.enumerators import ExampleModel from gempy.optional_dependencies import require_gempy_viewer PLOT = True def test_plot_transformed_data_only_transform_input(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=True) print(model.structural_frame) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d( model, image=True, transformed_data=False, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': 10 } ) gpv.plot_3d( model, image=True, transformed_data=True, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': .01 } ) def test_plot_transformed_data_including_grid_transform(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=False) # Calculate point_y_axis regular_grid = gp.data.grid.RegularGrid.from_corners_box( pivot=(200, 200), point_x_axis=(800, 800), distance_point3=1000, zmin=model.grid.extent[4], zmax=model.grid.extent[5], resolution=np.array([20, 20, 20]), plot=True ) model.grid = gp.data.grid.Grid() model.grid.dense_grid = regular_grid gp.compute_model(model) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d( model, image=True, transformed_data=True, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': .01 } ) gpv.plot_3d( model, image=True, transformed_data=False, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': .01 } ) def test_plot_transformed_data_including_grid_transform_octree(): model = gp.generate_example_model(ExampleModel.ANTICLINE, compute_model=False) i = 4 # Calculate point_y_axis regular_grid = gp.data.grid.RegularGrid.from_corners_box( pivot=(200, 200), point_x_axis=(800, 800), distance_point3=1000, zmin=model.grid.extent[4], zmax=model.grid.extent[5], resolution=np.array([2 ** i] * 3), plot=True ) # model.grid.active_grids ^= gp.data.grid.Grid.GridTypes.DENSE options = model.interpolation_options options.number_octree_levels = 4 model.grid.set_octree_grid(regular_grid) gp.compute_model(model) if PLOT: gpv = require_gempy_viewer() gpv.plot_3d( model, image=True, transformed_data=True, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': .01 } ) gpv.plot_3d( model, image=True, transformed_data=False, show_boundaries=True, show_lith=True, kwargs_plot_data={ 'arrow_size': .01 } ) ================================================ FILE: test/test_private/__init__.py ================================================ ================================================ FILE: test/test_private/test_terranigma/__init__.py ================================================ ================================================ FILE: test/test_private/test_terranigma/test_nuggets/__init__.py ================================================ ================================================ FILE: test/test_private/test_terranigma/test_nuggets/_aux_func.py ================================================ import os import xarray as xr import numpy as np import gempy as gp import subsurface def process_file(filename, global_extent, color_generator: gp.data.ColorsGenerator): dataset: xr.Dataset = xr.open_dataset(filename) file_extent = _calculate_extent(dataset) global_extent = _update_global_extent(global_extent, file_extent) base, ext = os.path.splitext(filename) base = os.path.basename(base) structural_element = _extract_surface_points_and_orientations(dataset, base, color_generator) return structural_element, global_extent def initialize_geo_model(structural_elements: list[gp.data.StructuralElement], extent: list[float], topography: xr.Dataset, **create_geomod_kwargs ) -> gp.data.GeoModel: structural_group_red = gp.data.StructuralGroup( name="Red", elements=[structural_elements[i] for i in [0, 4, 8]], structural_relation=gp.data.StackRelationType.ERODE ) # Any, Probably we can decimize this an extra notch structural_group_green = gp.data.StructuralGroup( name="Green", elements=[structural_elements[i] for i in [5]], structural_relation=gp.data.StackRelationType.ERODE ) # Blue range 2 cov 4 structural_group_blue = gp.data.StructuralGroup( name="Blue", elements=[structural_elements[i] for i in [2, 3]], structural_relation=gp.data.StackRelationType.ERODE ) structural_group_intrusion = gp.data.StructuralGroup( name="Intrusion", elements=[structural_elements[i] for i in [1]], structural_relation=gp.data.StackRelationType.ERODE ) structural_groups = [ # structural_group_intrusion, structural_group_green, structural_group_blue, structural_group_red ] structural_frame = gp.data.StructuralFrame( structural_groups=structural_groups, color_gen=gp.data.ColorsGenerator() ) # TODO: If elements do not have color maybe loop them on structural frame constructor? geo_model: gp.data.GeoModel = gp.create_geomodel( project_name='Tutorial_ch1_1_Basics', extent=extent, # resolution=[20, 10, 20], refinement=5, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored. structural_frame=structural_frame, **create_geomod_kwargs ) if topography is not None: gp.set_topography_from_arrays( grid=geo_model.grid, xyz_vertices=topography.vertex.values ) return geo_model # Function to calculate the extent (ROI) for a single dataset def _calculate_extent(dataset): x_coord, y_coord, z_coord = dataset.vertex[:, 0], dataset.vertex[:, 1], dataset.vertex[:, 2] return [x_coord.min().values, x_coord.max().values, y_coord.min().values, y_coord.max().values, z_coord.min().values, z_coord.max().values] # Function to extract surface points and orientations from the dataset def _extract_surface_points_and_orientations(dataset, name, color_generator) -> gp.data.StructuralElement: # Extract surface points and orientations unstruct = subsurface.UnstructuredData(dataset) ts = subsurface.TriSurf(mesh=unstruct) triangulated_mesh = subsurface.visualization.to_pyvista_mesh(ts) # print(name) # subsurface.visualization.pv_plot([triangulated_mesh]) # Decimate the mesh and compute normals decimated_mesh = triangulated_mesh.decimate_pro(0.95) normals = decimated_mesh.compute_normals(point_normals=False, cell_normals=True, consistent_normals=True) normals_array = np.array(normals.cell_data["Normals"]) # Filter points vertex_sp = normals.cell_centers().points vertex_grads = normals_array positive_z = vertex_grads[:, 2] > 0 largest_component_z = np.all(vertex_grads[:, 2:3] >= np.abs(vertex_grads[:, :2]), axis=1) filter_mask = np.logical_and(positive_z, largest_component_z) surface_points_xyz = vertex_sp[filter_mask] orientations_gxyz = vertex_grads[filter_mask] nuggets = np.ones(len(surface_points_xyz)) * 0.000001 # Create SurfacePointsTable and OrientationsTable every = 10 surface_points = gp.data.SurfacePointsTable.from_arrays( x=surface_points_xyz[::every, 0], y=surface_points_xyz[::every, 1], z=surface_points_xyz[::every, 2], names=name, nugget=nuggets[::every] ) every = 10 orientations = gp.data.OrientationsTable.from_arrays( x=surface_points_xyz[::every, 0], y=surface_points_xyz[::every, 1], z=surface_points_xyz[::every, 2], G_x=orientations_gxyz[::every, 0], G_y=orientations_gxyz[::every, 1], G_z=orientations_gxyz[::every, 2], nugget=4, names=name ) structural_element = gp.data.StructuralElement( name=name, surface_points=surface_points, orientations=orientations, color=next(color_generator) ) return structural_element # Function to update the global extent based on each file's extent def _update_global_extent(global_extent, file_extent): if not global_extent: return file_extent else: return [min(global_extent[0], file_extent[0]), max(global_extent[1], file_extent[1]), min(global_extent[2], file_extent[2]), max(global_extent[3], file_extent[3]), min(global_extent[4], file_extent[4]), max(global_extent[5], file_extent[5])] ================================================ FILE: test/test_private/test_terranigma/test_nuggets/test_nugget_effect_optimization.py ================================================ import os import dotenv import numpy as np import time import pytest torch = pytest.importorskip("torch") import gempy as gp from ._aux_func import process_file, initialize_geo_model dotenv.load_dotenv() # %% # Config seed = 123456 torch.manual_seed(seed) # %% # Start the timer for benchmarking purposes start_time = time.time() # %% # Load necessary configuration and paths from environment variables path = os.getenv("PATH_TO_NUGGET_TEST_MODEL") # Skip if not torch def test_optimize_nugget_effect(): # Initialize lists to store structural elements for the geological model structural_elements = [] global_extent = None color_gen = gp.data.ColorsGenerator() for filename in os.listdir(path): base, ext = os.path.splitext(filename) if ext == '.nc': structural_element, global_extent = process_file(os.path.join(path, filename), global_extent, color_gen) structural_elements.append(structural_element) import xarray as xr geo_model: gp.data.GeoModel = initialize_geo_model( structural_elements=structural_elements, extent=(np.array(global_extent)), topography=(xr.open_dataset(os.path.join(path, "Topography.nc"))), legacy_octree_init=True ) geo_model.interpolation_options.cache_mode = gp.data.InterpolationOptions.CacheMode.NO_CACHE geo_model.interpolation_options.kernel_options.range = 0.5 gp.API.compute_API.optimize_nuggets( geo_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, ), max_epochs=100, convergence_criteria=1e5, only_groups=[geo_model.structural_frame.get_group_by_name("Red")] ) gp.compute_model( gempy_model=geo_model, engine_config=gp.data.GemPyEngineConfig( backend=gp.data.AvailableBackends.PYTORCH, ), validate_serialization=True ) print(f"Final cond number: {geo_model.interpolation_options.kernel_options.condition_number}") nugget_effect = geo_model.taped_interpolation_input.surface_points.nugget_effect_scalar.detach().numpy() if plot_evaluation := True: import matplotlib.pyplot as plt plt.hist(nugget_effect, bins=50, color='black', alpha=0.7, log=True) plt.xlabel('Eigenvalue') plt.ylabel('Frequency') plt.title('Histogram of Eigenvalues (nugget-grad)') plt.show() if plot_result := True: import gempy_viewer as gpv import pyvista as pv image = True gempy_vista = gpv.plot_3d( model=geo_model, show=False, show_boundaries=True, show_topography=False, image=image, kwargs_plot_structured_grid={'opacity': 0.3} ) # Create a point cloud mesh if image == False: surface_points_xyz = geo_model.surface_points_copy.df[['X', 'Y', 'Z']].to_numpy() point_cloud = pv.PolyData(surface_points_xyz[0:]) point_cloud['values'] = nugget_effect gempy_vista.p.add_mesh( point_cloud, scalars='values', cmap='inferno', point_size=25, ) if False: ori_cloud = pv.PolyData(geo_model.orientations_copy.df[['X', 'Y', 'Z']].to_numpy()) ori_cloud['values2'] = geo_model.taped_interpolation_input.orientations.nugget_effect_grad.detach().numpy() gempy_vista.p.add_mesh( ori_cloud, scalars='values2', cmap='viridis', point_size=20, ) gempy_vista.p.show() ================================================ FILE: test/verify_helper.py ================================================ import os from typing import Literal import subprocess import numpy as np from approvaltests.core import Comparator import json from approvaltests import verify, Options from approvaltests.namer import NamerFactory from approvaltests.reporters import GenericDiffReporter, GenericDiffReporterConfig from gempy.core.data import GeoModel from gempy.modules.serialization.save_load import _load_model_from_bytes, model_to_bytes class WSLWindowsDiffReporter(GenericDiffReporter): def get_command(self, received, approved): # Convert WSL paths to Windows paths win_received = subprocess.check_output(['wslpath', '-w', received]).decode().strip() win_approved = subprocess.check_output(['wslpath', '-w', approved]).decode().strip() cmd = [self.path] + self.extra_args + [win_received, win_approved] return cmd class LinuxDiffReporter(GenericDiffReporter): pass def verify_json(item, name: str): config = GenericDiffReporterConfig( name="custom", path=r"pycharm", extra_args=["diff"] ) if os.environ.get("WSL_DISTRO_NAME"): reporter = WSLWindowsDiffReporter(config) else: reporter = LinuxDiffReporter(config) parameters: Options = NamerFactory \ .with_parameters(name) \ .with_reporter(reporter) verify(item, options=parameters) def gempy_verify_array(item, name: str, rtol: float = 1e-5, atol: float = 1e-5, ): # ! You will have to set the path to your diff tool reporter = GenericDiffReporter.create( diff_tool_path=r"pycharm" ) reporter.extra_args = ["diff"] parameters: Options = NamerFactory \ .with_parameters(name) \ .with_comparator( comparator=ArrayComparator(atol=atol, rtol=rtol) ).with_reporter( reporter=reporter ) verify(np.asarray(item), options=parameters) class ArrayComparator(Comparator): # TODO: Make tolerance a variable rtol: float = 1e-05 atol: float = 1e-05 def __init__(self, rtol: float = 1e-05, atol: float = 1e-05): self.rtol = rtol self.atol = atol def compare(self, received_path: str, approved_path: str) -> bool: from approvaltests.file_approver import exists import filecmp import pathlib if not exists(approved_path) or not exists(received_path): return False if filecmp.cmp(approved_path, received_path): return True try: approved_raw = pathlib.Path(approved_path).read_text() approved_text = approved_raw.replace("\r\n", "\n") received_raw = pathlib.Path(received_path).read_text() received_text = received_raw.replace("\r\n", "\n") # Parse 2D matrices received = np.matrix(received_text) approved = np.matrix(approved_text) allclose = np.allclose(received, approved, rtol=self.rtol, atol=self.atol) self.rtol = 1e-05 self.atol = 1e-05 return allclose except BaseException: return False class JsonSerializer: """Serializer that writes JSON with an indent and declares its own extension.""" def get_default_extension(self) -> str: return "json" def write(self, received, received_path: str) -> None: with open(received_path, "w", encoding="utf-8") as f: json.dump(received, f, indent=2, ensure_ascii=False) def verify_model_serialization(model: GeoModel, verify_moment: Literal["before", "after"], file_name: str): """ Verifies the serialization and deserialization process of a GeoModel instance by ensuring the serialized JSON and binary data match during either the initial or post-process phase, based on the specified verification moment. Args: model: The GeoModel instance to be verified. verify_moment: A literal value specifying whether to verify the model before or after the deserialization process. Accepts "before" or "after" as valid inputs. file_name: The filename to associate with the verification process for logging or output purposes. Raises: ValueError: If `verify_moment` is not set to "before" or "after". """ binary_file = model_to_bytes(model) original_model = model original_model.meta.creation_date = "" if verify_moment == "before": verify_json( item=original_model.model_dump_json(by_alias=True, indent=4), name=file_name ) elif verify_moment == "after": model_deserialized = _load_model_from_bytes(binary_file) model_deserialized.meta.creation_date = "" verify_json( item=model_deserialized.model_dump_json(by_alias=True, indent=4), name=file_name ) else: raise ValueError("Invalid model parameter")